Skip to content

Commit 1454023

Browse files
1 parent 9e304df commit 1454023

30 files changed

+186
-120
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-rev20250602-2.0.0</version>
25+
<version>v2-rev20250612-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-rev20250602-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20250612-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2ToolCall.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2ToolCall extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -51,22 +51,22 @@ public final class GoogleCloudDialogflowV2ToolCall extends com.google.api.client
5151
private java.util.Map<String, java.lang.Object> inputParameters;
5252

5353
/**
54-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
54+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
5858
private java.lang.String tool;
5959

6060
/**
61-
* Required. The name of the tool's action associated with this call.
61+
* Optional. The name of the tool's action associated with this call.
6262
* @return value or {@code null} for none
6363
*/
6464
public java.lang.String getAction() {
6565
return action;
6666
}
6767

6868
/**
69-
* Required. The name of the tool's action associated with this call.
69+
* Optional. The name of the tool's action associated with this call.
7070
* @param action action or {@code null} for none
7171
*/
7272
public GoogleCloudDialogflowV2ToolCall setAction(java.lang.String action) {
@@ -109,15 +109,15 @@ public GoogleCloudDialogflowV2ToolCall setInputParameters(java.util.Map<String,
109109
}
110110

111111
/**
112-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
112+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
113113
* @return value or {@code null} for none
114114
*/
115115
public java.lang.String getTool() {
116116
return tool;
117117
}
118118

119119
/**
120-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
120+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
121121
* @param tool tool or {@code null} for none
122122
*/
123123
public GoogleCloudDialogflowV2ToolCall setTool(java.lang.String tool) {

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2ToolCallResult.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2ToolCallResult extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -66,22 +66,22 @@ public final class GoogleCloudDialogflowV2ToolCallResult extends com.google.api.
6666
private java.lang.String rawContent;
6767

6868
/**
69-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
69+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
7070
* The value may be {@code null}.
7171
*/
7272
@com.google.api.client.util.Key
7373
private java.lang.String tool;
7474

7575
/**
76-
* Required. The name of the tool's action associated with this call.
76+
* Optional. The name of the tool's action associated with this call.
7777
* @return value or {@code null} for none
7878
*/
7979
public java.lang.String getAction() {
8080
return action;
8181
}
8282

8383
/**
84-
* Required. The name of the tool's action associated with this call.
84+
* Optional. The name of the tool's action associated with this call.
8585
* @param action action or {@code null} for none
8686
*/
8787
public GoogleCloudDialogflowV2ToolCallResult setAction(java.lang.String action) {
@@ -190,15 +190,15 @@ public GoogleCloudDialogflowV2ToolCallResult encodeRawContent(byte[] rawContent)
190190
}
191191

192192
/**
193-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
193+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
194194
* @return value or {@code null} for none
195195
*/
196196
public java.lang.String getTool() {
197197
return tool;
198198
}
199199

200200
/**
201-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
201+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
202202
* @param tool tool or {@code null} for none
203203
*/
204204
public GoogleCloudDialogflowV2ToolCallResult setTool(java.lang.String tool) {

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2beta1ToolCall.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2beta1ToolCall extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -51,22 +51,22 @@ public final class GoogleCloudDialogflowV2beta1ToolCall extends com.google.api.c
5151
private java.util.Map<String, java.lang.Object> inputParameters;
5252

5353
/**
54-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
54+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
5858
private java.lang.String tool;
5959

6060
/**
61-
* Required. The name of the tool's action associated with this call.
61+
* Optional. The name of the tool's action associated with this call.
6262
* @return value or {@code null} for none
6363
*/
6464
public java.lang.String getAction() {
6565
return action;
6666
}
6767

6868
/**
69-
* Required. The name of the tool's action associated with this call.
69+
* Optional. The name of the tool's action associated with this call.
7070
* @param action action or {@code null} for none
7171
*/
7272
public GoogleCloudDialogflowV2beta1ToolCall setAction(java.lang.String action) {
@@ -109,15 +109,15 @@ public GoogleCloudDialogflowV2beta1ToolCall setInputParameters(java.util.Map<Str
109109
}
110110

111111
/**
112-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
112+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
113113
* @return value or {@code null} for none
114114
*/
115115
public java.lang.String getTool() {
116116
return tool;
117117
}
118118

119119
/**
120-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
120+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
121121
* @param tool tool or {@code null} for none
122122
*/
123123
public GoogleCloudDialogflowV2beta1ToolCall setTool(java.lang.String tool) {

clients/google-api-services-dialogflow/v2/2.0.0/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2beta1ToolCallResult.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2beta1ToolCallResult extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -66,22 +66,22 @@ public final class GoogleCloudDialogflowV2beta1ToolCallResult extends com.google
6666
private java.lang.String rawContent;
6767

6868
/**
69-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
69+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
7070
* The value may be {@code null}.
7171
*/
7272
@com.google.api.client.util.Key
7373
private java.lang.String tool;
7474

7575
/**
76-
* Required. The name of the tool's action associated with this call.
76+
* Optional. The name of the tool's action associated with this call.
7777
* @return value or {@code null} for none
7878
*/
7979
public java.lang.String getAction() {
8080
return action;
8181
}
8282

8383
/**
84-
* Required. The name of the tool's action associated with this call.
84+
* Optional. The name of the tool's action associated with this call.
8585
* @param action action or {@code null} for none
8686
*/
8787
public GoogleCloudDialogflowV2beta1ToolCallResult setAction(java.lang.String action) {
@@ -190,15 +190,15 @@ public GoogleCloudDialogflowV2beta1ToolCallResult encodeRawContent(byte[] rawCon
190190
}
191191

192192
/**
193-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
193+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
194194
* @return value or {@code null} for none
195195
*/
196196
public java.lang.String getTool() {
197197
return tool;
198198
}
199199

200200
/**
201-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
201+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
202202
* @param tool tool or {@code null} for none
203203
*/
204204
public GoogleCloudDialogflowV2beta1ToolCallResult setTool(java.lang.String tool) {

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-rev20250602-2.0.0</version>
12-
<name>Dialogflow API v2-rev20250602-2.0.0</name>
11+
<version>v2-rev20250612-2.0.0</version>
12+
<name>Dialogflow API v2-rev20250612-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-rev20250602-2.0.0</version>
25+
<version>v2-rev20250612-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-rev20250602-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20250612-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-rev20250602-2.0.0</version>
25+
<version>v2beta1-rev20250612-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-rev20250602-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dialogflow:v2beta1-rev20250612-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2ToolCall extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -51,22 +51,22 @@ public final class GoogleCloudDialogflowV2ToolCall extends com.google.api.client
5151
private java.util.Map<String, java.lang.Object> inputParameters;
5252

5353
/**
54-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
54+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
5858
private java.lang.String tool;
5959

6060
/**
61-
* Required. The name of the tool's action associated with this call.
61+
* Optional. The name of the tool's action associated with this call.
6262
* @return value or {@code null} for none
6363
*/
6464
public java.lang.String getAction() {
6565
return action;
6666
}
6767

6868
/**
69-
* Required. The name of the tool's action associated with this call.
69+
* Optional. The name of the tool's action associated with this call.
7070
* @param action action or {@code null} for none
7171
*/
7272
public GoogleCloudDialogflowV2ToolCall setAction(java.lang.String action) {
@@ -109,15 +109,15 @@ public GoogleCloudDialogflowV2ToolCall setInputParameters(java.util.Map<String,
109109
}
110110

111111
/**
112-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
112+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
113113
* @return value or {@code null} for none
114114
*/
115115
public java.lang.String getTool() {
116116
return tool;
117117
}
118118

119119
/**
120-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
120+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
121121
* @param tool tool or {@code null} for none
122122
*/
123123
public GoogleCloudDialogflowV2ToolCall setTool(java.lang.String tool) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class GoogleCloudDialogflowV2ToolCallResult extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The name of the tool's action associated with this call.
33+
* Optional. The name of the tool's action associated with this call.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -66,22 +66,22 @@ public final class GoogleCloudDialogflowV2ToolCallResult extends com.google.api.
6666
private java.lang.String rawContent;
6767

6868
/**
69-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
69+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
7070
* The value may be {@code null}.
7171
*/
7272
@com.google.api.client.util.Key
7373
private java.lang.String tool;
7474

7575
/**
76-
* Required. The name of the tool's action associated with this call.
76+
* Optional. The name of the tool's action associated with this call.
7777
* @return value or {@code null} for none
7878
*/
7979
public java.lang.String getAction() {
8080
return action;
8181
}
8282

8383
/**
84-
* Required. The name of the tool's action associated with this call.
84+
* Optional. The name of the tool's action associated with this call.
8585
* @param action action or {@code null} for none
8686
*/
8787
public GoogleCloudDialogflowV2ToolCallResult setAction(java.lang.String action) {
@@ -190,15 +190,15 @@ public GoogleCloudDialogflowV2ToolCallResult encodeRawContent(byte[] rawContent)
190190
}
191191

192192
/**
193-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
193+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
194194
* @return value or {@code null} for none
195195
*/
196196
public java.lang.String getTool() {
197197
return tool;
198198
}
199199

200200
/**
201-
* Required. The tool associated with this call. Format: `projects//locations//tools/`.
201+
* Optional. The tool associated with this call. Format: `projects//locations//tools/`.
202202
* @param tool tool or {@code null} for none
203203
*/
204204
public GoogleCloudDialogflowV2ToolCallResult setTool(java.lang.String tool) {

0 commit comments

Comments
 (0)