Skip to main content

validate_operation_status

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

Overview

Namevalidate_operation_status
TypeResource
Idazure.recovery_services_backup.validate_operation_status

Fields

NameDatatypeDescription
idtextID of the operation.
nametextName of the operation.
end_timetextfield from the properties object
errortextError information associated with operation status call.
object_typetextfield from the properties object
operationIdtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextOperation status.
subscriptionIdtextfield from the properties object
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, resourceGroupName, subscriptionId, vaultNameFetches the status of a triggered validate operation. The status can be in progress, completed

or failed. You can refer to the OperationStatus enum for all the possible states of the operation. If operation has completed, this method returns the list of errors obtained while validating the operation. |

SELECT examples

Fetches the status of a triggered validate operation. The status can be in progress, completed or failed. You can refer to the OperationStatus enum for all the possible states of the operation. If operation has completed, this method returns the list of errors obtained while validating the operation.

SELECT
id,
name,
end_time,
error,
object_type,
operationId,
resourceGroupName,
start_time,
status,
subscriptionId,
vaultName
FROM azure.recovery_services_backup.vw_validate_operation_status
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';