edge_gateway_pools
Creates, updates, deletes, gets or lists a edge_gateway_pools
resource.
Overview
Name | edge_gateway_pools |
Type | Resource |
Id | azure_stack.fabric_admin.edge_gateway_pools |
Fields
- vw_edge_gateway_pools
- edge_gateway_pools
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
edgeGatewayPool | text | field from the properties object |
edge_gateways | text | field from the properties object |
gateway_capacity_kilo_bits_per_second | text | field from the properties object |
gateway_type | text | field from the properties object |
gre_vip_subnet | text | field from the properties object |
location | text | The region where the resource is located. |
number_of_gateways | text | field from the properties object |
public_ip_address | text | field from the properties object |
redundant_gateway_count | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
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 | An object that contains the properties of an edge gateway pool. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | edgeGatewayPool, location, resourceGroupName, subscriptionId | Returns the requested edge gateway pool object. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all edge gateway pool objects at a location. |
SELECT
examples
Returns a list of all edge gateway pool objects at a location.
- vw_edge_gateway_pools
- edge_gateway_pools
SELECT
id,
name,
edgeGatewayPool,
edge_gateways,
gateway_capacity_kilo_bits_per_second,
gateway_type,
gre_vip_subnet,
location,
number_of_gateways,
public_ip_address,
redundant_gateway_count,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_edge_gateway_pools
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.edge_gateway_pools
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';