Skip to content

Commit aca29e7

Browse files
1 parent 3bb82b6 commit aca29e7

File tree

8 files changed

+36
-42
lines changed

8 files changed

+36
-42
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-rev20250114-2.0.0</version>
25+
<version>v1-rev20250325-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-rev20250114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250325-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ public final class SynthesisInput extends com.google.api.client.json.GenericJson
3333

3434
/**
3535
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
36-
* is synthesized using the given pronunciation customizations. The initial support is for
37-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
38-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
39-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
40-
* If using SSML, the phrase must not be inside a phoneme tag.
36+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
37+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
38+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
39+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
4140
* The value may be {@code null}.
4241
*/
4342
@com.google.api.client.util.Key
@@ -68,11 +67,10 @@ public final class SynthesisInput extends com.google.api.client.json.GenericJson
6867

6968
/**
7069
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
71-
* is synthesized using the given pronunciation customizations. The initial support is for
72-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
73-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
74-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
75-
* If using SSML, the phrase must not be inside a phoneme tag.
70+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
71+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
72+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
73+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
7674
* @return value or {@code null} for none
7775
*/
7876
public CustomPronunciations getCustomPronunciations() {
@@ -81,11 +79,10 @@ public CustomPronunciations getCustomPronunciations() {
8179

8280
/**
8381
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
84-
* is synthesized using the given pronunciation customizations. The initial support is for
85-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
86-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
87-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
88-
* If using SSML, the phrase must not be inside a phoneme tag.
82+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
83+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
84+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
85+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
8986
* @param customPronunciations customPronunciations or {@code null} for none
9087
*/
9188
public SynthesisInput setCustomPronunciations(CustomPronunciations customPronunciations) {

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-rev20250114-2.0.0</version>
12-
<name>Cloud Text-to-Speech API v1-rev20250114-2.0.0</name>
11+
<version>v1-rev20250325-2.0.0</version>
12+
<name>Cloud Text-to-Speech API v1-rev20250325-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-rev20250114-2.0.0</version>
25+
<version>v1-rev20250325-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-rev20250114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1-rev20250325-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-rev20250114-2.0.0</version>
25+
<version>v1beta1-rev20250325-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-rev20250114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250325-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ public final class SynthesisInput extends com.google.api.client.json.GenericJson
3333

3434
/**
3535
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
36-
* is synthesized using the given pronunciation customizations. The initial support is for
37-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
38-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
39-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
40-
* If using SSML, the phrase must not be inside a phoneme tag.
36+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
37+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
38+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
39+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
4140
* The value may be {@code null}.
4241
*/
4342
@com.google.api.client.util.Key
@@ -68,11 +67,10 @@ public final class SynthesisInput extends com.google.api.client.json.GenericJson
6867

6968
/**
7069
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
71-
* is synthesized using the given pronunciation customizations. The initial support is for
72-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
73-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
74-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
75-
* If using SSML, the phrase must not be inside a phoneme tag.
70+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
71+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
72+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
73+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
7674
* @return value or {@code null} for none
7775
*/
7876
public CustomPronunciations getCustomPronunciations() {
@@ -81,11 +79,10 @@ public CustomPronunciations getCustomPronunciations() {
8179

8280
/**
8381
* Optional. The pronunciation customizations are applied to the input. If this is set, the input
84-
* is synthesized using the given pronunciation customizations. The initial support is for
85-
* English, French, Italian, German, and Spanish (EFIGS) languages, as provided in
86-
* VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize
87-
* the pronunciation of a phrase, there must be an exact match of the phrase in the input types.
88-
* If using SSML, the phrase must not be inside a phoneme tag.
82+
* is synthesized using the given pronunciation customizations. The initial support is for en-us,
83+
* with plans to expand to other locales in the future. Instant Clone voices aren't supported. In
84+
* order to customize the pronunciation of a phrase, there must be an exact match of the phrase in
85+
* the input types. If using SSML, the phrase must not be inside a phoneme tag.
8986
* @param customPronunciations customPronunciations or {@code null} for none
9087
*/
9188
public SynthesisInput setCustomPronunciations(CustomPronunciations customPronunciations) {

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-rev20250114-2.0.0</version>
12-
<name>Cloud Text-to-Speech API v1beta1-rev20250114-2.0.0</name>
11+
<version>v1beta1-rev20250325-2.0.0</version>
12+
<name>Cloud Text-to-Speech API v1beta1-rev20250325-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-rev20250114-2.0.0</version>
25+
<version>v1beta1-rev20250325-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-rev20250114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-texttospeech:v1beta1-rev20250325-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)