Skip to content

Commit 11f968b

Browse files
1 parent 0257405 commit 11f968b

File tree

5 files changed

+117
-15
lines changed

5 files changed

+117
-15
lines changed

clients/google-api-services-oracledatabase/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-oracledatabase</artifactId>
25-
<version>v1-rev20260330-2.0.0</version>
25+
<version>v1-rev20260402-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-oracledatabase:v1-rev20260330-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260402-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-oracledatabase/v1/2.0.0/com/google/api/services/oracledatabase/v1/model/AutonomousDatabase.java

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,22 @@
3232
public final class AutonomousDatabase extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Optional. Immutable. The password for the default ADMIN user.
35+
* Optional. Immutable. The password for the default ADMIN user. Note: Only one of
36+
* `admin_password_secret_version` or `admin_password` can be populated.
3637
* The value may be {@code null}.
3738
*/
3839
@com.google.api.client.util.Key
3940
private java.lang.String adminPassword;
4041

42+
/**
43+
* Optional. Immutable. The resource name of a secret version in Secret Manager which contains the
44+
* database admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}.
45+
* Note: Only one of `admin_password_secret_version` or `admin_password` can be populated.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String adminPasswordSecretVersion;
50+
4151
/**
4252
* Optional. Immutable. The subnet CIDR range for the Autonomous Database.
4353
* The value may be {@code null}.
@@ -148,22 +158,45 @@ public final class AutonomousDatabase extends com.google.api.client.json.Generic
148158
private SourceConfig sourceConfig;
149159

150160
/**
151-
* Optional. Immutable. The password for the default ADMIN user.
161+
* Optional. Immutable. The password for the default ADMIN user. Note: Only one of
162+
* `admin_password_secret_version` or `admin_password` can be populated.
152163
* @return value or {@code null} for none
153164
*/
154165
public java.lang.String getAdminPassword() {
155166
return adminPassword;
156167
}
157168

158169
/**
159-
* Optional. Immutable. The password for the default ADMIN user.
170+
* Optional. Immutable. The password for the default ADMIN user. Note: Only one of
171+
* `admin_password_secret_version` or `admin_password` can be populated.
160172
* @param adminPassword adminPassword or {@code null} for none
161173
*/
162174
public AutonomousDatabase setAdminPassword(java.lang.String adminPassword) {
163175
this.adminPassword = adminPassword;
164176
return this;
165177
}
166178

179+
/**
180+
* Optional. Immutable. The resource name of a secret version in Secret Manager which contains the
181+
* database admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}.
182+
* Note: Only one of `admin_password_secret_version` or `admin_password` can be populated.
183+
* @return value or {@code null} for none
184+
*/
185+
public java.lang.String getAdminPasswordSecretVersion() {
186+
return adminPasswordSecretVersion;
187+
}
188+
189+
/**
190+
* Optional. Immutable. The resource name of a secret version in Secret Manager which contains the
191+
* database admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}.
192+
* Note: Only one of `admin_password_secret_version` or `admin_password` can be populated.
193+
* @param adminPasswordSecretVersion adminPasswordSecretVersion or {@code null} for none
194+
*/
195+
public AutonomousDatabase setAdminPasswordSecretVersion(java.lang.String adminPasswordSecretVersion) {
196+
this.adminPasswordSecretVersion = adminPasswordSecretVersion;
197+
return this;
198+
}
199+
167200
/**
168201
* Optional. Immutable. The subnet CIDR range for the Autonomous Database.
169202
* @return value or {@code null} for none

clients/google-api-services-oracledatabase/v1/2.0.0/com/google/api/services/oracledatabase/v1/model/Database.java

Lines changed: 75 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,22 @@
3232
public final class Database extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Optional. The password for the default ADMIN user.
35+
* Optional. The password for the default ADMIN user. Note: Only one of
36+
* `admin_password_secret_version` or `admin_password` can be populated.
3637
* The value may be {@code null}.
3738
*/
3839
@com.google.api.client.util.Key
3940
private java.lang.String adminPassword;
4041

42+
/**
43+
* Optional. The resource name of a secret version in Secret Manager which contains the database
44+
* admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}. Note:
45+
* Only one of `admin_password_secret_version` or `admin_password` can be populated.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String adminPasswordSecretVersion;
50+
4151
/**
4252
* Optional. The character set for the database. The default is AL32UTF8.
4353
* The value may be {@code null}.
@@ -141,29 +151,63 @@ public final class Database extends com.google.api.client.json.GenericJson {
141151
private DatabaseProperties properties;
142152

143153
/**
144-
* Optional. The TDE wallet password for the database.
154+
* Optional. The TDE wallet password for the database. Note: Only one of
155+
* `tde_wallet_password_secret_version` or `tde_wallet_password` can be populated.
145156
* The value may be {@code null}.
146157
*/
147158
@com.google.api.client.util.Key
148159
private java.lang.String tdeWalletPassword;
149160

150161
/**
151-
* Optional. The password for the default ADMIN user.
162+
* Optional. The resource name of a secret version in Secret Manager which contains the TDE wallet
163+
* password for the database. Format: projects/{project}/secrets/{secret}/versions/{version}.
164+
* Note: Only one of `tde_wallet_password_secret_version` or `tde_wallet_password` can be
165+
* populated.
166+
* The value may be {@code null}.
167+
*/
168+
@com.google.api.client.util.Key
169+
private java.lang.String tdeWalletPasswordSecretVersion;
170+
171+
/**
172+
* Optional. The password for the default ADMIN user. Note: Only one of
173+
* `admin_password_secret_version` or `admin_password` can be populated.
152174
* @return value or {@code null} for none
153175
*/
154176
public java.lang.String getAdminPassword() {
155177
return adminPassword;
156178
}
157179

158180
/**
159-
* Optional. The password for the default ADMIN user.
181+
* Optional. The password for the default ADMIN user. Note: Only one of
182+
* `admin_password_secret_version` or `admin_password` can be populated.
160183
* @param adminPassword adminPassword or {@code null} for none
161184
*/
162185
public Database setAdminPassword(java.lang.String adminPassword) {
163186
this.adminPassword = adminPassword;
164187
return this;
165188
}
166189

190+
/**
191+
* Optional. The resource name of a secret version in Secret Manager which contains the database
192+
* admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}. Note:
193+
* Only one of `admin_password_secret_version` or `admin_password` can be populated.
194+
* @return value or {@code null} for none
195+
*/
196+
public java.lang.String getAdminPasswordSecretVersion() {
197+
return adminPasswordSecretVersion;
198+
}
199+
200+
/**
201+
* Optional. The resource name of a secret version in Secret Manager which contains the database
202+
* admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}. Note:
203+
* Only one of `admin_password_secret_version` or `admin_password` can be populated.
204+
* @param adminPasswordSecretVersion adminPasswordSecretVersion or {@code null} for none
205+
*/
206+
public Database setAdminPasswordSecretVersion(java.lang.String adminPasswordSecretVersion) {
207+
this.adminPasswordSecretVersion = adminPasswordSecretVersion;
208+
return this;
209+
}
210+
167211
/**
168212
* Optional. The character set for the database. The default is AL32UTF8.
169213
* @return value or {@code null} for none
@@ -411,22 +455,47 @@ public Database setProperties(DatabaseProperties properties) {
411455
}
412456

413457
/**
414-
* Optional. The TDE wallet password for the database.
458+
* Optional. The TDE wallet password for the database. Note: Only one of
459+
* `tde_wallet_password_secret_version` or `tde_wallet_password` can be populated.
415460
* @return value or {@code null} for none
416461
*/
417462
public java.lang.String getTdeWalletPassword() {
418463
return tdeWalletPassword;
419464
}
420465

421466
/**
422-
* Optional. The TDE wallet password for the database.
467+
* Optional. The TDE wallet password for the database. Note: Only one of
468+
* `tde_wallet_password_secret_version` or `tde_wallet_password` can be populated.
423469
* @param tdeWalletPassword tdeWalletPassword or {@code null} for none
424470
*/
425471
public Database setTdeWalletPassword(java.lang.String tdeWalletPassword) {
426472
this.tdeWalletPassword = tdeWalletPassword;
427473
return this;
428474
}
429475

476+
/**
477+
* Optional. The resource name of a secret version in Secret Manager which contains the TDE wallet
478+
* password for the database. Format: projects/{project}/secrets/{secret}/versions/{version}.
479+
* Note: Only one of `tde_wallet_password_secret_version` or `tde_wallet_password` can be
480+
* populated.
481+
* @return value or {@code null} for none
482+
*/
483+
public java.lang.String getTdeWalletPasswordSecretVersion() {
484+
return tdeWalletPasswordSecretVersion;
485+
}
486+
487+
/**
488+
* Optional. The resource name of a secret version in Secret Manager which contains the TDE wallet
489+
* password for the database. Format: projects/{project}/secrets/{secret}/versions/{version}.
490+
* Note: Only one of `tde_wallet_password_secret_version` or `tde_wallet_password` can be
491+
* populated.
492+
* @param tdeWalletPasswordSecretVersion tdeWalletPasswordSecretVersion or {@code null} for none
493+
*/
494+
public Database setTdeWalletPasswordSecretVersion(java.lang.String tdeWalletPasswordSecretVersion) {
495+
this.tdeWalletPasswordSecretVersion = tdeWalletPasswordSecretVersion;
496+
return this;
497+
}
498+
430499
@Override
431500
public Database set(String fieldName, Object value) {
432501
return (Database) super.set(fieldName, value);

clients/google-api-services-oracledatabase/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-oracledatabase</artifactId>
11-
<version>v1-rev20260330-2.0.0</version>
12-
<name>Oracle Database@Google Cloud API v1-rev20260330-2.0.0</name>
11+
<version>v1-rev20260402-2.0.0</version>
12+
<name>Oracle Database@Google Cloud API v1-rev20260402-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-oracledatabase/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-oracledatabase</artifactId>
25-
<version>v1-rev20260330-2.0.0</version>
25+
<version>v1-rev20260402-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-oracledatabase:v1-rev20260330-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260402-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)