diff --git a/clients/google-api-services-bigquery/v2/2.0.0/README.md b/clients/google-api-services-bigquery/v2/2.0.0/README.md index ad610007748..122e7fd61b2 100644 --- a/clients/google-api-services-bigquery/v2/2.0.0/README.md +++ b/clients/google-api-services-bigquery/v2/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-bigquery - v2-rev20260118-2.0.0 + v2-rev20260211-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-bigquery:v2-rev20260118-2.0.0' + implementation 'com.google.apis:google-api-services-bigquery:v2-rev20260211-2.0.0' } ``` diff --git a/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/DataPolicyOption.java b/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/DataPolicyOption.java index 78ab119fc78..832f939ff48 100644 --- a/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/DataPolicyOption.java +++ b/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/DataPolicyOption.java @@ -18,7 +18,7 @@ /** * Data policy option. For more information, see [Mask data by applying data policies to a - * column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/). + * column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column). * *

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the BigQuery API. For a detailed explanation see: diff --git a/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/IncrementalResultStats.java b/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/IncrementalResultStats.java index 70bf2e7ffad..1d7d743a315 100644 --- a/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/IncrementalResultStats.java +++ b/clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/IncrementalResultStats.java @@ -37,6 +37,36 @@ public final class IncrementalResultStats extends com.google.api.client.json.Gen @com.google.api.client.util.Key private java.lang.String disabledReason; + /** + * Output only. Additional human-readable clarification, if available, for DisabledReason. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String disabledReasonDetails; + + /** + * Output only. The time at which the first incremental result was written. If the query needed to + * restart internally, this only describes the final attempt. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private String firstIncrementalRowTime; + + /** + * Output only. Number of rows that were in the latest result set before query completion. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key @com.google.api.client.json.JsonString + private java.lang.Long incrementalRowCount; + + /** + * Output only. The time at which the last incremental result was written. Does not include the + * final result written after query completion. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private String lastIncrementalRowTime; + /** * Output only. The time at which the result table's contents were modified. May be absent if no * results have been written or the query has completed. @@ -70,6 +100,78 @@ public IncrementalResultStats setDisabledReason(java.lang.String disabledReason) return this; } + /** + * Output only. Additional human-readable clarification, if available, for DisabledReason. + * @return value or {@code null} for none + */ + public java.lang.String getDisabledReasonDetails() { + return disabledReasonDetails; + } + + /** + * Output only. Additional human-readable clarification, if available, for DisabledReason. + * @param disabledReasonDetails disabledReasonDetails or {@code null} for none + */ + public IncrementalResultStats setDisabledReasonDetails(java.lang.String disabledReasonDetails) { + this.disabledReasonDetails = disabledReasonDetails; + return this; + } + + /** + * Output only. The time at which the first incremental result was written. If the query needed to + * restart internally, this only describes the final attempt. + * @return value or {@code null} for none + */ + public String getFirstIncrementalRowTime() { + return firstIncrementalRowTime; + } + + /** + * Output only. The time at which the first incremental result was written. If the query needed to + * restart internally, this only describes the final attempt. + * @param firstIncrementalRowTime firstIncrementalRowTime or {@code null} for none + */ + public IncrementalResultStats setFirstIncrementalRowTime(String firstIncrementalRowTime) { + this.firstIncrementalRowTime = firstIncrementalRowTime; + return this; + } + + /** + * Output only. Number of rows that were in the latest result set before query completion. + * @return value or {@code null} for none + */ + public java.lang.Long getIncrementalRowCount() { + return incrementalRowCount; + } + + /** + * Output only. Number of rows that were in the latest result set before query completion. + * @param incrementalRowCount incrementalRowCount or {@code null} for none + */ + public IncrementalResultStats setIncrementalRowCount(java.lang.Long incrementalRowCount) { + this.incrementalRowCount = incrementalRowCount; + return this; + } + + /** + * Output only. The time at which the last incremental result was written. Does not include the + * final result written after query completion. + * @return value or {@code null} for none + */ + public String getLastIncrementalRowTime() { + return lastIncrementalRowTime; + } + + /** + * Output only. The time at which the last incremental result was written. Does not include the + * final result written after query completion. + * @param lastIncrementalRowTime lastIncrementalRowTime or {@code null} for none + */ + public IncrementalResultStats setLastIncrementalRowTime(String lastIncrementalRowTime) { + this.lastIncrementalRowTime = lastIncrementalRowTime; + return this; + } + /** * Output only. The time at which the result table's contents were modified. May be absent if no * results have been written or the query has completed. diff --git a/clients/google-api-services-bigquery/v2/2.0.0/pom.xml b/clients/google-api-services-bigquery/v2/2.0.0/pom.xml index 1670cac581a..dbc5b63584d 100644 --- a/clients/google-api-services-bigquery/v2/2.0.0/pom.xml +++ b/clients/google-api-services-bigquery/v2/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-bigquery - v2-rev20260118-2.0.0 - BigQuery API v2-rev20260118-2.0.0 + v2-rev20260211-2.0.0 + BigQuery API v2-rev20260211-2.0.0 jar 2011 diff --git a/clients/google-api-services-bigquery/v2/README.md b/clients/google-api-services-bigquery/v2/README.md index ad610007748..122e7fd61b2 100644 --- a/clients/google-api-services-bigquery/v2/README.md +++ b/clients/google-api-services-bigquery/v2/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-bigquery - v2-rev20260118-2.0.0 + v2-rev20260211-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-bigquery:v2-rev20260118-2.0.0' + implementation 'com.google.apis:google-api-services-bigquery:v2-rev20260211-2.0.0' } ```