Skip to main content

virtual_network_gateways_connections

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

Overview

Namevirtual_network_gateways_connections
TypeResource
Idazure.network.virtual_network_gateways_connections

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of VirtualNetworkGatewayConnection resource.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of the virtual network gateway connection.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
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
listselectresourceGroupName, virtualNetworkGatewayName, subscriptionIdGets all the connections in a virtual network gateway.

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
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
virtualNetworkGatewayNamestringThe name of the virtual network gateway.

SELECT examples

Gets all the connections in a virtual network gateway.

SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.virtual_network_gateways_connections
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND virtualNetworkGatewayName = '{{ virtualNetworkGatewayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;