Skip to content

Commit 4f3dbde

Browse files
1 parent 6112455 commit 4f3dbde

10 files changed

Lines changed: 156 additions & 12 deletions

File tree

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -460,22 +460,22 @@ public List setName(java.lang.String name) {
460460
}
461461

462462
/**
463-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
464-
* documented otherwise. This is primarily for internal usage.
463+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
464+
* for internal usage.
465465
*/
466466
@com.google.api.client.util.Key
467467
private java.util.List<java.lang.String> extraLocationTypes;
468468

469-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
470-
otherwise. This is primarily for internal usage.
469+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
470+
internal usage.
471471
*/
472472
public java.util.List<java.lang.String> getExtraLocationTypes() {
473473
return extraLocationTypes;
474474
}
475475

476476
/**
477-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
478-
* documented otherwise. This is primarily for internal usage.
477+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
478+
* for internal usage.
479479
*/
480480
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
481481
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ListAutonomousDatabasesResponse extends com.google.api.client
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53+
/**
54+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> unreachable;
59+
5360
/**
5461
* The list of Autonomous Databases.
5562
* @return value or {@code null} for none
@@ -84,6 +91,23 @@ public ListAutonomousDatabasesResponse setNextPageToken(java.lang.String nextPag
8491
return this;
8592
}
8693

94+
/**
95+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<java.lang.String> getUnreachable() {
99+
return unreachable;
100+
}
101+
102+
/**
103+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListAutonomousDatabasesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
87111
@Override
88112
public ListAutonomousDatabasesResponse set(String fieldName, Object value) {
89113
return (ListAutonomousDatabasesResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ListCloudExadataInfrastructuresResponse extends com.google.ap
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53+
/**
54+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> unreachable;
59+
5360
/**
5461
* The list of Exadata Infrastructures.
5562
* @return value or {@code null} for none
@@ -84,6 +91,23 @@ public ListCloudExadataInfrastructuresResponse setNextPageToken(java.lang.String
8491
return this;
8592
}
8693

94+
/**
95+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<java.lang.String> getUnreachable() {
99+
return unreachable;
100+
}
101+
102+
/**
103+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListCloudExadataInfrastructuresResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
87111
@Override
88112
public ListCloudExadataInfrastructuresResponse set(String fieldName, Object value) {
89113
return (ListCloudExadataInfrastructuresResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ListCloudVmClustersResponse extends com.google.api.client.jso
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53+
/**
54+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> unreachable;
59+
5360
/**
5461
* The list of VM Clusters.
5562
* @return value or {@code null} for none
@@ -84,6 +91,23 @@ public ListCloudVmClustersResponse setNextPageToken(java.lang.String nextPageTok
8491
return this;
8592
}
8693

94+
/**
95+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<java.lang.String> getUnreachable() {
99+
return unreachable;
100+
}
101+
102+
/**
103+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListCloudVmClustersResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
87111
@Override
88112
public ListCloudVmClustersResponse set(String fieldName, Object value) {
89113
return (ListCloudVmClustersResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ListDbSystemsResponse extends com.google.api.client.json.Gene
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53+
/**
54+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> unreachable;
59+
5360
/**
5461
* The list of DbSystems.
5562
* @return value or {@code null} for none
@@ -84,6 +91,23 @@ public ListDbSystemsResponse setNextPageToken(java.lang.String nextPageToken) {
8491
return this;
8592
}
8693

94+
/**
95+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<java.lang.String> getUnreachable() {
99+
return unreachable;
100+
}
101+
102+
/**
103+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListDbSystemsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
87111
@Override
88112
public ListDbSystemsResponse set(String fieldName, Object value) {
89113
return (ListDbSystemsResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ListExadbVmClustersResponse extends com.google.api.client.jso
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53+
/**
54+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> unreachable;
59+
5360
/**
5461
* The list of ExadbVmClusters.
5562
* @return value or {@code null} for none
@@ -84,6 +91,23 @@ public ListExadbVmClustersResponse setNextPageToken(java.lang.String nextPageTok
8491
return this;
8592
}
8693

94+
/**
95+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.List<java.lang.String> getUnreachable() {
99+
return unreachable;
100+
}
101+
102+
/**
103+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListExadbVmClustersResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
87111
@Override
88112
public ListExadbVmClustersResponse set(String fieldName, Object value) {
89113
return (ListExadbVmClustersResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ public final class ListExascaleDbStorageVaultsResponse extends com.google.api.cl
5252
@com.google.api.client.util.Key
5353
private java.lang.String nextPageToken;
5454

55+
/**
56+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.util.List<java.lang.String> unreachable;
61+
5562
/**
5663
* The ExascaleDbStorageVaults.
5764
* @return value or {@code null} for none
@@ -90,6 +97,23 @@ public ListExascaleDbStorageVaultsResponse setNextPageToken(java.lang.String nex
9097
return this;
9198
}
9299

100+
/**
101+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
102+
* @return value or {@code null} for none
103+
*/
104+
public java.util.List<java.lang.String> getUnreachable() {
105+
return unreachable;
106+
}
107+
108+
/**
109+
* Unreachable locations when listing resources across all locations using wildcard location '-'.
110+
* @param unreachable unreachable or {@code null} for none
111+
*/
112+
public ListExascaleDbStorageVaultsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
113+
this.unreachable = unreachable;
114+
return this;
115+
}
116+
93117
@Override
94118
public ListExascaleDbStorageVaultsResponse set(String fieldName, Object value) {
95119
return (ListExascaleDbStorageVaultsResponse) 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-rev20260415-2.0.0</version>
12-
<name>Oracle Database@Google Cloud API v1-rev20260415-2.0.0</name>
11+
<version>v1-rev20260427-2.0.0</version>
12+
<name>Oracle Database@Google Cloud API v1-rev20260427-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-rev20260415-2.0.0</version>
25+
<version>v1-rev20260427-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-rev20260415-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260427-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)