View Exascale VM Cluster information

This page describes how to view details for an Exascale VM Cluster 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 VM Cluster:

  • roles/oracledatabase.exadbVmClusterViewer

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

View Exascale VM Cluster details

To view details of an Exascale VM Cluster, do the following:

Console

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

    Go to Exascale Infrastructure

  2. Select the VM Clusters tab.

  3. Click the name of the cluster.

    The VM Cluster details page shows Exascale VM Cluster details.

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

  5. To view the VM details, go to the Virtual machines section.

API

  • List Exascale VM Clusters

    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/exadbVmClusters"
    

    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 VM Clusters.
  • View Exascale VM Cluster 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/exadbVmClusters/CLUSTER_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 VM Cluster.
    • CLUSTER_ID: the ID of your Exascale VM Cluster.

What's next