Skip to content

Commit 5d04cb7

Browse files
1 parent 4f140a5 commit 5d04cb7

14 files changed

Lines changed: 360 additions & 12 deletions

File tree

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

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

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8526,6 +8526,22 @@ public Cancel setOperation(java.lang.String operation) {
85268526
return this;
85278527
}
85288528

8529+
/** Optional. Region of the Cloud SQL instance. */
8530+
@com.google.api.client.util.Key
8531+
private java.lang.String location;
8532+
8533+
/** Optional. Region of the Cloud SQL instance.
8534+
*/
8535+
public java.lang.String getLocation() {
8536+
return location;
8537+
}
8538+
8539+
/** Optional. Region of the Cloud SQL instance. */
8540+
public Cancel setLocation(java.lang.String location) {
8541+
this.location = location;
8542+
return this;
8543+
}
8544+
85298545
@Override
85308546
public Cancel set(String parameterName, Object value) {
85318547
return (Cancel) super.set(parameterName, value);
@@ -8670,6 +8686,22 @@ public Get setOperation(java.lang.String operation) {
86708686
return this;
86718687
}
86728688

8689+
/** Optional. Region of the Cloud SQL instance. */
8690+
@com.google.api.client.util.Key
8691+
private java.lang.String location;
8692+
8693+
/** Optional. Region of the Cloud SQL instance.
8694+
*/
8695+
public java.lang.String getLocation() {
8696+
return location;
8697+
}
8698+
8699+
/** Optional. Region of the Cloud SQL instance. */
8700+
public Get setLocation(java.lang.String location) {
8701+
this.location = location;
8702+
return this;
8703+
}
8704+
86738705
@Override
86748706
public Get set(String parameterName, Object value) {
86758707
return (Get) super.set(parameterName, value);
@@ -8813,6 +8845,22 @@ public List setInstance(java.lang.String instance) {
88138845
return this;
88148846
}
88158847

8848+
/** Optional. Region of the Cloud SQL instance. */
8849+
@com.google.api.client.util.Key
8850+
private java.lang.String location;
8851+
8852+
/** Optional. Region of the Cloud SQL instance.
8853+
*/
8854+
public java.lang.String getLocation() {
8855+
return location;
8856+
}
8857+
8858+
/** Optional. Region of the Cloud SQL instance. */
8859+
public List setLocation(java.lang.String location) {
8860+
this.location = location;
8861+
return this;
8862+
}
8863+
88168864
/** Maximum number of operations per response. */
88178865
@com.google.api.client.util.Key
88188866
private java.lang.Long maxResults;
@@ -11680,6 +11728,57 @@ public Update setRevokeExistingRoles(java.lang.Boolean revokeExistingRoles) {
1168011728
return this;
1168111729
}
1168211730

11731+
/**
11732+
* Optional. Specifies whether to revoke existing roles that are not present in the
11733+
* `server_roles` field. If `false` or unset, the server roles specified in `server_roles` are
11734+
* added to the user's existing server roles.
11735+
*/
11736+
@com.google.api.client.util.Key
11737+
private java.lang.Boolean revokeExistingServerRoles;
11738+
11739+
/** Optional. Specifies whether to revoke existing roles that are not present in the `server_roles`
11740+
field. If `false` or unset, the server roles specified in `server_roles` are added to the user's
11741+
existing server roles.
11742+
*/
11743+
public java.lang.Boolean getRevokeExistingServerRoles() {
11744+
return revokeExistingServerRoles;
11745+
}
11746+
11747+
/**
11748+
* Optional. Specifies whether to revoke existing roles that are not present in the
11749+
* `server_roles` field. If `false` or unset, the server roles specified in `server_roles` are
11750+
* added to the user's existing server roles.
11751+
*/
11752+
public Update setRevokeExistingServerRoles(java.lang.Boolean revokeExistingServerRoles) {
11753+
this.revokeExistingServerRoles = revokeExistingServerRoles;
11754+
return this;
11755+
}
11756+
11757+
/**
11758+
* Optional. The server roles to grant to the SQL Server login. Existing server roles will not
11759+
* be revoked if revoke_existing_roles is false. body.server_roles will be ignored for update
11760+
* request.
11761+
*/
11762+
@com.google.api.client.util.Key
11763+
private java.util.List<java.lang.String> serverRoles;
11764+
11765+
/** Optional. The server roles to grant to the SQL Server login. Existing server roles will not be
11766+
revoked if revoke_existing_roles is false. body.server_roles will be ignored for update request.
11767+
*/
11768+
public java.util.List<java.lang.String> getServerRoles() {
11769+
return serverRoles;
11770+
}
11771+
11772+
/**
11773+
* Optional. The server roles to grant to the SQL Server login. Existing server roles will not
11774+
* be revoked if revoke_existing_roles is false. body.server_roles will be ignored for update
11775+
* request.
11776+
*/
11777+
public Update setServerRoles(java.util.List<java.lang.String> serverRoles) {
11778+
this.serverRoles = serverRoles;
11779+
return this;
11780+
}
11781+
1168311782
@Override
1168411783
public Update set(String parameterName, Object value) {
1168511784
return (Update) super.set(parameterName, value);

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
@@ -70,6 +70,14 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
7070
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
7171
private java.lang.Long currentDiskSize;
7272

73+
/**
74+
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
75+
* metadata is not sent to the Database Center.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private java.lang.Boolean databaseCenterIntegrationEnabled;
80+
7381
/**
7482
* Output only. Stores the current database version running on the instance including minor
7583
* version such as `MYSQL_8_0_18`.
@@ -519,6 +527,25 @@ public DatabaseInstance setCurrentDiskSize(java.lang.Long currentDiskSize) {
519527
return this;
520528
}
521529

530+
/**
531+
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
532+
* metadata is not sent to the Database Center.
533+
* @return value or {@code null} for none
534+
*/
535+
public java.lang.Boolean getDatabaseCenterIntegrationEnabled() {
536+
return databaseCenterIntegrationEnabled;
537+
}
538+
539+
/**
540+
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
541+
* metadata is not sent to the Database Center.
542+
* @param databaseCenterIntegrationEnabled databaseCenterIntegrationEnabled or {@code null} for none
543+
*/
544+
public DatabaseInstance setDatabaseCenterIntegrationEnabled(java.lang.Boolean databaseCenterIntegrationEnabled) {
545+
this.databaseCenterIntegrationEnabled = databaseCenterIntegrationEnabled;
546+
return this;
547+
}
548+
522549
/**
523550
* Output only. Stores the current database version running on the instance including minor
524551
* version such as `MYSQL_8_0_18`.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ public final class OnPremisesConfiguration extends com.google.api.client.json.Ge
5151
@com.google.api.client.util.Key
5252
private java.lang.String clientKey;
5353

54+
/**
55+
* Output only. Indicates whether the resource is managed by Database Migration Service.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Boolean dmsManaged;
60+
5461
/**
5562
* The dump file to create the Cloud SQL replica.
5663
* The value may be {@code null}.
@@ -161,6 +168,23 @@ public OnPremisesConfiguration setClientKey(java.lang.String clientKey) {
161168
return this;
162169
}
163170

171+
/**
172+
* Output only. Indicates whether the resource is managed by Database Migration Service.
173+
* @return value or {@code null} for none
174+
*/
175+
public java.lang.Boolean getDmsManaged() {
176+
return dmsManaged;
177+
}
178+
179+
/**
180+
* Output only. Indicates whether the resource is managed by Database Migration Service.
181+
* @param dmsManaged dmsManaged or {@code null} for none
182+
*/
183+
public OnPremisesConfiguration setDmsManaged(java.lang.Boolean dmsManaged) {
184+
this.dmsManaged = dmsManaged;
185+
return this;
186+
}
187+
164188
/**
165189
* The dump file to create the Cloud SQL replica.
166190
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,13 @@ public final class User extends com.google.api.client.json.GenericJson {
120120
@com.google.api.client.util.Key
121121
private java.lang.String project;
122122

123+
/**
124+
* Optional. The server roles for the SQL Server login.
125+
* The value may be {@code null}.
126+
*/
127+
@com.google.api.client.util.Key
128+
private java.util.List<java.lang.String> serverRoles;
129+
123130
/**
124131
* The value may be {@code null}.
125132
*/
@@ -352,6 +359,23 @@ public User setProject(java.lang.String project) {
352359
return this;
353360
}
354361

362+
/**
363+
* Optional. The server roles for the SQL Server login.
364+
* @return value or {@code null} for none
365+
*/
366+
public java.util.List<java.lang.String> getServerRoles() {
367+
return serverRoles;
368+
}
369+
370+
/**
371+
* Optional. The server roles for the SQL Server login.
372+
* @param serverRoles serverRoles or {@code null} for none
373+
*/
374+
public User setServerRoles(java.util.List<java.lang.String> serverRoles) {
375+
this.serverRoles = serverRoles;
376+
return this;
377+
}
378+
355379
/**
356380
* @return value or {@code null} for none
357381
*/

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-rev20260703-2.0.0</version>
12-
<name>Cloud SQL Admin API v1-rev20260703-2.0.0</name>
11+
<version>v1-rev20260722-2.0.0</version>
12+
<name>Cloud SQL Admin API v1-rev20260722-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-rev20260703-2.0.0</version>
25+
<version>v1-rev20260722-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-rev20260703-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sqladmin:v1-rev20260722-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-rev20260703-2.0.0</version>
25+
<version>v1beta4-rev20260722-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-rev20260703-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sqladmin:v1beta4-rev20260722-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)