Skip to content

Commit da6171e

Browse files
1 parent 251cbcb commit da6171e

File tree

6 files changed

+20
-17
lines changed

6 files changed

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ public ListBackups set(String parameterName, Object value) {
787787
* This request holds the parameters needed by the sqladmin server. After setting any optional
788788
* parameters, call the {@link UpdateBackup#execute()} method to invoke the remote operation.
789789
*
790-
* @param name Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
790+
* @param name Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
791791
* @param content the {@link com.google.api.services.sqladmin.model.Backup}
792792
* @return the request
793793
*/
@@ -816,7 +816,7 @@ public class UpdateBackup extends SQLAdminRequest<com.google.api.services.sqladm
816816
* UpdateBackup#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
817817
* must be called to initialize this instance immediately after invoking the constructor. </p>
818818
*
819-
* @param name Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
819+
* @param name Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
820820
* @param content the {@link com.google.api.services.sqladmin.model.Backup}
821821
* @since 1.13
822822
*/
@@ -886,19 +886,19 @@ public UpdateBackup setUploadProtocol(java.lang.String uploadProtocol) {
886886
}
887887

888888
/**
889-
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
889+
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
890890
*/
891891
@com.google.api.client.util.Key
892892
private java.lang.String name;
893893

894-
/** Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
894+
/** Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
895895
*/
896896
public java.lang.String getName() {
897897
return name;
898898
}
899899

900900
/**
901-
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
901+
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
902902
*/
903903
public UpdateBackup setName(java.lang.String name) {
904904
if (!getSuppressPatternChecks()) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public final class Backup extends com.google.api.client.json.GenericJson {
118118
private java.lang.Long maxChargeableBytes;
119119

120120
/**
121-
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
121+
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
122122
* The value may be {@code null}.
123123
*/
124124
@com.google.api.client.util.Key
@@ -156,7 +156,7 @@ public final class Backup extends com.google.api.client.json.GenericJson {
156156

157157
/**
158158
* Output only. This output contains a backup time zone. If a Cloud SQL for SQL Server instance
159-
* has a different time zone from the backup's time zone, then restores to the instance won't
159+
* has a different time zone from the backup's time zone, then the restore to the instance doesn't
160160
* happen.
161161
* The value may be {@code null}.
162162
*/
@@ -391,15 +391,15 @@ public Backup setMaxChargeableBytes(java.lang.Long maxChargeableBytes) {
391391
}
392392

393393
/**
394-
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
394+
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
395395
* @return value or {@code null} for none
396396
*/
397397
public java.lang.String getName() {
398398
return name;
399399
}
400400

401401
/**
402-
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}
402+
* Output only. The resource name of the backup. Format: projects/{project}/backups/{backup}.
403403
* @param name name or {@code null} for none
404404
*/
405405
public Backup setName(java.lang.String name) {
@@ -481,7 +481,7 @@ public Backup setState(java.lang.String state) {
481481

482482
/**
483483
* Output only. This output contains a backup time zone. If a Cloud SQL for SQL Server instance
484-
* has a different time zone from the backup's time zone, then restores to the instance won't
484+
* has a different time zone from the backup's time zone, then the restore to the instance doesn't
485485
* happen.
486486
* @return value or {@code null} for none
487487
*/
@@ -491,7 +491,7 @@ public java.lang.String getTimeZone() {
491491

492492
/**
493493
* Output only. This output contains a backup time zone. If a Cloud SQL for SQL Server instance
494-
* has a different time zone from the backup's time zone, then restores to the instance won't
494+
* has a different time zone from the backup's time zone, then the restore to the instance doesn't
495495
* happen.
496496
* @param timeZone timeZone or {@code null} for none
497497
*/

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ public final class Operation extends com.google.api.client.json.GenericJson {
142142
private SqlSubOperationType subOperationType;
143143

144144
/**
145+
* Name of the resource on which this operation runs.
145146
* The value may be {@code null}.
146147
*/
147148
@com.google.api.client.util.Key
@@ -435,13 +436,15 @@ public Operation setSubOperationType(SqlSubOperationType subOperationType) {
435436
}
436437

437438
/**
439+
* Name of the resource on which this operation runs.
438440
* @return value or {@code null} for none
439441
*/
440442
public java.lang.String getTargetId() {
441443
return targetId;
442444
}
443445

444446
/**
447+
* Name of the resource on which this operation runs.
445448
* @param targetId targetId or {@code null} for none
446449
*/
447450
public Operation setTargetId(java.lang.String targetId) {

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

0 commit comments

Comments
 (0)