![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cdn.kotlin.outputs.EndpointCustomDomainCdnManagedHttps.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.cdn.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property certificateType The type of HTTPS certificate. Possible values are `Shared` and `Dedicated`.
* @property protocolType The type of protocol. Possible values are `ServerNameIndication` and `IPBased`.
* @property tlsVersion The minimum TLS protocol version that is used for HTTPS. Possible values are `TLS10` (representing TLS 1.0/1.1), `TLS12` (representing TLS 1.2) and `None` (representing no minimums). Defaults to `TLS12`.
*/
public data class EndpointCustomDomainCdnManagedHttps(
public val certificateType: String,
public val protocolType: String,
public val tlsVersion: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.EndpointCustomDomainCdnManagedHttps): EndpointCustomDomainCdnManagedHttps = EndpointCustomDomainCdnManagedHttps(
certificateType = javaType.certificateType(),
protocolType = javaType.protocolType(),
tlsVersion = javaType.tlsVersion().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy