virtual_network_gateways_vpnclient_ipsec_parameters
Creates, updates, deletes, gets or lists a virtual_network_gateways_vpnclient_ipsec_parameters
resource.
Overview
Name | virtual_network_gateways_vpnclient_ipsec_parameters |
Type | Resource |
Id | azure.network.virtual_network_gateways_vpnclient_ipsec_parameters |
Fields
The following fields are returned by SELECT
queries:
- get
Request successful. The operation returns the set vpnclient ipsec parameters for P2S client of VirtualNetworkGateway resource.
Name | Datatype | Description |
---|---|---|
dhGroup | string | The DH Group used in IKE Phase 1 for initial SA. |
ikeEncryption | string | The IKE encryption algorithm (IKE phase 2). |
ikeIntegrity | string | The IKE integrity algorithm (IKE phase 2). |
ipsecEncryption | string | The IPSec encryption algorithm (IKE phase 1). |
ipsecIntegrity | string | The IPSec integrity algorithm (IKE phase 1). |
pfsGroup | string | The Pfs Group used in IKE Phase 2 for new child SA. |
saDataSizeKilobytes | integer (int32) | The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for P2S client.. |
saLifeTimeSeconds | integer (int32) | The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for P2S client. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , virtualNetworkGatewayName , subscriptionId | The Get VpnclientIpsecParameters operation retrieves information about the vpnclient ipsec policy for P2S client of virtual network gateway in the specified resource group 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. |
virtualNetworkGatewayName | string | The virtual network gateway name. |
SELECT
examples
- get
The Get VpnclientIpsecParameters operation retrieves information about the vpnclient ipsec policy for P2S client of virtual network gateway in the specified resource group through Network resource provider.
SELECT
dhGroup,
ikeEncryption,
ikeIntegrity,
ipsecEncryption,
ipsecIntegrity,
pfsGroup,
saDataSizeKilobytes,
saLifeTimeSeconds
FROM azure.network.virtual_network_gateways_vpnclient_ipsec_parameters
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND virtualNetworkGatewayName = '{{ virtualNetworkGatewayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;