View Exascale Storage Vault information

This page describes how to view information for an Exascale Storage Vault in Google Cloud.

Before you begin

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

  • roles/oracledatabase.exascaleDbStorageVaultViewer

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

View Exascale Storage Vault details

To view details of an Exascale Storage Vault, do the following:

Console

  1. Go to the Exadata Database Service > Exascale Infrastructure page.

    Go to Exascale Infrastructure

  2. Select the Exascale Storage Vaults tab.

  3. Click the name of the vault.

    The Exascale Storage Vault details page shows you the details of the vault.

  4. To view change logs, select the Operations tab.

  5. To view the details of the Exascale VM Clusters associated with the vault, go to the Associated VM Clusters section.

API

  • List Exascale Storage Vaults

    curl -X GET \
    -H "Authorization: Bearer $(gcloud auth print-access-token)" \
    -H "Content-Type: application/json" \
    "https://oracledatabase.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/exascaleDbStorageVaults"
    

    Replace the following:

    • PROJECT_ID: the ID of your Google Cloud project. If you're using a Shared VPC, then this project ID is the ID of your host project.
    • REGION: the region of your Exascale Storage Vaults.
  • View Exascale Storage Vault details

    curl -X GET \
    -H "Authorization: Bearer $(gcloud auth print-access-token)" \
    -H "Content-Type: application/json" \
    "https://oracledatabase.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/exascaleDbStorageVaults/VAULT_ID"
    

    Replace the following:

    • PROJECT_ID: the ID of your Google Cloud project. If you're using a Shared VPC, then this project ID is the ID of your host project.
    • REGION: the region of your Exascale Storage Vault.
    • VAULT_ID: the ID of your Exascale Storage Vault.

What's next