Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-bigquery/v2/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-bigquery</artifactId>
<version>v2-rev20260118-2.0.0</version>
<version>v2-rev20260211-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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).
*
* <p> 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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-bigquery/v2/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-bigquery</artifactId>
<version>v2-rev20260118-2.0.0</version>
<name>BigQuery API v2-rev20260118-2.0.0</name>
<version>v2-rev20260211-2.0.0</version>
<name>BigQuery API v2-rev20260211-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-bigquery/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-bigquery</artifactId>
<version>v2-rev20260118-2.0.0</version>
<version>v2-rev20260211-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down