Skip to main content

operation_status_backup_vault_contexts

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

Overview

Nameoperation_status_backup_vault_contexts
TypeResource
Idazure.data_protection.operation_status_backup_vault_contexts

Fields

NameDatatypeDescription
idtextIt should match what is used to GET the operation result
nametextIt must match the last segment of the "id" field, and will typically be a GUID / system generated value
end_timetextfield from the properties object
errortextThe resource management error response.
object_typetextfield from the properties object
operationIdtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, resourceGroupName, subscriptionId, vaultName

SELECT examples

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