Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-oracledatabase</artifactId>
<version>v1-rev20260604-2.0.0</version>
<version>v1-rev20260615-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260604-2.0.0'
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260615-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ public final class CloudExadataInfrastructureProperties extends com.google.api.c
@com.google.api.client.util.Key
private java.lang.String dbServerVersion;

/**
* Output only. The Exascale configuration for the Exadata Infrastructure.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ExascaleConfig exascaleConfig;

/**
* Optional. Maintenance window for repair.
* The value may be {@code null}.
Expand Down Expand Up @@ -438,6 +445,23 @@ public CloudExadataInfrastructureProperties setDbServerVersion(java.lang.String
return this;
}

/**
* Output only. The Exascale configuration for the Exadata Infrastructure.
* @return value or {@code null} for none
*/
public ExascaleConfig getExascaleConfig() {
return exascaleConfig;
}

/**
* Output only. The Exascale configuration for the Exadata Infrastructure.
* @param exascaleConfig exascaleConfig or {@code null} for none
*/
public CloudExadataInfrastructureProperties setExascaleConfig(ExascaleConfig exascaleConfig) {
this.exascaleConfig = exascaleConfig;
return this;
}

/**
* Optional. Maintenance window for repair.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ public final class CloudVmCluster extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String exadataInfrastructure;

/**
* Optional. The name of ExascaleDbStorageVault associated with the VM Cluster. Format:
* projects/{project}/locations/{location}/exascaleDbStorageVaults/{exascale_db_storage_vault}
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String exascaleDbStorageVault;

/**
* Output only. The GCP Oracle zone where Oracle CloudVmCluster is hosted. This will be the same
* as the gcp_oracle_zone of the CloudExadataInfrastructure. Example: us-east4-b-r2.
Expand Down Expand Up @@ -246,6 +254,25 @@ public CloudVmCluster setExadataInfrastructure(java.lang.String exadataInfrastru
return this;
}

/**
* Optional. The name of ExascaleDbStorageVault associated with the VM Cluster. Format:
* projects/{project}/locations/{location}/exascaleDbStorageVaults/{exascale_db_storage_vault}
* @return value or {@code null} for none
*/
public java.lang.String getExascaleDbStorageVault() {
return exascaleDbStorageVault;
}

/**
* Optional. The name of ExascaleDbStorageVault associated with the VM Cluster. Format:
* projects/{project}/locations/{location}/exascaleDbStorageVaults/{exascale_db_storage_vault}
* @param exascaleDbStorageVault exascaleDbStorageVault or {@code null} for none
*/
public CloudVmCluster setExascaleDbStorageVault(java.lang.String exascaleDbStorageVault) {
this.exascaleDbStorageVault = exascaleDbStorageVault;
return this;
}

/**
* Output only. The GCP Oracle zone where Oracle CloudVmCluster is hosted. This will be the same
* as the gcp_oracle_zone of the CloudExadataInfrastructure. Example: us-east4-b-r2.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,13 @@ public final class CloudVmClusterProperties extends com.google.api.client.json.G
@com.google.api.client.util.Key
private java.lang.String state;

/**
* Output only. The storage management type of the VM Cluster.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String storageManagementType;

/**
* Output only. The storage allocation for the disk group, in gigabytes (GB).
* The value may be {@code null}.
Expand Down Expand Up @@ -777,6 +784,23 @@ public CloudVmClusterProperties setState(java.lang.String state) {
return this;
}

/**
* Output only. The storage management type of the VM Cluster.
* @return value or {@code null} for none
*/
public java.lang.String getStorageManagementType() {
return storageManagementType;
}

/**
* Output only. The storage management type of the VM Cluster.
* @param storageManagementType storageManagementType or {@code null} for none
*/
public CloudVmClusterProperties setStorageManagementType(java.lang.String storageManagementType) {
this.storageManagementType = storageManagementType;
return this;
}

/**
* Output only. The storage allocation for the disk group, in gigabytes (GB).
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.oracledatabase.v1.model;

/**
* The request for `CloudExadataInfrastructure.ConfigureExascale`.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Oracle Database@Google Cloud API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ConfigureExascaleCloudExadataInfrastructureRequest extends com.google.api.client.json.GenericJson {

/**
* Optional. An optional ID to identify the request.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String requestId;

/**
* Required. The total storage to be allocated to Exascale in GBs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalStorageSizeGb;

/**
* Optional. An optional ID to identify the request.
* @return value or {@code null} for none
*/
public java.lang.String getRequestId() {
return requestId;
}

/**
* Optional. An optional ID to identify the request.
* @param requestId requestId or {@code null} for none
*/
public ConfigureExascaleCloudExadataInfrastructureRequest setRequestId(java.lang.String requestId) {
this.requestId = requestId;
return this;
}

/**
* Required. The total storage to be allocated to Exascale in GBs.
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalStorageSizeGb() {
return totalStorageSizeGb;
}

/**
* Required. The total storage to be allocated to Exascale in GBs.
* @param totalStorageSizeGb totalStorageSizeGb or {@code null} for none
*/
public ConfigureExascaleCloudExadataInfrastructureRequest setTotalStorageSizeGb(java.lang.Integer totalStorageSizeGb) {
this.totalStorageSizeGb = totalStorageSizeGb;
return this;
}

@Override
public ConfigureExascaleCloudExadataInfrastructureRequest set(String fieldName, Object value) {
return (ConfigureExascaleCloudExadataInfrastructureRequest) super.set(fieldName, value);
}

@Override
public ConfigureExascaleCloudExadataInfrastructureRequest clone() {
return (ConfigureExascaleCloudExadataInfrastructureRequest) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.oracledatabase.v1.model;

/**
* Details of the Exascale configuration for the Exadata Infrastructure.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Oracle Database@Google Cloud API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ExascaleConfig extends com.google.api.client.json.GenericJson {

/**
* Output only. Available storage size for Exascale in GBs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer availableStorageSizeGb;

/**
* Output only. Total storage size needed for Exascale in GBs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalStorageSizeGb;

/**
* Output only. Available storage size for Exascale in GBs.
* @return value or {@code null} for none
*/
public java.lang.Integer getAvailableStorageSizeGb() {
return availableStorageSizeGb;
}

/**
* Output only. Available storage size for Exascale in GBs.
* @param availableStorageSizeGb availableStorageSizeGb or {@code null} for none
*/
public ExascaleConfig setAvailableStorageSizeGb(java.lang.Integer availableStorageSizeGb) {
this.availableStorageSizeGb = availableStorageSizeGb;
return this;
}

/**
* Output only. Total storage size needed for Exascale in GBs.
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalStorageSizeGb() {
return totalStorageSizeGb;
}

/**
* Output only. Total storage size needed for Exascale in GBs.
* @param totalStorageSizeGb totalStorageSizeGb or {@code null} for none
*/
public ExascaleConfig setTotalStorageSizeGb(java.lang.Integer totalStorageSizeGb) {
this.totalStorageSizeGb = totalStorageSizeGb;
return this;
}

@Override
public ExascaleConfig set(String fieldName, Object value) {
return (ExascaleConfig) super.set(fieldName, value);
}

@Override
public ExascaleConfig clone() {
return (ExascaleConfig) super.clone();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ public final class ExascaleDbStorageVault extends com.google.api.client.json.Gen
@com.google.api.client.util.Key
private java.lang.String entitlementId;

/**
* Optional. The Exadata Infrastructure resource on which ExascaleDbStorageVault resource is
* created, in the following format: projects/{project}/locations/{region}/cloudExadataInfrastuctu
* res/{cloud_extradata_infrastructure}
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String exadataInfrastructure;

/**
* Optional. The GCP Oracle zone where Oracle ExascaleDbStorageVault is hosted. Example: us-
* east4-b-r2. If not specified, the system will pick a zone based on availability.
Expand Down Expand Up @@ -139,6 +148,27 @@ public ExascaleDbStorageVault setEntitlementId(java.lang.String entitlementId) {
return this;
}

/**
* Optional. The Exadata Infrastructure resource on which ExascaleDbStorageVault resource is
* created, in the following format: projects/{project}/locations/{region}/cloudExadataInfrastuctu
* res/{cloud_extradata_infrastructure}
* @return value or {@code null} for none
*/
public java.lang.String getExadataInfrastructure() {
return exadataInfrastructure;
}

/**
* Optional. The Exadata Infrastructure resource on which ExascaleDbStorageVault resource is
* created, in the following format: projects/{project}/locations/{region}/cloudExadataInfrastuctu
* res/{cloud_extradata_infrastructure}
* @param exadataInfrastructure exadataInfrastructure or {@code null} for none
*/
public ExascaleDbStorageVault setExadataInfrastructure(java.lang.String exadataInfrastructure) {
this.exadataInfrastructure = exadataInfrastructure;
return this;
}

/**
* Optional. The GCP Oracle zone where Oracle ExascaleDbStorageVault is hosted. Example: us-
* east4-b-r2. If not specified, the system will pick a zone based on availability.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-oracledatabase/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-oracledatabase</artifactId>
<version>v1-rev20260604-2.0.0</version>
<name>Oracle Database@Google Cloud API v1-rev20260604-2.0.0</name>
<version>v1-rev20260615-2.0.0</version>
<name>Oracle Database@Google Cloud API v1-rev20260615-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-oracledatabase/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-oracledatabase</artifactId>
<version>v1-rev20260604-2.0.0</version>
<version>v1-rev20260615-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260604-2.0.0'
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260615-2.0.0'
}
```

Expand Down
Loading