Skip to content

Commit 9028d4b

Browse files
1 parent 5c1a53a commit 9028d4b

13 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ public final class GoogleCloudDialogflowCxV3Fulfillment extends com.google.api.c
5858
@com.google.api.client.util.Key
5959
private java.lang.Boolean enableGenerativeFallback;
6060

61+
/**
62+
* A list of Generators to be called during this fulfillment.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.util.List<GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings> generators;
67+
6168
/**
6269
* The list of rich message responses to present to the user.
6370
* The value may be {@code null}.
@@ -157,6 +164,23 @@ public GoogleCloudDialogflowCxV3Fulfillment setEnableGenerativeFallback(java.lan
157164
return this;
158165
}
159166

167+
/**
168+
* A list of Generators to be called during this fulfillment.
169+
* @return value or {@code null} for none
170+
*/
171+
public java.util.List<GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings> getGenerators() {
172+
return generators;
173+
}
174+
175+
/**
176+
* A list of Generators to be called during this fulfillment.
177+
* @param generators generators or {@code null} for none
178+
*/
179+
public GoogleCloudDialogflowCxV3Fulfillment setGenerators(java.util.List<GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings> generators) {
180+
this.generators = generators;
181+
return this;
182+
}
183+
160184
/**
161185
* The list of rich message responses to present to the user.
162186
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.dialogflow.v2.model;
18+
19+
/**
20+
* Generator settings used by the LLM to generate a text response.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String generator;
38+
39+
/**
40+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
41+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
42+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
43+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
44+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
45+
* name
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.Map<String, java.lang.String> inputParameters;
50+
51+
/**
52+
* Required. Output parameter which should contain the generator response.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String outputParameter;
57+
58+
/**
59+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getGenerator() {
63+
return generator;
64+
}
65+
66+
/**
67+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
68+
* @param generator generator or {@code null} for none
69+
*/
70+
public GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings setGenerator(java.lang.String generator) {
71+
this.generator = generator;
72+
return this;
73+
}
74+
75+
/**
76+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
77+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
78+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
79+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
80+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
81+
* name
82+
* @return value or {@code null} for none
83+
*/
84+
public java.util.Map<String, java.lang.String> getInputParameters() {
85+
return inputParameters;
86+
}
87+
88+
/**
89+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
90+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
91+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
92+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
93+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
94+
* name
95+
* @param inputParameters inputParameters or {@code null} for none
96+
*/
97+
public GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings setInputParameters(java.util.Map<String, java.lang.String> inputParameters) {
98+
this.inputParameters = inputParameters;
99+
return this;
100+
}
101+
102+
/**
103+
* Required. Output parameter which should contain the generator response.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getOutputParameter() {
107+
return outputParameter;
108+
}
109+
110+
/**
111+
* Required. Output parameter which should contain the generator response.
112+
* @param outputParameter outputParameter or {@code null} for none
113+
*/
114+
public GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings setOutputParameter(java.lang.String outputParameter) {
115+
this.outputParameter = outputParameter;
116+
return this;
117+
}
118+
119+
@Override
120+
public GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings set(String fieldName, Object value) {
121+
return (GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings) super.set(fieldName, value);
122+
}
123+
124+
@Override
125+
public GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings clone() {
126+
return (GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings) super.clone();
127+
}
128+
129+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ public final class GoogleCloudDialogflowCxV3beta1Fulfillment extends com.google.
5858
@com.google.api.client.util.Key
5959
private java.lang.Boolean enableGenerativeFallback;
6060

61+
/**
62+
* A list of Generators to be called during this fulfillment.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.util.List<GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings> generators;
67+
6168
/**
6269
* The list of rich message responses to present to the user.
6370
* The value may be {@code null}.
@@ -157,6 +164,23 @@ public GoogleCloudDialogflowCxV3beta1Fulfillment setEnableGenerativeFallback(jav
157164
return this;
158165
}
159166

167+
/**
168+
* A list of Generators to be called during this fulfillment.
169+
* @return value or {@code null} for none
170+
*/
171+
public java.util.List<GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings> getGenerators() {
172+
return generators;
173+
}
174+
175+
/**
176+
* A list of Generators to be called during this fulfillment.
177+
* @param generators generators or {@code null} for none
178+
*/
179+
public GoogleCloudDialogflowCxV3beta1Fulfillment setGenerators(java.util.List<GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings> generators) {
180+
this.generators = generators;
181+
return this;
182+
}
183+
160184
/**
161185
* The list of rich message responses to present to the user.
162186
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.dialogflow.v2.model;
18+
19+
/**
20+
* Generator settings used by the LLM to generate a text response.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String generator;
38+
39+
/**
40+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
41+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
42+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
43+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
44+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
45+
* name
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.Map<String, java.lang.String> inputParameters;
50+
51+
/**
52+
* Required. Output parameter which should contain the generator response.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String outputParameter;
57+
58+
/**
59+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getGenerator() {
63+
return generator;
64+
}
65+
66+
/**
67+
* Required. The generator to call. Format: `projects//locations//agents//generators/`.
68+
* @param generator generator or {@code null} for none
69+
*/
70+
public GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings setGenerator(java.lang.String generator) {
71+
this.generator = generator;
72+
return this;
73+
}
74+
75+
/**
76+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
77+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
78+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
79+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
80+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
81+
* name
82+
* @return value or {@code null} for none
83+
*/
84+
public java.util.Map<String, java.lang.String> getInputParameters() {
85+
return inputParameters;
86+
}
87+
88+
/**
89+
* Map from placeholder parameter in the Generator to corresponding session parameters. By
90+
* default, Dialogflow uses the session parameter with the same name to fill in the generator
91+
* template. e.g. If there is a placeholder parameter `city` in the Generator, Dialogflow default
92+
* to fill in the `$city` with `$session.params.city`. However, you may choose to fill `$city`
93+
* with `$session.params.desination-city`. - Map key: parameter ID - Map value: session parameter
94+
* name
95+
* @param inputParameters inputParameters or {@code null} for none
96+
*/
97+
public GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings setInputParameters(java.util.Map<String, java.lang.String> inputParameters) {
98+
this.inputParameters = inputParameters;
99+
return this;
100+
}
101+
102+
/**
103+
* Required. Output parameter which should contain the generator response.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getOutputParameter() {
107+
return outputParameter;
108+
}
109+
110+
/**
111+
* Required. Output parameter which should contain the generator response.
112+
* @param outputParameter outputParameter or {@code null} for none
113+
*/
114+
public GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings setOutputParameter(java.lang.String outputParameter) {
115+
this.outputParameter = outputParameter;
116+
return this;
117+
}
118+
119+
@Override
120+
public GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings set(String fieldName, Object value) {
121+
return (GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings) super.set(fieldName, value);
122+
}
123+
124+
@Override
125+
public GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings clone() {
126+
return (GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings) super.clone();
127+
}
128+
129+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GoogleCloudDialogflowV2CreateConversationModelOperationMetada
4444
@com.google.api.client.util.Key
4545
private String createTime;
4646

47+
/**
48+
* The time when the operation finished.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private String doneTime;
53+
4754
/**
4855
* State of CreateConversationModel operation.
4956
* The value may be {@code null}.
@@ -87,6 +94,23 @@ public GoogleCloudDialogflowV2CreateConversationModelOperationMetadata setCreate
8794
return this;
8895
}
8996

97+
/**
98+
* The time when the operation finished.
99+
* @return value or {@code null} for none
100+
*/
101+
public String getDoneTime() {
102+
return doneTime;
103+
}
104+
105+
/**
106+
* The time when the operation finished.
107+
* @param doneTime doneTime or {@code null} for none
108+
*/
109+
public GoogleCloudDialogflowV2CreateConversationModelOperationMetadata setDoneTime(String doneTime) {
110+
this.doneTime = doneTime;
111+
return this;
112+
}
113+
90114
/**
91115
* State of CreateConversationModel operation.
92116
* @return value or {@code null} for none

0 commit comments

Comments
 (0)