Skip to content

Commit 544c4e7

Browse files
1 parent cf556d0 commit 544c4e7

File tree

4 files changed

+36
-6
lines changed

4 files changed

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

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ public final class TableFieldSchema extends com.google.api.client.json.GenericJs
165165
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
166166
private java.lang.Long scale;
167167

168+
/**
169+
* Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type.
170+
* Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For
171+
* TIMESTAMP type with picosecond precision)
172+
* The value may be {@code null}.
173+
*/
174+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
175+
private java.lang.Long timestampPrecision;
176+
168177
/**
169178
* Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) *
170179
* FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY *
@@ -480,6 +489,27 @@ public TableFieldSchema setScale(java.lang.Long scale) {
480489
return this;
481490
}
482491

492+
/**
493+
* Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type.
494+
* Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For
495+
* TIMESTAMP type with picosecond precision)
496+
* @return value or {@code null} for none
497+
*/
498+
public java.lang.Long getTimestampPrecision() {
499+
return timestampPrecision;
500+
}
501+
502+
/**
503+
* Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type.
504+
* Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For
505+
* TIMESTAMP type with picosecond precision)
506+
* @param timestampPrecision timestampPrecision or {@code null} for none
507+
*/
508+
public TableFieldSchema setTimestampPrecision(java.lang.Long timestampPrecision) {
509+
this.timestampPrecision = timestampPrecision;
510+
return this;
511+
}
512+
483513
/**
484514
* Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) *
485515
* FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY *

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-rev20250912-2.0.0</version>
12-
<name>BigQuery API v2-rev20250912-2.0.0</name>
11+
<version>v2-rev20250919-2.0.0</version>
12+
<name>BigQuery API v2-rev20250919-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-rev20250912-2.0.0</version>
25+
<version>v2-rev20250919-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-rev20250912-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigquery:v2-rev20250919-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)