Skip to main content

edge_gateway_pools

Creates, updates, deletes, gets or lists an edge_gateway_pools resource.

Overview

Nameedge_gateway_pools
TypeResource
Idazure_stack.fabric_admin.edge_gateway_pools

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectThe properties of an edge gateway pool.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, location, edgeGatewayPoolReturns the requested edge gateway pool object.
listselectsubscriptionId, resourceGroupName, location$filterReturns a list of all edge gateway pool objects at a location.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
edgeGatewayPoolstringName of the edge gateway pool.
locationstringThe name of Azure region.
resourceGroupNamestringName of the resource group.
subscriptionIdstringThe ID of the target subscription.
$filterstringOData filter parameter.

SELECT examples

Returns the requested edge gateway pool object.

SELECT
id,
name,
properties,
type
FROM azure_stack.fabric_admin.edge_gateway_pools
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND edgeGatewayPool = '{{ edgeGatewayPool }}' -- required
;