backups_latest_status
Creates, updates, deletes, gets or lists a backups_latest_status
resource.
Overview
Name | backups_latest_status |
Type | Resource |
Id | azure_isv.netapp.backups_latest_status |
Fields
Name | Datatype | Description |
---|---|---|
errorMessage | string | Displays error message if the backup is in an error state |
healthy | boolean | Backup health status |
lastTransferSize | integer | Displays the last transfer size |
lastTransferType | string | Displays the last transfer type |
mirrorState | string | The status of the backup |
relationshipStatus | string | Status of the backup mirror relationship |
totalTransferBytes | integer | Displays the total bytes transferred |
transferProgressBytes | integer | Displays the total number of bytes transferred for the ongoing operation |
unhealthyReason | string | Reason for the unhealthy backup relationship |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, poolName, resourceGroupName, subscriptionId, volumeName | Get the latest status of the backup for a volume |
SELECT
examples
Get the latest status of the backup for a volume
SELECT
errorMessage,
healthy,
lastTransferSize,
lastTransferType,
mirrorState,
relationshipStatus,
totalTransferBytes,
transferProgressBytes,
unhealthyReason
FROM azure_isv.netapp.backups_latest_status
WHERE accountName = '{{ accountName }}'
AND poolName = '{{ poolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND volumeName = '{{ volumeName }}';