locations
Creates, updates, deletes, gets or lists a locations
resource.
Overview
Name | locations |
Type | Resource |
Id | azure_stack.deployment_admin.locations |
Fields
- vw_locations
- locations
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
e_tag | text | field from the properties object |
location | text | Location of the resource. |
subscriptionId | text | field from the properties object |
type | text | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
eTag | string | Entity tag of the resource |
location | string | Location of the resource. |
properties | object | Location Admin Properties |
type | string | Type of Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | subscriptionId | Gets the location |
list | SELECT | subscriptionId | Gets the list of locations |
SELECT
examples
Gets the location
- vw_locations
- locations
SELECT
id,
name,
e_tag,
location,
subscriptionId,
type
FROM azure_stack.deployment_admin.vw_locations
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
eTag,
location,
properties,
type
FROM azure_stack.deployment_admin.locations
WHERE subscriptionId = '{{ subscriptionId }}';