Skip to content

Commit 2a2795d

Browse files
chore: regenerate contactcenterinsights client (#31152)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent d08b541 commit 2a2795d

12 files changed

+231
-6
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-rev20260309-2.0.0</version>
25+
<version>v1-rev20260313-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-rev20260309-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260313-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class GoogleCloudContactcenterinsightsV1AnnotatorSelector extends c
5757
@com.google.api.client.util.Key
5858
private GoogleCloudContactcenterinsightsV1AnnotatorSelectorQaConfig qaConfig;
5959

60+
/**
61+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
62+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.Boolean runAutoLabelingAnnotator;
67+
6068
/**
6169
* Whether to run the entity annotator.
6270
* The value may be {@code null}.
@@ -191,6 +199,25 @@ public GoogleCloudContactcenterinsightsV1AnnotatorSelector setQaConfig(GoogleClo
191199
return this;
192200
}
193201

202+
/**
203+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
204+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
205+
* @return value or {@code null} for none
206+
*/
207+
public java.lang.Boolean getRunAutoLabelingAnnotator() {
208+
return runAutoLabelingAnnotator;
209+
}
210+
211+
/**
212+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
213+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
214+
* @param runAutoLabelingAnnotator runAutoLabelingAnnotator or {@code null} for none
215+
*/
216+
public GoogleCloudContactcenterinsightsV1AnnotatorSelector setRunAutoLabelingAnnotator(java.lang.Boolean runAutoLabelingAnnotator) {
217+
this.runAutoLabelingAnnotator = runAutoLabelingAnnotator;
218+
return this;
219+
}
220+
194221
/**
195222
* Whether to run the entity annotator.
196223
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMet
6666
@com.google.api.client.util.Key
6767
private java.util.List<GoogleRpcStatus> partialErrors;
6868

69+
/**
70+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.Boolean relabel;
75+
6976
/**
7077
* The original request for bulk analyze.
7178
* The value may be {@code null}.
@@ -168,6 +175,23 @@ public GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata setPar
168175
return this;
169176
}
170177

178+
/**
179+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
180+
* @return value or {@code null} for none
181+
*/
182+
public java.lang.Boolean getRelabel() {
183+
return relabel;
184+
}
185+
186+
/**
187+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
188+
* @param relabel relabel or {@code null} for none
189+
*/
190+
public GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata setRelabel(java.lang.Boolean relabel) {
191+
this.relabel = relabel;
192+
return this;
193+
}
194+
171195
/**
172196
* The original request for bulk analyze.
173197
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsReq
5959
@com.google.api.client.util.Key
6060
private java.lang.String parent;
6161

62+
/**
63+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.Boolean relabel;
68+
6269
/**
6370
* Required. Percentage of selected conversation to analyze, between [0, 100].
6471
* @return value or {@code null} for none
@@ -129,6 +136,23 @@ public GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest setPare
129136
return this;
130137
}
131138

139+
/**
140+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.Boolean getRelabel() {
144+
return relabel;
145+
}
146+
147+
/**
148+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
149+
* @param relabel relabel or {@code null} for none
150+
*/
151+
public GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest setRelabel(java.lang.Boolean relabel) {
152+
this.relabel = relabel;
153+
return this;
154+
}
155+
132156
@Override
133157
public GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest set(String fieldName, Object value) {
134158
return (GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector ext
5757
@com.google.api.client.util.Key
5858
private GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorQaConfig qaConfig;
5959

60+
/**
61+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
62+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.Boolean runAutoLabelingAnnotator;
67+
6068
/**
6169
* Whether to run the entity annotator.
6270
* The value may be {@code null}.
@@ -191,6 +199,25 @@ public GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector setQaConfig(Goo
191199
return this;
192200
}
193201

202+
/**
203+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
204+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
205+
* @return value or {@code null} for none
206+
*/
207+
public java.lang.Boolean getRunAutoLabelingAnnotator() {
208+
return runAutoLabelingAnnotator;
209+
}
210+
211+
/**
212+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
213+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
214+
* @param runAutoLabelingAnnotator runAutoLabelingAnnotator or {@code null} for none
215+
*/
216+
public GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector setRunAutoLabelingAnnotator(java.lang.Boolean runAutoLabelingAnnotator) {
217+
this.runAutoLabelingAnnotator = runAutoLabelingAnnotator;
218+
return this;
219+
}
220+
194221
/**
195222
* Whether to run the entity annotator.
196223
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversati
6666
@com.google.api.client.util.Key
6767
private java.util.List<GoogleRpcStatus> partialErrors;
6868

69+
/**
70+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.Boolean relabel;
75+
6976
/**
7077
* The original request for bulk analyze.
7178
* The value may be {@code null}.
@@ -168,6 +175,23 @@ public GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsMetadata
168175
return this;
169176
}
170177

178+
/**
179+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
180+
* @return value or {@code null} for none
181+
*/
182+
public java.lang.Boolean getRelabel() {
183+
return relabel;
184+
}
185+
186+
/**
187+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
188+
* @param relabel relabel or {@code null} for none
189+
*/
190+
public GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsMetadata setRelabel(java.lang.Boolean relabel) {
191+
this.relabel = relabel;
192+
return this;
193+
}
194+
171195
/**
172196
* The original request for bulk analyze.
173197
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversati
5959
@com.google.api.client.util.Key
6060
private java.lang.String parent;
6161

62+
/**
63+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.Boolean relabel;
68+
6269
/**
6370
* Required. Percentage of selected conversation to analyze, between [0, 100].
6471
* @return value or {@code null} for none
@@ -129,6 +136,23 @@ public GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest s
129136
return this;
130137
}
131138

139+
/**
140+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.Boolean getRelabel() {
144+
return relabel;
145+
}
146+
147+
/**
148+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
149+
* @param relabel relabel or {@code null} for none
150+
*/
151+
public GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest setRelabel(java.lang.Boolean relabel) {
152+
this.relabel = relabel;
153+
return this;
154+
}
155+
132156
@Override
133157
public GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest set(String fieldName, Object value) {
134158
return (GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class GoogleCloudContactcenterinsightsV1mainAnnotatorSelector exten
5757
@com.google.api.client.util.Key
5858
private GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorQaConfig qaConfig;
5959

60+
/**
61+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
62+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.Boolean runAutoLabelingAnnotator;
67+
6068
/**
6169
* Whether to run the entity annotator.
6270
* The value may be {@code null}.
@@ -191,6 +199,25 @@ public GoogleCloudContactcenterinsightsV1mainAnnotatorSelector setQaConfig(Googl
191199
return this;
192200
}
193201

202+
/**
203+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
204+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
205+
* @return value or {@code null} for none
206+
*/
207+
public java.lang.Boolean getRunAutoLabelingAnnotator() {
208+
return runAutoLabelingAnnotator;
209+
}
210+
211+
/**
212+
* Optional. Whether to run the auto-labeling annotator. If true, the auto-labeling annotator will
213+
* be run. This is a non-billable operation designed for fixing or backfilling custom labels.
214+
* @param runAutoLabelingAnnotator runAutoLabelingAnnotator or {@code null} for none
215+
*/
216+
public GoogleCloudContactcenterinsightsV1mainAnnotatorSelector setRunAutoLabelingAnnotator(java.lang.Boolean runAutoLabelingAnnotator) {
217+
this.runAutoLabelingAnnotator = runAutoLabelingAnnotator;
218+
return this;
219+
}
220+
194221
/**
195222
* Whether to run the entity annotator.
196223
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversation
6666
@com.google.api.client.util.Key
6767
private java.util.List<GoogleRpcStatus> partialErrors;
6868

69+
/**
70+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.Boolean relabel;
75+
6976
/**
7077
* The original request for bulk analyze.
7178
* The value may be {@code null}.
@@ -168,6 +175,23 @@ public GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsMetadata se
168175
return this;
169176
}
170177

178+
/**
179+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
180+
* @return value or {@code null} for none
181+
*/
182+
public java.lang.Boolean getRelabel() {
183+
return relabel;
184+
}
185+
186+
/**
187+
* Output only. If true, the labeling rules will be re-evaluated for the conversations.
188+
* @param relabel relabel or {@code null} for none
189+
*/
190+
public GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsMetadata setRelabel(java.lang.Boolean relabel) {
191+
this.relabel = relabel;
192+
return this;
193+
}
194+
171195
/**
172196
* The original request for bulk analyze.
173197
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversation
5959
@com.google.api.client.util.Key
6060
private java.lang.String parent;
6161

62+
/**
63+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.Boolean relabel;
68+
6269
/**
6370
* Required. Percentage of selected conversation to analyze, between [0, 100].
6471
* @return value or {@code null} for none
@@ -129,6 +136,23 @@ public GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsRequest set
129136
return this;
130137
}
131138

139+
/**
140+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.Boolean getRelabel() {
144+
return relabel;
145+
}
146+
147+
/**
148+
* Optional. If true, the labeling rules will be re-evaluated for the conversations.
149+
* @param relabel relabel or {@code null} for none
150+
*/
151+
public GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsRequest setRelabel(java.lang.Boolean relabel) {
152+
this.relabel = relabel;
153+
return this;
154+
}
155+
132156
@Override
133157
public GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsRequest set(String fieldName, Object value) {
134158
return (GoogleCloudContactcenterinsightsV1mainBulkAnalyzeConversationsRequest) super.set(fieldName, value);

0 commit comments

Comments
 (0)