Skip to content

Commit 097443d

Browse files
1 parent d8de05e commit 097443d

File tree

13 files changed

+242
-15
lines changed

13 files changed

+242
-15
lines changed

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

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/Datastream.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,6 +2510,40 @@ public List setPageToken(java.lang.String pageToken) {
25102510
return this;
25112511
}
25122512

2513+
/**
2514+
* When set to `true`, operations that are reachable are returned as normal, and those
2515+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2516+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2517+
* `"projects/example/locations/-"`. This field is not by default supported and will
2518+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2519+
* service or product specific documentation.
2520+
*/
2521+
@com.google.api.client.util.Key
2522+
private java.lang.Boolean returnPartialSuccess;
2523+
2524+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2525+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2526+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2527+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2528+
explicitly documented otherwise in service or product specific documentation.
2529+
*/
2530+
public java.lang.Boolean getReturnPartialSuccess() {
2531+
return returnPartialSuccess;
2532+
}
2533+
2534+
/**
2535+
* When set to `true`, operations that are reachable are returned as normal, and those
2536+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2537+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2538+
* `"projects/example/locations/-"`. This field is not by default supported and will
2539+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2540+
* service or product specific documentation.
2541+
*/
2542+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2543+
this.returnPartialSuccess = returnPartialSuccess;
2544+
return this;
2545+
}
2546+
25132547
@Override
25142548
public List set(String parameterName, Object value) {
25152549
return (List) super.set(parameterName, value);
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.datastream.v1.model;
18+
19+
/**
20+
* Represents a filter for included data on a stream object.
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 Datastream 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 EventFilter extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* An SQL-query Where clause selecting which data should be included, not including the "WHERE"
34+
* keyword. E.g., "t.key1 = 'value1' AND t.key2 = 'value2'".
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String sqlWhereClause;
39+
40+
/**
41+
* An SQL-query Where clause selecting which data should be included, not including the "WHERE"
42+
* keyword. E.g., "t.key1 = 'value1' AND t.key2 = 'value2'".
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getSqlWhereClause() {
46+
return sqlWhereClause;
47+
}
48+
49+
/**
50+
* An SQL-query Where clause selecting which data should be included, not including the "WHERE"
51+
* keyword. E.g., "t.key1 = 'value1' AND t.key2 = 'value2'".
52+
* @param sqlWhereClause sqlWhereClause or {@code null} for none
53+
*/
54+
public EventFilter setSqlWhereClause(java.lang.String sqlWhereClause) {
55+
this.sqlWhereClause = sqlWhereClause;
56+
return this;
57+
}
58+
59+
@Override
60+
public EventFilter set(String fieldName, Object value) {
61+
return (EventFilter) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public EventFilter clone() {
66+
return (EventFilter) super.clone();
67+
}
68+
69+
}

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/MongodbChangeStreamPosition.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@
3030
public final class MongodbChangeStreamPosition extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The timestamp (in epoch seconds) to start change stream from.
33+
* Required. The timestamp to start change stream from.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private String startTime;
3838

3939
/**
40-
* Required. The timestamp (in epoch seconds) to start change stream from.
40+
* Required. The timestamp to start change stream from.
4141
* @return value or {@code null} for none
4242
*/
4343
public String getStartTime() {
4444
return startTime;
4545
}
4646

4747
/**
48-
* Required. The timestamp (in epoch seconds) to start change stream from.
48+
* Required. The timestamp to start change stream from.
4949
* @param startTime startTime or {@code null} for none
5050
*/
5151
public MongodbChangeStreamPosition setStartTime(String startTime) {

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/StartBackfillJobRequest.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,36 @@
2929
@SuppressWarnings("javadoc")
3030
public final class StartBackfillJobRequest extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Optional event filter. If not set, or empty, the backfill will be performed on the
34+
* entire object. This is currently used for partial backfill and only supported for SQL Server
35+
* sources.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private EventFilter eventFilter;
40+
41+
/**
42+
* Optional. Optional event filter. If not set, or empty, the backfill will be performed on the
43+
* entire object. This is currently used for partial backfill and only supported for SQL Server
44+
* sources.
45+
* @return value or {@code null} for none
46+
*/
47+
public EventFilter getEventFilter() {
48+
return eventFilter;
49+
}
50+
51+
/**
52+
* Optional. Optional event filter. If not set, or empty, the backfill will be performed on the
53+
* entire object. This is currently used for partial backfill and only supported for SQL Server
54+
* sources.
55+
* @param eventFilter eventFilter or {@code null} for none
56+
*/
57+
public StartBackfillJobRequest setEventFilter(EventFilter eventFilter) {
58+
this.eventFilter = eventFilter;
59+
return this;
60+
}
61+
3262
@Override
3363
public StartBackfillJobRequest set(String fieldName, Object value) {
3464
return (StartBackfillJobRequest) super.set(fieldName, value);

clients/google-api-services-datastream/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-datastream</artifactId>
11-
<version>v1-rev20250827-2.0.0</version>
12-
<name>Datastream API v1-rev20250827-2.0.0</name>
11+
<version>v1-rev20251021-2.0.0</version>
12+
<name>Datastream API v1-rev20251021-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-datastream/v1alpha1/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-datastream</artifactId>
25-
<version>v1alpha1-rev20250817-2.0.0</version>
25+
<version>v1alpha1-rev20251021-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-datastream:v1alpha1-rev20250817-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1alpha1-rev20251021-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datastream/v1alpha1/2.0.0/com/google/api/services/datastream/v1alpha1/Datastream.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,6 +2452,40 @@ public List setPageToken(java.lang.String pageToken) {
24522452
return this;
24532453
}
24542454

2455+
/**
2456+
* When set to `true`, operations that are reachable are returned as normal, and those
2457+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2458+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2459+
* `"projects/example/locations/-"`. This field is not by default supported and will
2460+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2461+
* service or product specific documentation.
2462+
*/
2463+
@com.google.api.client.util.Key
2464+
private java.lang.Boolean returnPartialSuccess;
2465+
2466+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2467+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2468+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2469+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2470+
explicitly documented otherwise in service or product specific documentation.
2471+
*/
2472+
public java.lang.Boolean getReturnPartialSuccess() {
2473+
return returnPartialSuccess;
2474+
}
2475+
2476+
/**
2477+
* When set to `true`, operations that are reachable are returned as normal, and those
2478+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2479+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2480+
* `"projects/example/locations/-"`. This field is not by default supported and will
2481+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2482+
* service or product specific documentation.
2483+
*/
2484+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2485+
this.returnPartialSuccess = returnPartialSuccess;
2486+
return this;
2487+
}
2488+
24552489
@Override
24562490
public List set(String parameterName, Object value) {
24572491
return (List) super.set(parameterName, value);

0 commit comments

Comments
 (0)