Skip to content

Commit 90ffc76

Browse files
1 parent b6c69a0 commit 90ffc76

File tree

10 files changed

+42
-42
lines changed

10 files changed

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

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
227227
private java.lang.String pscServiceAttachmentLink;
228228

229229
/**
230-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
231-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
232-
* `us-central1` depending on the instance type. The region cannot be changed after instance
233-
* creation.
230+
* The geographical region of the Cloud SQL instance. It can be one of the
231+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
232+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
233+
* `us-central1`.
234234
* The value may be {@code null}.
235235
*/
236236
@com.google.api.client.util.Key
@@ -809,21 +809,21 @@ public DatabaseInstance setPscServiceAttachmentLink(java.lang.String pscServiceA
809809
}
810810

811811
/**
812-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
813-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
814-
* `us-central1` depending on the instance type. The region cannot be changed after instance
815-
* creation.
812+
* The geographical region of the Cloud SQL instance. It can be one of the
813+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
814+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
815+
* `us-central1`.
816816
* @return value or {@code null} for none
817817
*/
818818
public java.lang.String getRegion() {
819819
return region;
820820
}
821821

822822
/**
823-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
824-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
825-
* `us-central1` depending on the instance type. The region cannot be changed after instance
826-
* creation.
823+
* The geographical region of the Cloud SQL instance. It can be one of the
824+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
825+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
826+
* `us-central1`.
827827
* @param region region or {@code null} for none
828828
*/
829829
public DatabaseInstance setRegion(java.lang.String region) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class PasswordValidationPolicy extends com.google.api.client.json.G
3737
private java.lang.String complexity;
3838

3939
/**
40-
* Disallow credentials that have been previously compromised by a public data breach.
40+
* This field is deprecated and will be removed in a future version of the API.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
@@ -97,15 +97,15 @@ public PasswordValidationPolicy setComplexity(java.lang.String complexity) {
9797
}
9898

9999
/**
100-
* Disallow credentials that have been previously compromised by a public data breach.
100+
* This field is deprecated and will be removed in a future version of the API.
101101
* @return value or {@code null} for none
102102
*/
103103
public java.lang.Boolean getDisallowCompromisedCredentials() {
104104
return disallowCompromisedCredentials;
105105
}
106106

107107
/**
108-
* Disallow credentials that have been previously compromised by a public data breach.
108+
* This field is deprecated and will be removed in a future version of the API.
109109
* @param disallowCompromisedCredentials disallowCompromisedCredentials or {@code null} for none
110110
*/
111111
public PasswordValidationPolicy setDisallowCompromisedCredentials(java.lang.Boolean disallowCompromisedCredentials) {

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

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ public final class DatabaseInstance extends com.google.api.client.json.GenericJs
227227
private java.lang.String pscServiceAttachmentLink;
228228

229229
/**
230-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
231-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
232-
* `us-central1` depending on the instance type. The region cannot be changed after instance
233-
* creation.
230+
* The geographical region of the Cloud SQL instance. It can be one of the
231+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
232+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
233+
* `us-central1`.
234234
* The value may be {@code null}.
235235
*/
236236
@com.google.api.client.util.Key
@@ -810,21 +810,21 @@ public DatabaseInstance setPscServiceAttachmentLink(java.lang.String pscServiceA
810810
}
811811

812812
/**
813-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
814-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
815-
* `us-central1` depending on the instance type. The region cannot be changed after instance
816-
* creation.
813+
* The geographical region of the Cloud SQL instance. It can be one of the
814+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
815+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
816+
* `us-central1`.
817817
* @return value or {@code null} for none
818818
*/
819819
public java.lang.String getRegion() {
820820
return region;
821821
}
822822

823823
/**
824-
* The geographical region. Can be: * `us-central` (`FIRST_GEN` instances only) * `us-central1`
825-
* (`SECOND_GEN` instances only) * `asia-east1` or `europe-west1`. Defaults to `us-central` or
826-
* `us-central1` depending on the instance type. The region cannot be changed after instance
827-
* creation.
824+
* The geographical region of the Cloud SQL instance. It can be one of the
825+
* [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL
826+
* operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is
827+
* `us-central1`.
828828
* @param region region or {@code null} for none
829829
*/
830830
public DatabaseInstance setRegion(java.lang.String region) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class PasswordValidationPolicy extends com.google.api.client.json.G
3737
private java.lang.String complexity;
3838

3939
/**
40-
* Disallow credentials that have been previously compromised by a public data breach.
40+
* This field is deprecated and will be removed in a future version of the API.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
@@ -97,15 +97,15 @@ public PasswordValidationPolicy setComplexity(java.lang.String complexity) {
9797
}
9898

9999
/**
100-
* Disallow credentials that have been previously compromised by a public data breach.
100+
* This field is deprecated and will be removed in a future version of the API.
101101
* @return value or {@code null} for none
102102
*/
103103
public java.lang.Boolean getDisallowCompromisedCredentials() {
104104
return disallowCompromisedCredentials;
105105
}
106106

107107
/**
108-
* Disallow credentials that have been previously compromised by a public data breach.
108+
* This field is deprecated and will be removed in a future version of the API.
109109
* @param disallowCompromisedCredentials disallowCompromisedCredentials or {@code null} for none
110110
*/
111111
public PasswordValidationPolicy setDisallowCompromisedCredentials(java.lang.Boolean disallowCompromisedCredentials) {

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

0 commit comments

Comments
 (0)