Skip to content

Commit 98664df

Browse files
1 parent 15c78aa commit 98664df

File tree

10 files changed

+114
-12
lines changed

10 files changed

+114
-12
lines changed

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

clients/google-api-services-sqladmin/v1/2.0.0/com/google/api/services/sqladmin/model/BackupRun.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,13 @@ public final class BackupRun extends com.google.api.client.json.GenericJson {
109109
@com.google.api.client.util.Key
110110
private java.lang.String location;
111111

112+
/**
113+
* Output only. The maximum chargeable bytes for the backup.
114+
* The value may be {@code null}.
115+
*/
116+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
117+
private java.lang.Long maxChargeableBytes;
118+
112119
/**
113120
* The URI of this resource.
114121
* The value may be {@code null}.
@@ -348,6 +355,23 @@ public BackupRun setLocation(java.lang.String location) {
348355
return this;
349356
}
350357

358+
/**
359+
* Output only. The maximum chargeable bytes for the backup.
360+
* @return value or {@code null} for none
361+
*/
362+
public java.lang.Long getMaxChargeableBytes() {
363+
return maxChargeableBytes;
364+
}
365+
366+
/**
367+
* Output only. The maximum chargeable bytes for the backup.
368+
* @param maxChargeableBytes maxChargeableBytes or {@code null} for none
369+
*/
370+
public BackupRun setMaxChargeableBytes(java.lang.Long maxChargeableBytes) {
371+
this.maxChargeableBytes = maxChargeableBytes;
372+
return this;
373+
}
374+
351375
/**
352376
* The URI of this resource.
353377
* @return value or {@code null} for none

clients/google-api-services-sqladmin/v1/2.0.0/com/google/api/services/sqladmin/model/DatabaseInstance.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,14 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
274274
@com.google.api.client.util.Key
275275
private java.lang.String rootPassword;
276276

277+
/**
278+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
279+
* for future use.
280+
* The value may be {@code null}.
281+
*/
282+
@com.google.api.client.util.Key
283+
private java.lang.Boolean satisfiesPzi;
284+
277285
/**
278286
* This status indicates whether the instance satisfies PZS. The status is reserved for future
279287
* use.
@@ -960,6 +968,25 @@ public DatabaseInstance setRootPassword(java.lang.String rootPassword) {
960968
return this;
961969
}
962970

971+
/**
972+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
973+
* for future use.
974+
* @return value or {@code null} for none
975+
*/
976+
public java.lang.Boolean getSatisfiesPzi() {
977+
return satisfiesPzi;
978+
}
979+
980+
/**
981+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
982+
* for future use.
983+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
984+
*/
985+
public DatabaseInstance setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
986+
this.satisfiesPzi = satisfiesPzi;
987+
return this;
988+
}
989+
963990
/**
964991
* This status indicates whether the instance satisfies PZS. The status is reserved for future
965992
* use.

clients/google-api-services-sqladmin/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-sqladmin</artifactId>
11-
<version>v1-rev20240711-2.0.0</version>
12-
<name>Cloud SQL Admin API v1-rev20240711-2.0.0</name>
11+
<version>v1-rev20240724-2.0.0</version>
12+
<name>Cloud SQL Admin API v1-rev20240724-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-sqladmin/v1beta4/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-sqladmin</artifactId>
25-
<version>v1beta4-rev20240711-2.0.0</version>
25+
<version>v1beta4-rev20240724-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-sqladmin:v1beta4-rev20240711-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sqladmin:v1beta4-rev20240724-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-sqladmin/v1beta4/2.0.0/com/google/api/services/sqladmin/model/BackupRun.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,13 @@ public final class BackupRun extends com.google.api.client.json.GenericJson {
109109
@com.google.api.client.util.Key
110110
private java.lang.String location;
111111

112+
/**
113+
* Output only. The maximum chargeable bytes for the backup.
114+
* The value may be {@code null}.
115+
*/
116+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
117+
private java.lang.Long maxChargeableBytes;
118+
112119
/**
113120
* The URI of this resource.
114121
* The value may be {@code null}.
@@ -348,6 +355,23 @@ public BackupRun setLocation(java.lang.String location) {
348355
return this;
349356
}
350357

358+
/**
359+
* Output only. The maximum chargeable bytes for the backup.
360+
* @return value or {@code null} for none
361+
*/
362+
public java.lang.Long getMaxChargeableBytes() {
363+
return maxChargeableBytes;
364+
}
365+
366+
/**
367+
* Output only. The maximum chargeable bytes for the backup.
368+
* @param maxChargeableBytes maxChargeableBytes or {@code null} for none
369+
*/
370+
public BackupRun setMaxChargeableBytes(java.lang.Long maxChargeableBytes) {
371+
this.maxChargeableBytes = maxChargeableBytes;
372+
return this;
373+
}
374+
351375
/**
352376
* The URI of this resource.
353377
* @return value or {@code null} for none

clients/google-api-services-sqladmin/v1beta4/2.0.0/com/google/api/services/sqladmin/model/DatabaseInstance.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,14 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
274274
@com.google.api.client.util.Key
275275
private java.lang.String rootPassword;
276276

277+
/**
278+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
279+
* for future use.
280+
* The value may be {@code null}.
281+
*/
282+
@com.google.api.client.util.Key
283+
private java.lang.Boolean satisfiesPzi;
284+
277285
/**
278286
* This status indicates whether the instance satisfies PZS. The status is reserved for future
279287
* use.
@@ -961,6 +969,25 @@ public DatabaseInstance setRootPassword(java.lang.String rootPassword) {
961969
return this;
962970
}
963971

972+
/**
973+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
974+
* for future use.
975+
* @return value or {@code null} for none
976+
*/
977+
public java.lang.Boolean getSatisfiesPzi() {
978+
return satisfiesPzi;
979+
}
980+
981+
/**
982+
* Output only. This status indicates whether the instance satisfies PZI. The status is reserved
983+
* for future use.
984+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
985+
*/
986+
public DatabaseInstance setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
987+
this.satisfiesPzi = satisfiesPzi;
988+
return this;
989+
}
990+
964991
/**
965992
* This status indicates whether the instance satisfies PZS. The status is reserved for future
966993
* use.

clients/google-api-services-sqladmin/v1beta4/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-sqladmin</artifactId>
11-
<version>v1beta4-rev20240711-2.0.0</version>
12-
<name>Cloud SQL Admin API v1beta4-rev20240711-2.0.0</name>
11+
<version>v1beta4-rev20240724-2.0.0</version>
12+
<name>Cloud SQL Admin API v1beta4-rev20240724-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-sqladmin/v1beta4/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-sqladmin</artifactId>
25-
<version>v1beta4-rev20240711-2.0.0</version>
25+
<version>v1beta4-rev20240724-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-sqladmin:v1beta4-rev20240711-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sqladmin:v1beta4-rev20240724-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)