Skip to content

Commit bc1553a

Browse files
1 parent cf0605c commit bc1553a

File tree

22 files changed

+901
-44
lines changed

22 files changed

+901
-44
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-rev20251029-2.0.0</version>
25+
<version>v1-rev20251201-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-rev20251029-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20251201-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: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2512,30 +2512,31 @@ public List setPageToken(java.lang.String pageToken) {
25122512

25132513
/**
25142514
* 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
2515+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2516+
* can only be `true` when reading across collections. For example, when `parent` is set
2517+
* to `"projects/example/locations/-"`. This field is not supported by default and will
25182518
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
25192519
* service or product specific documentation.
25202520
*/
25212521
@com.google.api.client.util.Key
25222522
private java.lang.Boolean returnPartialSuccess;
25232523

25242524
/** 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.
2525+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
2526+
when reading across collections. For example, when `parent` is set to
2527+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
2528+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
2529+
documentation.
25292530
*/
25302531
public java.lang.Boolean getReturnPartialSuccess() {
25312532
return returnPartialSuccess;
25322533
}
25332534

25342535
/**
25352536
* 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
2537+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2538+
* can only be `true` when reading across collections. For example, when `parent` is set
2539+
* to `"projects/example/locations/-"`. This field is not supported by default and will
25392540
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
25402541
* service or product specific documentation.
25412542
*/
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* BigQuery clustering configuration.
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 BigQueryClustering extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Column names to set as clustering columns.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> columns;
38+
39+
/**
40+
* Required. Column names to set as clustering columns.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getColumns() {
44+
return columns;
45+
}
46+
47+
/**
48+
* Required. Column names to set as clustering columns.
49+
* @param columns columns or {@code null} for none
50+
*/
51+
public BigQueryClustering setColumns(java.util.List<java.lang.String> columns) {
52+
this.columns = columns;
53+
return this;
54+
}
55+
56+
@Override
57+
public BigQueryClustering set(String fieldName, Object value) {
58+
return (BigQueryClustering) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public BigQueryClustering clone() {
63+
return (BigQueryClustering) super.clone();
64+
}
65+
66+
}
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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+
* BigQuery partitioning configuration.
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 BigQueryPartitioning extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Ingestion time partitioning.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private IngestionTimePartition ingestionTimePartition;
38+
39+
/**
40+
* Integer range partitioning.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private IntegerRangePartition integerRangePartition;
45+
46+
/**
47+
* Optional. If true, queries over the table require a partition filter.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Boolean requirePartitionFilter;
52+
53+
/**
54+
* Time unit column partitioning.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private TimeUnitPartition timeUnitPartition;
59+
60+
/**
61+
* Ingestion time partitioning.
62+
* @return value or {@code null} for none
63+
*/
64+
public IngestionTimePartition getIngestionTimePartition() {
65+
return ingestionTimePartition;
66+
}
67+
68+
/**
69+
* Ingestion time partitioning.
70+
* @param ingestionTimePartition ingestionTimePartition or {@code null} for none
71+
*/
72+
public BigQueryPartitioning setIngestionTimePartition(IngestionTimePartition ingestionTimePartition) {
73+
this.ingestionTimePartition = ingestionTimePartition;
74+
return this;
75+
}
76+
77+
/**
78+
* Integer range partitioning.
79+
* @return value or {@code null} for none
80+
*/
81+
public IntegerRangePartition getIntegerRangePartition() {
82+
return integerRangePartition;
83+
}
84+
85+
/**
86+
* Integer range partitioning.
87+
* @param integerRangePartition integerRangePartition or {@code null} for none
88+
*/
89+
public BigQueryPartitioning setIntegerRangePartition(IntegerRangePartition integerRangePartition) {
90+
this.integerRangePartition = integerRangePartition;
91+
return this;
92+
}
93+
94+
/**
95+
* Optional. If true, queries over the table require a partition filter.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.Boolean getRequirePartitionFilter() {
99+
return requirePartitionFilter;
100+
}
101+
102+
/**
103+
* Optional. If true, queries over the table require a partition filter.
104+
* @param requirePartitionFilter requirePartitionFilter or {@code null} for none
105+
*/
106+
public BigQueryPartitioning setRequirePartitionFilter(java.lang.Boolean requirePartitionFilter) {
107+
this.requirePartitionFilter = requirePartitionFilter;
108+
return this;
109+
}
110+
111+
/**
112+
* Time unit column partitioning.
113+
* @return value or {@code null} for none
114+
*/
115+
public TimeUnitPartition getTimeUnitPartition() {
116+
return timeUnitPartition;
117+
}
118+
119+
/**
120+
* Time unit column partitioning.
121+
* @param timeUnitPartition timeUnitPartition or {@code null} for none
122+
*/
123+
public BigQueryPartitioning setTimeUnitPartition(TimeUnitPartition timeUnitPartition) {
124+
this.timeUnitPartition = timeUnitPartition;
125+
return this;
126+
}
127+
128+
@Override
129+
public BigQueryPartitioning set(String fieldName, Object value) {
130+
return (BigQueryPartitioning) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public BigQueryPartitioning clone() {
135+
return (BigQueryPartitioning) super.clone();
136+
}
137+
138+
}
Lines changed: 90 additions & 0 deletions
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.datastream.v1.model;
18+
19+
/**
20+
* A customization rule to apply to a set of objects.
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 CustomizationRule extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* BigQuery clustering rule.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private BigQueryClustering bigqueryClustering;
38+
39+
/**
40+
* BigQuery partitioning rule.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private BigQueryPartitioning bigqueryPartitioning;
45+
46+
/**
47+
* BigQuery clustering rule.
48+
* @return value or {@code null} for none
49+
*/
50+
public BigQueryClustering getBigqueryClustering() {
51+
return bigqueryClustering;
52+
}
53+
54+
/**
55+
* BigQuery clustering rule.
56+
* @param bigqueryClustering bigqueryClustering or {@code null} for none
57+
*/
58+
public CustomizationRule setBigqueryClustering(BigQueryClustering bigqueryClustering) {
59+
this.bigqueryClustering = bigqueryClustering;
60+
return this;
61+
}
62+
63+
/**
64+
* BigQuery partitioning rule.
65+
* @return value or {@code null} for none
66+
*/
67+
public BigQueryPartitioning getBigqueryPartitioning() {
68+
return bigqueryPartitioning;
69+
}
70+
71+
/**
72+
* BigQuery partitioning rule.
73+
* @param bigqueryPartitioning bigqueryPartitioning or {@code null} for none
74+
*/
75+
public CustomizationRule setBigqueryPartitioning(BigQueryPartitioning bigqueryPartitioning) {
76+
this.bigqueryPartitioning = bigqueryPartitioning;
77+
return this;
78+
}
79+
80+
@Override
81+
public CustomizationRule set(String fieldName, Object value) {
82+
return (CustomizationRule) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public CustomizationRule clone() {
87+
return (CustomizationRule) super.clone();
88+
}
89+
90+
}

0 commit comments

Comments
 (0)