Skip to content

Commit 2014606

Browse files
1 parent 4b51358 commit 2014606

32 files changed

Lines changed: 1624 additions & 24 deletions

File tree

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

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ public final class GoogleCloudDialogflowV2ConversationProfile extends com.google
101101
@com.google.api.client.util.Key
102102
private java.lang.String securitySettings;
103103

104+
/**
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private GoogleCloudDialogflowV2SipConfig sipConfig;
109+
104110
/**
105111
* The value may be {@code null}.
106112
*/
@@ -305,6 +311,21 @@ public GoogleCloudDialogflowV2ConversationProfile setSecuritySettings(java.lang.
305311
return this;
306312
}
307313

314+
/**
315+
* @return value or {@code null} for none
316+
*/
317+
public GoogleCloudDialogflowV2SipConfig getSipConfig() {
318+
return sipConfig;
319+
}
320+
321+
/**
322+
* @param sipConfig sipConfig or {@code null} for none
323+
*/
324+
public GoogleCloudDialogflowV2ConversationProfile setSipConfig(GoogleCloudDialogflowV2SipConfig sipConfig) {
325+
this.sipConfig = sipConfig;
326+
return this;
327+
}
328+
308329
/**
309330
* @return value or {@code null} for none
310331
*/

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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.util.Map<String, java.lang.Object> cesDebugInfo;
37+
3238
/**
3339
* The value may be {@code null}.
3440
*/
@@ -53,6 +59,12 @@ public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.g
5359
@com.google.api.client.util.Key
5460
private java.lang.String queryCategorizationFailureReason;
5561

62+
/**
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo queryGenerationDebugInfo;
67+
5668
/**
5769
* The value may be {@code null}.
5870
*/
@@ -65,6 +77,21 @@ public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.g
6577
@com.google.api.client.util.Key
6678
private GoogleCloudDialogflowV2ServiceLatency serviceLatency;
6779

80+
/**
81+
* @return value or {@code null} for none
82+
*/
83+
public java.util.Map<String, java.lang.Object> getCesDebugInfo() {
84+
return cesDebugInfo;
85+
}
86+
87+
/**
88+
* @param cesDebugInfo cesDebugInfo or {@code null} for none
89+
*/
90+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setCesDebugInfo(java.util.Map<String, java.lang.Object> cesDebugInfo) {
91+
this.cesDebugInfo = cesDebugInfo;
92+
return this;
93+
}
94+
6895
/**
6996
* @return value or {@code null} for none
7097
*/
@@ -125,6 +152,21 @@ public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setQueryCategorizationFai
125152
return this;
126153
}
127154

155+
/**
156+
* @return value or {@code null} for none
157+
*/
158+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo getQueryGenerationDebugInfo() {
159+
return queryGenerationDebugInfo;
160+
}
161+
162+
/**
163+
* @param queryGenerationDebugInfo queryGenerationDebugInfo or {@code null} for none
164+
*/
165+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setQueryGenerationDebugInfo(GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo queryGenerationDebugInfo) {
166+
this.queryGenerationDebugInfo = queryGenerationDebugInfo;
167+
return this;
168+
}
169+
128170
/**
129171
* @return value or {@code null} for none
130172
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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+
* Model definition for GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo.
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 GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.Integer candidatesTokenCount;
37+
38+
/**
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.Integer promptTokenCount;
43+
44+
/**
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.Integer totalTokenCount;
49+
50+
/**
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.Integer getCandidatesTokenCount() {
54+
return candidatesTokenCount;
55+
}
56+
57+
/**
58+
* @param candidatesTokenCount candidatesTokenCount or {@code null} for none
59+
*/
60+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setCandidatesTokenCount(java.lang.Integer candidatesTokenCount) {
61+
this.candidatesTokenCount = candidatesTokenCount;
62+
return this;
63+
}
64+
65+
/**
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.Integer getPromptTokenCount() {
69+
return promptTokenCount;
70+
}
71+
72+
/**
73+
* @param promptTokenCount promptTokenCount or {@code null} for none
74+
*/
75+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setPromptTokenCount(java.lang.Integer promptTokenCount) {
76+
this.promptTokenCount = promptTokenCount;
77+
return this;
78+
}
79+
80+
/**
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.Integer getTotalTokenCount() {
84+
return totalTokenCount;
85+
}
86+
87+
/**
88+
* @param totalTokenCount totalTokenCount or {@code null} for none
89+
*/
90+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setTotalTokenCount(java.lang.Integer totalTokenCount) {
91+
this.totalTokenCount = totalTokenCount;
92+
return this;
93+
}
94+
95+
@Override
96+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo set(String fieldName, Object value) {
97+
return (GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo) super.set(fieldName, value);
98+
}
99+
100+
@Override
101+
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo clone() {
102+
return (GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo) super.clone();
103+
}
104+
105+
}

0 commit comments

Comments
 (0)