Skip to content

Commit 85ea82b

Browse files
1 parent 572a1d8 commit 85ea82b

File tree

151 files changed

+19145
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig exten
3737
@com.google.api.client.util.Key
3838
private GoogleCloudContactcenterinsightsV1ExactMatchConfig exactMatchConfig;
3939

40+
/**
41+
* The configuration for the regex match rule.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleCloudContactcenterinsightsV1RegexMatchConfig regexMatchConfig;
46+
4047
/**
4148
* The configuration for the exact match rule.
4249
* @return value or {@code null} for none
@@ -54,6 +61,23 @@ public GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig setExactMatchConf
5461
return this;
5562
}
5663

64+
/**
65+
* The configuration for the regex match rule.
66+
* @return value or {@code null} for none
67+
*/
68+
public GoogleCloudContactcenterinsightsV1RegexMatchConfig getRegexMatchConfig() {
69+
return regexMatchConfig;
70+
}
71+
72+
/**
73+
* The configuration for the regex match rule.
74+
* @param regexMatchConfig regexMatchConfig or {@code null} for none
75+
*/
76+
public GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig setRegexMatchConfig(GoogleCloudContactcenterinsightsV1RegexMatchConfig regexMatchConfig) {
77+
this.regexMatchConfig = regexMatchConfig;
78+
return this;
79+
}
80+
5781
@Override
5882
public GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig set(String fieldName, Object value) {
5983
return (GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
* Regex match configuration.
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 GoogleCloudContactcenterinsightsV1RegexMatchConfig extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public GoogleCloudContactcenterinsightsV1RegexMatchConfig set(String fieldName, Object value) {
35+
return (GoogleCloudContactcenterinsightsV1RegexMatchConfig) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public GoogleCloudContactcenterinsightsV1RegexMatchConfig clone() {
40+
return (GoogleCloudContactcenterinsightsV1RegexMatchConfig) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
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 analysis 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 GoogleCloudContactcenterinsightsV1mainAnalysis extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The result of the analysis, which is populated when the analysis finishes.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleCloudContactcenterinsightsV1mainAnalysisResult analysisResult;
39+
40+
/**
41+
* To select the annotators to run and the phrase matchers to use (if any). If not specified, all
42+
* annotators will be run.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private GoogleCloudContactcenterinsightsV1mainAnnotatorSelector annotatorSelector;
47+
48+
/**
49+
* Output only. The time at which the analysis was created, which occurs when the long-running
50+
* operation completes.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private String createTime;
55+
56+
/**
57+
* Immutable. The resource name of the analysis. Format:
58+
* projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String name;
63+
64+
/**
65+
* Output only. The time at which the analysis was requested.
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private String requestTime;
70+
71+
/**
72+
* Output only. The result of the analysis, which is populated when the analysis finishes.
73+
* @return value or {@code null} for none
74+
*/
75+
public GoogleCloudContactcenterinsightsV1mainAnalysisResult getAnalysisResult() {
76+
return analysisResult;
77+
}
78+
79+
/**
80+
* Output only. The result of the analysis, which is populated when the analysis finishes.
81+
* @param analysisResult analysisResult or {@code null} for none
82+
*/
83+
public GoogleCloudContactcenterinsightsV1mainAnalysis setAnalysisResult(GoogleCloudContactcenterinsightsV1mainAnalysisResult analysisResult) {
84+
this.analysisResult = analysisResult;
85+
return this;
86+
}
87+
88+
/**
89+
* To select the annotators to run and the phrase matchers to use (if any). If not specified, all
90+
* annotators will be run.
91+
* @return value or {@code null} for none
92+
*/
93+
public GoogleCloudContactcenterinsightsV1mainAnnotatorSelector getAnnotatorSelector() {
94+
return annotatorSelector;
95+
}
96+
97+
/**
98+
* To select the annotators to run and the phrase matchers to use (if any). If not specified, all
99+
* annotators will be run.
100+
* @param annotatorSelector annotatorSelector or {@code null} for none
101+
*/
102+
public GoogleCloudContactcenterinsightsV1mainAnalysis setAnnotatorSelector(GoogleCloudContactcenterinsightsV1mainAnnotatorSelector annotatorSelector) {
103+
this.annotatorSelector = annotatorSelector;
104+
return this;
105+
}
106+
107+
/**
108+
* Output only. The time at which the analysis was created, which occurs when the long-running
109+
* operation completes.
110+
* @return value or {@code null} for none
111+
*/
112+
public String getCreateTime() {
113+
return createTime;
114+
}
115+
116+
/**
117+
* Output only. The time at which the analysis was created, which occurs when the long-running
118+
* operation completes.
119+
* @param createTime createTime or {@code null} for none
120+
*/
121+
public GoogleCloudContactcenterinsightsV1mainAnalysis setCreateTime(String createTime) {
122+
this.createTime = createTime;
123+
return this;
124+
}
125+
126+
/**
127+
* Immutable. The resource name of the analysis. Format:
128+
* projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}
129+
* @return value or {@code null} for none
130+
*/
131+
public java.lang.String getName() {
132+
return name;
133+
}
134+
135+
/**
136+
* Immutable. The resource name of the analysis. Format:
137+
* projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}
138+
* @param name name or {@code null} for none
139+
*/
140+
public GoogleCloudContactcenterinsightsV1mainAnalysis setName(java.lang.String name) {
141+
this.name = name;
142+
return this;
143+
}
144+
145+
/**
146+
* Output only. The time at which the analysis was requested.
147+
* @return value or {@code null} for none
148+
*/
149+
public String getRequestTime() {
150+
return requestTime;
151+
}
152+
153+
/**
154+
* Output only. The time at which the analysis was requested.
155+
* @param requestTime requestTime or {@code null} for none
156+
*/
157+
public GoogleCloudContactcenterinsightsV1mainAnalysis setRequestTime(String requestTime) {
158+
this.requestTime = requestTime;
159+
return this;
160+
}
161+
162+
@Override
163+
public GoogleCloudContactcenterinsightsV1mainAnalysis set(String fieldName, Object value) {
164+
return (GoogleCloudContactcenterinsightsV1mainAnalysis) super.set(fieldName, value);
165+
}
166+
167+
@Override
168+
public GoogleCloudContactcenterinsightsV1mainAnalysis clone() {
169+
return (GoogleCloudContactcenterinsightsV1mainAnalysis) super.clone();
170+
}
171+
172+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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 result of an analysis.
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 GoogleCloudContactcenterinsightsV1mainAnalysisResult extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Call-specific metadata created by the analysis.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata callAnalysisMetadata;
39+
40+
/**
41+
* The time at which the analysis ended.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String endTime;
46+
47+
/**
48+
* Call-specific metadata created by the analysis.
49+
* @return value or {@code null} for none
50+
*/
51+
public GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata getCallAnalysisMetadata() {
52+
return callAnalysisMetadata;
53+
}
54+
55+
/**
56+
* Call-specific metadata created by the analysis.
57+
* @param callAnalysisMetadata callAnalysisMetadata or {@code null} for none
58+
*/
59+
public GoogleCloudContactcenterinsightsV1mainAnalysisResult setCallAnalysisMetadata(GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata callAnalysisMetadata) {
60+
this.callAnalysisMetadata = callAnalysisMetadata;
61+
return this;
62+
}
63+
64+
/**
65+
* The time at which the analysis ended.
66+
* @return value or {@code null} for none
67+
*/
68+
public String getEndTime() {
69+
return endTime;
70+
}
71+
72+
/**
73+
* The time at which the analysis ended.
74+
* @param endTime endTime or {@code null} for none
75+
*/
76+
public GoogleCloudContactcenterinsightsV1mainAnalysisResult setEndTime(String endTime) {
77+
this.endTime = endTime;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleCloudContactcenterinsightsV1mainAnalysisResult set(String fieldName, Object value) {
83+
return (GoogleCloudContactcenterinsightsV1mainAnalysisResult) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleCloudContactcenterinsightsV1mainAnalysisResult clone() {
88+
return (GoogleCloudContactcenterinsightsV1mainAnalysisResult) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)