Skip to content

Commit b603418

Browse files
1 parent 816aed2 commit b603418

File tree

6 files changed

+155
-48
lines changed

6 files changed

+155
-48
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-rev20250711-2.0.0</version>
25+
<version>v1-rev20250721-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-rev20250711-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250721-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11367,6 +11367,29 @@ public Patch setName(java.lang.String name) {
1136711367
return this;
1136811368
}
1136911369

11370+
/**
11371+
* Optional. Defaults to false. If set to true, and the conversation is not found, a new
11372+
* conversation will be created. In this situation, `update_mask` is ignored.
11373+
*/
11374+
@com.google.api.client.util.Key
11375+
private java.lang.Boolean allowMissing;
11376+
11377+
/** Optional. Defaults to false. If set to true, and the conversation is not found, a new conversation
11378+
will be created. In this situation, `update_mask` is ignored.
11379+
*/
11380+
public java.lang.Boolean getAllowMissing() {
11381+
return allowMissing;
11382+
}
11383+
11384+
/**
11385+
* Optional. Defaults to false. If set to true, and the conversation is not found, a new
11386+
* conversation will be created. In this situation, `update_mask` is ignored.
11387+
*/
11388+
public Patch setAllowMissing(java.lang.Boolean allowMissing) {
11389+
this.allowMissing = allowMissing;
11390+
return this;
11391+
}
11392+
1137011393
/**
1137111394
* The list of fields to be updated. All possible fields can be updated by passing `*`, or
1137211395
* a subset of the following updateable fields can be provided: * `agent_id` *

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

Lines changed: 63 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,27 @@
3131
public final class GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource extends com.google.api.client.json.GenericJson {
3232

3333
/**
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`.
34+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
35+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
36+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
37+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
38+
* `gs://bucket/audio/conversation1.mp3`.
3939
* The value may be {@code null}.
4040
*/
4141
@com.google.api.client.util.Key
4242
private java.lang.String audioBucketUri;
4343

4444
/**
45-
* Optional. Specifies the type of the objects in `bucket_uri`.
45+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
46+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
4647
* The value may be {@code null}.
4748
*/
4849
@com.google.api.client.util.Key
4950
private java.lang.String bucketObjectType;
5051

5152
/**
52-
* Required. The Cloud Storage bucket containing source objects.
53+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
54+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
5355
* The value may be {@code null}.
5456
*/
5557
@com.google.api.client.util.Key
@@ -76,23 +78,34 @@ public final class GoogleCloudContactcenterinsightsV1IngestConversationsRequestG
7678
private java.lang.String metadataBucketUri;
7779

7880
/**
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`.
81+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
82+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
83+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
84+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
85+
* `gs://bucket/metadata/conversation1.json`.
86+
* The value may be {@code null}.
87+
*/
88+
@com.google.api.client.util.Key
89+
private java.lang.String transcriptBucketUri;
90+
91+
/**
92+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
93+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
94+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
95+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
96+
* `gs://bucket/audio/conversation1.mp3`.
8497
* @return value or {@code null} for none
8598
*/
8699
public java.lang.String getAudioBucketUri() {
87100
return audioBucketUri;
88101
}
89102

90103
/**
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`.
104+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
105+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
106+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
107+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
108+
* `gs://bucket/audio/conversation1.mp3`.
96109
* @param audioBucketUri audioBucketUri or {@code null} for none
97110
*/
98111
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource setAudioBucketUri(java.lang.String audioBucketUri) {
@@ -101,15 +114,17 @@ public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource set
101114
}
102115

103116
/**
104-
* Optional. Specifies the type of the objects in `bucket_uri`.
117+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
118+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
105119
* @return value or {@code null} for none
106120
*/
107121
public java.lang.String getBucketObjectType() {
108122
return bucketObjectType;
109123
}
110124

111125
/**
112-
* Optional. Specifies the type of the objects in `bucket_uri`.
126+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
127+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
113128
* @param bucketObjectType bucketObjectType or {@code null} for none
114129
*/
115130
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource setBucketObjectType(java.lang.String bucketObjectType) {
@@ -118,15 +133,17 @@ public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource set
118133
}
119134

120135
/**
121-
* Required. The Cloud Storage bucket containing source objects.
136+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
137+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
122138
* @return value or {@code null} for none
123139
*/
124140
public java.lang.String getBucketUri() {
125141
return bucketUri;
126142
}
127143

128144
/**
129-
* Required. The Cloud Storage bucket containing source objects.
145+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
146+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
130147
* @param bucketUri bucketUri or {@code null} for none
131148
*/
132149
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource setBucketUri(java.lang.String bucketUri) {
@@ -180,6 +197,31 @@ public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource set
180197
return this;
181198
}
182199

200+
/**
201+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
202+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
203+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
204+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
205+
* `gs://bucket/metadata/conversation1.json`.
206+
* @return value or {@code null} for none
207+
*/
208+
public java.lang.String getTranscriptBucketUri() {
209+
return transcriptBucketUri;
210+
}
211+
212+
/**
213+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
214+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
215+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
216+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
217+
* `gs://bucket/metadata/conversation1.json`.
218+
* @param transcriptBucketUri transcriptBucketUri or {@code null} for none
219+
*/
220+
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource setTranscriptBucketUri(java.lang.String transcriptBucketUri) {
221+
this.transcriptBucketUri = transcriptBucketUri;
222+
return this;
223+
}
224+
183225
@Override
184226
public GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource set(String fieldName, Object value) {
185227
return (GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource) super.set(fieldName, value);

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

Lines changed: 63 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,27 @@
3131
public final class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource extends com.google.api.client.json.GenericJson {
3232

3333
/**
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`.
34+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
35+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
36+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
37+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
38+
* `gs://bucket/audio/conversation1.mp3`.
3939
* The value may be {@code null}.
4040
*/
4141
@com.google.api.client.util.Key
4242
private java.lang.String audioBucketUri;
4343

4444
/**
45-
* Optional. Specifies the type of the objects in `bucket_uri`.
45+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
46+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
4647
* The value may be {@code null}.
4748
*/
4849
@com.google.api.client.util.Key
4950
private java.lang.String bucketObjectType;
5051

5152
/**
52-
* Required. The Cloud Storage bucket containing source objects.
53+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
54+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
5355
* The value may be {@code null}.
5456
*/
5557
@com.google.api.client.util.Key
@@ -76,23 +78,34 @@ public final class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRe
7678
private java.lang.String metadataBucketUri;
7779

7880
/**
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`.
81+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
82+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
83+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
84+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
85+
* `gs://bucket/metadata/conversation1.json`.
86+
* The value may be {@code null}.
87+
*/
88+
@com.google.api.client.util.Key
89+
private java.lang.String transcriptBucketUri;
90+
91+
/**
92+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
93+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
94+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
95+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
96+
* `gs://bucket/audio/conversation1.mp3`.
8497
* @return value or {@code null} for none
8598
*/
8699
public java.lang.String getAudioBucketUri() {
87100
return audioBucketUri;
88101
}
89102

90103
/**
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`.
104+
* Optional. The Cloud Storage path to the conversation audio file. Note that: [1] Audio files
105+
* will be transcribed if not already. [2] Audio files and transcript files must be in separate
106+
* buckets / folders. [3] A source file and its corresponding audio file must share the same name
107+
* to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and
108+
* `gs://bucket/audio/conversation1.mp3`.
96109
* @param audioBucketUri audioBucketUri or {@code null} for none
97110
*/
98111
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource setAudioBucketUri(java.lang.String audioBucketUri) {
@@ -101,15 +114,17 @@ public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSour
101114
}
102115

103116
/**
104-
* Optional. Specifies the type of the objects in `bucket_uri`.
117+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
118+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
105119
* @return value or {@code null} for none
106120
*/
107121
public java.lang.String getBucketObjectType() {
108122
return bucketObjectType;
109123
}
110124

111125
/**
112-
* Optional. Specifies the type of the objects in `bucket_uri`.
126+
* Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing this. This is
127+
* inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
113128
* @param bucketObjectType bucketObjectType or {@code null} for none
114129
*/
115130
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource setBucketObjectType(java.lang.String bucketObjectType) {
@@ -118,15 +133,17 @@ public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSour
118133
}
119134

120135
/**
121-
* Required. The Cloud Storage bucket containing source objects.
136+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
137+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
122138
* @return value or {@code null} for none
123139
*/
124140
public java.lang.String getBucketUri() {
125141
return bucketUri;
126142
}
127143

128144
/**
129-
* Required. The Cloud Storage bucket containing source objects.
145+
* Optional. The Cloud Storage bucket containing source objects. Avoid passing this. Pass this
146+
* through one of `transcript_bucket_uri` or `audio_bucket_uri`.
130147
* @param bucketUri bucketUri or {@code null} for none
131148
*/
132149
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource setBucketUri(java.lang.String bucketUri) {
@@ -180,6 +197,31 @@ public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSour
180197
return this;
181198
}
182199

200+
/**
201+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
202+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
203+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
204+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
205+
* `gs://bucket/metadata/conversation1.json`.
206+
* @return value or {@code null} for none
207+
*/
208+
public java.lang.String getTranscriptBucketUri() {
209+
return transcriptBucketUri;
210+
}
211+
212+
/**
213+
* Optional. The Cloud Storage path to the conversation transcripts. Note that: [1] Transcript
214+
* files are expected to be in JSON format. [2] Transcript, audio, metadata files must be in
215+
* separate buckets / folders. [3] A source file and its corresponding metadata file must share
216+
* the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and
217+
* `gs://bucket/metadata/conversation1.json`.
218+
* @param transcriptBucketUri transcriptBucketUri or {@code null} for none
219+
*/
220+
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource setTranscriptBucketUri(java.lang.String transcriptBucketUri) {
221+
this.transcriptBucketUri = transcriptBucketUri;
222+
return this;
223+
}
224+
183225
@Override
184226
public GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource set(String fieldName, Object value) {
185227
return (GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource) super.set(fieldName, value);

clients/google-api-services-contactcenterinsights/v1/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-contactcenterinsights</artifactId>
11-
<version>v1-rev20250711-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250711-2.0.0</name>
11+
<version>v1-rev20250721-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250721-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)