Skip to content

Commit 1e6730c

Browse files
1 parent 647a1c8 commit 1e6730c

File tree

5 files changed

+48
-12
lines changed

5 files changed

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

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

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
3535
* the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the
3636
* following entities: access.specialGroup: projectReaders; access.role: READER;
3737
* access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners;
38-
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER;
38+
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; If you
39+
* patch a dataset, then this field is overwritten by the patched dataset's access field. To add
40+
* entities, you must supply the entire existing access array in addition to any new entities that
41+
* you want to add.
3942
* The value may be {@code null}.
4043
*/
4144
@com.google.api.client.util.Key
@@ -285,7 +288,7 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
285288
private java.lang.String storageBillingModel;
286289

287290
/**
288-
* Output only. Tags for the Dataset.
291+
* Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field.
289292
* The value may be {@code null}.
290293
*/
291294
@com.google.api.client.util.Key
@@ -312,7 +315,10 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
312315
* the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the
313316
* following entities: access.specialGroup: projectReaders; access.role: READER;
314317
* access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners;
315-
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER;
318+
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; If you
319+
* patch a dataset, then this field is overwritten by the patched dataset's access field. To add
320+
* entities, you must supply the entire existing access array in addition to any new entities that
321+
* you want to add.
316322
* @return value or {@code null} for none
317323
*/
318324
public java.util.List<Access> getAccess() {
@@ -325,7 +331,10 @@ public java.util.List<Access> getAccess() {
325331
* the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the
326332
* following entities: access.specialGroup: projectReaders; access.role: READER;
327333
* access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners;
328-
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER;
334+
* access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; If you
335+
* patch a dataset, then this field is overwritten by the patched dataset's access field. To add
336+
* entities, you must supply the entire existing access array in addition to any new entities that
337+
* you want to add.
329338
* @param access access or {@code null} for none
330339
*/
331340
public Dataset setAccess(java.util.List<Access> access) {
@@ -889,15 +898,15 @@ public Dataset setStorageBillingModel(java.lang.String storageBillingModel) {
889898
}
890899

891900
/**
892-
* Output only. Tags for the Dataset.
901+
* Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field.
893902
* @return value or {@code null} for none
894903
*/
895904
public java.util.List<Tags> getTags() {
896905
return tags;
897906
}
898907

899908
/**
900-
* Output only. Tags for the Dataset.
909+
* Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field.
901910
* @param tags tags or {@code null} for none
902911
*/
903912
public Dataset setTags(java.util.List<Tags> tags) {

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ public final class JobStatistics extends com.google.api.client.json.GenericJson
5858
@com.google.api.client.util.Key
5959
private DataMaskingStatistics dataMaskingStatistics;
6060

61+
/**
62+
* Output only. Name of edition corresponding to the reservation for this job at the time of this
63+
* update.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String edition;
68+
6169
/**
6270
* Output only. End time of this job, in milliseconds since the epoch. This field will be present
6371
* whenever a job is in the DONE state.
@@ -262,6 +270,25 @@ public JobStatistics setDataMaskingStatistics(DataMaskingStatistics dataMaskingS
262270
return this;
263271
}
264272

273+
/**
274+
* Output only. Name of edition corresponding to the reservation for this job at the time of this
275+
* update.
276+
* @return value or {@code null} for none
277+
*/
278+
public java.lang.String getEdition() {
279+
return edition;
280+
}
281+
282+
/**
283+
* Output only. Name of edition corresponding to the reservation for this job at the time of this
284+
* update.
285+
* @param edition edition or {@code null} for none
286+
*/
287+
public JobStatistics setEdition(java.lang.String edition) {
288+
this.edition = edition;
289+
return this;
290+
}
291+
265292
/**
266293
* Output only. End time of this job, in milliseconds since the epoch. This field will be present
267294
* whenever a job is in the DONE state.

clients/google-api-services-bigquery/v2/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-bigquery</artifactId>
11-
<version>v2-rev20240629-2.0.0</version>
12-
<name>BigQuery API v2-rev20240629-2.0.0</name>
11+
<version>v2-rev20240714-2.0.0</version>
12+
<name>BigQuery API v2-rev20240714-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)