operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.data_protection.operation_results |
Fields
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. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Gets the operation result for a resource |
SELECT
examples
Gets the operation result for a resource
SELECT
jobId,
objectType
FROM azure.data_protection.operation_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';