All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.network.kotlin.outputs.VpnServerConfigurationIpsecPolicy.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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. Possible values include `DHGroup1`, `DHGroup2`, `DHGroup14`, `DHGroup24`, `DHGroup2048`, `ECP256`, `ECP384` and `None`.
 * @property ikeEncryption The IKE encryption algorithm, used for IKE Phase 2. Possible values include `AES128`, `AES192`, `AES256`, `DES`, `DES3`, `GCMAES128` and `GCMAES256`.
 * @property ikeIntegrity The IKE encryption integrity algorithm, used for IKE Phase 2. Possible values include `GCMAES128`, `GCMAES256`, `MD5`, `SHA1`, `SHA256` and `SHA384`.
 * @property ipsecEncryption The IPSec encryption algorithm, used for IKE phase 1. Possible values include `AES128`, `AES192`, `AES256`, `DES`, `DES3`, `GCMAES128`, `GCMAES192`, `GCMAES256` and `None`.
 * @property ipsecIntegrity The IPSec integrity algorithm, used for IKE phase 1. Possible values include `GCMAES128`, `GCMAES192`, `GCMAES256`, `MD5`, `SHA1` and `SHA256`.
 * @property pfsGroup The Pfs Group, used in IKE Phase 2. Possible values include `ECP256`, `ECP384`, `PFS1`, `PFS2`, `PFS14`, `PFS24`, `PFS2048`, `PFSMM` and `None`.
 * @property saDataSizeKilobytes The IPSec Security Association payload size in KB for a Site-to-Site VPN tunnel.
 * @property saLifetimeSeconds The IPSec Security Association lifetime in seconds for a Site-to-Site VPN tunnel.
 */
public data class VpnServerConfigurationIpsecPolicy(
    public val dhGroup: String,
    public val ikeEncryption: String,
    public val ikeIntegrity: String,
    public val ipsecEncryption: String,
    public val ipsecIntegrity: String,
    public val pfsGroup: String,
    public val saDataSizeKilobytes: Int,
    public val saLifetimeSeconds: Int,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.network.outputs.VpnServerConfigurationIpsecPolicy):
            VpnServerConfigurationIpsecPolicy = VpnServerConfigurationIpsecPolicy(
            dhGroup = javaType.dhGroup(),
            ikeEncryption = javaType.ikeEncryption(),
            ikeIntegrity = javaType.ikeIntegrity(),
            ipsecEncryption = javaType.ipsecEncryption(),
            ipsecIntegrity = javaType.ipsecIntegrity(),
            pfsGroup = javaType.pfsGroup(),
            saDataSizeKilobytes = javaType.saDataSizeKilobytes(),
            saLifetimeSeconds = javaType.saLifetimeSeconds(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy