Skip to content

Commit f11fb03

Browse files
1 parent 03e7c40 commit f11fb03

File tree

5 files changed

+84
-6
lines changed

5 files changed

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

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ public final class ExecuteSqlPayload extends com.google.api.client.json.GenericJ
4444
@com.google.api.client.util.Key
4545
private java.lang.String database;
4646

47+
/**
48+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
49+
* default mode is to throw an error.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String partialResultMode;
54+
4755
/**
4856
* Optional. The maximum number of rows returned per SQL statement.
4957
* The value may be {@code null}.
@@ -59,6 +67,14 @@ public final class ExecuteSqlPayload extends com.google.api.client.json.GenericJ
5967
@com.google.api.client.util.Key
6068
private java.lang.String sqlStatement;
6169

70+
/**
71+
* Optional. The name of an existing database user to connect to the database. When
72+
* `auto_iam_authn` is set to true, this field is ignored and the API caller's IAM user is used.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private java.lang.String user;
77+
6278
/**
6379
* Optional. When set to true, the API caller identity associated with the request is used for
6480
* database authentication. The API caller must be an IAM user in the database.
@@ -95,6 +111,25 @@ public ExecuteSqlPayload setDatabase(java.lang.String database) {
95111
return this;
96112
}
97113

114+
/**
115+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
116+
* default mode is to throw an error.
117+
* @return value or {@code null} for none
118+
*/
119+
public java.lang.String getPartialResultMode() {
120+
return partialResultMode;
121+
}
122+
123+
/**
124+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
125+
* default mode is to throw an error.
126+
* @param partialResultMode partialResultMode or {@code null} for none
127+
*/
128+
public ExecuteSqlPayload setPartialResultMode(java.lang.String partialResultMode) {
129+
this.partialResultMode = partialResultMode;
130+
return this;
131+
}
132+
98133
/**
99134
* Optional. The maximum number of rows returned per SQL statement.
100135
* @return value or {@code null} for none
@@ -131,6 +166,25 @@ public ExecuteSqlPayload setSqlStatement(java.lang.String sqlStatement) {
131166
return this;
132167
}
133168

169+
/**
170+
* Optional. The name of an existing database user to connect to the database. When
171+
* `auto_iam_authn` is set to true, this field is ignored and the API caller's IAM user is used.
172+
* @return value or {@code null} for none
173+
*/
174+
public java.lang.String getUser() {
175+
return user;
176+
}
177+
178+
/**
179+
* Optional. The name of an existing database user to connect to the database. When
180+
* `auto_iam_authn` is set to true, this field is ignored and the API caller's IAM user is used.
181+
* @param user user or {@code null} for none
182+
*/
183+
public ExecuteSqlPayload setUser(java.lang.String user) {
184+
this.user = user;
185+
return this;
186+
}
187+
134188
@Override
135189
public ExecuteSqlPayload set(String fieldName, Object value) {
136190
return (ExecuteSqlPayload) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class SqlInstancesGetLatestRecoveryTimeResponse extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Timestamp, identifies the earliest recovery time of the source instance.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String earliestRecoveryTime;
38+
3239
/**
3340
* This is always `sql#getLatestRecoveryTime`.
3441
* The value may be {@code null}.
@@ -43,6 +50,23 @@ public final class SqlInstancesGetLatestRecoveryTimeResponse extends com.google.
4350
@com.google.api.client.util.Key
4451
private String latestRecoveryTime;
4552

53+
/**
54+
* Timestamp, identifies the earliest recovery time of the source instance.
55+
* @return value or {@code null} for none
56+
*/
57+
public String getEarliestRecoveryTime() {
58+
return earliestRecoveryTime;
59+
}
60+
61+
/**
62+
* Timestamp, identifies the earliest recovery time of the source instance.
63+
* @param earliestRecoveryTime earliestRecoveryTime or {@code null} for none
64+
*/
65+
public SqlInstancesGetLatestRecoveryTimeResponse setEarliestRecoveryTime(String earliestRecoveryTime) {
66+
this.earliestRecoveryTime = earliestRecoveryTime;
67+
return this;
68+
}
69+
4670
/**
4771
* This is always `sql#getLatestRecoveryTime`.
4872
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)