Skip to content

Commit e342666

Browse files
1 parent 4893c8e commit e342666

File tree

16 files changed

+334
-267
lines changed

16 files changed

+334
-267
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-rev20240815-2.0.0</version>
25+
<version>v2-rev20240905-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-rev20240815-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20240905-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: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -238,12 +238,12 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
238238
private java.lang.Long maxTimeTravelHours;
239239

240240
/**
241-
* Optional. The [tags](/bigquery/docs/tags) attached to this dataset. Tag keys are globally
242-
* unique. Tag key is expected to be in the namespaced format, for example
241+
* Optional. The [tags](https://cloud.google.com/bigquery/docs/tags) attached to this dataset. Tag
242+
* keys are globally unique. Tag key is expected to be in the namespaced format, for example
243243
* "123456789012/environment" where 123456789012 is the ID of the parent organization or project
244244
* resource for this tag key. Tag value is expected to be the short name, for example
245-
* "Production". See [Tag definitions](/iam/docs/tags-access-control#definitions) for more
246-
* details.
245+
* "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-
246+
* control#definitions) for more details.
247247
* The value may be {@code null}.
248248
*/
249249
@com.google.api.client.util.Key
@@ -252,7 +252,8 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
252252
/**
253253
* Optional. Output only. Restriction config for all tables and dataset. If set, restrict certain
254254
* accesses on the dataset and all its tables based on the config. See [Data
255-
* egress](/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
255+
* egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more
256+
* details.
256257
* The value may be {@code null}.
257258
*/
258259
@com.google.api.client.util.Key
@@ -780,25 +781,25 @@ public Dataset setMaxTimeTravelHours(java.lang.Long maxTimeTravelHours) {
780781
}
781782

782783
/**
783-
* Optional. The [tags](/bigquery/docs/tags) attached to this dataset. Tag keys are globally
784-
* unique. Tag key is expected to be in the namespaced format, for example
784+
* Optional. The [tags](https://cloud.google.com/bigquery/docs/tags) attached to this dataset. Tag
785+
* keys are globally unique. Tag key is expected to be in the namespaced format, for example
785786
* "123456789012/environment" where 123456789012 is the ID of the parent organization or project
786787
* resource for this tag key. Tag value is expected to be the short name, for example
787-
* "Production". See [Tag definitions](/iam/docs/tags-access-control#definitions) for more
788-
* details.
788+
* "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-
789+
* control#definitions) for more details.
789790
* @return value or {@code null} for none
790791
*/
791792
public java.util.Map<String, java.lang.String> getResourceTags() {
792793
return resourceTags;
793794
}
794795

795796
/**
796-
* Optional. The [tags](/bigquery/docs/tags) attached to this dataset. Tag keys are globally
797-
* unique. Tag key is expected to be in the namespaced format, for example
797+
* Optional. The [tags](https://cloud.google.com/bigquery/docs/tags) attached to this dataset. Tag
798+
* keys are globally unique. Tag key is expected to be in the namespaced format, for example
798799
* "123456789012/environment" where 123456789012 is the ID of the parent organization or project
799800
* resource for this tag key. Tag value is expected to be the short name, for example
800-
* "Production". See [Tag definitions](/iam/docs/tags-access-control#definitions) for more
801-
* details.
801+
* "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-
802+
* control#definitions) for more details.
802803
* @param resourceTags resourceTags or {@code null} for none
803804
*/
804805
public Dataset setResourceTags(java.util.Map<String, java.lang.String> resourceTags) {
@@ -809,7 +810,8 @@ public Dataset setResourceTags(java.util.Map<String, java.lang.String> resourceT
809810
/**
810811
* Optional. Output only. Restriction config for all tables and dataset. If set, restrict certain
811812
* accesses on the dataset and all its tables based on the config. See [Data
812-
* egress](/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
813+
* egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more
814+
* details.
813815
* @return value or {@code null} for none
814816
*/
815817
public RestrictionConfig getRestrictions() {
@@ -819,7 +821,8 @@ public RestrictionConfig getRestrictions() {
819821
/**
820822
* Optional. Output only. Restriction config for all tables and dataset. If set, restrict certain
821823
* accesses on the dataset and all its tables based on the config. See [Data
822-
* egress](/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
824+
* egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more
825+
* details.
823826
* @param restrictions restrictions or {@code null} for none
824827
*/
825828
public Dataset setRestrictions(RestrictionConfig restrictions) {

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

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

1919
/**
20-
* Training info of a trial in [hyperparameter tuning](/bigquery-ml/docs/reference/standard-
21-
* sql/bigqueryml-syntax-hp-tuning-overview) models.
20+
* Training info of a trial in [hyperparameter tuning](https://cloud.google.com/bigquery-
21+
* ml/docs/reference/standard-sql/bigqueryml-syntax-hp-tuning-overview) models.
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public final class Job extends com.google.api.client.json.GenericJson {
5151
private java.lang.String id;
5252

5353
/**
54-
* Output only. The reason why a Job was created. [Preview](/products/#product-launch-stages)
54+
* Output only. The reason why a Job was created.
55+
* [Preview](https://cloud.google.com/products/#product-launch-stages)
5556
* The value may be {@code null}.
5657
*/
5758
@com.google.api.client.util.Key
@@ -161,15 +162,17 @@ public Job setId(java.lang.String id) {
161162
}
162163

163164
/**
164-
* Output only. The reason why a Job was created. [Preview](/products/#product-launch-stages)
165+
* Output only. The reason why a Job was created.
166+
* [Preview](https://cloud.google.com/products/#product-launch-stages)
165167
* @return value or {@code null} for none
166168
*/
167169
public JobCreationReason getJobCreationReason() {
168170
return jobCreationReason;
169171
}
170172

171173
/**
172-
* Output only. The reason why a Job was created. [Preview](/products/#product-launch-stages)
174+
* Output only. The reason why a Job was created.
175+
* [Preview](https://cloud.google.com/products/#product-launch-stages)
173176
* @param jobCreationReason jobCreationReason or {@code null} for none
174177
*/
175178
public Job setJobCreationReason(JobCreationReason jobCreationReason) {

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
* [`jobs.query`](https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/query) method when
2222
* used with `JOB_CREATION_OPTIONAL` Job creation mode. For
2323
* [`jobs.insert`](https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/insert) method
24-
* calls it will always be `REQUESTED`. [Preview](/products/#product-launch-stages)
24+
* calls it will always be `REQUESTED`. [Preview](https://cloud.google.com/products/#product-launch-
25+
* stages)
2526
*
2627
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2728
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:

0 commit comments

Comments
 (0)