operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure_extras.ag_food_platform.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
error | object | Arm async operation error class. Ref: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/async-api-reference.md#azure-asyncoperation-resource-format. |
status | string | Status of the async operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , locations , operationResultsId | Get operationResults for a Data Manager For Agriculture 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 |
---|---|---|
locations | string | Location. |
operationResultsId | string | operationResultsId for a specific location. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Get operationResults for a Data Manager For Agriculture resource.
SELECT
error,
status
FROM azure_extras.ag_food_platform.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locations = '{{ locations }}' -- required
AND operationResultsId = '{{ operationResultsId }}' -- required
;