Skip to content

Commit dbdc4c5

Browse files
1 parent 4a2591d commit dbdc4c5

File tree

113 files changed

+8565
-3050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+8565
-3050
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-rev20240105-2.0.0</version>
25+
<version>v2-rev20240124-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-rev20240105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20240124-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2072 additions & 457 deletions
Large diffs are not rendered by default.

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

Lines changed: 89 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,74 @@ public BigqueryRequest(
4444
responseClass);
4545
}
4646

47-
/** Data format for the response. */
47+
/** V1 error format. */
48+
@com.google.api.client.util.Key("$.xgafv")
49+
private java.lang.String $Xgafv;
50+
51+
/**
52+
* V1 error format.
53+
*/
54+
public java.lang.String get$Xgafv() {
55+
return $Xgafv;
56+
}
57+
58+
/** V1 error format. */
59+
public BigqueryRequest<T> set$Xgafv(java.lang.String $Xgafv) {
60+
this.$Xgafv = $Xgafv;
61+
return this;
62+
}
63+
64+
/** OAuth access token. */
65+
@com.google.api.client.util.Key("access_token")
66+
private java.lang.String accessToken;
67+
68+
/**
69+
* OAuth access token.
70+
*/
71+
public java.lang.String getAccessToken() {
72+
return accessToken;
73+
}
74+
75+
/** OAuth access token. */
76+
public BigqueryRequest<T> setAccessToken(java.lang.String accessToken) {
77+
this.accessToken = accessToken;
78+
return this;
79+
}
80+
81+
/** Data format for response. */
4882
@com.google.api.client.util.Key
4983
private java.lang.String alt;
5084

5185
/**
52-
* Data format for the response. [default: json]
86+
* Data format for response. [default: json]
5387
*/
5488
public java.lang.String getAlt() {
5589
return alt;
5690
}
5791

58-
/** Data format for the response. */
92+
/** Data format for response. */
5993
public BigqueryRequest<T> setAlt(java.lang.String alt) {
6094
this.alt = alt;
6195
return this;
6296
}
6397

98+
/** JSONP */
99+
@com.google.api.client.util.Key
100+
private java.lang.String callback;
101+
102+
/**
103+
* JSONP
104+
*/
105+
public java.lang.String getCallback() {
106+
return callback;
107+
}
108+
109+
/** JSONP */
110+
public BigqueryRequest<T> setCallback(java.lang.String callback) {
111+
this.callback = callback;
112+
return this;
113+
}
114+
64115
/** Selector specifying which fields to include in a partial response. */
65116
@com.google.api.client.util.Key
66117
private java.lang.String fields;
@@ -136,37 +187,61 @@ public BigqueryRequest<T> setPrettyPrint(java.lang.Boolean prettyPrint) {
136187
return this;
137188
}
138189

139-
/** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
190+
/**
191+
* Available to use for quota purposes for server-side applications. Can be any arbitrary string
192+
* assigned to a user, but should not exceed 40 characters.
193+
*/
140194
@com.google.api.client.util.Key
141195
private java.lang.String quotaUser;
142196

143197
/**
144-
* An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
198+
* Available to use for quota purposes for server-side applications. Can be any arbitrary string
199+
* assigned to a user, but should not exceed 40 characters.
145200
*/
146201
public java.lang.String getQuotaUser() {
147202
return quotaUser;
148203
}
149204

150-
/** An opaque string that represents a user for quota purposes. Must not exceed 40 characters. */
205+
/**
206+
* Available to use for quota purposes for server-side applications. Can be any arbitrary string
207+
* assigned to a user, but should not exceed 40 characters.
208+
*/
151209
public BigqueryRequest<T> setQuotaUser(java.lang.String quotaUser) {
152210
this.quotaUser = quotaUser;
153211
return this;
154212
}
155213

156-
/** Deprecated. Please use quotaUser instead. */
214+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
157215
@com.google.api.client.util.Key
158-
private java.lang.String userIp;
216+
private java.lang.String uploadType;
217+
218+
/**
219+
* Legacy upload protocol for media (e.g. "media", "multipart").
220+
*/
221+
public java.lang.String getUploadType() {
222+
return uploadType;
223+
}
224+
225+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
226+
public BigqueryRequest<T> setUploadType(java.lang.String uploadType) {
227+
this.uploadType = uploadType;
228+
return this;
229+
}
230+
231+
/** Upload protocol for media (e.g. "raw", "multipart"). */
232+
@com.google.api.client.util.Key("upload_protocol")
233+
private java.lang.String uploadProtocol;
159234

160235
/**
161-
* Deprecated. Please use quotaUser instead.
236+
* Upload protocol for media (e.g. "raw", "multipart").
162237
*/
163-
public java.lang.String getUserIp() {
164-
return userIp;
238+
public java.lang.String getUploadProtocol() {
239+
return uploadProtocol;
165240
}
166241

167-
/** Deprecated. Please use quotaUser instead. */
168-
public BigqueryRequest<T> setUserIp(java.lang.String userIp) {
169-
this.userIp = userIp;
242+
/** Upload protocol for media (e.g. "raw", "multipart"). */
243+
public BigqueryRequest<T> setUploadProtocol(java.lang.String uploadProtocol) {
244+
this.uploadProtocol = uploadProtocol;
170245
return this;
171246
}
172247

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.bigquery.model;
1818

1919
/**
20-
* Model definition for AvroOptions.
20+
* Options for external data sources.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
@@ -30,28 +30,28 @@
3030
public final class AvroOptions extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret logical types as
34-
* the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type
35-
* (for example, INTEGER).
33+
* Optional. If sourceFormat is set to "AVRO", indicates whether to interpret logical types as the
34+
* corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for
35+
* example, INTEGER).
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.Boolean useAvroLogicalTypes;
4040

4141
/**
42-
* [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret logical types as
43-
* the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type
44-
* (for example, INTEGER).
42+
* Optional. If sourceFormat is set to "AVRO", indicates whether to interpret logical types as the
43+
* corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for
44+
* example, INTEGER).
4545
* @return value or {@code null} for none
4646
*/
4747
public java.lang.Boolean getUseAvroLogicalTypes() {
4848
return useAvroLogicalTypes;
4949
}
5050

5151
/**
52-
* [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret logical types as
53-
* the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type
54-
* (for example, INTEGER).
52+
* Optional. If sourceFormat is set to "AVRO", indicates whether to interpret logical types as the
53+
* corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for
54+
* example, INTEGER).
5555
* @param useAvroLogicalTypes useAvroLogicalTypes or {@code null} for none
5656
*/
5757
public AvroOptions setUseAvroLogicalTypes(java.lang.Boolean useAvroLogicalTypes) {

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.bigquery.model;
1818

1919
/**
20-
* Model definition for BiEngineReason.
20+
* Reason why BI Engine didn't accelerate the query (or sub-query).
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
@@ -30,29 +30,29 @@
3030
public final class BiEngineReason extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* [Output-only] High-level BI Engine reason for partial or disabled acceleration.
33+
* Output only. High-level BI Engine reason for partial or disabled acceleration
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.lang.String code;
3838

3939
/**
40-
* [Output-only] Free form human-readable reason for partial or disabled acceleration.
40+
* Output only. Free form human-readable reason for partial or disabled acceleration.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
4444
private java.lang.String message;
4545

4646
/**
47-
* [Output-only] High-level BI Engine reason for partial or disabled acceleration.
47+
* Output only. High-level BI Engine reason for partial or disabled acceleration
4848
* @return value or {@code null} for none
4949
*/
5050
public java.lang.String getCode() {
5151
return code;
5252
}
5353

5454
/**
55-
* [Output-only] High-level BI Engine reason for partial or disabled acceleration.
55+
* Output only. High-level BI Engine reason for partial or disabled acceleration
5656
* @param code code or {@code null} for none
5757
*/
5858
public BiEngineReason setCode(java.lang.String code) {
@@ -61,15 +61,15 @@ public BiEngineReason setCode(java.lang.String code) {
6161
}
6262

6363
/**
64-
* [Output-only] Free form human-readable reason for partial or disabled acceleration.
64+
* Output only. Free form human-readable reason for partial or disabled acceleration.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.String getMessage() {
6868
return message;
6969
}
7070

7171
/**
72-
* [Output-only] Free form human-readable reason for partial or disabled acceleration.
72+
* Output only. Free form human-readable reason for partial or disabled acceleration.
7373
* @param message message or {@code null} for none
7474
*/
7575
public BiEngineReason setMessage(java.lang.String message) {

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.bigquery.model;
1818

1919
/**
20-
* Model definition for BiEngineStatistics.
20+
* Statistics for a BI Engine specific query. Populated as part of JobStatistics2
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
@@ -30,14 +30,14 @@
3030
public final class BiEngineStatistics extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
33+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.lang.String accelerationMode;
3838

3939
/**
40-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
40+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
@@ -59,15 +59,15 @@ public final class BiEngineStatistics extends com.google.api.client.json.Generic
5959
}
6060

6161
/**
62-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
62+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
6363
* @return value or {@code null} for none
6464
*/
6565
public java.lang.String getAccelerationMode() {
6666
return accelerationMode;
6767
}
6868

6969
/**
70-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
70+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
7171
* @param accelerationMode accelerationMode or {@code null} for none
7272
*/
7373
public BiEngineStatistics setAccelerationMode(java.lang.String accelerationMode) {
@@ -76,15 +76,15 @@ public BiEngineStatistics setAccelerationMode(java.lang.String accelerationMode)
7676
}
7777

7878
/**
79-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
79+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
8080
* @return value or {@code null} for none
8181
*/
8282
public java.lang.String getBiEngineMode() {
8383
return biEngineMode;
8484
}
8585

8686
/**
87-
* [Output-only] Specifies which mode of BI Engine acceleration was performed (if any).
87+
* Output only. Specifies which mode of BI Engine acceleration was performed (if any).
8888
* @param biEngineMode biEngineMode or {@code null} for none
8989
*/
9090
public BiEngineStatistics setBiEngineMode(java.lang.String biEngineMode) {

0 commit comments

Comments
 (0)