virtual_network_gateway_connections_shared_keys
Creates, updates, deletes, gets or lists a virtual_network_gateway_connections_shared_keys
resource.
Overview
Name | virtual_network_gateway_connections_shared_keys |
Type | Resource |
Id | azure.network.virtual_network_gateway_connections_shared_keys |
Fields
The following fields are returned by SELECT
queries:
- get
Request successful. The operation returns a list of VirtualNetworkGatewayConnection resources.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
value | string | The virtual network connection shared key value. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , virtualNetworkGatewayConnectionName , subscriptionId | The Get VirtualNetworkGatewayConnectionSharedKey operation retrieves information about the specified virtual network gateway connection shared key through Network resource provider. |
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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
virtualNetworkGatewayConnectionName | string | The virtual network gateway connection shared key name. |
SELECT
examples
- get
The Get VirtualNetworkGatewayConnectionSharedKey operation retrieves information about the specified virtual network gateway connection shared key through Network resource provider.
SELECT
id,
value
FROM azure.network.virtual_network_gateway_connections_shared_keys
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND virtualNetworkGatewayConnectionName = '{{ virtualNetworkGatewayConnectionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;