locations_operations_status
Creates, updates, deletes, gets or lists a locations_operations_status
resource.
Overview
Name | locations_operations_status |
Type | Resource |
Id | azure_stack.subscriptions_admin.locations_operations_status |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | object | The operation status identifier. |
endTime | string (date-time) | The end time of the operation. |
error | object | The operation error. |
percentComplete | number | The completion percentage of the operation. |
properties | object | The internal operation properties. |
responseContent | object | The content of the response. |
retryAfter | string | The amount of time clients should wait.. |
startTime | string (date-time) | The start time of the operation. |
status | string | The status of the operation. |
terminalHttpStatusCode | string | The terminal http status code for the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , operationsStatusName | Get the operation status. |
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 AzureStack location. |
operationsStatusName | string | The operation status name. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription.The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Get the operation status.
SELECT
id,
endTime,
error,
percentComplete,
properties,
responseContent,
retryAfter,
startTime,
status,
terminalHttpStatusCode
FROM azure_stack.subscriptions_admin.locations_operations_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationsStatusName = '{{ operationsStatusName }}' -- required
;