From f9e339d50e66410fd686847feb13f4edfffecddb Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Sat, 28 Feb 2026 17:11:07 -0800
Subject: [PATCH] chore: regenerate bigquery client
---
.../v2/2.0.0/README.md | 4 +-
.../bigquery/model/DataPolicyOption.java | 2 +-
.../model/IncrementalResultStats.java | 102 ++++++++++++++++++
.../v2/2.0.0/pom.xml | 4 +-
.../google-api-services-bigquery/v2/README.md | 4 +-
5 files changed, 109 insertions(+), 7 deletions(-)
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:
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 @@