Skip to main content

backups_latest_status

Creates, updates, deletes, gets or lists a backups_latest_status resource.

Overview

Namebackups_latest_status
TypeResource
Idazure_isv.netapp.backups_latest_status

Fields

NameDatatypeDescription
errorMessagestringDisplays error message if the backup is in an error state
healthybooleanBackup health status
lastTransferSizeintegerDisplays the last transfer size
lastTransferTypestringDisplays the last transfer type
mirrorStatestringThe status of the backup
relationshipStatusstringStatus of the backup mirror relationship
totalTransferBytesintegerDisplays the total bytes transferred
transferProgressBytesintegerDisplays the total number of bytes transferred for the ongoing operation
unhealthyReasonstringReason for the unhealthy backup relationship

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, poolName, resourceGroupName, subscriptionId, volumeNameGet 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 }}';