Skip to content

Commit b304e6a

Browse files
1 parent e07f435 commit b304e6a

20 files changed

+2723
-18
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-rev20250526-2.0.0</version>
25+
<version>v1-rev20250624-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-rev20250526-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250624-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: 1089 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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 metadata for deleting a QaQuestionTag Resource.
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 GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The time the operation was created.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String createTime;
39+
40+
/**
41+
* Output only. The time the operation finished running.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String endTime;
46+
47+
/**
48+
* Output only. The original request.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest request;
53+
54+
/**
55+
* Output only. The time the operation was created.
56+
* @return value or {@code null} for none
57+
*/
58+
public String getCreateTime() {
59+
return createTime;
60+
}
61+
62+
/**
63+
* Output only. The time the operation was created.
64+
* @param createTime createTime or {@code null} for none
65+
*/
66+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata setCreateTime(String createTime) {
67+
this.createTime = createTime;
68+
return this;
69+
}
70+
71+
/**
72+
* Output only. The time the operation finished running.
73+
* @return value or {@code null} for none
74+
*/
75+
public String getEndTime() {
76+
return endTime;
77+
}
78+
79+
/**
80+
* Output only. The time the operation finished running.
81+
* @param endTime endTime or {@code null} for none
82+
*/
83+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata setEndTime(String endTime) {
84+
this.endTime = endTime;
85+
return this;
86+
}
87+
88+
/**
89+
* Output only. The original request.
90+
* @return value or {@code null} for none
91+
*/
92+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest getRequest() {
93+
return request;
94+
}
95+
96+
/**
97+
* Output only. The original request.
98+
* @param request request or {@code null} for none
99+
*/
100+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata setRequest(GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest request) {
101+
this.request = request;
102+
return this;
103+
}
104+
105+
@Override
106+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata set(String fieldName, Object value) {
107+
return (GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata clone() {
112+
return (GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 request for deleting a QaQuestionTag.
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 GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The name of the QaQuestionTag to delete.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String name;
39+
40+
/**
41+
* Required. The name of the QaQuestionTag to delete.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getName() {
45+
return name;
46+
}
47+
48+
/**
49+
* Required. The name of the QaQuestionTag to delete.
50+
* @param name name or {@code null} for none
51+
*/
52+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest setName(java.lang.String name) {
53+
this.name = name;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest set(String fieldName, Object value) {
59+
return (GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest clone() {
64+
return (GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest) super.clone();
65+
}
66+
67+
}

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

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

33+
/**
34+
* Optional. The Cloud Storage path to the conversation audio file if already transcribed. Note
35+
* that: [1] Don't set this field if the audio is not transcribed. [2] Audio files and transcript
36+
* files must be in separate buckets / folders. [3] A source file and its corresponding audio file
37+
* must share the same name to be properly ingested, E.g.
38+
* `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/conversation1.mp3`.
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String audioBucketUri;
43+
3344
/**
3445
* Optional. Specifies the type of the objects in `bucket_uri`.
3546
* The value may be {@code null}.
@@ -56,14 +67,39 @@ public final class GoogleCloudContactcenterinsightsV1IngestConversationsRequestG
5667
/**
5768
* Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files
5869
* are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be
59-
* in separate buckets. [3] A source file and its corresponding metadata file must share the same
60-
* name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
70+
* in separate buckets / folders. [3] A source file and its corresponding metadata file must share
71+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
6172
* `gs://bucket/metadata/conversation1.json`.
6273
* The value may be {@code null}.
6374
*/
6475
@com.google.api.client.util.Key
6576
private java.lang.String metadataBucketUri;
6677

78+
/**
79+
* Optional. The Cloud Storage path to the conversation audio file if already transcribed. Note
80+
* that: [1] Don't set this field if the audio is not transcribed. [2] Audio files and transcript
81+
* files must be in separate buckets / folders. [3] A source file and its corresponding audio file
82+
* must share the same name to be properly ingested, E.g.
83+
* `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/conversation1.mp3`.
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.String getAudioBucketUri() {
87+
return audioBucketUri;
88+
}
89+
90+
/**
91+
* Optional. The Cloud Storage path to the conversation audio file if already transcribed. Note
92+
* that: [1] Don't set this field if the audio is not transcribed. [2] Audio files and transcript
93+
* files must be in separate buckets / folders. [3] A source file and its corresponding audio file
94+
* must share the same name to be properly ingested, E.g.
95+
* `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/conversation1.mp3`.
96+
* @param audioBucketUri audioBucketUri or {@code null} for none
97+
*/
98+
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource setAudioBucketUri(java.lang.String audioBucketUri) {
99+
this.audioBucketUri = audioBucketUri;
100+
return this;
101+
}
102+
67103
/**
68104
* Optional. Specifies the type of the objects in `bucket_uri`.
69105
* @return value or {@code null} for none
@@ -122,8 +158,8 @@ public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource set
122158
/**
123159
* Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files
124160
* are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be
125-
* in separate buckets. [3] A source file and its corresponding metadata file must share the same
126-
* name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
161+
* in separate buckets / folders. [3] A source file and its corresponding metadata file must share
162+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
127163
* `gs://bucket/metadata/conversation1.json`.
128164
* @return value or {@code null} for none
129165
*/
@@ -134,8 +170,8 @@ public java.lang.String getMetadataBucketUri() {
134170
/**
135171
* Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files
136172
* are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be
137-
* in separate buckets. [3] A source file and its corresponding metadata file must share the same
138-
* name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
173+
* in separate buckets / folders. [3] A source file and its corresponding metadata file must share
174+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
139175
* `gs://bucket/metadata/conversation1.json`.
140176
* @param metadataBucketUri metadataBucketUri or {@code null} for none
141177
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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 from a ListQaQuestionTags request.
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 GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
35+
* there are no subsequent pages.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* The parent resource of the questions.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<GoogleCloudContactcenterinsightsV1QaQuestionTag> qaQuestionTags;
47+
48+
/**
49+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
50+
* there are no subsequent pages.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getNextPageToken() {
54+
return nextPageToken;
55+
}
56+
57+
/**
58+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
59+
* there are no subsequent pages.
60+
* @param nextPageToken nextPageToken or {@code null} for none
61+
*/
62+
public GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse setNextPageToken(java.lang.String nextPageToken) {
63+
this.nextPageToken = nextPageToken;
64+
return this;
65+
}
66+
67+
/**
68+
* The parent resource of the questions.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<GoogleCloudContactcenterinsightsV1QaQuestionTag> getQaQuestionTags() {
72+
return qaQuestionTags;
73+
}
74+
75+
/**
76+
* The parent resource of the questions.
77+
* @param qaQuestionTags qaQuestionTags or {@code null} for none
78+
*/
79+
public GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse setQaQuestionTags(java.util.List<GoogleCloudContactcenterinsightsV1QaQuestionTag> qaQuestionTags) {
80+
this.qaQuestionTags = qaQuestionTags;
81+
return this;
82+
}
83+
84+
@Override
85+
public GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse set(String fieldName, Object value) {
86+
return (GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse clone() {
91+
return (GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse) super.clone();
92+
}
93+
94+
}

0 commit comments

Comments
 (0)