Skip to content

Commit 9cce617

Browse files
1 parent d8e72ab commit 9cce617

File tree

6 files changed

+141
-6
lines changed

6 files changed

+141
-6
lines changed

clients/google-api-services-contactcenteraiplatform/v1alpha1/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-contactcenteraiplatform</artifactId>
25-
<version>v1alpha1-rev20240416-2.0.0</version>
25+
<version>v1alpha1-rev20240419-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-contactcenteraiplatform:v1alpha1-rev20240416-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenteraiplatform:v1alpha1-rev20240419-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-contactcenteraiplatform/v1alpha1/2.0.0/com/google/api/services/contactcenteraiplatform/v1alpha1/model/ContactCenter.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ public final class ContactCenter extends com.google.api.client.json.GenericJson
6767
@com.google.api.client.util.Key
6868
private java.lang.String displayName;
6969

70+
/**
71+
* Optional. Early release channel.
72+
* The value may be {@code null}.
73+
*/
74+
@com.google.api.client.util.Key
75+
private Early early;
76+
7077
/**
7178
* The configuration of this instance, it is currently immutable once created.
7279
* The value may be {@code null}.
@@ -95,6 +102,13 @@ public final class ContactCenter extends com.google.api.client.json.GenericJson
95102
@com.google.api.client.util.Key
96103
private java.lang.String name;
97104

105+
/**
106+
* Optional. Normal release channel.
107+
* The value may be {@code null}.
108+
*/
109+
@com.google.api.client.util.Key
110+
private Normal normal;
111+
98112
/**
99113
* Output only. A list of UJET components that should be privately accessed. This field is set by
100114
* reading settings from the data plane. For more information about the format of the component
@@ -230,6 +244,23 @@ public ContactCenter setDisplayName(java.lang.String displayName) {
230244
return this;
231245
}
232246

247+
/**
248+
* Optional. Early release channel.
249+
* @return value or {@code null} for none
250+
*/
251+
public Early getEarly() {
252+
return early;
253+
}
254+
255+
/**
256+
* Optional. Early release channel.
257+
* @param early early or {@code null} for none
258+
*/
259+
public ContactCenter setEarly(Early early) {
260+
this.early = early;
261+
return this;
262+
}
263+
233264
/**
234265
* The configuration of this instance, it is currently immutable once created.
235266
* @return value or {@code null} for none
@@ -298,6 +329,23 @@ public ContactCenter setName(java.lang.String name) {
298329
return this;
299330
}
300331

332+
/**
333+
* Optional. Normal release channel.
334+
* @return value or {@code null} for none
335+
*/
336+
public Normal getNormal() {
337+
return normal;
338+
}
339+
340+
/**
341+
* Optional. Normal release channel.
342+
* @param normal normal or {@code null} for none
343+
*/
344+
public ContactCenter setNormal(Normal normal) {
345+
this.normal = normal;
346+
return this;
347+
}
348+
301349
/**
302350
* Output only. A list of UJET components that should be privately accessed. This field is set by
303351
* reading settings from the data plane. For more information about the format of the component
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.contactcenteraiplatform.v1alpha1.model;
18+
19+
/**
20+
* First Channel to receive the updates. Meant to dev/test instances
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 Platform 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 Early extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public Early set(String fieldName, Object value) {
35+
return (Early) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public Early clone() {
40+
return (Early) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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.contactcenteraiplatform.v1alpha1.model;
18+
19+
/**
20+
* Instances in this Channel will receive updates after all instances in `Early` were updated + 2
21+
* days.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Contact Center AI Platform API. For a detailed
25+
* explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class Normal extends com.google.api.client.json.GenericJson {
33+
34+
@Override
35+
public Normal set(String fieldName, Object value) {
36+
return (Normal) super.set(fieldName, value);
37+
}
38+
39+
@Override
40+
public Normal clone() {
41+
return (Normal) super.clone();
42+
}
43+
44+
}

clients/google-api-services-contactcenteraiplatform/v1alpha1/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-contactcenteraiplatform</artifactId>
11-
<version>v1alpha1-rev20240416-2.0.0</version>
12-
<name>Contact Center AI Platform API v1alpha1-rev20240416-2.0.0</name>
11+
<version>v1alpha1-rev20240419-2.0.0</version>
12+
<name>Contact Center AI Platform API v1alpha1-rev20240419-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-contactcenteraiplatform/v1alpha1/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-contactcenteraiplatform</artifactId>
25-
<version>v1alpha1-rev20240416-2.0.0</version>
25+
<version>v1alpha1-rev20240419-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-contactcenteraiplatform:v1alpha1-rev20240416-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenteraiplatform:v1alpha1-rev20240419-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)