Skip to content

Commit bc076c8

Browse files
1 parent 1e66c71 commit bc076c8

File tree

5 files changed

+109
-7
lines changed

5 files changed

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Data policy option. For more information, see [Mask data by applying data policies to a
21-
* column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
21+
* column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).
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/IncrementalResultStats.java

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,36 @@ public final class IncrementalResultStats extends com.google.api.client.json.Gen
3737
@com.google.api.client.util.Key
3838
private java.lang.String disabledReason;
3939

40+
/**
41+
* Output only. Additional human-readable clarification, if available, for DisabledReason.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String disabledReasonDetails;
46+
47+
/**
48+
* Output only. The time at which the first incremental result was written. If the query needed to
49+
* restart internally, this only describes the final attempt.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private String firstIncrementalRowTime;
54+
55+
/**
56+
* Output only. Number of rows that were in the latest result set before query completion.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
60+
private java.lang.Long incrementalRowCount;
61+
62+
/**
63+
* Output only. The time at which the last incremental result was written. Does not include the
64+
* final result written after query completion.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private String lastIncrementalRowTime;
69+
4070
/**
4171
* Output only. The time at which the result table's contents were modified. May be absent if no
4272
* results have been written or the query has completed.
@@ -70,6 +100,78 @@ public IncrementalResultStats setDisabledReason(java.lang.String disabledReason)
70100
return this;
71101
}
72102

103+
/**
104+
* Output only. Additional human-readable clarification, if available, for DisabledReason.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.lang.String getDisabledReasonDetails() {
108+
return disabledReasonDetails;
109+
}
110+
111+
/**
112+
* Output only. Additional human-readable clarification, if available, for DisabledReason.
113+
* @param disabledReasonDetails disabledReasonDetails or {@code null} for none
114+
*/
115+
public IncrementalResultStats setDisabledReasonDetails(java.lang.String disabledReasonDetails) {
116+
this.disabledReasonDetails = disabledReasonDetails;
117+
return this;
118+
}
119+
120+
/**
121+
* Output only. The time at which the first incremental result was written. If the query needed to
122+
* restart internally, this only describes the final attempt.
123+
* @return value or {@code null} for none
124+
*/
125+
public String getFirstIncrementalRowTime() {
126+
return firstIncrementalRowTime;
127+
}
128+
129+
/**
130+
* Output only. The time at which the first incremental result was written. If the query needed to
131+
* restart internally, this only describes the final attempt.
132+
* @param firstIncrementalRowTime firstIncrementalRowTime or {@code null} for none
133+
*/
134+
public IncrementalResultStats setFirstIncrementalRowTime(String firstIncrementalRowTime) {
135+
this.firstIncrementalRowTime = firstIncrementalRowTime;
136+
return this;
137+
}
138+
139+
/**
140+
* Output only. Number of rows that were in the latest result set before query completion.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.Long getIncrementalRowCount() {
144+
return incrementalRowCount;
145+
}
146+
147+
/**
148+
* Output only. Number of rows that were in the latest result set before query completion.
149+
* @param incrementalRowCount incrementalRowCount or {@code null} for none
150+
*/
151+
public IncrementalResultStats setIncrementalRowCount(java.lang.Long incrementalRowCount) {
152+
this.incrementalRowCount = incrementalRowCount;
153+
return this;
154+
}
155+
156+
/**
157+
* Output only. The time at which the last incremental result was written. Does not include the
158+
* final result written after query completion.
159+
* @return value or {@code null} for none
160+
*/
161+
public String getLastIncrementalRowTime() {
162+
return lastIncrementalRowTime;
163+
}
164+
165+
/**
166+
* Output only. The time at which the last incremental result was written. Does not include the
167+
* final result written after query completion.
168+
* @param lastIncrementalRowTime lastIncrementalRowTime or {@code null} for none
169+
*/
170+
public IncrementalResultStats setLastIncrementalRowTime(String lastIncrementalRowTime) {
171+
this.lastIncrementalRowTime = lastIncrementalRowTime;
172+
return this;
173+
}
174+
73175
/**
74176
* Output only. The time at which the result table's contents were modified. May be absent if no
75177
* results have been written or the query has completed.

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

0 commit comments

Comments
 (0)