operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.data_protection.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Contains additional information like job Id
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , operationId , location | 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 | |
operationId | string | |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Gets the operation result for a resource
SELECT
jobId,
objectType
FROM azure.data_protection.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND operationId = '{{ operationId }}' -- required
AND location = '{{ location }}' -- required
;