virtual_network_gateways_connections
Creates, updates, deletes, gets or lists a virtual_network_gateways_connections
resource.
Overview
Name | virtual_network_gateways_connections |
Type | Resource |
Id | azure.network.virtual_network_gateways_connections |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
properties | object | VirtualNetworkGatewayConnection properties. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, virtualNetworkGatewayName | Gets all the connections in a virtual network gateway. |
SELECT
examples
Gets all the connections in a virtual network gateway.
SELECT
id,
name,
etag,
location,
properties,
tags,
type
FROM azure.network.virtual_network_gateways_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND virtualNetworkGatewayName = '{{ virtualNetworkGatewayName }}';