Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-dialogflow/v2/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dialogflow</artifactId>
<version>v2-rev20260509-2.0.0</version>
<version>v2-rev20260518-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20260509-2.0.0'
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20260518-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ public final class GoogleCloudDialogflowV2ConversationProfile extends com.google
@com.google.api.client.util.Key
private java.lang.String securitySettings;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudDialogflowV2SipConfig sipConfig;

/**
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -305,6 +311,21 @@ public GoogleCloudDialogflowV2ConversationProfile setSecuritySettings(java.lang.
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2SipConfig getSipConfig() {
return sipConfig;
}

/**
* @param sipConfig sipConfig or {@code null} for none
*/
public GoogleCloudDialogflowV2ConversationProfile setSipConfig(GoogleCloudDialogflowV2SipConfig sipConfig) {
this.sipConfig = sipConfig;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> cesDebugInfo;

/**
* The value may be {@code null}.
*/
Expand All @@ -53,6 +59,12 @@ public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.g
@com.google.api.client.util.Key
private java.lang.String queryCategorizationFailureReason;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo queryGenerationDebugInfo;

/**
* The value may be {@code null}.
*/
Expand All @@ -65,6 +77,21 @@ public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo extends com.g
@com.google.api.client.util.Key
private GoogleCloudDialogflowV2ServiceLatency serviceLatency;

/**
* @return value or {@code null} for none
*/
public java.util.Map<String, java.lang.Object> getCesDebugInfo() {
return cesDebugInfo;
}

/**
* @param cesDebugInfo cesDebugInfo or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setCesDebugInfo(java.util.Map<String, java.lang.Object> cesDebugInfo) {
this.cesDebugInfo = cesDebugInfo;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down Expand Up @@ -125,6 +152,21 @@ public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setQueryCategorizationFai
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo getQueryGenerationDebugInfo() {
return queryGenerationDebugInfo;
}

/**
* @param queryGenerationDebugInfo queryGenerationDebugInfo or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfo setQueryGenerationDebugInfo(GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo queryGenerationDebugInfo) {
this.queryGenerationDebugInfo = queryGenerationDebugInfo;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.dialogflow.v2.model;

/**
* Model definition for GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer candidatesTokenCount;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer promptTokenCount;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalTokenCount;

/**
* @return value or {@code null} for none
*/
public java.lang.Integer getCandidatesTokenCount() {
return candidatesTokenCount;
}

/**
* @param candidatesTokenCount candidatesTokenCount or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setCandidatesTokenCount(java.lang.Integer candidatesTokenCount) {
this.candidatesTokenCount = candidatesTokenCount;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.Integer getPromptTokenCount() {
return promptTokenCount;
}

/**
* @param promptTokenCount promptTokenCount or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setPromptTokenCount(java.lang.Integer promptTokenCount) {
this.promptTokenCount = promptTokenCount;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalTokenCount() {
return totalTokenCount;
}

/**
* @param totalTokenCount totalTokenCount or {@code null} for none
*/
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo setTotalTokenCount(java.lang.Integer totalTokenCount) {
this.totalTokenCount = totalTokenCount;
return this;
}

@Override
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo set(String fieldName, Object value) {
return (GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo) super.set(fieldName, value);
}

@Override
public GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo clone() {
return (GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo) super.clone();
}

}
Loading