Skip to content

Commit bf22300

Browse files
1 parent 7dc60ce commit bf22300

File tree

7 files changed

+1299
-96
lines changed

7 files changed

+1299
-96
lines changed

clients/google-api-services-contactcenterinsights/v1/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-contactcenterinsights</artifactId>
25-
<version>v1-rev20250821-2.0.0</version>
25+
<version>v1-rev20250825-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-contactcenterinsights:v1-rev20250821-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250825-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/Contactcenterinsights.java

Lines changed: 1145 additions & 90 deletions
Large diffs are not rendered by default.

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1IngestConversationsMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1IngestConversationsMetadata
6666
@com.google.api.client.util.Key
6767
private GoogleCloudContactcenterinsightsV1IngestConversationsRequest request;
6868

69+
/**
70+
* Output only. Stores the conversation resources produced by ingest sampling operations.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.util.List<java.lang.String> sampledConversations;
75+
6976
/**
7077
* Output only. The time the operation was created.
7178
* @return value or {@code null} for none
@@ -153,6 +160,23 @@ public GoogleCloudContactcenterinsightsV1IngestConversationsMetadata setRequest(
153160
return this;
154161
}
155162

163+
/**
164+
* Output only. Stores the conversation resources produced by ingest sampling operations.
165+
* @return value or {@code null} for none
166+
*/
167+
public java.util.List<java.lang.String> getSampledConversations() {
168+
return sampledConversations;
169+
}
170+
171+
/**
172+
* Output only. Stores the conversation resources produced by ingest sampling operations.
173+
* @param sampledConversations sampledConversations or {@code null} for none
174+
*/
175+
public GoogleCloudContactcenterinsightsV1IngestConversationsMetadata setSampledConversations(java.util.List<java.lang.String> sampledConversations) {
176+
this.sampledConversations = sampledConversations;
177+
return this;
178+
}
179+
156180
@Override
157181
public GoogleCloudContactcenterinsightsV1IngestConversationsMetadata set(String fieldName, Object value) {
158182
return (GoogleCloudContactcenterinsightsV1IngestConversationsMetadata) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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.contactcenterinsights.v1.model;
18+
19+
/**
20+
* The response to list datasets.
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 Contact Center AI Insights API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudContactcenterinsightsV1ListDatasetsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The datasets that match the request.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<GoogleCloudContactcenterinsightsV1Dataset> datasets;
39+
40+
static {
41+
// hack to force ProGuard to consider GoogleCloudContactcenterinsightsV1Dataset used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(GoogleCloudContactcenterinsightsV1Dataset.class);
44+
}
45+
46+
/**
47+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
48+
* there are no subsequent pages.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String nextPageToken;
53+
54+
/**
55+
* The datasets that match the request.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.util.List<GoogleCloudContactcenterinsightsV1Dataset> getDatasets() {
59+
return datasets;
60+
}
61+
62+
/**
63+
* The datasets that match the request.
64+
* @param datasets datasets or {@code null} for none
65+
*/
66+
public GoogleCloudContactcenterinsightsV1ListDatasetsResponse setDatasets(java.util.List<GoogleCloudContactcenterinsightsV1Dataset> datasets) {
67+
this.datasets = datasets;
68+
return this;
69+
}
70+
71+
/**
72+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
73+
* there are no subsequent pages.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getNextPageToken() {
77+
return nextPageToken;
78+
}
79+
80+
/**
81+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
82+
* there are no subsequent pages.
83+
* @param nextPageToken nextPageToken or {@code null} for none
84+
*/
85+
public GoogleCloudContactcenterinsightsV1ListDatasetsResponse setNextPageToken(java.lang.String nextPageToken) {
86+
this.nextPageToken = nextPageToken;
87+
return this;
88+
}
89+
90+
@Override
91+
public GoogleCloudContactcenterinsightsV1ListDatasetsResponse set(String fieldName, Object value) {
92+
return (GoogleCloudContactcenterinsightsV1ListDatasetsResponse) super.set(fieldName, value);
93+
}
94+
95+
@Override
96+
public GoogleCloudContactcenterinsightsV1ListDatasetsResponse clone() {
97+
return (GoogleCloudContactcenterinsightsV1ListDatasetsResponse) super.clone();
98+
}
99+
100+
}

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMe
6666
@com.google.api.client.util.Key
6767
private GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest request;
6868

69+
/**
70+
* Output only. Stores the conversation resources produced by ingest sampling operations.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.util.List<java.lang.String> sampledConversations;
75+
6976
/**
7077
* Output only. The time the operation was created.
7178
* @return value or {@code null} for none
@@ -153,6 +160,23 @@ public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata setRe
153160
return this;
154161
}
155162

163+
/**
164+
* Output only. Stores the conversation resources produced by ingest sampling operations.
165+
* @return value or {@code null} for none
166+
*/
167+
public java.util.List<java.lang.String> getSampledConversations() {
168+
return sampledConversations;
169+
}
170+
171+
/**
172+
* Output only. Stores the conversation resources produced by ingest sampling operations.
173+
* @param sampledConversations sampledConversations or {@code null} for none
174+
*/
175+
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata setSampledConversations(java.util.List<java.lang.String> sampledConversations) {
176+
this.sampledConversations = sampledConversations;
177+
return this;
178+
}
179+
156180
@Override
157181
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata set(String fieldName, Object value) {
158182
return (GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata) super.set(fieldName, value);

clients/google-api-services-contactcenterinsights/v1/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-contactcenterinsights</artifactId>
11-
<version>v1-rev20250821-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250821-2.0.0</name>
11+
<version>v1-rev20250825-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250825-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-contactcenterinsights/v1/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-contactcenterinsights</artifactId>
25-
<version>v1-rev20250821-2.0.0</version>
25+
<version>v1-rev20250825-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-contactcenterinsights:v1-rev20250821-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250825-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)