locations_operation_results
Creates, updates, deletes, gets or lists a locations_operation_results resource.
Overview
| Name | locations_operation_results |
| Type | Resource |
| Id | azure_stack.network_admin.locations_operation_results |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the operation being performed on this particular object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location | Returns the list of operation results for a location |
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 name of Azure region. |
SELECT examples
- list
Returns the list of operation results for a location
SELECT
name
FROM azure_stack.network_admin.locations_operation_results
WHERE location = '{{ location }}' -- required
;