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

com.pulumi.azure.cdn.kotlin.outputs.EndpointCustomDomainCdnManagedHttps.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.15.0.0
Show newest version
@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