Configure Exascale Storage Vault for Exadata Infrastructure

This page describes how to configure Exascale Storage Vaults for Exadata Infrastructures in Google Cloud.

Before creating Exadata VM Clusters with an Exascale Storage Vault, you must configure the Exascale Storage Vault to use with the Exadata Infrastructure on which you want to create the clusters.

Before you begin

  • Make sure that you have the required Identity and Access Management (IAM) roles and permissions to configure an Exascale Storage Vault:

    • oracledatabase.cloudExadataInfrastructures.update permission

    For more information about how to assign roles, see Apply IAM roles.

Configure Exascale Storage Vault

To configure Exascale Storage Vault for an Exadata Infrastructure instance, do the following:

gcloud

Use the gcloud oracle-database cloud-exadata-infrastructures configure-exascale command to configure the Exascale Storage Vault.

gcloud oracle-database cloud-exadata-infrastructures configure-exascale EXADATA_INFRASTRUCTURE_ID \
--project=PROJECT_ID \
--location=REGION \
--total-storage-size-gb=STORAGE_SIZE

Replace the following:

  • EXADATA_INFRASTRUCTURE: the ID of the Exadata Infrastructure.
  • PROJECT_ID: the ID of your Google Cloud project.
  • REGION: the region where your Exadata Infrastructure is located.
  • STORAGE_SIZE: the amount of Exascale storage (in GiBs) you want to allocate for the Exadata Infrastructure.

API

To configure the Exascale Storage Vault for an Exadata Infrastructure instance, run the following curl command:

curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json" \
"https://oracledatabase.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/cloudExadataInfrastructures/EXADATA_INFRASTRUCTURE_ID:configureExascale"
-d \
'{
  "total_storage_size_gb": "STORAGE_SIZE"
}'

Replace the following:

  • PROJECT_ID: the ID of your Google Cloud project.
  • REGION: the region where your Exadata Infrastructure is located.
  • EXADATA_INFRASTRUCTURE: the ID of the Exadata Infrastructure.
  • STORAGE_SIZE: the amount of Exascale storage (in GiBs) you want to allocate for the Exadata Infrastructure.