edge_gateways
Creates, updates, deletes, gets or lists a edge_gateways
resource.
Overview
Name | edge_gateways |
Type | Resource |
Id | azure_stack.fabric_admin.edge_gateways |
Fields
- vw_edge_gateways
- edge_gateways
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
available_capacity | text | field from the properties object |
edgeGateway | text | field from the properties object |
location | text | The region where the resource is located. |
number_of_connections | text | field from the properties object |
resourceGroupName | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
total_capacity | 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 | Object which holds information related to edge gateways. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | edgeGateway, location, resourceGroupName, subscriptionId | Returns the requested edge gateway. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns the list of all edge gateways at a certain location. |
SELECT
examples
Returns the list of all edge gateways at a certain location.
- vw_edge_gateways
- edge_gateways
SELECT
id,
name,
available_capacity,
edgeGateway,
location,
number_of_connections,
resourceGroupName,
state,
subscriptionId,
tags,
total_capacity,
type
FROM azure_stack.fabric_admin.vw_edge_gateways
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.edge_gateways
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';