Skip to content

Commit b02e097

Browse files
1 parent ef7df3f commit b02e097

File tree

39 files changed

+759
-192
lines changed

39 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public final class GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingCo
6464
@com.google.api.client.util.Key
6565
private java.util.List<java.lang.String> excludeHtmlIds;
6666

67+
/**
68+
* Optional. Contains the required structure types to extract from the document. Supported values:
69+
* * `shareholder-structure`
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.util.List<java.lang.String> structuredContentTypes;
74+
6775
/**
6876
* Optional. If true, the LLM based annotation is added to the image during parsing.
6977
* @return value or {@code null} for none
@@ -149,6 +157,25 @@ public GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutPa
149157
return this;
150158
}
151159

160+
/**
161+
* Optional. Contains the required structure types to extract from the document. Supported values:
162+
* * `shareholder-structure`
163+
* @return value or {@code null} for none
164+
*/
165+
public java.util.List<java.lang.String> getStructuredContentTypes() {
166+
return structuredContentTypes;
167+
}
168+
169+
/**
170+
* Optional. Contains the required structure types to extract from the document. Supported values:
171+
* * `shareholder-structure`
172+
* @param structuredContentTypes structuredContentTypes or {@code null} for none
173+
*/
174+
public GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig setStructuredContentTypes(java.util.List<java.lang.String> structuredContentTypes) {
175+
this.structuredContentTypes = structuredContentTypes;
176+
return this;
177+
}
178+
152179
@Override
153180
public GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig set(String fieldName, Object value) {
154181
return (GoogleCloudDiscoveryengineV1DocumentProcessingConfigParsingConfigLayoutParsingConfig) super.set(fieldName, value);

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ public final class GoogleCloudDiscoveryengineV1Engine extends com.google.api.cli
8484
@com.google.api.client.util.Key
8585
private java.lang.String displayName;
8686

87+
/**
88+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
89+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
90+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
91+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
92+
* The value may be {@code null}.
93+
*/
94+
@com.google.api.client.util.Key
95+
private java.util.Map<String, java.lang.String> features;
96+
8797
/**
8898
* Optional. The industry vertical that the engine registers. The restriction of the Engine
8999
* industry vertical is based on DataStore: Vertical on Engine has to match vertical of the
@@ -264,6 +274,29 @@ public GoogleCloudDiscoveryengineV1Engine setDisplayName(java.lang.String displa
264274
return this;
265275
}
266276

277+
/**
278+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
279+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
280+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
281+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
282+
* @return value or {@code null} for none
283+
*/
284+
public java.util.Map<String, java.lang.String> getFeatures() {
285+
return features;
286+
}
287+
288+
/**
289+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
290+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
291+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
292+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
293+
* @param features features or {@code null} for none
294+
*/
295+
public GoogleCloudDiscoveryengineV1Engine setFeatures(java.util.Map<String, java.lang.String> features) {
296+
this.features = features;
297+
return this;
298+
}
299+
267300
/**
268301
* Optional. The industry vertical that the engine registers. The restriction of the Engine
269302
* industry vertical is based on DataStore: Vertical on Engine has to match vertical of the

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

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,6 @@ public final class GoogleCloudDiscoveryengineV1UserLicense extends com.google.ap
6767
@com.google.api.client.util.Key
6868
private String updateTime;
6969

70-
/**
71-
* Optional. The full resource name of the User, in the format of
72-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
73-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
74-
* empty, it's indicating the user has not logged in yet and no User entity is created.
75-
* The value may be {@code null}.
76-
*/
77-
@com.google.api.client.util.Key
78-
private java.lang.String user;
79-
8070
/**
8171
* Required. Immutable. The user principal of the User, could be email address or other prinical
8272
* identifier. This field is immutable. Admin assign licenses based on the user principal.
@@ -183,29 +173,6 @@ public GoogleCloudDiscoveryengineV1UserLicense setUpdateTime(String updateTime)
183173
return this;
184174
}
185175

186-
/**
187-
* Optional. The full resource name of the User, in the format of
188-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
189-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
190-
* empty, it's indicating the user has not logged in yet and no User entity is created.
191-
* @return value or {@code null} for none
192-
*/
193-
public java.lang.String getUser() {
194-
return user;
195-
}
196-
197-
/**
198-
* Optional. The full resource name of the User, in the format of
199-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
200-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
201-
* empty, it's indicating the user has not logged in yet and no User entity is created.
202-
* @param user user or {@code null} for none
203-
*/
204-
public GoogleCloudDiscoveryengineV1UserLicense setUser(java.lang.String user) {
205-
this.user = user;
206-
return this;
207-
}
208-
209176
/**
210177
* Required. Immutable. The user principal of the User, could be email address or other prinical
211178
* identifier. This field is immutable. Admin assign licenses based on the user principal.

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public final class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun extend
5959
private java.util.List<GoogleRpcStatus> errors;
6060

6161
/**
62-
* The number of documents extracted from connector source, ready to be ingested to UCS.
62+
* The number of documents extracted from connector source, ready to be ingested to VAIS.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -79,6 +79,14 @@ public final class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun extend
7979
@com.google.api.client.util.Key
8080
private GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress progress;
8181

82+
/**
83+
* The number of documents scheduled to be crawled/extracted from connector source. This only
84+
* applies to third party connectors.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
88+
private java.lang.Long scheduledRecordCount;
89+
8290
/**
8391
* The number of requests sent to 3p API.
8492
* The value may be {@code null}.
@@ -186,15 +194,15 @@ public GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun setErrors(java.uti
186194
}
187195

188196
/**
189-
* The number of documents extracted from connector source, ready to be ingested to UCS.
197+
* The number of documents extracted from connector source, ready to be ingested to VAIS.
190198
* @return value or {@code null} for none
191199
*/
192200
public java.lang.Long getExtractedRecordCount() {
193201
return extractedRecordCount;
194202
}
195203

196204
/**
197-
* The number of documents extracted from connector source, ready to be ingested to UCS.
205+
* The number of documents extracted from connector source, ready to be ingested to VAIS.
198206
* @param extractedRecordCount extractedRecordCount or {@code null} for none
199207
*/
200208
public GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun setExtractedRecordCount(java.lang.Long extractedRecordCount) {
@@ -236,6 +244,25 @@ public GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun setProgress(Google
236244
return this;
237245
}
238246

247+
/**
248+
* The number of documents scheduled to be crawled/extracted from connector source. This only
249+
* applies to third party connectors.
250+
* @return value or {@code null} for none
251+
*/
252+
public java.lang.Long getScheduledRecordCount() {
253+
return scheduledRecordCount;
254+
}
255+
256+
/**
257+
* The number of documents scheduled to be crawled/extracted from connector source. This only
258+
* applies to third party connectors.
259+
* @param scheduledRecordCount scheduledRecordCount or {@code null} for none
260+
*/
261+
public GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun setScheduledRecordCount(java.lang.Long scheduledRecordCount) {
262+
this.scheduledRecordCount = scheduledRecordCount;
263+
return this;
264+
}
265+
239266
/**
240267
* The number of requests sent to 3p API.
241268
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public final class GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigPars
6464
@com.google.api.client.util.Key
6565
private java.util.List<java.lang.String> excludeHtmlIds;
6666

67+
/**
68+
* Optional. Contains the required structure types to extract from the document. Supported values:
69+
* * `shareholder-structure`
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.util.List<java.lang.String> structuredContentTypes;
74+
6775
/**
6876
* Optional. If true, the LLM based annotation is added to the image during parsing.
6977
* @return value or {@code null} for none
@@ -149,6 +157,25 @@ public GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLay
149157
return this;
150158
}
151159

160+
/**
161+
* Optional. Contains the required structure types to extract from the document. Supported values:
162+
* * `shareholder-structure`
163+
* @return value or {@code null} for none
164+
*/
165+
public java.util.List<java.lang.String> getStructuredContentTypes() {
166+
return structuredContentTypes;
167+
}
168+
169+
/**
170+
* Optional. Contains the required structure types to extract from the document. Supported values:
171+
* * `shareholder-structure`
172+
* @param structuredContentTypes structuredContentTypes or {@code null} for none
173+
*/
174+
public GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig setStructuredContentTypes(java.util.List<java.lang.String> structuredContentTypes) {
175+
this.structuredContentTypes = structuredContentTypes;
176+
return this;
177+
}
178+
152179
@Override
153180
public GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig set(String fieldName, Object value) {
154181
return (GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigLayoutParsingConfig) super.set(fieldName, value);

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ public final class GoogleCloudDiscoveryengineV1alphaEngine extends com.google.ap
8484
@com.google.api.client.util.Key
8585
private java.lang.String displayName;
8686

87+
/**
88+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
89+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
90+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
91+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
92+
* The value may be {@code null}.
93+
*/
94+
@com.google.api.client.util.Key
95+
private java.util.Map<String, java.lang.String> features;
96+
8797
/**
8898
* Optional. The industry vertical that the engine registers. The restriction of the Engine
8999
* industry vertical is based on DataStore: Vertical on Engine has to match vertical of the
@@ -279,6 +289,29 @@ public GoogleCloudDiscoveryengineV1alphaEngine setDisplayName(java.lang.String d
279289
return this;
280290
}
281291

292+
/**
293+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
294+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
295+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
296+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
297+
* @return value or {@code null} for none
298+
*/
299+
public java.util.Map<String, java.lang.String> getFeatures() {
300+
return features;
301+
}
302+
303+
/**
304+
* Optional. Feature config for the engine to opt in or opt out of features. Supported keys: *
305+
* `*`: all features, if it's present, all other feature state settings are ignored. * `agent-
306+
* gallery` * `no-code-agent-builder` * `prompt-gallery` * `model-selector` * `notebook-lm` *
307+
* `people-search` * `people-search-org-chart` * `bi-directional-audio` * `feedback`
308+
* @param features features or {@code null} for none
309+
*/
310+
public GoogleCloudDiscoveryengineV1alphaEngine setFeatures(java.util.Map<String, java.lang.String> features) {
311+
this.features = features;
312+
return this;
313+
}
314+
282315
/**
283316
* Optional. The industry vertical that the engine registers. The restriction of the Engine
284317
* industry vertical is based on DataStore: Vertical on Engine has to match vertical of the

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ public final class GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata
3939
@com.google.api.client.util.Key
4040
private java.lang.String dataState;
4141

42+
/**
43+
* Output only. The timestamp when the latest successful training finished. Only applicable on
44+
* Media Recommendation engines.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private String lastTrainTime;
49+
4250
/**
4351
* Output only. The timestamp when the latest successful tune finished. Only applicable on Media
4452
* Recommendation engines.
@@ -88,6 +96,25 @@ public GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata setDataStat
8896
return this;
8997
}
9098

99+
/**
100+
* Output only. The timestamp when the latest successful training finished. Only applicable on
101+
* Media Recommendation engines.
102+
* @return value or {@code null} for none
103+
*/
104+
public String getLastTrainTime() {
105+
return lastTrainTime;
106+
}
107+
108+
/**
109+
* Output only. The timestamp when the latest successful training finished. Only applicable on
110+
* Media Recommendation engines.
111+
* @param lastTrainTime lastTrainTime or {@code null} for none
112+
*/
113+
public GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata setLastTrainTime(String lastTrainTime) {
114+
this.lastTrainTime = lastTrainTime;
115+
return this;
116+
}
117+
91118
/**
92119
* Output only. The timestamp when the latest successful tune finished. Only applicable on Media
93120
* Recommendation engines.

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

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,6 @@ public final class GoogleCloudDiscoveryengineV1alphaUserLicense extends com.goog
6767
@com.google.api.client.util.Key
6868
private String updateTime;
6969

70-
/**
71-
* Optional. The full resource name of the User, in the format of
72-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
73-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
74-
* empty, it's indicating the user has not logged in yet and no User entity is created.
75-
* The value may be {@code null}.
76-
*/
77-
@com.google.api.client.util.Key
78-
private java.lang.String user;
79-
8070
/**
8171
* Required. Immutable. The user principal of the User, could be email address or other prinical
8272
* identifier. This field is immutable. Admin assign licenses based on the user principal.
@@ -183,29 +173,6 @@ public GoogleCloudDiscoveryengineV1alphaUserLicense setUpdateTime(String updateT
183173
return this;
184174
}
185175

186-
/**
187-
* Optional. The full resource name of the User, in the format of
188-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
189-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
190-
* empty, it's indicating the user has not logged in yet and no User entity is created.
191-
* @return value or {@code null} for none
192-
*/
193-
public java.lang.String getUser() {
194-
return user;
195-
}
196-
197-
/**
198-
* Optional. The full resource name of the User, in the format of
199-
* `projects/{project}/locations/{location}/userStores/{user_store}/users/{user_id}`. This field
200-
* must be a UTF-8 encoded string with a length limit of 2048 characters. If the user field is
201-
* empty, it's indicating the user has not logged in yet and no User entity is created.
202-
* @param user user or {@code null} for none
203-
*/
204-
public GoogleCloudDiscoveryengineV1alphaUserLicense setUser(java.lang.String user) {
205-
this.user = user;
206-
return this;
207-
}
208-
209176
/**
210177
* Required. Immutable. The user principal of the User, could be email address or other prinical
211178
* identifier. This field is immutable. Admin assign licenses based on the user principal.

0 commit comments

Comments
 (0)