Skip to content

Commit 4283df5

Browse files
1 parent 0c3009a commit 4283df5

File tree

5 files changed

+63
-6
lines changed

5 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@
3636
@SuppressWarnings("javadoc")
3737
public final class ExternalServiceCost extends com.google.api.client.json.GenericJson {
3838

39+
/**
40+
* The billing method used for the external job. This field is only used when billed on the
41+
* services sku, set to "SERVICES_SKU". Otherwise, it is unspecified for backward compatibility.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String billingMethod;
46+
3947
/**
4048
* External service cost in terms of bigquery bytes billed.
4149
* The value may be {@code null}.
@@ -72,6 +80,25 @@ public final class ExternalServiceCost extends com.google.api.client.json.Generi
7280
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
7381
private java.lang.Long slotMs;
7482

83+
/**
84+
* The billing method used for the external job. This field is only used when billed on the
85+
* services sku, set to "SERVICES_SKU". Otherwise, it is unspecified for backward compatibility.
86+
* @return value or {@code null} for none
87+
*/
88+
public java.lang.String getBillingMethod() {
89+
return billingMethod;
90+
}
91+
92+
/**
93+
* The billing method used for the external job. This field is only used when billed on the
94+
* services sku, set to "SERVICES_SKU". Otherwise, it is unspecified for backward compatibility.
95+
* @param billingMethod billingMethod or {@code null} for none
96+
*/
97+
public ExternalServiceCost setBillingMethod(java.lang.String billingMethod) {
98+
this.billingMethod = billingMethod;
99+
return this;
100+
}
101+
75102
/**
76103
* External service cost in terms of bigquery bytes billed.
77104
* @return value or {@code null} for none

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,15 @@ public final class JobStatistics2 extends com.google.api.client.json.GenericJson
428428
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
429429
private java.lang.Long totalPartitionsProcessed;
430430

431+
/**
432+
* Output only. Total slot-milliseconds for the job that run on external services and billed on
433+
* the service SKU. This field is only populated for jobs that have external service costs, and is
434+
* the total of the usage for costs whose billing method is "SERVICES_SKU".
435+
* The value may be {@code null}.
436+
*/
437+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
438+
private java.lang.Long totalServicesSkuSlotMs;
439+
431440
/**
432441
* Output only. Slot-milliseconds for the job.
433442
* The value may be {@code null}.
@@ -1340,6 +1349,27 @@ public JobStatistics2 setTotalPartitionsProcessed(java.lang.Long totalPartitions
13401349
return this;
13411350
}
13421351

1352+
/**
1353+
* Output only. Total slot-milliseconds for the job that run on external services and billed on
1354+
* the service SKU. This field is only populated for jobs that have external service costs, and is
1355+
* the total of the usage for costs whose billing method is "SERVICES_SKU".
1356+
* @return value or {@code null} for none
1357+
*/
1358+
public java.lang.Long getTotalServicesSkuSlotMs() {
1359+
return totalServicesSkuSlotMs;
1360+
}
1361+
1362+
/**
1363+
* Output only. Total slot-milliseconds for the job that run on external services and billed on
1364+
* the service SKU. This field is only populated for jobs that have external service costs, and is
1365+
* the total of the usage for costs whose billing method is "SERVICES_SKU".
1366+
* @param totalServicesSkuSlotMs totalServicesSkuSlotMs or {@code null} for none
1367+
*/
1368+
public JobStatistics2 setTotalServicesSkuSlotMs(java.lang.Long totalServicesSkuSlotMs) {
1369+
this.totalServicesSkuSlotMs = totalServicesSkuSlotMs;
1370+
return this;
1371+
}
1372+
13431373
/**
13441374
* Output only. Slot-milliseconds for the job.
13451375
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)