Skip to content

Commit 8068be9

Browse files
1 parent 973174d commit 8068be9

File tree

5 files changed

+131
-6
lines changed

5 files changed

+131
-6
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-rev20250825-2.0.0</version>
25+
<version>v1-rev20250901-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-rev20250825-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20250901-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ public final class CloudVmCluster extends com.google.api.client.json.GenericJson
8484
@com.google.api.client.util.Key
8585
private java.lang.String gcpOracleZone;
8686

87+
/**
88+
* Output only. The identity connector details which will allow OCI to securely access the
89+
* resources in the customer project.
90+
* The value may be {@code null}.
91+
*/
92+
@com.google.api.client.util.Key
93+
private IdentityConnector identityConnector;
94+
8795
/**
8896
* Optional. Labels or tags associated with the VM Cluster.
8997
* The value may be {@code null}.
@@ -257,6 +265,25 @@ public CloudVmCluster setGcpOracleZone(java.lang.String gcpOracleZone) {
257265
return this;
258266
}
259267

268+
/**
269+
* Output only. The identity connector details which will allow OCI to securely access the
270+
* resources in the customer project.
271+
* @return value or {@code null} for none
272+
*/
273+
public IdentityConnector getIdentityConnector() {
274+
return identityConnector;
275+
}
276+
277+
/**
278+
* Output only. The identity connector details which will allow OCI to securely access the
279+
* resources in the customer project.
280+
* @param identityConnector identityConnector or {@code null} for none
281+
*/
282+
public CloudVmCluster setIdentityConnector(IdentityConnector identityConnector) {
283+
this.identityConnector = identityConnector;
284+
return this;
285+
}
286+
260287
/**
261288
* Optional. Labels or tags associated with the VM Cluster.
262289
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.oracledatabase.v1.model;
18+
19+
/**
20+
* The identity connector details which will allow OCI to securely access the resources in the
21+
* customer project.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Oracle Database@Google Cloud API. For a detailed
25+
* explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class IdentityConnector extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The connection state of the identity connector.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String connectionState;
40+
41+
/**
42+
* Output only. A google managed service account on which customers can grant roles to access
43+
* resources in the customer project. Example: `p176944527254-55-75119d87fd8f@gcp-sa-
44+
* oci.iam.gserviceaccount.com`
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String serviceAgentEmail;
49+
50+
/**
51+
* Output only. The connection state of the identity connector.
52+
* @return value or {@code null} for none
53+
*/
54+
public java.lang.String getConnectionState() {
55+
return connectionState;
56+
}
57+
58+
/**
59+
* Output only. The connection state of the identity connector.
60+
* @param connectionState connectionState or {@code null} for none
61+
*/
62+
public IdentityConnector setConnectionState(java.lang.String connectionState) {
63+
this.connectionState = connectionState;
64+
return this;
65+
}
66+
67+
/**
68+
* Output only. A google managed service account on which customers can grant roles to access
69+
* resources in the customer project. Example: `p176944527254-55-75119d87fd8f@gcp-sa-
70+
* oci.iam.gserviceaccount.com`
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.String getServiceAgentEmail() {
74+
return serviceAgentEmail;
75+
}
76+
77+
/**
78+
* Output only. A google managed service account on which customers can grant roles to access
79+
* resources in the customer project. Example: `p176944527254-55-75119d87fd8f@gcp-sa-
80+
* oci.iam.gserviceaccount.com`
81+
* @param serviceAgentEmail serviceAgentEmail or {@code null} for none
82+
*/
83+
public IdentityConnector setServiceAgentEmail(java.lang.String serviceAgentEmail) {
84+
this.serviceAgentEmail = serviceAgentEmail;
85+
return this;
86+
}
87+
88+
@Override
89+
public IdentityConnector set(String fieldName, Object value) {
90+
return (IdentityConnector) super.set(fieldName, value);
91+
}
92+
93+
@Override
94+
public IdentityConnector clone() {
95+
return (IdentityConnector) super.clone();
96+
}
97+
98+
}

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-rev20250825-2.0.0</version>
12-
<name>Oracle Database@Google Cloud API v1-rev20250825-2.0.0</name>
11+
<version>v1-rev20250901-2.0.0</version>
12+
<name>Oracle Database@Google Cloud API v1-rev20250901-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-rev20250825-2.0.0</version>
25+
<version>v1-rev20250901-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-rev20250825-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20250901-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)