From 43b8ba078e05ec5185a7cf6e7aaad6728f8be708 Mon Sep 17 00:00:00 2001 From: Angelo Paparazzi Date: Wed, 27 Nov 2024 14:08:22 -0500 Subject: [PATCH] chore: update services to version 3.97.0 of sdk generator --- .../ibm/watson/assistant/v1/Assistant.java | 2 +- .../ibm/watson/assistant/v2/Assistant.java | 2 +- ...owsProviderAuthenticationOAuth2Custom.java | 77 ------------ ...iderPrivateAuthenticationOAuth2Custom.java | 89 ------------- ...roviderAuthenticationOAuth2CustomTest.java | 117 ------------------ ...PrivateAuthenticationOAuth2CustomTest.java | 116 ----------------- .../ibm/watson/discovery/v2/Discovery.java | 2 +- .../speech_to_text/v1/SpeechToText.java | 2 +- .../text_to_speech/v1/TextToSpeech.java | 2 +- 9 files changed, 5 insertions(+), 404 deletions(-) delete mode 100644 assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.java delete mode 100644 assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom.java delete mode 100644 assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomTest.java delete mode 100644 assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomTest.java diff --git a/assistant/src/main/java/com/ibm/watson/assistant/v1/Assistant.java b/assistant/src/main/java/com/ibm/watson/assistant/v1/Assistant.java index 53400ad134..2c99bedb32 100644 --- a/assistant/src/main/java/com/ibm/watson/assistant/v1/Assistant.java +++ b/assistant/src/main/java/com/ibm/watson/assistant/v1/Assistant.java @@ -12,7 +12,7 @@ */ /* - * IBM OpenAPI SDK Code Generator Version: 3.96.0-d6dec9d7-20241008-212902 + * IBM OpenAPI SDK Code Generator Version: 3.97.0-0e90eab1-20241120-170029 */ package com.ibm.watson.assistant.v1; diff --git a/assistant/src/main/java/com/ibm/watson/assistant/v2/Assistant.java b/assistant/src/main/java/com/ibm/watson/assistant/v2/Assistant.java index 4973bd3c2c..edeaeea3ea 100644 --- a/assistant/src/main/java/com/ibm/watson/assistant/v2/Assistant.java +++ b/assistant/src/main/java/com/ibm/watson/assistant/v2/Assistant.java @@ -12,7 +12,7 @@ */ /* - * IBM OpenAPI SDK Code Generator Version: 99-SNAPSHOT-77cc8190-20241107-152357 + * IBM OpenAPI SDK Code Generator Version: 3.97.0-0e90eab1-20241120-170029 */ package com.ibm.watson.assistant.v2; diff --git a/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.java b/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.java deleted file mode 100644 index b3aafab36b..0000000000 --- a/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * (C) Copyright IBM Corp. 2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ - -package com.ibm.watson.assistant.v2.model; - -/** ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom. */ -public class ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom - extends ProviderAuthenticationOAuth2Flows { - - /** Builder. */ - public static class Builder { - private ProviderAuthenticationOAuth2CustomCustomOauth2Property customOauth2Property; - - /** - * Instantiates a new Builder from an existing - * ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom instance. - * - * @param providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom the instance to - * initialize the Builder with - */ - public Builder( - ProviderAuthenticationOAuth2Flows - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom) { - this.customOauth2Property = - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.customOauth2Property; - } - - /** Instantiates a new builder. */ - public Builder() {} - - /** - * Builds a ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom. - * - * @return the new ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom instance - */ - public ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom build() { - return new ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom(this); - } - - /** - * Set the customOauth2Property. - * - * @param customOauth2Property the customOauth2Property - * @return the ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom builder - */ - public Builder customOauth2Property( - ProviderAuthenticationOAuth2CustomCustomOauth2Property customOauth2Property) { - this.customOauth2Property = customOauth2Property; - return this; - } - } - - protected ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom() {} - - protected ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom(Builder builder) { - customOauth2Property = builder.customOauth2Property; - } - - /** - * New builder. - * - * @return a ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom builder - */ - public Builder newBuilder() { - return new Builder(this); - } -} diff --git a/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom.java b/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom.java deleted file mode 100644 index 0c4c947a3c..0000000000 --- a/assistant/src/main/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * (C) Copyright IBM Corp. 2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ - -package com.ibm.watson.assistant.v2.model; - -/** ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom. */ -public class ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - extends ProviderPrivateAuthenticationOAuth2FlowFlows { - - /** Builder. */ - public static class Builder { - private ProviderPrivateAuthenticationOAuth2CustomCustomOauth2Property customOauth2Property; - - /** - * Instantiates a new Builder from an existing - * ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - * instance. - * - * @param providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - * the instance to initialize the Builder with - */ - public Builder( - ProviderPrivateAuthenticationOAuth2FlowFlows - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom) { - this.customOauth2Property = - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - .customOauth2Property; - } - - /** Instantiates a new builder. */ - public Builder() {} - - /** - * Builds a - * ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom. - * - * @return the new - * ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - * instance - */ - public ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - build() { - return new ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom( - this); - } - - /** - * Set the customOauth2Property. - * - * @param customOauth2Property the customOauth2Property - * @return the - * ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - * builder - */ - public Builder customOauth2Property( - ProviderPrivateAuthenticationOAuth2CustomCustomOauth2Property customOauth2Property) { - this.customOauth2Property = customOauth2Property; - return this; - } - } - - protected - ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom() {} - - protected ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom( - Builder builder) { - customOauth2Property = builder.customOauth2Property; - } - - /** - * New builder. - * - * @return a ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - * builder - */ - public Builder newBuilder() { - return new Builder(this); - } -} diff --git a/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomTest.java b/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomTest.java deleted file mode 100644 index 4a09493b92..0000000000 --- a/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomTest.java +++ /dev/null @@ -1,117 +0,0 @@ -/* - * (C) Copyright IBM Corp. 2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ - -package com.ibm.watson.assistant.v2.model; - -import static org.testng.Assert.*; - -import com.ibm.cloud.sdk.core.service.model.FileWithMetadata; -import com.ibm.watson.assistant.v2.utils.TestUtilities; -import java.io.InputStream; -import java.util.HashMap; -import java.util.List; -import org.testng.annotations.Test; - -/** - * Unit test class for the ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom - * model. - */ -public class ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomTest { - final HashMap mockStreamMap = TestUtilities.createMockStreamMap(); - final List mockListFileWithMetadata = - TestUtilities.creatMockListFileWithMetadata(); - - @Test - public void testProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom() - throws Throwable { - ProviderAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2Parameter - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2ParameterModel = - new ProviderAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2Parameter - .Builder() - .type("value") - .value("testString") - .build(); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2ParameterModel - .type(), - "value"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2ParameterModel - .value(), - "testString"); - - ProviderAuthenticationOAuth2CustomCustomOauth2PropertyParams - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsModel = - new ProviderAuthenticationOAuth2CustomCustomOauth2PropertyParams.Builder() - .customOauth2Parameter( - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2ParameterModel) - .build(); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsModel.customOauth2Parameter(), - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsCustomOauth2ParameterModel); - - ProviderAuthenticationOAuth2CustomCustomOauth2Property - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel = - new ProviderAuthenticationOAuth2CustomCustomOauth2Property.Builder() - .tokenUrl("testString") - .refreshUrl("testString") - .clientAuthType("Body") - .contentType("testString") - .headerPrefix("testString") - .grantType("testString") - .params(providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsModel) - .build(); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.tokenUrl(), "testString"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.refreshUrl(), "testString"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.clientAuthType(), "Body"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.contentType(), "testString"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.headerPrefix(), "testString"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.grantType(), "testString"); - assertEquals( - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.params(), - providerAuthenticationOAuth2CustomCustomOauth2PropertyParamsModel); - - ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModel = - new ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.Builder() - .customOauth2Property(providerAuthenticationOAuth2CustomCustomOauth2PropertyModel) - .build(); - assertEquals( - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModel - .customOauth2Property(), - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel); - - String json = - TestUtilities.serialize( - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModel); - - ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModelNew = - TestUtilities.deserialize( - json, ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom.class); - assertTrue( - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModelNew - instanceof ProviderAuthenticationOAuth2FlowsProviderAuthenticationOAuth2Custom); - assertEquals( - providerAuthenticationOAuth2FlowsProviderAuthenticationOAuth2CustomModelNew - .customOauth2Property() - .toString(), - providerAuthenticationOAuth2CustomCustomOauth2PropertyModel.toString()); - } -} diff --git a/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomTest.java b/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomTest.java deleted file mode 100644 index 3666a10b88..0000000000 --- a/assistant/src/test/java/com/ibm/watson/assistant/v2/model/ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomTest.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * (C) Copyright IBM Corp. 2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ - -package com.ibm.watson.assistant.v2.model; - -import static org.testng.Assert.*; - -import com.ibm.cloud.sdk.core.service.model.FileWithMetadata; -import com.ibm.watson.assistant.v2.utils.TestUtilities; -import java.io.InputStream; -import java.util.HashMap; -import java.util.List; -import org.testng.annotations.Test; - -/** - * Unit test class for the - * ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom model. - */ -public -class ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomTest { - final HashMap mockStreamMap = TestUtilities.createMockStreamMap(); - final List mockListFileWithMetadata = - TestUtilities.creatMockListFileWithMetadata(); - - @Test - public void - testProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom() - throws Throwable { - ProviderPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2Secret - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2SecretModel = - new ProviderPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2Secret - .Builder() - .type("value") - .value("testString") - .build(); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2SecretModel - .type(), - "value"); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2SecretModel - .value(), - "testString"); - - ProviderPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecrets - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsModel = - new ProviderPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecrets.Builder() - .customOauth2Secret( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2SecretModel) - .build(); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsModel - .customOauth2Secret(), - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsCustomOauth2SecretModel); - - ProviderPrivateAuthenticationOAuth2CustomCustomOauth2Property - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel = - new ProviderPrivateAuthenticationOAuth2CustomCustomOauth2Property.Builder() - .accessToken("testString") - .refreshToken("testString") - .customSecrets( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsModel) - .build(); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel.accessToken(), - "testString"); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel.refreshToken(), - "testString"); - assertEquals( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel.customSecrets(), - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyCustomSecretsModel); - - ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModel = - new ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - .Builder() - .customOauth2Property( - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel) - .build(); - assertEquals( - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModel - .customOauth2Property(), - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel); - - String json = - TestUtilities.serialize( - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModel); - - ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModelNew = - TestUtilities.deserialize( - json, - ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom - .class); - assertTrue( - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModelNew - instanceof - ProviderPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2Custom); - assertEquals( - providerPrivateAuthenticationOAuth2FlowFlowsProviderPrivateAuthenticationOAuth2CustomModelNew - .customOauth2Property() - .toString(), - providerPrivateAuthenticationOAuth2CustomCustomOauth2PropertyModel.toString()); - } -} diff --git a/discovery/src/main/java/com/ibm/watson/discovery/v2/Discovery.java b/discovery/src/main/java/com/ibm/watson/discovery/v2/Discovery.java index e31b842af0..d5b518523f 100644 --- a/discovery/src/main/java/com/ibm/watson/discovery/v2/Discovery.java +++ b/discovery/src/main/java/com/ibm/watson/discovery/v2/Discovery.java @@ -12,7 +12,7 @@ */ /* - * IBM OpenAPI SDK Code Generator Version: 3.96.0-d6dec9d7-20241008-212902 + * IBM OpenAPI SDK Code Generator Version: 3.97.0-0e90eab1-20241120-170029 */ package com.ibm.watson.discovery.v2; diff --git a/speech-to-text/src/main/java/com/ibm/watson/speech_to_text/v1/SpeechToText.java b/speech-to-text/src/main/java/com/ibm/watson/speech_to_text/v1/SpeechToText.java index 7308227382..58b4e694a2 100644 --- a/speech-to-text/src/main/java/com/ibm/watson/speech_to_text/v1/SpeechToText.java +++ b/speech-to-text/src/main/java/com/ibm/watson/speech_to_text/v1/SpeechToText.java @@ -12,7 +12,7 @@ */ /* - * IBM OpenAPI SDK Code Generator Version: 3.96.0-d6dec9d7-20241008-212902 + * IBM OpenAPI SDK Code Generator Version: 3.97.0-0e90eab1-20241120-170029 */ package com.ibm.watson.speech_to_text.v1; diff --git a/text-to-speech/src/main/java/com/ibm/watson/text_to_speech/v1/TextToSpeech.java b/text-to-speech/src/main/java/com/ibm/watson/text_to_speech/v1/TextToSpeech.java index efc7ada0c1..7f77f70743 100644 --- a/text-to-speech/src/main/java/com/ibm/watson/text_to_speech/v1/TextToSpeech.java +++ b/text-to-speech/src/main/java/com/ibm/watson/text_to_speech/v1/TextToSpeech.java @@ -12,7 +12,7 @@ */ /* - * IBM OpenAPI SDK Code Generator Version: 3.96.0-d6dec9d7-20241008-212902 + * IBM OpenAPI SDK Code Generator Version: 3.97.0-0e90eab1-20241120-170029 */ package com.ibm.watson.text_to_speech.v1;