Skip to content

Commit 2af639f

Browse files
1 parent 14bacf1 commit 2af639f

File tree

6 files changed

+69
-36
lines changed

6 files changed

+69
-36
lines changed

clients/google-api-services-bigquery/v2/2.0.0/README.md

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

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

+27
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,14 @@ public static final class Datasets extends com.google.api.client.json.GenericJso
193193
@com.google.api.client.util.Key
194194
private DatasetReference datasetReference;
195195

196+
/**
197+
* Output only. Reference to a read-only external dataset defined in data catalogs outside of
198+
* BigQuery. Filled out when the dataset type is EXTERNAL.
199+
* The value may be {@code null}.
200+
*/
201+
@com.google.api.client.util.Key
202+
private ExternalDatasetReference externalDatasetReference;
203+
196204
/**
197205
* An alternate name for the dataset. The friendly name is purely decorative in nature.
198206
* The value may be {@code null}.
@@ -247,6 +255,25 @@ public Datasets setDatasetReference(DatasetReference datasetReference) {
247255
return this;
248256
}
249257

258+
/**
259+
* Output only. Reference to a read-only external dataset defined in data catalogs outside of
260+
* BigQuery. Filled out when the dataset type is EXTERNAL.
261+
* @return value or {@code null} for none
262+
*/
263+
public ExternalDatasetReference getExternalDatasetReference() {
264+
return externalDatasetReference;
265+
}
266+
267+
/**
268+
* Output only. Reference to a read-only external dataset defined in data catalogs outside of
269+
* BigQuery. Filled out when the dataset type is EXTERNAL.
270+
* @param externalDatasetReference externalDatasetReference or {@code null} for none
271+
*/
272+
public Datasets setExternalDatasetReference(ExternalDatasetReference externalDatasetReference) {
273+
this.externalDatasetReference = externalDatasetReference;
274+
return this;
275+
}
276+
250277
/**
251278
* An alternate name for the dataset. The friendly name is purely decorative in nature.
252279
* @return value or {@code null} for none

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

+18-15
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,12 @@ public final class JobConfigurationLoad extends com.google.api.client.json.Gener
464464
* Optional. Specifies the action that occurs if the destination table already exists. The
465465
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
466466
* overwrites the data, removes the constraints and uses the schema from the load job. *
467-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
468-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
469-
* the job result. The default value is WRITE_APPEND. Each action is atomic and only occurs if
470-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
471-
* occur as one atomic update upon job completion.
467+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
468+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
469+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
470+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_APPEND.
471+
* Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
472+
* Creation, truncation and append actions occur as one atomic update upon job completion.
472473
* The value may be {@code null}.
473474
*/
474475
@com.google.api.client.util.Key
@@ -1455,11 +1456,12 @@ public JobConfigurationLoad setUseAvroLogicalTypes(java.lang.Boolean useAvroLogi
14551456
* Optional. Specifies the action that occurs if the destination table already exists. The
14561457
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
14571458
* overwrites the data, removes the constraints and uses the schema from the load job. *
1458-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
1459-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
1460-
* the job result. The default value is WRITE_APPEND. Each action is atomic and only occurs if
1461-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
1462-
* occur as one atomic update upon job completion.
1459+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
1460+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
1461+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
1462+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_APPEND.
1463+
* Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
1464+
* Creation, truncation and append actions occur as one atomic update upon job completion.
14631465
* @return value or {@code null} for none
14641466
*/
14651467
public java.lang.String getWriteDisposition() {
@@ -1470,11 +1472,12 @@ public java.lang.String getWriteDisposition() {
14701472
* Optional. Specifies the action that occurs if the destination table already exists. The
14711473
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
14721474
* overwrites the data, removes the constraints and uses the schema from the load job. *
1473-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
1474-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
1475-
* the job result. The default value is WRITE_APPEND. Each action is atomic and only occurs if
1476-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
1477-
* occur as one atomic update upon job completion.
1475+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
1476+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
1477+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
1478+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_APPEND.
1479+
* Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
1480+
* Creation, truncation and append actions occur as one atomic update upon job completion.
14781481
* @param writeDisposition writeDisposition or {@code null} for none
14791482
*/
14801483
public JobConfigurationLoad setWriteDisposition(java.lang.String writeDisposition) {

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

+18-15
Original file line numberDiff line numberDiff line change
@@ -278,11 +278,12 @@ public final class JobConfigurationQuery extends com.google.api.client.json.Gene
278278
* Optional. Specifies the action that occurs if the destination table already exists. The
279279
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
280280
* overwrites the data, removes the constraints, and uses the schema from the query result. *
281-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
282-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
283-
* the job result. The default value is WRITE_EMPTY. Each action is atomic and only occurs if
284-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
285-
* occur as one atomic update upon job completion.
281+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
282+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
283+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
284+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_EMPTY. Each
285+
* action is atomic and only occurs if BigQuery is able to complete the job successfully.
286+
* Creation, truncation and append actions occur as one atomic update upon job completion.
286287
* The value may be {@code null}.
287288
*/
288289
@com.google.api.client.util.Key
@@ -964,11 +965,12 @@ public JobConfigurationQuery setUserDefinedFunctionResources(java.util.List<User
964965
* Optional. Specifies the action that occurs if the destination table already exists. The
965966
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
966967
* overwrites the data, removes the constraints, and uses the schema from the query result. *
967-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
968-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
969-
* the job result. The default value is WRITE_EMPTY. Each action is atomic and only occurs if
970-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
971-
* occur as one atomic update upon job completion.
968+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
969+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
970+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
971+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_EMPTY. Each
972+
* action is atomic and only occurs if BigQuery is able to complete the job successfully.
973+
* Creation, truncation and append actions occur as one atomic update upon job completion.
972974
* @return value or {@code null} for none
973975
*/
974976
public java.lang.String getWriteDisposition() {
@@ -979,11 +981,12 @@ public java.lang.String getWriteDisposition() {
979981
* Optional. Specifies the action that occurs if the destination table already exists. The
980982
* following values are supported: * WRITE_TRUNCATE: If the table already exists, BigQuery
981983
* overwrites the data, removes the constraints, and uses the schema from the query result. *
982-
* WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. *
983-
* WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in
984-
* the job result. The default value is WRITE_EMPTY. Each action is atomic and only occurs if
985-
* BigQuery is able to complete the job successfully. Creation, truncation and append actions
986-
* occur as one atomic update upon job completion.
984+
* WRITE_TRUNCATE_DATA: If the table already exists, BigQuery overwrites the data, but keeps the
985+
* constraints and schema of the existing table. * WRITE_APPEND: If the table already exists,
986+
* BigQuery appends the data to the table. * WRITE_EMPTY: If the table already exists and contains
987+
* data, a 'duplicate' error is returned in the job result. The default value is WRITE_EMPTY. Each
988+
* action is atomic and only occurs if BigQuery is able to complete the job successfully.
989+
* Creation, truncation and append actions occur as one atomic update upon job completion.
987990
* @param writeDisposition writeDisposition or {@code null} for none
988991
*/
989992
public JobConfigurationQuery setWriteDisposition(java.lang.String writeDisposition) {

clients/google-api-services-bigquery/v2/2.0.0/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-bigquery</artifactId>
11-
<version>v2-rev20250427-2.0.0</version>
12-
<name>BigQuery API v2-rev20250427-2.0.0</name>
11+
<version>v2-rev20250511-2.0.0</version>
12+
<name>BigQuery API v2-rev20250511-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-bigquery/v2/README.md

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

0 commit comments

Comments
 (0)