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-sqladmin/v1/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-sqladmin</artifactId>
<version>v1-rev20260703-2.0.0</version>
<version>v1-rev20260722-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-sqladmin:v1-rev20260703-2.0.0'
implementation 'com.google.apis:google-api-services-sqladmin:v1-rev20260722-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8526,6 +8526,22 @@ public Cancel setOperation(java.lang.String operation) {
return this;
}

/** Optional. Region of the Cloud SQL instance. */
@com.google.api.client.util.Key
private java.lang.String location;

/** Optional. Region of the Cloud SQL instance.
*/
public java.lang.String getLocation() {
return location;
}

/** Optional. Region of the Cloud SQL instance. */
public Cancel setLocation(java.lang.String location) {
this.location = location;
return this;
}

@Override
public Cancel set(String parameterName, Object value) {
return (Cancel) super.set(parameterName, value);
Expand Down Expand Up @@ -8670,6 +8686,22 @@ public Get setOperation(java.lang.String operation) {
return this;
}

/** Optional. Region of the Cloud SQL instance. */
@com.google.api.client.util.Key
private java.lang.String location;

/** Optional. Region of the Cloud SQL instance.
*/
public java.lang.String getLocation() {
return location;
}

/** Optional. Region of the Cloud SQL instance. */
public Get setLocation(java.lang.String location) {
this.location = location;
return this;
}

@Override
public Get set(String parameterName, Object value) {
return (Get) super.set(parameterName, value);
Expand Down Expand Up @@ -8813,6 +8845,22 @@ public List setInstance(java.lang.String instance) {
return this;
}

/** Optional. Region of the Cloud SQL instance. */
@com.google.api.client.util.Key
private java.lang.String location;

/** Optional. Region of the Cloud SQL instance.
*/
public java.lang.String getLocation() {
return location;
}

/** Optional. Region of the Cloud SQL instance. */
public List setLocation(java.lang.String location) {
this.location = location;
return this;
}

/** Maximum number of operations per response. */
@com.google.api.client.util.Key
private java.lang.Long maxResults;
Expand Down Expand Up @@ -11680,6 +11728,57 @@ public Update setRevokeExistingRoles(java.lang.Boolean revokeExistingRoles) {
return this;
}

/**
* Optional. Specifies whether to revoke existing roles that are not present in the
* `server_roles` field. If `false` or unset, the server roles specified in `server_roles` are
* added to the user's existing server roles.
*/
@com.google.api.client.util.Key
private java.lang.Boolean revokeExistingServerRoles;

/** Optional. Specifies whether to revoke existing roles that are not present in the `server_roles`
field. If `false` or unset, the server roles specified in `server_roles` are added to the user's
existing server roles.
*/
public java.lang.Boolean getRevokeExistingServerRoles() {
return revokeExistingServerRoles;
}

/**
* Optional. Specifies whether to revoke existing roles that are not present in the
* `server_roles` field. If `false` or unset, the server roles specified in `server_roles` are
* added to the user's existing server roles.
*/
public Update setRevokeExistingServerRoles(java.lang.Boolean revokeExistingServerRoles) {
this.revokeExistingServerRoles = revokeExistingServerRoles;
return this;
}

/**
* Optional. The server roles to grant to the SQL Server login. Existing server roles will not
* be revoked if revoke_existing_roles is false. body.server_roles will be ignored for update
* request.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> serverRoles;

/** Optional. The server roles to grant to the SQL Server login. Existing server roles will not be
revoked if revoke_existing_roles is false. body.server_roles will be ignored for update request.
*/
public java.util.List<java.lang.String> getServerRoles() {
return serverRoles;
}

/**
* Optional. The server roles to grant to the SQL Server login. Existing server roles will not
* be revoked if revoke_existing_roles is false. body.server_roles will be ignored for update
* request.
*/
public Update setServerRoles(java.util.List<java.lang.String> serverRoles) {
this.serverRoles = serverRoles;
return this;
}

@Override
public Update set(String parameterName, Object value) {
return (Update) super.set(parameterName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long currentDiskSize;

/**
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
* metadata is not sent to the Database Center.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean databaseCenterIntegrationEnabled;

/**
* Output only. Stores the current database version running on the instance including minor
* version such as `MYSQL_8_0_18`.
Expand Down Expand Up @@ -519,6 +527,25 @@ public DatabaseInstance setCurrentDiskSize(java.lang.Long currentDiskSize) {
return this;
}

/**
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
* metadata is not sent to the Database Center.
* @return value or {@code null} for none
*/
public java.lang.Boolean getDatabaseCenterIntegrationEnabled() {
return databaseCenterIntegrationEnabled;
}

/**
* Optional. If true, instance metadata is sent to the Database Center. If false, instance
* metadata is not sent to the Database Center.
* @param databaseCenterIntegrationEnabled databaseCenterIntegrationEnabled or {@code null} for none
*/
public DatabaseInstance setDatabaseCenterIntegrationEnabled(java.lang.Boolean databaseCenterIntegrationEnabled) {
this.databaseCenterIntegrationEnabled = databaseCenterIntegrationEnabled;
return this;
}

/**
* Output only. Stores the current database version running on the instance including minor
* version such as `MYSQL_8_0_18`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ public final class OnPremisesConfiguration extends com.google.api.client.json.Ge
@com.google.api.client.util.Key
private java.lang.String clientKey;

/**
* Output only. Indicates whether the resource is managed by Database Migration Service.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean dmsManaged;

/**
* The dump file to create the Cloud SQL replica.
* The value may be {@code null}.
Expand Down Expand Up @@ -161,6 +168,23 @@ public OnPremisesConfiguration setClientKey(java.lang.String clientKey) {
return this;
}

/**
* Output only. Indicates whether the resource is managed by Database Migration Service.
* @return value or {@code null} for none
*/
public java.lang.Boolean getDmsManaged() {
return dmsManaged;
}

/**
* Output only. Indicates whether the resource is managed by Database Migration Service.
* @param dmsManaged dmsManaged or {@code null} for none
*/
public OnPremisesConfiguration setDmsManaged(java.lang.Boolean dmsManaged) {
this.dmsManaged = dmsManaged;
return this;
}

/**
* The dump file to create the Cloud SQL replica.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ public final class User extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String project;

/**
* Optional. The server roles for the SQL Server login.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> serverRoles;

/**
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -352,6 +359,23 @@ public User setProject(java.lang.String project) {
return this;
}

/**
* Optional. The server roles for the SQL Server login.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getServerRoles() {
return serverRoles;
}

/**
* Optional. The server roles for the SQL Server login.
* @param serverRoles serverRoles or {@code null} for none
*/
public User setServerRoles(java.util.List<java.lang.String> serverRoles) {
this.serverRoles = serverRoles;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-sqladmin/v1/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-sqladmin</artifactId>
<version>v1-rev20260703-2.0.0</version>
<name>Cloud SQL Admin API v1-rev20260703-2.0.0</name>
<version>v1-rev20260722-2.0.0</version>
<name>Cloud SQL Admin API v1-rev20260722-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-sqladmin/v1/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-sqladmin</artifactId>
<version>v1-rev20260703-2.0.0</version>
<version>v1-rev20260722-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-sqladmin:v1-rev20260703-2.0.0'
implementation 'com.google.apis:google-api-services-sqladmin:v1-rev20260722-2.0.0'
}
```

Expand Down
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-sqladmin</artifactId>
<version>v1beta4-rev20260703-2.0.0</version>
<version>v1beta4-rev20260722-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-sqladmin:v1beta4-rev20260703-2.0.0'
implementation 'com.google.apis:google-api-services-sqladmin:v1beta4-rev20260722-2.0.0'
}
```

Expand Down
Loading
Loading