Skip to content

Commit 2d1ecc8

Browse files
yoshi-automationJustinBeckwith
authored andcommitted
Regenerate texttospeech client (googleapis#730)
1 parent d9afb10 commit 2d1ecc8

File tree

9 files changed

+651
-522
lines changed

9 files changed

+651
-522
lines changed

clients/1.26.0/google-api-services-texttospeech/v1/com/google/api/services/texttospeech/v1/model/AudioConfig.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ public final class AudioConfig extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.lang.String audioEncoding;
3939

40+
/**
41+
* An identifier which selects 'audio effects' profiles that are applied on (post synthesized)
42+
* text to speech. Effects are applied on top of each other in the order they are given. See
43+
*
44+
* [audio-profiles](https: //cloud.google.com/text-to-speech/docs/audio-profiles) for current
45+
* supported profile ids.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.List<java.lang.String> effectsProfileId;
50+
4051
/**
4152
* Optional speaking pitch, in the range [-20.0, 20.0]. 20 means increase 20 semitones from the
4253
* original pitch. -20 means decrease 20 semitones from the original pitch.
@@ -94,6 +105,31 @@ public AudioConfig setAudioEncoding(java.lang.String audioEncoding) {
94105
return this;
95106
}
96107

108+
/**
109+
* An identifier which selects 'audio effects' profiles that are applied on (post synthesized)
110+
* text to speech. Effects are applied on top of each other in the order they are given. See
111+
*
112+
* [audio-profiles](https: //cloud.google.com/text-to-speech/docs/audio-profiles) for current
113+
* supported profile ids.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.util.List<java.lang.String> getEffectsProfileId() {
117+
return effectsProfileId;
118+
}
119+
120+
/**
121+
* An identifier which selects 'audio effects' profiles that are applied on (post synthesized)
122+
* text to speech. Effects are applied on top of each other in the order they are given. See
123+
*
124+
* [audio-profiles](https: //cloud.google.com/text-to-speech/docs/audio-profiles) for current
125+
* supported profile ids.
126+
* @param effectsProfileId effectsProfileId or {@code null} for none
127+
*/
128+
public AudioConfig setEffectsProfileId(java.util.List<java.lang.String> effectsProfileId) {
129+
this.effectsProfileId = effectsProfileId;
130+
return this;
131+
}
132+
97133
/**
98134
* Optional speaking pitch, in the range [-20.0, 20.0]. 20 means increase 20 semitones from the
99135
* original pitch. -20 means decrease 20 semitones from the original pitch.

clients/1.26.0/google-api-services-texttospeech/v1/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-rev20180803-1.26.0</version>
12-
<name>Cloud Text-to-Speech API v1-rev20180803-1.26.0</name>
11+
<version>v1-rev20190118-1.26.0</version>
12+
<name>Cloud Text-to-Speech API v1-rev20190118-1.26.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)