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
Name | Datatype | Description |
---|---|---|
dhGroup | string | The DH Groups 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 Groups used in IKE Phase 2 for new child SA. |
saDataSizeKilobytes | integer | The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for P2S client.. |
saLifeTimeSeconds | integer | The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for P2S client. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, virtualNetworkGatewayName | 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
examples
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 }}'
AND subscriptionId = '{{ subscriptionId }}'
AND virtualNetworkGatewayName = '{{ virtualNetworkGatewayName }}';