Skip to content

azureClusterStorageAccountRedundancy

Retrieves the current redundancy and conversion status for the Azure storage account associated with the specified cloud cluster.

Arguments

Argument Type Description
input (required) AzureClusterStorageAccountRedundancyInput! Request to get the storage account redundancy status.

Returns

AzureClusterStorageAccountRedundancyReply!

Sample

query AzureClusterStorageAccountRedundancy($input: AzureClusterStorageAccountRedundancyInput!) {
  azureClusterStorageAccountRedundancy(input: $input) {
    conversionStatus
    currentRedundancy
    failureReason
    resourceGroup
    storageAccountName
    targetRedundancy
  }
}
{
  "input": {}
}
{
  "data": {
    "azureClusterStorageAccountRedundancy": {
      "conversionStatus": "AZURE_STORAGE_ACCOUNT_CONVERSION_STATUS_FAILED",
      "currentRedundancy": "AZURE_CLUSTER_STORAGE_REDUNDANCY_GRS",
      "failureReason": "example-string",
      "resourceGroup": "example-string",
      "storageAccountName": "example-string",
      "targetRedundancy": "AZURE_CLUSTER_STORAGE_REDUNDANCY_GRS"
    }
  }
}