crr_operation_status
Creates, updates, deletes, gets or lists a crr_operation_status resource.
Overview
| Name | crr_operation_status |
| Type | Resource |
| Id | azure.recovery_services_backup_passive_stamp.crr_operation_status |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the operation. |
name | string | Name of the operation. |
endTime | string (date-time) | Operation end time. Format: ISO-8601. |
error | object | Error information related to this operation. |
objectType | string | This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. |
startTime | string (date-time) | Operation start time. Format: ISO-8601. |
status | string | Operation status. Known values are: "Invalid", "InProgress", "Succeeded", "Failed", and "Canceled". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | azure_region, operation_id, subscription_id | get. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
azure_region | string | Azure region to hit Api. Required. |
operation_id | string | Required. |
subscription_id | string |
SELECT examples
- get
get.
SELECT
id,
name,
endTime,
error,
objectType,
startTime,
status
FROM azure.recovery_services_backup_passive_stamp.crr_operation_status
WHERE azure_region = '{{ azure_region }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;