Skip to content

Commit 556a4eb

Browse files
1 parent 5642a04 commit 556a4eb

File tree

12 files changed

+216
-36
lines changed

12 files changed

+216
-36
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-rev20250508-2.0.0</version>
25+
<version>v1-rev20250509-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250509-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 66 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
6161
}
6262

6363
/**
64-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
65-
* and real time sync.
64+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
65+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
66+
* auto_run_disabled is used to pause/disable only full syncs
6667
* The value may be {@code null}.
6768
*/
6869
@com.google.api.client.util.Key
@@ -166,6 +167,23 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
166167
@com.google.api.client.util.Key
167168
private GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig identityScheduleConfig;
168169

170+
/**
171+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
172+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
173+
* days.
174+
* The value may be {@code null}.
175+
*/
176+
@com.google.api.client.util.Key
177+
private String incrementalRefreshInterval;
178+
179+
/**
180+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
181+
* independent of auto_run_disabled.
182+
* The value may be {@code null}.
183+
*/
184+
@com.google.api.client.util.Key
185+
private java.lang.Boolean incrementalSyncDisabled;
186+
169187
/**
170188
* Input only. The KMS key to be used to protect the DataStores managed by this connector. Must be
171189
* set for requests that need to comply with CMEK Org Policy protections. If this field is set and
@@ -357,17 +375,19 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setAlertPolicyConfigs(java
357375
}
358376

359377
/**
360-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
361-
* and real time sync.
378+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
379+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
380+
* auto_run_disabled is used to pause/disable only full syncs
362381
* @return value or {@code null} for none
363382
*/
364383
public java.lang.Boolean getAutoRunDisabled() {
365384
return autoRunDisabled;
366385
}
367386

368387
/**
369-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
370-
* and real time sync.
388+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
389+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
390+
* auto_run_disabled is used to pause/disable only full syncs
371391
* @param autoRunDisabled autoRunDisabled or {@code null} for none
372392
*/
373393
public GoogleCloudDiscoveryengineV1alphaDataConnector setAutoRunDisabled(java.lang.Boolean autoRunDisabled) {
@@ -610,6 +630,46 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setIdentityScheduleConfig(
610630
return this;
611631
}
612632

633+
/**
634+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
635+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
636+
* days.
637+
* @return value or {@code null} for none
638+
*/
639+
public String getIncrementalRefreshInterval() {
640+
return incrementalRefreshInterval;
641+
}
642+
643+
/**
644+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
645+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
646+
* days.
647+
* @param incrementalRefreshInterval incrementalRefreshInterval or {@code null} for none
648+
*/
649+
public GoogleCloudDiscoveryengineV1alphaDataConnector setIncrementalRefreshInterval(String incrementalRefreshInterval) {
650+
this.incrementalRefreshInterval = incrementalRefreshInterval;
651+
return this;
652+
}
653+
654+
/**
655+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
656+
* independent of auto_run_disabled.
657+
* @return value or {@code null} for none
658+
*/
659+
public java.lang.Boolean getIncrementalSyncDisabled() {
660+
return incrementalSyncDisabled;
661+
}
662+
663+
/**
664+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
665+
* independent of auto_run_disabled.
666+
* @param incrementalSyncDisabled incrementalSyncDisabled or {@code null} for none
667+
*/
668+
public GoogleCloudDiscoveryengineV1alphaDataConnector setIncrementalSyncDisabled(java.lang.Boolean incrementalSyncDisabled) {
669+
this.incrementalSyncDisabled = incrementalSyncDisabled;
670+
return this;
671+
}
672+
613673
/**
614674
* Input only. The KMS key to be used to protect the DataStores managed by this connector. Must be
615675
* set for requests that need to comply with CMEK Org Policy protections. If this field is set and

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-rev20250508-2.0.0</version>
12-
<name>Discovery Engine API v1-rev20250508-2.0.0</name>
11+
<version>v1-rev20250509-2.0.0</version>
12+
<name>Discovery Engine API v1-rev20250509-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-rev20250508-2.0.0</version>
25+
<version>v1-rev20250509-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250509-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-rev20250508-2.0.0</version>
25+
<version>v1alpha-rev20250509-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250509-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 66 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
6161
}
6262

6363
/**
64-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
65-
* and real time sync.
64+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
65+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
66+
* auto_run_disabled is used to pause/disable only full syncs
6667
* The value may be {@code null}.
6768
*/
6869
@com.google.api.client.util.Key
@@ -166,6 +167,23 @@ public final class GoogleCloudDiscoveryengineV1alphaDataConnector extends com.go
166167
@com.google.api.client.util.Key
167168
private GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig identityScheduleConfig;
168169

170+
/**
171+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
172+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
173+
* days.
174+
* The value may be {@code null}.
175+
*/
176+
@com.google.api.client.util.Key
177+
private String incrementalRefreshInterval;
178+
179+
/**
180+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
181+
* independent of auto_run_disabled.
182+
* The value may be {@code null}.
183+
*/
184+
@com.google.api.client.util.Key
185+
private java.lang.Boolean incrementalSyncDisabled;
186+
169187
/**
170188
* Input only. The KMS key to be used to protect the DataStores managed by this connector. Must be
171189
* set for requests that need to comply with CMEK Org Policy protections. If this field is set and
@@ -357,17 +375,19 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setAlertPolicyConfigs(java
357375
}
358376

359377
/**
360-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
361-
* and real time sync.
378+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
379+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
380+
* auto_run_disabled is used to pause/disable only full syncs
362381
* @return value or {@code null} for none
363382
*/
364383
public java.lang.Boolean getAutoRunDisabled() {
365384
return autoRunDisabled;
366385
}
367386

368387
/**
369-
* Indicates whether the connector is disabled for auto run. It can be used to pause periodical
370-
* and real time sync.
388+
* Optional. Indicates whether the connector is disabled for auto run. It can be used to pause
389+
* periodical and real time sync. Update: with the introduction of incremental_sync_disabled,
390+
* auto_run_disabled is used to pause/disable only full syncs
371391
* @param autoRunDisabled autoRunDisabled or {@code null} for none
372392
*/
373393
public GoogleCloudDiscoveryengineV1alphaDataConnector setAutoRunDisabled(java.lang.Boolean autoRunDisabled) {
@@ -610,6 +630,46 @@ public GoogleCloudDiscoveryengineV1alphaDataConnector setIdentityScheduleConfig(
610630
return this;
611631
}
612632

633+
/**
634+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
635+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
636+
* days.
637+
* @return value or {@code null} for none
638+
*/
639+
public String getIncrementalRefreshInterval() {
640+
return incrementalRefreshInterval;
641+
}
642+
643+
/**
644+
* Optional. The refresh interval specifically for incremental data syncs. If unset, incremental
645+
* syncs will use the default from env, set to 3hrs. The minimum is 30 minutes and maximum is 7
646+
* days.
647+
* @param incrementalRefreshInterval incrementalRefreshInterval or {@code null} for none
648+
*/
649+
public GoogleCloudDiscoveryengineV1alphaDataConnector setIncrementalRefreshInterval(String incrementalRefreshInterval) {
650+
this.incrementalRefreshInterval = incrementalRefreshInterval;
651+
return this;
652+
}
653+
654+
/**
655+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
656+
* independent of auto_run_disabled.
657+
* @return value or {@code null} for none
658+
*/
659+
public java.lang.Boolean getIncrementalSyncDisabled() {
660+
return incrementalSyncDisabled;
661+
}
662+
663+
/**
664+
* Optional. Indicates whether incremental syncs are paused for this connector. This is
665+
* independent of auto_run_disabled.
666+
* @param incrementalSyncDisabled incrementalSyncDisabled or {@code null} for none
667+
*/
668+
public GoogleCloudDiscoveryengineV1alphaDataConnector setIncrementalSyncDisabled(java.lang.Boolean incrementalSyncDisabled) {
669+
this.incrementalSyncDisabled = incrementalSyncDisabled;
670+
return this;
671+
}
672+
613673
/**
614674
* Input only. The KMS key to be used to protect the DataStores managed by this connector. Must be
615675
* set for requests that need to comply with CMEK Org Policy protections. If this field is set and

clients/google-api-services-discoveryengine/v1alpha/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>v1alpha-rev20250508-2.0.0</version>
12-
<name>Discovery Engine API v1alpha-rev20250508-2.0.0</name>
11+
<version>v1alpha-rev20250509-2.0.0</version>
12+
<name>Discovery Engine API v1alpha-rev20250509-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

0 commit comments

Comments
 (0)