Skip to content

Commit b2f34d4

Browse files
1 parent 90f4158 commit b2f34d4

File tree

33 files changed

+2028
-2038
lines changed

33 files changed

+2028
-2038
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-rev20260317-2.0.0</version>
25+
<version>v1-rev20260322-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-rev20260317-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20260322-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 1798 additions & 1762 deletions
Large diffs are not rendered by default.

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

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ public final class GoogleCloudDiscoveryengineV1DataConnector extends com.google.
155155

156156
/**
157157
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
158-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
159-
* This field is derived from both the DataConnector.params, and connector source spec. It should
160-
* only be used for CAIS and Org Policy evaluation purposes.
158+
* derived from the customer provided instance URL and default per connector type FQDNs.
161159
* The value may be {@code null}.
162160
*/
163161
@com.google.api.client.util.Key
@@ -276,7 +274,7 @@ public final class GoogleCloudDiscoveryengineV1DataConnector extends com.google.
276274
private String latestPauseTime;
277275

278276
/**
279-
* Output only. The full resource name of the Data Connector. Format:
277+
* Identifier. The full resource name of the Data Connector. Format:
280278
* `projects/locations/collections/dataConnector`.
281279
* The value may be {@code null}.
282280
*/
@@ -379,8 +377,7 @@ public final class GoogleCloudDiscoveryengineV1DataConnector extends com.google.
379377
private String updateTime;
380378

381379
/**
382-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
383-
* evaluation purpose.
380+
* Output only. Whether the connector is created with VPC-SC enabled.
384381
* The value may be {@code null}.
385382
*/
386383
@com.google.api.client.util.Key
@@ -660,9 +657,7 @@ public GoogleCloudDiscoveryengineV1DataConnector setDynamicTools(java.util.List<
660657

661658
/**
662659
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
663-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
664-
* This field is derived from both the DataConnector.params, and connector source spec. It should
665-
* only be used for CAIS and Org Policy evaluation purposes.
660+
* derived from the customer provided instance URL and default per connector type FQDNs.
666661
* @return value or {@code null} for none
667662
*/
668663
public java.util.List<java.lang.String> getEgressFqdns() {
@@ -671,9 +666,7 @@ public java.util.List<java.lang.String> getEgressFqdns() {
671666

672667
/**
673668
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
674-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
675-
* This field is derived from both the DataConnector.params, and connector source spec. It should
676-
* only be used for CAIS and Org Policy evaluation purposes.
669+
* derived from the customer provided instance URL and default per connector type FQDNs.
677670
* @param egressFqdns egressFqdns or {@code null} for none
678671
*/
679672
public GoogleCloudDiscoveryengineV1DataConnector setEgressFqdns(java.util.List<java.lang.String> egressFqdns) {
@@ -945,7 +938,7 @@ public GoogleCloudDiscoveryengineV1DataConnector setLatestPauseTime(String lates
945938
}
946939

947940
/**
948-
* Output only. The full resource name of the Data Connector. Format:
941+
* Identifier. The full resource name of the Data Connector. Format:
949942
* `projects/locations/collections/dataConnector`.
950943
* @return value or {@code null} for none
951944
*/
@@ -954,7 +947,7 @@ public java.lang.String getName() {
954947
}
955948

956949
/**
957-
* Output only. The full resource name of the Data Connector. Format:
950+
* Identifier. The full resource name of the Data Connector. Format:
958951
* `projects/locations/collections/dataConnector`.
959952
* @param name name or {@code null} for none
960953
*/
@@ -1190,17 +1183,15 @@ public GoogleCloudDiscoveryengineV1DataConnector setUpdateTime(String updateTime
11901183
}
11911184

11921185
/**
1193-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
1194-
* evaluation purpose.
1186+
* Output only. Whether the connector is created with VPC-SC enabled.
11951187
* @return value or {@code null} for none
11961188
*/
11971189
public java.lang.Boolean getVpcscEnabled() {
11981190
return vpcscEnabled;
11991191
}
12001192

12011193
/**
1202-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
1203-
* evaluation purpose.
1194+
* Output only. Whether the connector is created with VPC-SC enabled.
12041195
* @param vpcscEnabled vpcscEnabled or {@code null} for none
12051196
*/
12061197
public GoogleCloudDiscoveryengineV1DataConnector setVpcscEnabled(java.lang.Boolean vpcscEnabled) {

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,10 @@ public final class GoogleCloudDiscoveryengineV1Document extends com.google.api.c
7171
private GoogleCloudDiscoveryengineV1DocumentIndexStatus indexStatus;
7272

7373
/**
74-
* Output only. The last time the document was indexed. If this field is set, the document could
75-
* be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it
76-
* means the document has never been indexed.
74+
* Output only. The time when the document was last indexed. If this field is populated, it means
75+
* the document has been indexed. While documents typically become searchable within seconds of
76+
* indexing, it can sometimes take up to a few hours. If this field is not populated, it means the
77+
* document has never been indexed.
7778
* The value may be {@code null}.
7879
*/
7980
@com.google.api.client.util.Key
@@ -218,19 +219,21 @@ public GoogleCloudDiscoveryengineV1Document setIndexStatus(GoogleCloudDiscoverye
218219
}
219220

220221
/**
221-
* Output only. The last time the document was indexed. If this field is set, the document could
222-
* be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it
223-
* means the document has never been indexed.
222+
* Output only. The time when the document was last indexed. If this field is populated, it means
223+
* the document has been indexed. While documents typically become searchable within seconds of
224+
* indexing, it can sometimes take up to a few hours. If this field is not populated, it means the
225+
* document has never been indexed.
224226
* @return value or {@code null} for none
225227
*/
226228
public String getIndexTime() {
227229
return indexTime;
228230
}
229231

230232
/**
231-
* Output only. The last time the document was indexed. If this field is set, the document could
232-
* be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it
233-
* means the document has never been indexed.
233+
* Output only. The time when the document was last indexed. If this field is populated, it means
234+
* the document has been indexed. While documents typically become searchable within seconds of
235+
* indexing, it can sometimes take up to a few hours. If this field is not populated, it means the
236+
* document has never been indexed.
234237
* @param indexTime indexTime or {@code null} for none
235238
*/
236239
public GoogleCloudDiscoveryengineV1Document setIndexTime(String indexTime) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ public final class GoogleCloudDiscoveryengineV1DocumentIndexStatus extends com.g
3939

4040
/**
4141
* The time when the document was indexed. If this field is populated, it means the document has
42-
* been indexed.
42+
* been indexed. While documents typically become searchable within seconds of indexing, it can
43+
* sometimes take up to a few hours.
4344
* The value may be {@code null}.
4445
*/
4546
@com.google.api.client.util.Key
@@ -74,7 +75,8 @@ public GoogleCloudDiscoveryengineV1DocumentIndexStatus setErrorSamples(java.util
7475

7576
/**
7677
* The time when the document was indexed. If this field is populated, it means the document has
77-
* been indexed.
78+
* been indexed. While documents typically become searchable within seconds of indexing, it can
79+
* sometimes take up to a few hours.
7880
* @return value or {@code null} for none
7981
*/
8082
public String getIndexTime() {
@@ -83,7 +85,8 @@ public String getIndexTime() {
8385

8486
/**
8587
* The time when the document was indexed. If this field is populated, it means the document has
86-
* been indexed.
88+
* been indexed. While documents typically become searchable within seconds of indexing, it can
89+
* sometimes take up to a few hours.
8790
* @param indexTime indexTime or {@code null} for none
8891
*/
8992
public GoogleCloudDiscoveryengineV1DocumentIndexStatus setIndexTime(String indexTime) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public final class GoogleCloudDiscoveryengineV1ImportUserEventsMetadata extends
5252
private java.lang.Long successCount;
5353

5454
/**
55-
* Operation last update time. If the operation is done, this is also the finish time.
55+
* Output only. Operation last update time. If the operation is done, this is also the finish
56+
* time.
5657
* The value may be {@code null}.
5758
*/
5859
@com.google.api.client.util.Key
@@ -110,15 +111,17 @@ public GoogleCloudDiscoveryengineV1ImportUserEventsMetadata setSuccessCount(java
110111
}
111112

112113
/**
113-
* Operation last update time. If the operation is done, this is also the finish time.
114+
* Output only. Operation last update time. If the operation is done, this is also the finish
115+
* time.
114116
* @return value or {@code null} for none
115117
*/
116118
public String getUpdateTime() {
117119
return updateTime;
118120
}
119121

120122
/**
121-
* Operation last update time. If the operation is done, this is also the finish time.
123+
* Output only. Operation last update time. If the operation is done, this is also the finish
124+
* time.
122125
* @param updateTime updateTime or {@code null} for none
123126
*/
124127
public GoogleCloudDiscoveryengineV1ImportUserEventsMetadata setUpdateTime(String updateTime) {

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

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,7 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
162162

163163
/**
164164
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
165-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
166-
* This field is derived from both the DataConnector.params, and connector source spec. It should
167-
* only be used for CAIS and Org Policy evaluation purposes.
165+
* derived from the customer provided instance URL and default per connector type FQDNs.
168166
* The value may be {@code null}.
169167
*/
170168
@com.google.api.client.util.Key
@@ -283,7 +281,7 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
283281
private String latestPauseTime;
284282

285283
/**
286-
* Output only. The full resource name of the Data Connector. Format:
284+
* Identifier. The full resource name of the Data Connector. Format:
287285
* `projects/locations/collections/dataConnector`.
288286
* The value may be {@code null}.
289287
*/
@@ -386,8 +384,7 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
386384
private String updateTime;
387385

388386
/**
389-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
390-
* evaluation purpose.
387+
* Output only. Whether the connector is created with VPC-SC enabled.
391388
* The value may be {@code null}.
392389
*/
393390
@com.google.api.client.util.Key
@@ -684,9 +681,7 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setDynamicTools(java.util.
684681

685682
/**
686683
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
687-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
688-
* This field is derived from both the DataConnector.params, and connector source spec. It should
689-
* only be used for CAIS and Org Policy evaluation purposes.
684+
* derived from the customer provided instance URL and default per connector type FQDNs.
690685
* @return value or {@code null} for none
691686
*/
692687
public java.util.List<java.lang.String> getEgressFqdns() {
@@ -695,9 +690,7 @@ public java.util.List<java.lang.String> getEgressFqdns() {
695690

696691
/**
697692
* Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN
698-
* derived from the customer provided instance URL and default per connector type FQDNs. Note:
699-
* This field is derived from both the DataConnector.params, and connector source spec. It should
700-
* only be used for CAIS and Org Policy evaluation purposes.
693+
* derived from the customer provided instance URL and default per connector type FQDNs.
701694
* @param egressFqdns egressFqdns or {@code null} for none
702695
*/
703696
public GoogleCloudDiscoveryengineV1alphaDataConnector setEgressFqdns(java.util.List<java.lang.String> egressFqdns) {
@@ -969,7 +962,7 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setLatestPauseTime(String
969962
}
970963

971964
/**
972-
* Output only. The full resource name of the Data Connector. Format:
965+
* Identifier. The full resource name of the Data Connector. Format:
973966
* `projects/locations/collections/dataConnector`.
974967
* @return value or {@code null} for none
975968
*/
@@ -978,7 +971,7 @@ public java.lang.String getName() {
978971
}
979972

980973
/**
981-
* Output only. The full resource name of the Data Connector. Format:
974+
* Identifier. The full resource name of the Data Connector. Format:
982975
* `projects/locations/collections/dataConnector`.
983976
* @param name name or {@code null} for none
984977
*/
@@ -1214,17 +1207,15 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setUpdateTime(String updat
12141207
}
12151208

12161209
/**
1217-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
1218-
* evaluation purpose.
1210+
* Output only. Whether the connector is created with VPC-SC enabled.
12191211
* @return value or {@code null} for none
12201212
*/
12211213
public java.lang.Boolean getVpcscEnabled() {
12221214
return vpcscEnabled;
12231215
}
12241216

12251217
/**
1226-
* Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP
1227-
* evaluation purpose.
1218+
* Output only. Whether the connector is created with VPC-SC enabled.
12281219
* @param vpcscEnabled vpcscEnabled or {@code null} for none
12291220
*/
12301221
public GoogleCloudDiscoveryengineV1alphaDataConnector setVpcscEnabled(java.lang.Boolean vpcscEnabled) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public final class GoogleCloudDiscoveryengineV1alphaImportUserEventsMetadata ext
5252
private java.lang.Long successCount;
5353

5454
/**
55-
* Operation last update time. If the operation is done, this is also the finish time.
55+
* Output only. Operation last update time. If the operation is done, this is also the finish
56+
* time.
5657
* The value may be {@code null}.
5758
*/
5859
@com.google.api.client.util.Key
@@ -110,15 +111,17 @@ public GoogleCloudDiscoveryengineV1alphaImportUserEventsMetadata setSuccessCount
110111
}
111112

112113
/**
113-
* Operation last update time. If the operation is done, this is also the finish time.
114+
* Output only. Operation last update time. If the operation is done, this is also the finish
115+
* time.
114116
* @return value or {@code null} for none
115117
*/
116118
public String getUpdateTime() {
117119
return updateTime;
118120
}
119121

120122
/**
121-
* Operation last update time. If the operation is done, this is also the finish time.
123+
* Output only. Operation last update time. If the operation is done, this is also the finish
124+
* time.
122125
* @param updateTime updateTime or {@code null} for none
123126
*/
124127
public GoogleCloudDiscoveryengineV1alphaImportUserEventsMetadata setUpdateTime(String updateTime) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public final class GoogleCloudDiscoveryengineV1betaImportUserEventsMetadata exte
5252
private java.lang.Long successCount;
5353

5454
/**
55-
* Operation last update time. If the operation is done, this is also the finish time.
55+
* Output only. Operation last update time. If the operation is done, this is also the finish
56+
* time.
5657
* The value may be {@code null}.
5758
*/
5859
@com.google.api.client.util.Key
@@ -110,15 +111,17 @@ public GoogleCloudDiscoveryengineV1betaImportUserEventsMetadata setSuccessCount(
110111
}
111112

112113
/**
113-
* Operation last update time. If the operation is done, this is also the finish time.
114+
* Output only. Operation last update time. If the operation is done, this is also the finish
115+
* time.
114116
* @return value or {@code null} for none
115117
*/
116118
public String getUpdateTime() {
117119
return updateTime;
118120
}
119121

120122
/**
121-
* Operation last update time. If the operation is done, this is also the finish time.
123+
* Output only. Operation last update time. If the operation is done, this is also the finish
124+
* time.
122125
* @param updateTime updateTime or {@code null} for none
123126
*/
124127
public GoogleCloudDiscoveryengineV1betaImportUserEventsMetadata setUpdateTime(String updateTime) {

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-rev20260317-2.0.0</version>
12-
<name>Discovery Engine API v1-rev20260317-2.0.0</name>
11+
<version>v1-rev20260322-2.0.0</version>
12+
<name>Discovery Engine API v1-rev20260322-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)