Skip to main content

edge_gateways

Creates, updates, deletes, gets or lists a edge_gateways resource.

Overview

Nameedge_gateways
TypeResource
Idazure_stack.fabric_admin.edge_gateways

Fields

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
available_capacitytextfield from the properties object
edgeGatewaytextfield from the properties object
locationtextThe region where the resource is located.
number_of_connectionstextfield from the properties object
resourceGroupNametextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
total_capacitytextfield from the properties object
typetextType of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTedgeGateway, location, resourceGroupName, subscriptionIdReturns the requested edge gateway.
listSELECTlocation, resourceGroupName, subscriptionIdReturns the list of all edge gateways at a certain location.

SELECT examples

Returns the list of all edge gateways at a certain location.

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 }}';