Skip to content

Commit 17977cd

Browse files
1 parent 83bcc9b commit 17977cd

File tree

11 files changed

+66
-18
lines changed

11 files changed

+66
-18
lines changed

clients/google-api-services-dialogflow/v2/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-dialogflow</artifactId>
25-
<version>v2-rev20250617-2.0.0</version>
25+
<version>v2-rev20250625-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-dialogflow:v2-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20250625-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2/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-dialogflow</artifactId>
11-
<version>v2-rev20250617-2.0.0</version>
12-
<name>Dialogflow API v2-rev20250617-2.0.0</name>
11+
<version>v2-rev20250625-2.0.0</version>
12+
<name>Dialogflow API v2-rev20250625-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dialogflow/v2/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-dialogflow</artifactId>
25-
<version>v2-rev20250617-2.0.0</version>
25+
<version>v2-rev20250625-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-dialogflow:v2-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20250625-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2beta1/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-dialogflow</artifactId>
25-
<version>v2beta1-rev20250617-2.0.0</version>
25+
<version>v2beta1-rev20250625-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-dialogflow:v2beta1-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20250625-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2beta1/2.0.0/com/google/api/services/dialogflow/v2beta1/model/GoogleCloudDialogflowV2beta1VoiceSelectionParams.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ public final class GoogleCloudDialogflowV2beta1VoiceSelectionParams extends com.
3838
@com.google.api.client.util.Key
3939
private java.lang.String name;
4040

41+
/**
42+
* Optional. The name of the second voice (non-English) if language detection is supported.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String secondLanguageModel;
47+
4148
/**
4249
* Optional. The preferred gender of the voice. If not set, the service will choose a voice based
4350
* on the other parameters such as language_code and name. Note that this is only a preference,
@@ -69,6 +76,23 @@ public GoogleCloudDialogflowV2beta1VoiceSelectionParams setName(java.lang.String
6976
return this;
7077
}
7178

79+
/**
80+
* Optional. The name of the second voice (non-English) if language detection is supported.
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getSecondLanguageModel() {
84+
return secondLanguageModel;
85+
}
86+
87+
/**
88+
* Optional. The name of the second voice (non-English) if language detection is supported.
89+
* @param secondLanguageModel secondLanguageModel or {@code null} for none
90+
*/
91+
public GoogleCloudDialogflowV2beta1VoiceSelectionParams setSecondLanguageModel(java.lang.String secondLanguageModel) {
92+
this.secondLanguageModel = secondLanguageModel;
93+
return this;
94+
}
95+
7296
/**
7397
* Optional. The preferred gender of the voice. If not set, the service will choose a voice based
7498
* on the other parameters such as language_code and name. Note that this is only a preference,

clients/google-api-services-dialogflow/v2beta1/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-dialogflow</artifactId>
11-
<version>v2beta1-rev20250617-2.0.0</version>
12-
<name>Dialogflow API v2beta1-rev20250617-2.0.0</name>
11+
<version>v2beta1-rev20250625-2.0.0</version>
12+
<name>Dialogflow API v2beta1-rev20250625-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dialogflow/v2beta1/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-dialogflow</artifactId>
25-
<version>v2beta1-rev20250617-2.0.0</version>
25+
<version>v2beta1-rev20250625-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-dialogflow:v2beta1-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20250625-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v3/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-dialogflow</artifactId>
25-
<version>v3-rev20250617-2.0.0</version>
25+
<version>v3-rev20250625-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-dialogflow:v3-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v3-rev20250625-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v3/2.0.0/com/google/api/services/dialogflow/v3/model/GoogleCloudDialogflowCxV3VoiceSelectionParams.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ public final class GoogleCloudDialogflowCxV3VoiceSelectionParams extends com.goo
3838
@com.google.api.client.util.Key
3939
private java.lang.String name;
4040

41+
/**
42+
* Optional. The name of the second voice (non-English) if language detection is supported.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String secondLanguageModel;
47+
4148
/**
4249
* Optional. The preferred gender of the voice. If not set, the service will choose a voice based
4350
* on the other parameters such as language_code and name. Note that this is only a preference,
@@ -69,6 +76,23 @@ public GoogleCloudDialogflowCxV3VoiceSelectionParams setName(java.lang.String na
6976
return this;
7077
}
7178

79+
/**
80+
* Optional. The name of the second voice (non-English) if language detection is supported.
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getSecondLanguageModel() {
84+
return secondLanguageModel;
85+
}
86+
87+
/**
88+
* Optional. The name of the second voice (non-English) if language detection is supported.
89+
* @param secondLanguageModel secondLanguageModel or {@code null} for none
90+
*/
91+
public GoogleCloudDialogflowCxV3VoiceSelectionParams setSecondLanguageModel(java.lang.String secondLanguageModel) {
92+
this.secondLanguageModel = secondLanguageModel;
93+
return this;
94+
}
95+
7296
/**
7397
* Optional. The preferred gender of the voice. If not set, the service will choose a voice based
7498
* on the other parameters such as language_code and name. Note that this is only a preference,

clients/google-api-services-dialogflow/v3/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-dialogflow</artifactId>
11-
<version>v3-rev20250617-2.0.0</version>
12-
<name>Dialogflow API v3-rev20250617-2.0.0</name>
11+
<version>v3-rev20250625-2.0.0</version>
12+
<name>Dialogflow API v3-rev20250625-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)