Skip to content

Commit 5aa7d20

Browse files
1 parent f7bbd7a commit 5aa7d20

18 files changed

+630
-18
lines changed

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

clients/google-api-services-discoveryengine/v1/2.0.0/com/google/api/services/discoveryengine/v1/model/GoogleCloudDiscoveryengineV1Chunk.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudDiscoveryengineV1Chunk extends com.google.api.clie
3737
@com.google.api.client.util.Key
3838
private java.util.List<java.lang.String> annotationContents;
3939

40+
/**
41+
* Output only. The annotation metadata includes structured content in the current chunk.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata> annotationMetadata;
46+
4047
/**
4148
* Output only. Metadata of the current chunk.
4249
* The value may be {@code null}.
@@ -123,6 +130,23 @@ public GoogleCloudDiscoveryengineV1Chunk setAnnotationContents(java.util.List<ja
123130
return this;
124131
}
125132

133+
/**
134+
* Output only. The annotation metadata includes structured content in the current chunk.
135+
* @return value or {@code null} for none
136+
*/
137+
public java.util.List<GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata> getAnnotationMetadata() {
138+
return annotationMetadata;
139+
}
140+
141+
/**
142+
* Output only. The annotation metadata includes structured content in the current chunk.
143+
* @param annotationMetadata annotationMetadata or {@code null} for none
144+
*/
145+
public GoogleCloudDiscoveryengineV1Chunk setAnnotationMetadata(java.util.List<GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata> annotationMetadata) {
146+
this.annotationMetadata = annotationMetadata;
147+
return this;
148+
}
149+
126150
/**
127151
* Output only. Metadata of the current chunk.
128152
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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.discoveryengine.v1.model;
18+
19+
/**
20+
* The annotation metadata includes structured content in the current chunk.
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 Discovery Engine API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Image id is provided if the structured content is based on an image.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String imageId;
38+
39+
/**
40+
* Output only. The structured content information.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudDiscoveryengineV1ChunkStructuredContent structuredContent;
45+
46+
/**
47+
* Output only. Image id is provided if the structured content is based on an image.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getImageId() {
51+
return imageId;
52+
}
53+
54+
/**
55+
* Output only. Image id is provided if the structured content is based on an image.
56+
* @param imageId imageId or {@code null} for none
57+
*/
58+
public GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata setImageId(java.lang.String imageId) {
59+
this.imageId = imageId;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. The structured content information.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudDiscoveryengineV1ChunkStructuredContent getStructuredContent() {
68+
return structuredContent;
69+
}
70+
71+
/**
72+
* Output only. The structured content information.
73+
* @param structuredContent structuredContent or {@code null} for none
74+
*/
75+
public GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata setStructuredContent(GoogleCloudDiscoveryengineV1ChunkStructuredContent structuredContent) {
76+
this.structuredContent = structuredContent;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata set(String fieldName, Object value) {
82+
return (GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata clone() {
87+
return (GoogleCloudDiscoveryengineV1ChunkAnnotationMetadata) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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.discoveryengine.v1.model;
18+
19+
/**
20+
* The structured content information.
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 Discovery Engine API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudDiscoveryengineV1ChunkStructuredContent extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The content of the structured content.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String content;
38+
39+
/**
40+
* Output only. The structure type of the structured content.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String structureType;
45+
46+
/**
47+
* Output only. The content of the structured content.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getContent() {
51+
return content;
52+
}
53+
54+
/**
55+
* Output only. The content of the structured content.
56+
* @param content content or {@code null} for none
57+
*/
58+
public GoogleCloudDiscoveryengineV1ChunkStructuredContent setContent(java.lang.String content) {
59+
this.content = content;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. The structure type of the structured content.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getStructureType() {
68+
return structureType;
69+
}
70+
71+
/**
72+
* Output only. The structure type of the structured content.
73+
* @param structureType structureType or {@code null} for none
74+
*/
75+
public GoogleCloudDiscoveryengineV1ChunkStructuredContent setStructureType(java.lang.String structureType) {
76+
this.structureType = structureType;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudDiscoveryengineV1ChunkStructuredContent set(String fieldName, Object value) {
82+
return (GoogleCloudDiscoveryengineV1ChunkStructuredContent) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudDiscoveryengineV1ChunkStructuredContent clone() {
87+
return (GoogleCloudDiscoveryengineV1ChunkStructuredContent) super.clone();
88+
}
89+
90+
}

clients/google-api-services-discoveryengine/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-discoveryengine</artifactId>
11-
<version>v1-rev20250514-2.0.0</version>
12-
<name>Discovery Engine API v1-rev20250514-2.0.0</name>
11+
<version>v1-rev20250519-2.0.0</version>
12+
<name>Discovery Engine API v1-rev20250519-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-discoveryengine/v1alpha/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-discoveryengine</artifactId>
25-
<version>v1alpha-rev20250514-2.0.0</version>
25+
<version>v1alpha-rev20250519-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-discoveryengine:v1alpha-rev20250514-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250519-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1alpha/2.0.0/com/google/api/services/discoveryengine/v1alpha/model/GoogleCloudDiscoveryengineV1alphaChunk.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudDiscoveryengineV1alphaChunk extends com.google.api
3737
@com.google.api.client.util.Key
3838
private java.util.List<java.lang.String> annotationContents;
3939

40+
/**
41+
* Output only. The annotation metadata includes structured content in the current chunk.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata> annotationMetadata;
46+
4047
/**
4148
* Output only. Metadata of the current chunk.
4249
* The value may be {@code null}.
@@ -123,6 +130,23 @@ public GoogleCloudDiscoveryengineV1alphaChunk setAnnotationContents(java.util.Li
123130
return this;
124131
}
125132

133+
/**
134+
* Output only. The annotation metadata includes structured content in the current chunk.
135+
* @return value or {@code null} for none
136+
*/
137+
public java.util.List<GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata> getAnnotationMetadata() {
138+
return annotationMetadata;
139+
}
140+
141+
/**
142+
* Output only. The annotation metadata includes structured content in the current chunk.
143+
* @param annotationMetadata annotationMetadata or {@code null} for none
144+
*/
145+
public GoogleCloudDiscoveryengineV1alphaChunk setAnnotationMetadata(java.util.List<GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata> annotationMetadata) {
146+
this.annotationMetadata = annotationMetadata;
147+
return this;
148+
}
149+
126150
/**
127151
* Output only. Metadata of the current chunk.
128152
* @return value or {@code null} for none

0 commit comments

Comments
 (0)