operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.data_protection.operation_status |
Fields
- vw_operation_status
- operation_status
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. |
location | text | field from the properties object |
object_type | text | field from the properties object |
operationId | 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 |
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 | location, operationId, subscriptionId |
SELECT
examples
- vw_operation_status
- operation_status
SELECT
id,
name,
end_time,
error,
location,
object_type,
operationId,
start_time,
status,
subscriptionId
FROM azure.data_protection.vw_operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.data_protection.operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';