operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.dev_test_labs.operations |
Fields
Name | Datatype | Description |
---|---|---|
error | object | Error details for the operation in case of a failure. |
status | string | The operation status. |
statusCode | string | The status code for the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, name, subscriptionId | Get operation. |
SELECT
examples
Get operation.
SELECT
error,
status,
statusCode
FROM azure.dev_test_labs.operations
WHERE locationName = '{{ locationName }}'
AND name = '{{ name }}'
AND subscriptionId = '{{ subscriptionId }}';