Skip to content
Open
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-rev20260701-2.0.0</version>
<version>v2-rev20260716-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-rev20260701-2.0.0'
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev20260716-2.0.0'
}
```

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 GoogleCloudDialogflowV2ProbeDetails.
*
* <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 GoogleCloudDialogflowV2ProbeDetails extends com.google.api.client.json.GenericJson {

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

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

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

/**
* @return value or {@code null} for none
*/
public String getInitTime() {
return initTime;
}

/**
* @param initTime initTime or {@code null} for none
*/
public GoogleCloudDialogflowV2ProbeDetails setInitTime(String initTime) {
this.initTime = initTime;
return this;
}

/**
* @return value or {@code null} for none
*/
public String getOptionsLatency() {
return optionsLatency;
}

/**
* @param optionsLatency optionsLatency or {@code null} for none
*/
public GoogleCloudDialogflowV2ProbeDetails setOptionsLatency(String optionsLatency) {
this.optionsLatency = optionsLatency;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getProbeStatus() {
return probeStatus;
}

/**
* @param probeStatus probeStatus or {@code null} for none
*/
public GoogleCloudDialogflowV2ProbeDetails setProbeStatus(java.lang.String probeStatus) {
this.probeStatus = probeStatus;
return this;
}

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

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

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
/*
* 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 GoogleCloudDialogflowV2SipHostname.
*
* <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 GoogleCloudDialogflowV2SipHostname extends com.google.api.client.json.GenericJson {

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

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

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

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

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

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

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

/**
* @return value or {@code null} for none
*/
public java.lang.String getConnectionState() {
return connectionState;
}

/**
* @param connectionState connectionState or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setConnectionState(java.lang.String connectionState) {
this.connectionState = connectionState;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.Boolean getEnabledSipPing() {
return enabledSipPing;
}

/**
* @param enabledSipPing enabledSipPing or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setEnabledSipPing(java.lang.Boolean enabledSipPing) {
this.enabledSipPing = enabledSipPing;
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails getErrorDetails() {
return errorDetails;
}

/**
* @param errorDetails errorDetails or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setErrorDetails(GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails errorDetails) {
this.errorDetails = errorDetails;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getPeerHostname() {
return peerHostname;
}

/**
* @param peerHostname peerHostname or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setPeerHostname(java.lang.String peerHostname) {
this.peerHostname = peerHostname;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getPeerSocketAddress() {
return peerSocketAddress;
}

/**
* @param peerSocketAddress peerSocketAddress or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setPeerSocketAddress(java.lang.String peerSocketAddress) {
this.peerSocketAddress = peerSocketAddress;
return this;
}

/**
* @return value or {@code null} for none
*/
public String getPingInterval() {
return pingInterval;
}

/**
* @param pingInterval pingInterval or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setPingInterval(String pingInterval) {
this.pingInterval = pingInterval;
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2ProbeDetails getProbeDetails() {
return probeDetails;
}

/**
* @param probeDetails probeDetails or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostname setProbeDetails(GoogleCloudDialogflowV2ProbeDetails probeDetails) {
this.probeDetails = probeDetails;
return this;
}

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

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

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
* 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 GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails.
*
* <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 GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails extends com.google.api.client.json.GenericJson {

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

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

/**
* @return value or {@code null} for none
*/
public java.lang.String getCertificateState() {
return certificateState;
}

/**
* @param certificateState certificateState or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails setCertificateState(java.lang.String certificateState) {
this.certificateState = certificateState;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getErrorMessage() {
return errorMessage;
}

/**
* @param errorMessage errorMessage or {@code null} for none
*/
public GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails setErrorMessage(java.lang.String errorMessage) {
this.errorMessage = errorMessage;
return this;
}

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

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

}
Loading
Loading