fabric_locations
Creates, updates, deletes, gets or lists a fabric_locations
resource.
Overview
Name | fabric_locations |
Type | Resource |
Id | azure_stack.fabric_admin.fabric_locations |
Fields
- vw_fabric_locations
- fabric_locations
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
data_geo_location | text | field from the properties object |
exclusive_admin_operation_name | text | field from the properties object |
exclusive_admin_operation_running | text | field from the properties object |
external_dnsip_address01 | text | field from the properties object |
external_dnsip_address02 | text | field from the properties object |
fabricLocation | text | field from the properties object |
location | text | The region where the resource is located. |
pep_ip_addresses | text | field from the properties object |
resourceGroupName | text | field from the properties object |
shut_down_action_plan_end_time | text | field from the properties object |
shut_down_action_plan_start_time | text | field from the properties object |
stamp_cloud_id | text | field from the properties object |
stamp_information_id | text | field from the properties object |
start_up_action_plan_end_time | text | field from the properties object |
start_up_action_plan_start_time | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
time_server | text | field from the properties object |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | All properties of a fabric location resource. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricLocation, resourceGroupName, subscriptionId | Returns the requested fabric location. |
list | SELECT | resourceGroupName, subscriptionId | Returns a list of all fabric locations. |
SELECT
examples
Returns a list of all fabric locations.
- vw_fabric_locations
- fabric_locations
SELECT
id,
name,
data_geo_location,
exclusive_admin_operation_name,
exclusive_admin_operation_running,
external_dnsip_address01,
external_dnsip_address02,
fabricLocation,
location,
pep_ip_addresses,
resourceGroupName,
shut_down_action_plan_end_time,
shut_down_action_plan_start_time,
stamp_cloud_id,
stamp_information_id,
start_up_action_plan_end_time,
start_up_action_plan_start_time,
subscriptionId,
tags,
time_server,
type
FROM azure_stack.fabric_admin.vw_fabric_locations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.fabric_locations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';