Skip to content

Commit 15d5eaa

Browse files
1 parent 9b130be commit 15d5eaa

File tree

5 files changed

+21
-48
lines changed

5 files changed

+21
-48
lines changed

clients/google-api-services-bigqueryreservation/v1/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-bigqueryreservation</artifactId>
25-
<version>v1-rev20250218-2.0.0</version>
25+
<version>v1-rev20250304-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-bigqueryreservation:v1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigqueryreservation:v1-rev20250304-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-bigqueryreservation/v1/2.0.0/com/google/api/services/bigqueryreservation/v1/model/ReplicationStatus.java

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,6 @@ public final class ReplicationStatus extends com.google.api.client.json.GenericJ
5555
@com.google.api.client.util.Key
5656
private String lastReplicationTime;
5757

58-
/**
59-
* Output only. The time at which a soft failover for the reservation and its associated datasets
60-
* was initiated. After this field is set, all subsequent changes to the reservation will be
61-
* rejected unless a hard failover overrides this operation. This field will be cleared once the
62-
* failover is complete.
63-
* The value may be {@code null}.
64-
*/
65-
@com.google.api.client.util.Key
66-
private String softFailoverStartTime;
67-
6858
/**
6959
* Output only. The last error encountered while trying to replicate changes from the primary to
7060
* the secondary. This field is only available if the replication has not succeeded since.
@@ -124,29 +114,6 @@ public ReplicationStatus setLastReplicationTime(String lastReplicationTime) {
124114
return this;
125115
}
126116

127-
/**
128-
* Output only. The time at which a soft failover for the reservation and its associated datasets
129-
* was initiated. After this field is set, all subsequent changes to the reservation will be
130-
* rejected unless a hard failover overrides this operation. This field will be cleared once the
131-
* failover is complete.
132-
* @return value or {@code null} for none
133-
*/
134-
public String getSoftFailoverStartTime() {
135-
return softFailoverStartTime;
136-
}
137-
138-
/**
139-
* Output only. The time at which a soft failover for the reservation and its associated datasets
140-
* was initiated. After this field is set, all subsequent changes to the reservation will be
141-
* rejected unless a hard failover overrides this operation. This field will be cleared once the
142-
* failover is complete.
143-
* @param softFailoverStartTime softFailoverStartTime or {@code null} for none
144-
*/
145-
public ReplicationStatus setSoftFailoverStartTime(String softFailoverStartTime) {
146-
this.softFailoverStartTime = softFailoverStartTime;
147-
return this;
148-
}
149-
150117
@Override
151118
public ReplicationStatus set(String fieldName, Object value) {
152119
return (ReplicationStatus) super.set(fieldName, value);

clients/google-api-services-bigqueryreservation/v1/2.0.0/com/google/api/services/bigqueryreservation/v1/model/Reservation.java

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,12 @@ public final class Reservation extends com.google.api.client.json.GenericJson {
150150
private java.lang.String primaryLocation;
151151

152152
/**
153-
* Output only. The Disater Recovery(DR) replication status of the reservation. This is only
154-
* available for the primary replica of DR/failover reservations and provides information about
153+
* Output only. The Disaster Recovery(DR) replication status of the reservation. This is only
154+
* available for the primary replicas of DR/failover reservations and provides information about
155155
* the both the staleness of the secondary and the last error encountered while trying to
156-
* replicate changes from the primary to the secondary.
156+
* replicate changes from the primary to the secondary. If this field is blank, it means that the
157+
* reservation is either not a DR reservation or the reservation is a DR secondary or that any
158+
* replication operations on the reservation have succeeded.
157159
* The value may be {@code null}.
158160
*/
159161
@com.google.api.client.util.Key
@@ -471,21 +473,25 @@ public Reservation setPrimaryLocation(java.lang.String primaryLocation) {
471473
}
472474

473475
/**
474-
* Output only. The Disater Recovery(DR) replication status of the reservation. This is only
475-
* available for the primary replica of DR/failover reservations and provides information about
476+
* Output only. The Disaster Recovery(DR) replication status of the reservation. This is only
477+
* available for the primary replicas of DR/failover reservations and provides information about
476478
* the both the staleness of the secondary and the last error encountered while trying to
477-
* replicate changes from the primary to the secondary.
479+
* replicate changes from the primary to the secondary. If this field is blank, it means that the
480+
* reservation is either not a DR reservation or the reservation is a DR secondary or that any
481+
* replication operations on the reservation have succeeded.
478482
* @return value or {@code null} for none
479483
*/
480484
public ReplicationStatus getReplicationStatus() {
481485
return replicationStatus;
482486
}
483487

484488
/**
485-
* Output only. The Disater Recovery(DR) replication status of the reservation. This is only
486-
* available for the primary replica of DR/failover reservations and provides information about
489+
* Output only. The Disaster Recovery(DR) replication status of the reservation. This is only
490+
* available for the primary replicas of DR/failover reservations and provides information about
487491
* the both the staleness of the secondary and the last error encountered while trying to
488-
* replicate changes from the primary to the secondary.
492+
* replicate changes from the primary to the secondary. If this field is blank, it means that the
493+
* reservation is either not a DR reservation or the reservation is a DR secondary or that any
494+
* replication operations on the reservation have succeeded.
489495
* @param replicationStatus replicationStatus or {@code null} for none
490496
*/
491497
public Reservation setReplicationStatus(ReplicationStatus replicationStatus) {

clients/google-api-services-bigqueryreservation/v1/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-bigqueryreservation</artifactId>
11-
<version>v1-rev20250218-2.0.0</version>
12-
<name>BigQuery Reservation API v1-rev20250218-2.0.0</name>
11+
<version>v1-rev20250304-2.0.0</version>
12+
<name>BigQuery Reservation API v1-rev20250304-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-bigqueryreservation/v1/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-bigqueryreservation</artifactId>
25-
<version>v1-rev20250218-2.0.0</version>
25+
<version>v1-rev20250304-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-bigqueryreservation:v1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigqueryreservation:v1-rev20250304-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)