Skip to content

Commit 217eadd

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

File tree

12 files changed

+1676
-6
lines changed

12 files changed

+1676
-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-rev20250804-2.0.0</version>
25+
<version>v1-rev20250811-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-rev20250804-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250811-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: 499 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
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+
* Specifies the audit configuration for a service. The configuration determines which permission
21+
* types are logged, and what identities, if any, are exempted from logging. An AuditConfig must
22+
* have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific
23+
* service, the union of the two AuditConfigs is used for that service: the log_types specified in
24+
* each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted.
25+
* Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices",
26+
* "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:[email protected]" ]
27+
* }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service":
28+
* "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type":
29+
* "DATA_WRITE", "exempted_members": [ "user:[email protected]" ] } ] } ] } For sampleservice, this
30+
* policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `[email protected]`
31+
* from DATA_READ logging, and `[email protected]` from DATA_WRITE logging.
32+
*
33+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
34+
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
35+
* explanation see:
36+
* <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>
37+
* </p>
38+
*
39+
* @author Google, Inc.
40+
*/
41+
@SuppressWarnings("javadoc")
42+
public final class GoogleIamV1AuditConfig extends com.google.api.client.json.GenericJson {
43+
44+
/**
45+
* The configuration for logging of each type of permission.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.List<GoogleIamV1AuditLogConfig> auditLogConfigs;
50+
51+
/**
52+
* Specifies a service that will be enabled for audit logging. For example,
53+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
54+
* covers all services.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String service;
59+
60+
/**
61+
* The configuration for logging of each type of permission.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.util.List<GoogleIamV1AuditLogConfig> getAuditLogConfigs() {
65+
return auditLogConfigs;
66+
}
67+
68+
/**
69+
* The configuration for logging of each type of permission.
70+
* @param auditLogConfigs auditLogConfigs or {@code null} for none
71+
*/
72+
public GoogleIamV1AuditConfig setAuditLogConfigs(java.util.List<GoogleIamV1AuditLogConfig> auditLogConfigs) {
73+
this.auditLogConfigs = auditLogConfigs;
74+
return this;
75+
}
76+
77+
/**
78+
* Specifies a service that will be enabled for audit logging. For example,
79+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
80+
* covers all services.
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getService() {
84+
return service;
85+
}
86+
87+
/**
88+
* Specifies a service that will be enabled for audit logging. For example,
89+
* `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that
90+
* covers all services.
91+
* @param service service or {@code null} for none
92+
*/
93+
public GoogleIamV1AuditConfig setService(java.lang.String service) {
94+
this.service = service;
95+
return this;
96+
}
97+
98+
@Override
99+
public GoogleIamV1AuditConfig set(String fieldName, Object value) {
100+
return (GoogleIamV1AuditConfig) super.set(fieldName, value);
101+
}
102+
103+
@Override
104+
public GoogleIamV1AuditConfig clone() {
105+
return (GoogleIamV1AuditConfig) super.clone();
106+
}
107+
108+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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+
* Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ {
21+
* "log_type": "DATA_READ", "exempted_members": [ "user:[email protected]" ] }, { "log_type":
22+
* "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting
23+
* [email protected] from DATA_READ logging.
24+
*
25+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
26+
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
27+
* explanation see:
28+
* <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>
29+
* </p>
30+
*
31+
* @author Google, Inc.
32+
*/
33+
@SuppressWarnings("javadoc")
34+
public final class GoogleIamV1AuditLogConfig extends com.google.api.client.json.GenericJson {
35+
36+
/**
37+
* Specifies the identities that do not cause logging for this type of permission. Follows the
38+
* same format of Binding.members.
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.util.List<java.lang.String> exemptedMembers;
43+
44+
/**
45+
* The log type that this config enables.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String logType;
50+
51+
/**
52+
* Specifies the identities that do not cause logging for this type of permission. Follows the
53+
* same format of Binding.members.
54+
* @return value or {@code null} for none
55+
*/
56+
public java.util.List<java.lang.String> getExemptedMembers() {
57+
return exemptedMembers;
58+
}
59+
60+
/**
61+
* Specifies the identities that do not cause logging for this type of permission. Follows the
62+
* same format of Binding.members.
63+
* @param exemptedMembers exemptedMembers or {@code null} for none
64+
*/
65+
public GoogleIamV1AuditLogConfig setExemptedMembers(java.util.List<java.lang.String> exemptedMembers) {
66+
this.exemptedMembers = exemptedMembers;
67+
return this;
68+
}
69+
70+
/**
71+
* The log type that this config enables.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getLogType() {
75+
return logType;
76+
}
77+
78+
/**
79+
* The log type that this config enables.
80+
* @param logType logType or {@code null} for none
81+
*/
82+
public GoogleIamV1AuditLogConfig setLogType(java.lang.String logType) {
83+
this.logType = logType;
84+
return this;
85+
}
86+
87+
@Override
88+
public GoogleIamV1AuditLogConfig set(String fieldName, Object value) {
89+
return (GoogleIamV1AuditLogConfig) super.set(fieldName, value);
90+
}
91+
92+
@Override
93+
public GoogleIamV1AuditLogConfig clone() {
94+
return (GoogleIamV1AuditLogConfig) super.clone();
95+
}
96+
97+
}

0 commit comments

Comments
 (0)