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-rev20260721-2.0.0</version>
<version>v1-rev20260810-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-rev20260721-2.0.0'
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260810-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,22 @@ public final class CloudVmClusterProperties extends com.google.api.client.json.G
@com.google.api.client.util.Key
private TimeZone timeZone;

/**
* Optional. Specifies whether VM backups are stored on local DB server storage or Exascale
* storage.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String vmBackupStorageType;

/**
* Optional. Specifies whether VM file system storage / VM images are stored on local DB server
* storage or Exascale storage.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String vmFileSystemStorageType;

/**
* Optional. OCI Cluster name.
* @return value or {@code null} for none
Expand Down Expand Up @@ -852,6 +868,44 @@ public CloudVmClusterProperties setTimeZone(TimeZone timeZone) {
return this;
}

/**
* Optional. Specifies whether VM backups are stored on local DB server storage or Exascale
* storage.
* @return value or {@code null} for none
*/
public java.lang.String getVmBackupStorageType() {
return vmBackupStorageType;
}

/**
* Optional. Specifies whether VM backups are stored on local DB server storage or Exascale
* storage.
* @param vmBackupStorageType vmBackupStorageType or {@code null} for none
*/
public CloudVmClusterProperties setVmBackupStorageType(java.lang.String vmBackupStorageType) {
this.vmBackupStorageType = vmBackupStorageType;
return this;
}

/**
* Optional. Specifies whether VM file system storage / VM images are stored on local DB server
* storage or Exascale storage.
* @return value or {@code null} for none
*/
public java.lang.String getVmFileSystemStorageType() {
return vmFileSystemStorageType;
}

/**
* Optional. Specifies whether VM file system storage / VM images are stored on local DB server
* storage or Exascale storage.
* @param vmFileSystemStorageType vmFileSystemStorageType or {@code null} for none
*/
public CloudVmClusterProperties setVmFileSystemStorageType(java.lang.String vmFileSystemStorageType) {
this.vmFileSystemStorageType = vmFileSystemStorageType;
return this;
}

@Override
public CloudVmClusterProperties set(String fieldName, Object value) {
return (CloudVmClusterProperties) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ public final class ConfigureExascaleCloudExadataInfrastructureRequest extends co
@com.google.api.client.util.Key
private java.lang.Integer totalStorageSizeGb;

/**
* Optional. Storage size needed for VM storage on Exascale in GBs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalVmStorageSizeGb;

/**
* Optional. An optional ID to identify the request.
* @return value or {@code null} for none
Expand Down Expand Up @@ -78,6 +85,23 @@ public ConfigureExascaleCloudExadataInfrastructureRequest setTotalStorageSizeGb(
return this;
}

/**
* Optional. Storage size needed for VM storage on Exascale in GBs.
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalVmStorageSizeGb() {
return totalVmStorageSizeGb;
}

/**
* Optional. Storage size needed for VM storage on Exascale in GBs.
* @param totalVmStorageSizeGb totalVmStorageSizeGb or {@code null} for none
*/
public ConfigureExascaleCloudExadataInfrastructureRequest setTotalVmStorageSizeGb(java.lang.Integer totalVmStorageSizeGb) {
this.totalVmStorageSizeGb = totalVmStorageSizeGb;
return this;
}

@Override
public ConfigureExascaleCloudExadataInfrastructureRequest set(String fieldName, Object value) {
return (ConfigureExascaleCloudExadataInfrastructureRequest) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,27 @@ public final class ExascaleConfig extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.Integer availableStorageSizeGb;

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

/**
* 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. Storage size needed for VM storage on Exascale in GBs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalVmStorageSizeGb;

/**
* Output only. Available storage size for Exascale in GBs.
* @return value or {@code null} for none
Expand All @@ -61,6 +75,23 @@ public ExascaleConfig setAvailableStorageSizeGb(java.lang.Integer availableStora
return this;
}

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

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

/**
* Output only. Total storage size needed for Exascale in GBs.
* @return value or {@code null} for none
Expand All @@ -78,6 +109,23 @@ public ExascaleConfig setTotalStorageSizeGb(java.lang.Integer totalStorageSizeGb
return this;
}

/**
* Output only. Storage size needed for VM storage on Exascale in GBs.
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalVmStorageSizeGb() {
return totalVmStorageSizeGb;
}

/**
* Output only. Storage size needed for VM storage on Exascale in GBs.
* @param totalVmStorageSizeGb totalVmStorageSizeGb or {@code null} for none
*/
public ExascaleConfig setTotalVmStorageSizeGb(java.lang.Integer totalVmStorageSizeGb) {
this.totalVmStorageSizeGb = totalVmStorageSizeGb;
return this;
}

@Override
public ExascaleConfig set(String fieldName, Object value) {
return (ExascaleConfig) super.set(fieldName, value);
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-rev20260721-2.0.0</version>
<name>Oracle Database@Google Cloud API v1-rev20260721-2.0.0</name>
<version>v1-rev20260810-2.0.0</version>
<name>Oracle Database@Google Cloud API v1-rev20260810-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-rev20260721-2.0.0</version>
<version>v1-rev20260810-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-rev20260721-2.0.0'
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20260810-2.0.0'
}
```

Expand Down
Loading