operation_result
Creates, updates, deletes, gets or lists an operation_result resource.
Overview
| Name | operation_result |
| Type | Resource |
| Id | azure.data_protection.operation_result |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
jobId | string | Name or Arm Id of the job created for this operation. |
objectType | string | This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. Default value is "OperationJobExtendedInfo". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | operation_id, location, subscription_id | Gets the operation status for a resource. Gets the operation result for a resource. |
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 |
|---|---|---|
location | string | The name of the Azure region. Required. |
operation_id | string | Required. |
subscription_id | string |
SELECT examples
- get
Gets the operation status for a resource. Gets the operation result for a resource.
SELECT
jobId,
objectType
FROM azure.data_protection.operation_result
WHERE operation_id = '{{ operation_id }}' -- required
AND location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;