Skip to content

Commit 3187729

Browse files
1 parent ae2004d commit 3187729

File tree

8 files changed

+66
-12
lines changed

8 files changed

+66
-12
lines changed

clients/google-api-services-texttospeech/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-texttospeech</artifactId>
25-
<version>v1-rev20250716-2.0.0</version>
25+
<version>v1-rev20250805-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250805-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-texttospeech/v1/2.0.0/com/google/api/services/texttospeech/v1/model/VoiceSelectionParams.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ public final class VoiceSelectionParams extends com.google.api.client.json.Gener
5252
@com.google.api.client.util.Key
5353
private java.lang.String languageCode;
5454

55+
/**
56+
* Optional. The name of the model. If set, the service will choose the model matching the
57+
* specified configuration.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String modelName;
62+
5563
/**
5664
* The name of the voice. If both the name and the gender are not set, the service will choose a
5765
* voice based on the other parameters such as language_code.
@@ -128,6 +136,25 @@ public VoiceSelectionParams setLanguageCode(java.lang.String languageCode) {
128136
return this;
129137
}
130138

139+
/**
140+
* Optional. The name of the model. If set, the service will choose the model matching the
141+
* specified configuration.
142+
* @return value or {@code null} for none
143+
*/
144+
public java.lang.String getModelName() {
145+
return modelName;
146+
}
147+
148+
/**
149+
* Optional. The name of the model. If set, the service will choose the model matching the
150+
* specified configuration.
151+
* @param modelName modelName or {@code null} for none
152+
*/
153+
public VoiceSelectionParams setModelName(java.lang.String modelName) {
154+
this.modelName = modelName;
155+
return this;
156+
}
157+
131158
/**
132159
* The name of the voice. If both the name and the gender are not set, the service will choose a
133160
* voice based on the other parameters such as language_code.

clients/google-api-services-texttospeech/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-texttospeech</artifactId>
11-
<version>v1-rev20250716-2.0.0</version>
12-
<name>Cloud Text-to-Speech API v1-rev20250716-2.0.0</name>
11+
<version>v1-rev20250805-2.0.0</version>
12+
<name>Cloud Text-to-Speech API v1-rev20250805-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-texttospeech/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-texttospeech</artifactId>
25-
<version>v1-rev20250716-2.0.0</version>
25+
<version>v1-rev20250805-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250805-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-texttospeech/v1beta1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-texttospeech</artifactId>
25-
<version>v1beta1-rev20250716-2.0.0</version>
25+
<version>v1beta1-rev20250805-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250805-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-texttospeech/v1beta1/2.0.0/com/google/api/services/texttospeech/v1beta1/model/VoiceSelectionParams.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ public final class VoiceSelectionParams extends com.google.api.client.json.Gener
5252
@com.google.api.client.util.Key
5353
private java.lang.String languageCode;
5454

55+
/**
56+
* Optional. The name of the model. If set, the service will choose the model matching the
57+
* specified configuration.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String modelName;
62+
5563
/**
5664
* The name of the voice. If both the name and the gender are not set, the service will choose a
5765
* voice based on the other parameters such as language_code.
@@ -128,6 +136,25 @@ public VoiceSelectionParams setLanguageCode(java.lang.String languageCode) {
128136
return this;
129137
}
130138

139+
/**
140+
* Optional. The name of the model. If set, the service will choose the model matching the
141+
* specified configuration.
142+
* @return value or {@code null} for none
143+
*/
144+
public java.lang.String getModelName() {
145+
return modelName;
146+
}
147+
148+
/**
149+
* Optional. The name of the model. If set, the service will choose the model matching the
150+
* specified configuration.
151+
* @param modelName modelName or {@code null} for none
152+
*/
153+
public VoiceSelectionParams setModelName(java.lang.String modelName) {
154+
this.modelName = modelName;
155+
return this;
156+
}
157+
131158
/**
132159
* The name of the voice. If both the name and the gender are not set, the service will choose a
133160
* voice based on the other parameters such as language_code.

clients/google-api-services-texttospeech/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-texttospeech</artifactId>
11-
<version>v1beta1-rev20250716-2.0.0</version>
12-
<name>Cloud Text-to-Speech API v1beta1-rev20250716-2.0.0</name>
11+
<version>v1beta1-rev20250805-2.0.0</version>
12+
<name>Cloud Text-to-Speech API v1beta1-rev20250805-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-texttospeech/v1beta1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-texttospeech</artifactId>
25-
<version>v1beta1-rev20250716-2.0.0</version>
25+
<version>v1beta1-rev20250805-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250805-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)