Skip to content

Commit 8dd2356

Browse files
1 parent cd7161b commit 8dd2356

File tree

12 files changed

+1673
-31
lines changed

12 files changed

+1673
-31
lines changed

clients/google-api-services-bigquery/v2/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-bigquery</artifactId>
25-
<version>v2-rev20250112-2.0.0</version>
25+
<version>v2-rev20250128-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-bigquery:v2-rev20250112-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20250128-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/Bigquery.java

Lines changed: 1124 additions & 25 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.bigquery.model;
18+
19+
/**
20+
* Request message for the BatchDeleteRowAccessPoliciesRequest method.
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 BigQuery 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 BatchDeleteRowAccessPoliciesRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* If set to true, it deletes the row access policy even if it's the last row access policy on the
34+
* table and the deletion will widen the access rather narrowing it.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean force;
39+
40+
/**
41+
* Required. Policy IDs of the row access policies.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<java.lang.String> policyIds;
46+
47+
/**
48+
* If set to true, it deletes the row access policy even if it's the last row access policy on the
49+
* table and the deletion will widen the access rather narrowing it.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.Boolean getForce() {
53+
return force;
54+
}
55+
56+
/**
57+
* If set to true, it deletes the row access policy even if it's the last row access policy on the
58+
* table and the deletion will widen the access rather narrowing it.
59+
* @param force force or {@code null} for none
60+
*/
61+
public BatchDeleteRowAccessPoliciesRequest setForce(java.lang.Boolean force) {
62+
this.force = force;
63+
return this;
64+
}
65+
66+
/**
67+
* Required. Policy IDs of the row access policies.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.util.List<java.lang.String> getPolicyIds() {
71+
return policyIds;
72+
}
73+
74+
/**
75+
* Required. Policy IDs of the row access policies.
76+
* @param policyIds policyIds or {@code null} for none
77+
*/
78+
public BatchDeleteRowAccessPoliciesRequest setPolicyIds(java.util.List<java.lang.String> policyIds) {
79+
this.policyIds = policyIds;
80+
return this;
81+
}
82+
83+
@Override
84+
public BatchDeleteRowAccessPoliciesRequest set(String fieldName, Object value) {
85+
return (BatchDeleteRowAccessPoliciesRequest) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public BatchDeleteRowAccessPoliciesRequest clone() {
90+
return (BatchDeleteRowAccessPoliciesRequest) super.clone();
91+
}
92+
93+
}

clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/JobConfigurationQuery.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,16 @@ public final class JobConfigurationQuery extends com.google.api.client.json.Gene
288288
@com.google.api.client.util.Key
289289
private java.lang.String writeDisposition;
290290

291+
/**
292+
* Optional. This is only supported for a SELECT query using a temporary table. If set, the query
293+
* is allowed to write results incrementally to the temporary result table. This may incur a
294+
* performance penalty. This option cannot be used with Legacy SQL. This feature is not yet
295+
* available.
296+
* The value may be {@code null}.
297+
*/
298+
@com.google.api.client.util.Key
299+
private java.lang.Boolean writeIncrementalResults;
300+
291301
/**
292302
* Optional. If true and query uses legacy SQL dialect, allows the query to produce arbitrarily
293303
* large result tables at a slight cost in performance. Requires destinationTable to be set. For
@@ -981,6 +991,29 @@ public JobConfigurationQuery setWriteDisposition(java.lang.String writeDispositi
981991
return this;
982992
}
983993

994+
/**
995+
* Optional. This is only supported for a SELECT query using a temporary table. If set, the query
996+
* is allowed to write results incrementally to the temporary result table. This may incur a
997+
* performance penalty. This option cannot be used with Legacy SQL. This feature is not yet
998+
* available.
999+
* @return value or {@code null} for none
1000+
*/
1001+
public java.lang.Boolean getWriteIncrementalResults() {
1002+
return writeIncrementalResults;
1003+
}
1004+
1005+
/**
1006+
* Optional. This is only supported for a SELECT query using a temporary table. If set, the query
1007+
* is allowed to write results incrementally to the temporary result table. This may incur a
1008+
* performance penalty. This option cannot be used with Legacy SQL. This feature is not yet
1009+
* available.
1010+
* @param writeIncrementalResults writeIncrementalResults or {@code null} for none
1011+
*/
1012+
public JobConfigurationQuery setWriteIncrementalResults(java.lang.Boolean writeIncrementalResults) {
1013+
this.writeIncrementalResults = writeIncrementalResults;
1014+
return this;
1015+
}
1016+
9841017
@Override
9851018
public JobConfigurationQuery set(String fieldName, Object value) {
9861019
return (JobConfigurationQuery) super.set(fieldName, value);

clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/QueryRequest.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,15 @@ public final class QueryRequest extends com.google.api.client.json.GenericJson {
228228
@com.google.api.client.util.Key
229229
private java.lang.Boolean useQueryCache;
230230

231+
/**
232+
* Optional. This is only supported for SELECT query. If set, the query is allowed to write
233+
* results incrementally to the temporary result table. This may incur a performance penalty. This
234+
* option cannot be used with Legacy SQL. This feature is not yet available.
235+
* The value may be {@code null}.
236+
*/
237+
@com.google.api.client.util.Key
238+
private java.lang.Boolean writeIncrementalResults;
239+
231240
/**
232241
* Optional. Connection properties which can modify the query behavior.
233242
* @return value or {@code null} for none
@@ -720,6 +729,27 @@ public boolean isUseQueryCache() {
720729
return useQueryCache;
721730
}
722731

732+
/**
733+
* Optional. This is only supported for SELECT query. If set, the query is allowed to write
734+
* results incrementally to the temporary result table. This may incur a performance penalty. This
735+
* option cannot be used with Legacy SQL. This feature is not yet available.
736+
* @return value or {@code null} for none
737+
*/
738+
public java.lang.Boolean getWriteIncrementalResults() {
739+
return writeIncrementalResults;
740+
}
741+
742+
/**
743+
* Optional. This is only supported for SELECT query. If set, the query is allowed to write
744+
* results incrementally to the temporary result table. This may incur a performance penalty. This
745+
* option cannot be used with Legacy SQL. This feature is not yet available.
746+
* @param writeIncrementalResults writeIncrementalResults or {@code null} for none
747+
*/
748+
public QueryRequest setWriteIncrementalResults(java.lang.Boolean writeIncrementalResults) {
749+
this.writeIncrementalResults = writeIncrementalResults;
750+
return this;
751+
}
752+
723753
@Override
724754
public QueryRequest set(String fieldName, Object value) {
725755
return (QueryRequest) super.set(fieldName, value);

clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/RowAccessPolicy.java

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,26 @@ public final class RowAccessPolicy extends com.google.api.client.json.GenericJso
5555
@com.google.api.client.util.Key
5656
private java.lang.String filterPredicate;
5757

58+
/**
59+
* Optional. Input only. The optional list of iam_member users or groups that specifies the
60+
* initial members that the row-level access policy should be created with. grantees types: -
61+
* "user:[email protected]": An email address that represents a specific Google account. -
62+
* "serviceAccount:[email protected]": An email address that represents a
63+
* service account. - "group:[email protected]": An email address that represents a Google group.
64+
* - "domain:example.com":The Google Workspace domain (primary) that represents all the users of
65+
* that domain. - "allAuthenticatedUsers": A special identifier that represents all service
66+
* accounts and all users on the internet who have authenticated with a Google Account. This
67+
* identifier includes accounts that aren't connected to a Google Workspace or Cloud Identity
68+
* domain, such as personal Gmail accounts. Users who aren't authenticated, such as anonymous
69+
* visitors, aren't included. - "allUsers":A special identifier that represents anyone who is on
70+
* the internet, including authenticated and unauthenticated users. Because BigQuery requires
71+
* authentication before a user can access the service, allUsers includes only authenticated
72+
* users.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private java.util.List<java.lang.String> grantees;
77+
5878
/**
5979
* Output only. The time when this row access policy was last modified, in milliseconds since the
6080
* epoch.
@@ -129,6 +149,49 @@ public RowAccessPolicy setFilterPredicate(java.lang.String filterPredicate) {
129149
return this;
130150
}
131151

152+
/**
153+
* Optional. Input only. The optional list of iam_member users or groups that specifies the
154+
* initial members that the row-level access policy should be created with. grantees types: -
155+
* "user:[email protected]": An email address that represents a specific Google account. -
156+
* "serviceAccount:[email protected]": An email address that represents a
157+
* service account. - "group:[email protected]": An email address that represents a Google group.
158+
* - "domain:example.com":The Google Workspace domain (primary) that represents all the users of
159+
* that domain. - "allAuthenticatedUsers": A special identifier that represents all service
160+
* accounts and all users on the internet who have authenticated with a Google Account. This
161+
* identifier includes accounts that aren't connected to a Google Workspace or Cloud Identity
162+
* domain, such as personal Gmail accounts. Users who aren't authenticated, such as anonymous
163+
* visitors, aren't included. - "allUsers":A special identifier that represents anyone who is on
164+
* the internet, including authenticated and unauthenticated users. Because BigQuery requires
165+
* authentication before a user can access the service, allUsers includes only authenticated
166+
* users.
167+
* @return value or {@code null} for none
168+
*/
169+
public java.util.List<java.lang.String> getGrantees() {
170+
return grantees;
171+
}
172+
173+
/**
174+
* Optional. Input only. The optional list of iam_member users or groups that specifies the
175+
* initial members that the row-level access policy should be created with. grantees types: -
176+
* "user:[email protected]": An email address that represents a specific Google account. -
177+
* "serviceAccount:[email protected]": An email address that represents a
178+
* service account. - "group:[email protected]": An email address that represents a Google group.
179+
* - "domain:example.com":The Google Workspace domain (primary) that represents all the users of
180+
* that domain. - "allAuthenticatedUsers": A special identifier that represents all service
181+
* accounts and all users on the internet who have authenticated with a Google Account. This
182+
* identifier includes accounts that aren't connected to a Google Workspace or Cloud Identity
183+
* domain, such as personal Gmail accounts. Users who aren't authenticated, such as anonymous
184+
* visitors, aren't included. - "allUsers":A special identifier that represents anyone who is on
185+
* the internet, including authenticated and unauthenticated users. Because BigQuery requires
186+
* authentication before a user can access the service, allUsers includes only authenticated
187+
* users.
188+
* @param grantees grantees or {@code null} for none
189+
*/
190+
public RowAccessPolicy setGrantees(java.util.List<java.lang.String> grantees) {
191+
this.grantees = grantees;
192+
return this;
193+
}
194+
132195
/**
133196
* Output only. The time when this row access policy was last modified, in milliseconds since the
134197
* epoch.

0 commit comments

Comments
 (0)