
com.pulumi.cloudflare.kotlin.inputs.CustomHostnameSslSettingArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.CustomHostnameSslSettingArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property ciphers List of SSL/TLS ciphers to associate with this certificate.
* @property earlyHints Whether early hints should be supported. Available values: `on`, `off`.
* @property http2 Whether HTTP2 should be supported. Available values: `on`, `off`.
* @property minTlsVersion Lowest version of TLS this certificate should support. Available values: `1.0`, `1.1`, `1.2`, `1.3`.
* @property tls13 Whether TLSv1.3 should be supported. Available values: `on`, `off`.
*/
public data class CustomHostnameSslSettingArgs(
public val ciphers: Output>? = null,
public val earlyHints: Output? = null,
public val http2: Output? = null,
public val minTlsVersion: Output? = null,
public val tls13: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.CustomHostnameSslSettingArgs =
com.pulumi.cloudflare.inputs.CustomHostnameSslSettingArgs.builder()
.ciphers(ciphers?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.earlyHints(earlyHints?.applyValue({ args0 -> args0 }))
.http2(http2?.applyValue({ args0 -> args0 }))
.minTlsVersion(minTlsVersion?.applyValue({ args0 -> args0 }))
.tls13(tls13?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CustomHostnameSslSettingArgs].
*/
@PulumiTagMarker
public class CustomHostnameSslSettingArgsBuilder internal constructor() {
private var ciphers: Output>? = null
private var earlyHints: Output? = null
private var http2: Output? = null
private var minTlsVersion: Output? = null
private var tls13: Output? = null
/**
* @param value List of SSL/TLS ciphers to associate with this certificate.
*/
@JvmName("odkojxbbewdnfpoq")
public suspend fun ciphers(`value`: Output>) {
this.ciphers = value
}
@JvmName("tecuiwjukisygfqa")
public suspend fun ciphers(vararg values: Output) {
this.ciphers = Output.all(values.asList())
}
/**
* @param values List of SSL/TLS ciphers to associate with this certificate.
*/
@JvmName("idxpooeyettxeoib")
public suspend fun ciphers(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy