Skip to content

Commit f67e1af

Browse files
1 parent 358d0de commit f67e1af

11 files changed

Lines changed: 574 additions & 6 deletions

File tree

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

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigquery.model;
18+
19+
/**
20+
* A list of data policy options. For more information, see [Mask data by applying data policies to
21+
* a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-
22+
* column).
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class DataPolicyList extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Contains a list of data policy options. At most 9 data policies are allowed per field.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<DataPolicyOption> dataPolicies;
40+
41+
/**
42+
* Contains a list of data policy options. At most 9 data policies are allowed per field.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<DataPolicyOption> getDataPolicies() {
46+
return dataPolicies;
47+
}
48+
49+
/**
50+
* Contains a list of data policy options. At most 9 data policies are allowed per field.
51+
* @param dataPolicies dataPolicies or {@code null} for none
52+
*/
53+
public DataPolicyList setDataPolicies(java.util.List<DataPolicyOption> dataPolicies) {
54+
this.dataPolicies = dataPolicies;
55+
return this;
56+
}
57+
58+
@Override
59+
public DataPolicyList set(String fieldName, Object value) {
60+
return (DataPolicyList) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public DataPolicyList clone() {
65+
return (DataPolicyList) super.clone();
66+
}
67+
68+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ public final class ExternalRuntimeOptions extends com.google.api.client.json.Gen
4949
@com.google.api.client.util.Key
5050
private java.lang.String containerMemory;
5151

52+
/**
53+
* Optional. Maximum number of requests that a Cloud Run instance can handle concurrently. If
54+
* absent or if `0`, a default concurrency is used.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
58+
private java.lang.Long containerRequestConcurrency;
59+
5260
/**
5361
* Optional. Maximum number of rows in each batch sent to the external runtime. If absent or if 0,
5462
* BigQuery dynamically decides the number of rows in a batch.
@@ -119,6 +127,25 @@ public ExternalRuntimeOptions setContainerMemory(java.lang.String containerMemor
119127
return this;
120128
}
121129

130+
/**
131+
* Optional. Maximum number of requests that a Cloud Run instance can handle concurrently. If
132+
* absent or if `0`, a default concurrency is used.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.Long getContainerRequestConcurrency() {
136+
return containerRequestConcurrency;
137+
}
138+
139+
/**
140+
* Optional. Maximum number of requests that a Cloud Run instance can handle concurrently. If
141+
* absent or if `0`, a default concurrency is used.
142+
* @param containerRequestConcurrency containerRequestConcurrency or {@code null} for none
143+
*/
144+
public ExternalRuntimeOptions setContainerRequestConcurrency(java.lang.Long containerRequestConcurrency) {
145+
this.containerRequestConcurrency = containerRequestConcurrency;
146+
return this;
147+
}
148+
122149
/**
123150
* Optional. Maximum number of rows in each batch sent to the external runtime. If absent or if 0,
124151
* BigQuery dynamically decides the number of rows in a batch.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigquery.model;
18+
19+
/**
20+
* Provides cache statistics for a GenAi function call.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GenAiFunctionCacheStats extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Number of rows served from cache.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
37+
private java.lang.Long numCacheHitRows;
38+
39+
/**
40+
* Number of rows served from cache.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.Long getNumCacheHitRows() {
44+
return numCacheHitRows;
45+
}
46+
47+
/**
48+
* Number of rows served from cache.
49+
* @param numCacheHitRows numCacheHitRows or {@code null} for none
50+
*/
51+
public GenAiFunctionCacheStats setNumCacheHitRows(java.lang.Long numCacheHitRows) {
52+
this.numCacheHitRows = numCacheHitRows;
53+
return this;
54+
}
55+
56+
@Override
57+
public GenAiFunctionCacheStats set(String fieldName, Object value) {
58+
return (GenAiFunctionCacheStats) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GenAiFunctionCacheStats clone() {
63+
return (GenAiFunctionCacheStats) super.clone();
64+
}
65+
66+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GenAiFunctionStats extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Cache stats for the function.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GenAiFunctionCacheStats cacheStats;
38+
3239
/**
3340
* Cost optimization stats if applied on the rows processed by the function.
3441
* The value may be {@code null}.
@@ -65,6 +72,23 @@ public final class GenAiFunctionStats extends com.google.api.client.json.Generic
6572
@com.google.api.client.util.Key
6673
private java.lang.String prompt;
6774

75+
/**
76+
* Cache stats for the function.
77+
* @return value or {@code null} for none
78+
*/
79+
public GenAiFunctionCacheStats getCacheStats() {
80+
return cacheStats;
81+
}
82+
83+
/**
84+
* Cache stats for the function.
85+
* @param cacheStats cacheStats or {@code null} for none
86+
*/
87+
public GenAiFunctionStats setCacheStats(GenAiFunctionCacheStats cacheStats) {
88+
this.cacheStats = cacheStats;
89+
return this;
90+
}
91+
6892
/**
6993
* Cost optimization stats if applied on the rows processed by the function.
7094
* @return value or {@code null} for none
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigquery.model;
18+
19+
/**
20+
* Column Metadata Index staleness detailed infnormation.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the BigQuery API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class MetadataCacheStalenessInsight extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Average column metadata index staleness of previous runs with the same query hash.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String avgPreviousStalenessMs;
38+
39+
/**
40+
* Output only. The percent increase in staleness between the current job and the average
41+
* staleness of previous jobs with the same query hash.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Double stalenessPercentageIncrease;
46+
47+
/**
48+
* Output only. Average column metadata index staleness of previous runs with the same query hash.
49+
* @return value or {@code null} for none
50+
*/
51+
public String getAvgPreviousStalenessMs() {
52+
return avgPreviousStalenessMs;
53+
}
54+
55+
/**
56+
* Output only. Average column metadata index staleness of previous runs with the same query hash.
57+
* @param avgPreviousStalenessMs avgPreviousStalenessMs or {@code null} for none
58+
*/
59+
public MetadataCacheStalenessInsight setAvgPreviousStalenessMs(String avgPreviousStalenessMs) {
60+
this.avgPreviousStalenessMs = avgPreviousStalenessMs;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. The percent increase in staleness between the current job and the average
66+
* staleness of previous jobs with the same query hash.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Double getStalenessPercentageIncrease() {
70+
return stalenessPercentageIncrease;
71+
}
72+
73+
/**
74+
* Output only. The percent increase in staleness between the current job and the average
75+
* staleness of previous jobs with the same query hash.
76+
* @param stalenessPercentageIncrease stalenessPercentageIncrease or {@code null} for none
77+
*/
78+
public MetadataCacheStalenessInsight setStalenessPercentageIncrease(java.lang.Double stalenessPercentageIncrease) {
79+
this.stalenessPercentageIncrease = stalenessPercentageIncrease;
80+
return this;
81+
}
82+
83+
@Override
84+
public MetadataCacheStalenessInsight set(String fieldName, Object value) {
85+
return (MetadataCacheStalenessInsight) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public MetadataCacheStalenessInsight clone() {
90+
return (MetadataCacheStalenessInsight) super.clone();
91+
}
92+
93+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ public final class PerformanceInsights extends com.google.api.client.json.Generi
5353
@com.google.api.client.util.Key
5454
private java.util.List<StagePerformanceStandaloneInsight> stagePerformanceStandaloneInsights;
5555

56+
/**
57+
* Output only. Performance insights for table-level attributes that changed compared to previous
58+
* runs.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.util.List<TableChangeInsight> tableChangeInsights;
63+
5664
/**
5765
* Output only. Average execution ms of previous runs. Indicates the job ran slow compared to
5866
* previous executions. To find previous executions, use INFORMATION_SCHEMA tables and filter jobs
@@ -110,6 +118,25 @@ public PerformanceInsights setStagePerformanceStandaloneInsights(java.util.List<
110118
return this;
111119
}
112120

121+
/**
122+
* Output only. Performance insights for table-level attributes that changed compared to previous
123+
* runs.
124+
* @return value or {@code null} for none
125+
*/
126+
public java.util.List<TableChangeInsight> getTableChangeInsights() {
127+
return tableChangeInsights;
128+
}
129+
130+
/**
131+
* Output only. Performance insights for table-level attributes that changed compared to previous
132+
* runs.
133+
* @param tableChangeInsights tableChangeInsights or {@code null} for none
134+
*/
135+
public PerformanceInsights setTableChangeInsights(java.util.List<TableChangeInsight> tableChangeInsights) {
136+
this.tableChangeInsights = tableChangeInsights;
137+
return this;
138+
}
139+
113140
@Override
114141
public PerformanceInsights set(String fieldName, Object value) {
115142
return (PerformanceInsights) super.set(fieldName, value);

0 commit comments

Comments
 (0)