operation_status_backup_vault_contexts
Creates, updates, deletes, gets or lists a operation_status_backup_vault_contexts
resource.
Overview
Name | operation_status_backup_vault_contexts |
Type | Resource |
Id | azure.data_protection.operation_status_backup_vault_contexts |
Fields
- vw_operation_status_backup_vault_contexts
- operation_status_backup_vault_contexts
Name | Datatype | Description |
---|---|---|
id | text | It should match what is used to GET the operation result |
name | text | It must match the last segment of the "id" field, and will typically be a GUID / system generated value |
end_time | text | field from the properties object |
error | text | The resource management error response. |
object_type | text | field from the properties object |
operationId | text | field from the properties object |
resourceGroupName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | It should match what is used to GET the operation result |
name | string | It must match the last segment of the "id" field, and will typically be a GUID / system generated value |
endTime | string | End time of the operation |
error | object | The resource management error response. |
properties | object | Operation Extended Info |
startTime | string | Start time of the operation |
status | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, resourceGroupName, subscriptionId, vaultName |
SELECT
examples
- vw_operation_status_backup_vault_contexts
- operation_status_backup_vault_contexts
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 }}';
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.data_protection.operation_status_backup_vault_contexts
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';