Skip to main content

Get supported capacity tiers

Contributors netapp-ranuk

You can retrieve the supported capacity tiers for Google Cloud disk types.

Choose the workflow to use based on the type of Cloud Volumes ONTAP deployment:

Get capacity tiers for single node

You can use this workflow to retrieve the capacity tiers in a single node working environment.

1. Select the permutations

Perform the workflow Get permutations and choose the ontapVersion, license: type, instanceType, and region: code values of the required permutations for the query parameters of supported capacity tiers request.

2. Get the supported features

HTTP method Path

GET

/occm/api/gcp/vsa/metadata/supported-capacity-tiers

curl example
curl --location --request GET 'https://cloudmanager.cloud.netapp.com/occm/api/gcp/vsa/metadata/supported-capacity-tiers?region=<REGION>&ontapVersion=<ONTAP_VERSION>&dataEncryptionType=<ENCRP_TYPE>&licenseType=<LICENSE_TYPE>&instanceType=<INST_TYPE>' --header 'x-agent-id: <AGENT_ID>' --header 'Authorization: Bearer <ACCESS_TOKEN>' --header 'Content-Type: application/json'
Input

Query parameters:

  • <REGION> region string

  • <ONTAP_VERSION> ontapVersion string

  • <LICENSE_TYPE> licenseType string

  • <INST_TYPE> instanceType string

  • <ENCRP_TYPE> dataEncryptionType string

Output

The output shows a list of supported capacity tiers for the Google Cloud disk types.

JSON output example
{
    "supportedCapacityTiersPerVolumeType": [
        {
            "volumeType": "pd-standard",
            "supportedCapacityTiers": [
                "cloudStorage"
            ],
            "availableTieringPolicies": [
                "none",
                "snapshot_only"
            ]
        },
        {
            "volumeType": "pd-ssd",
            "supportedCapacityTiers": [
                "cloudStorage"
            ],
            "availableTieringPolicies": [
                "none",
                "snapshot_only"
            ]
        }
    ],
    "capacityTiersDisableReasons": [
        "Cannot create capacity tiered volume on Cloud Volumes ONTAP Explore license"
    ],
    "compositeSupported": true,
    "forceCompositeVersion": false
}

Get capacity tiers for high availability pair

You can use this workflow to retrieve the capacity tiers in an HA working environment.

1. Select the permutations

Perform the workflow Get permutations and choose the ontapVersion, license: type, instanceType, and region: code values of the required permutations for the query parameters of supported capacity tiers request.

2. Get the supported features

HTTP method Path

GET

/occm/api/gcp/ha/metadata/supported-capacity-tiers

curl example
curl --location --request GET 'https://cloudmanager.cloud.netapp.com/occm/api/gcp/ha/metadata/supported-capacity-tiers?region=<REGION>&ontapVersion=<ONTAP_VERSION>&dataEncryptionType=<ENCRP_TYPE>&licenseType=<LICENSE_TYPE>&instanceType=<INST_TYPE>' --header 'x-agent-id: <AGENT_ID>' --header 'Authorization: Bearer <ACCESS_TOKEN>' --header 'Content-Type: application/json'
Input

Query parameters:

  • <REGION> region string

  • <ONTAP_VERSION> ontapVersion string

  • <LICENSE_TYPE> licenseType string

  • <INST_TYPE> instanceType string

  • <ENCRP_TYPE> dataEncryptionType string

Output

The output shows a list of supported capacity tiers for the Google Cloud disk types.

JSON output example
{
    "supportedCapacityTiersPerVolumeType": [
        {
            "volumeType": "pd-standard",
            "supportedCapacityTiers": [
                "cloudStorage"
            ],
            "availableTieringPolicies": [
                "none",
                "snapshot_only"
            ]
        },
        {
            "volumeType": "pd-ssd",
            "supportedCapacityTiers": [
                "cloudStorage"
            ],
            "availableTieringPolicies": [
                "none",
                "snapshot_only"
            ]
        }
    ],
    "capacityTiersDisableReasons": [
        "Cannot create capacity tiered volume on Cloud Volumes ONTAP Explore license"
    ],
    "compositeSupported": true,
    "forceCompositeVersion": false
}