Skip to main content

virtual_network_gateways_vpnclient_ipsec_parameters

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

Overview

Namevirtual_network_gateways_vpnclient_ipsec_parameters
TypeResource
Idazure.network.virtual_network_gateways_vpnclient_ipsec_parameters

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the set vpnclient ipsec parameters for P2S client of VirtualNetworkGateway resource.

NameDatatypeDescription
dhGroupstringThe DH Group used in IKE Phase 1 for initial SA.
ikeEncryptionstringThe IKE encryption algorithm (IKE phase 2).
ikeIntegritystringThe IKE integrity algorithm (IKE phase 2).
ipsecEncryptionstringThe IPSec encryption algorithm (IKE phase 1).
ipsecIntegritystringThe IPSec integrity algorithm (IKE phase 1).
pfsGroupstringThe Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytesinteger (int32)The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for P2S client..
saLifeTimeSecondsinteger (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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, virtualNetworkGatewayName, subscriptionIdThe 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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
virtualNetworkGatewayNamestringThe virtual network gateway name.

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 }}' -- required
AND virtualNetworkGatewayName = '{{ virtualNetworkGatewayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;