
com.pulumi.azure.network.kotlin.outputs.VpnGatewayConnectionVpnLinkIpsecPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property dhGroup The DH Group used in IKE Phase 1 for initial SA. Possible values are `None`, `DHGroup1`, `DHGroup2`, `DHGroup14`, `DHGroup24`, `DHGroup2048`, `ECP256`, `ECP384`.
* @property encryptionAlgorithm The IPSec encryption algorithm (IKE phase 1). Possible values are `AES128`, `AES192`, `AES256`, `DES`, `DES3`, `GCMAES128`, `GCMAES192`, `GCMAES256`, `None`.
* @property ikeEncryptionAlgorithm The IKE encryption algorithm (IKE phase 2). Possible values are `DES`, `DES3`, `AES128`, `AES192`, `AES256`, `GCMAES128`, `GCMAES256`.
* @property ikeIntegrityAlgorithm The IKE integrity algorithm (IKE phase 2). Possible values are `MD5`, `SHA1`, `SHA256`, `SHA384`, `GCMAES128`, `GCMAES256`.
* @property integrityAlgorithm The IPSec integrity algorithm (IKE phase 1). Possible values are `MD5`, `SHA1`, `SHA256`, `GCMAES128`, `GCMAES192`, `GCMAES256`.
* @property pfsGroup The Pfs Group used in IKE Phase 2 for the new child SA. Possible values are `None`, `PFS1`, `PFS2`, `PFS14`, `PFS24`, `PFS2048`, `PFSMM`, `ECP256`, `ECP384`.
* @property saDataSizeKb The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for the site to site VPN tunnel.
* @property saLifetimeSec The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for the site to site VPN tunnel.
*/
public data class VpnGatewayConnectionVpnLinkIpsecPolicy(
public val dhGroup: String,
public val encryptionAlgorithm: String,
public val ikeEncryptionAlgorithm: String,
public val ikeIntegrityAlgorithm: String,
public val integrityAlgorithm: String,
public val pfsGroup: String,
public val saDataSizeKb: Int,
public val saLifetimeSec: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.VpnGatewayConnectionVpnLinkIpsecPolicy): VpnGatewayConnectionVpnLinkIpsecPolicy = VpnGatewayConnectionVpnLinkIpsecPolicy(
dhGroup = javaType.dhGroup(),
encryptionAlgorithm = javaType.encryptionAlgorithm(),
ikeEncryptionAlgorithm = javaType.ikeEncryptionAlgorithm(),
ikeIntegrityAlgorithm = javaType.ikeIntegrityAlgorithm(),
integrityAlgorithm = javaType.integrityAlgorithm(),
pfsGroup = javaType.pfsGroup(),
saDataSizeKb = javaType.saDataSizeKb(),
saLifetimeSec = javaType.saLifetimeSec(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy