
com.pulumi.gcp.certificateauthority.kotlin.inputs.CertificateTemplatePassthroughExtensionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.certificateauthority.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.certificateauthority.inputs.CertificateTemplatePassthroughExtensionsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property additionalExtensions Optional. A set of ObjectIds identifying custom X.509 extensions. Will be combined with known_extensions to determine the full set of X.509 extensions.
* Structure is documented below.
* @property knownExtensions Optional. A set of named X.509 extensions. Will be combined with additional_extensions to determine the full set of X.509 extensions.
*/
public data class CertificateTemplatePassthroughExtensionsArgs(
public val additionalExtensions: Output>? = null,
public val knownExtensions: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.certificateauthority.inputs.CertificateTemplatePassthroughExtensionsArgs =
com.pulumi.gcp.certificateauthority.inputs.CertificateTemplatePassthroughExtensionsArgs.builder()
.additionalExtensions(
additionalExtensions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.knownExtensions(knownExtensions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [CertificateTemplatePassthroughExtensionsArgs].
*/
@PulumiTagMarker
public class CertificateTemplatePassthroughExtensionsArgsBuilder internal constructor() {
private var additionalExtensions:
Output>? = null
private var knownExtensions: Output>? = null
/**
* @param value Optional. A set of ObjectIds identifying custom X.509 extensions. Will be combined with known_extensions to determine the full set of X.509 extensions.
* Structure is documented below.
*/
@JvmName("hklvosihrqviuvlm")
public suspend fun additionalExtensions(`value`: Output>) {
this.additionalExtensions = value
}
@JvmName("ucgmlivragosxpcy")
public suspend fun additionalExtensions(vararg values: Output) {
this.additionalExtensions = Output.all(values.asList())
}
/**
* @param values Optional. A set of ObjectIds identifying custom X.509 extensions. Will be combined with known_extensions to determine the full set of X.509 extensions.
* Structure is documented below.
*/
@JvmName("lsgdriewpsjypwem")
public suspend fun additionalExtensions(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy