
com.pulumi.azurenative.confidentialledger.kotlin.inputs.MemberIdentityCertificateArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.confidentialledger.kotlin.inputs
import com.pulumi.azurenative.confidentialledger.inputs.MemberIdentityCertificateArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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
/**
* Object representing MemberIdentityCertificate for Managed CCF.
* @property certificate Member Identity Certificate
* @property encryptionkey Member Identity Certificate Encryption Key
* @property tags
*/
public data class MemberIdentityCertificateArgs(
public val certificate: Output? = null,
public val encryptionkey: Output? = null,
public val tags: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.confidentialledger.inputs.MemberIdentityCertificateArgs =
com.pulumi.azurenative.confidentialledger.inputs.MemberIdentityCertificateArgs.builder()
.certificate(certificate?.applyValue({ args0 -> args0 }))
.encryptionkey(encryptionkey?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [MemberIdentityCertificateArgs].
*/
@PulumiTagMarker
public class MemberIdentityCertificateArgsBuilder internal constructor() {
private var certificate: Output? = null
private var encryptionkey: Output? = null
private var tags: Output>? = null
/**
* @param value Member Identity Certificate
*/
@JvmName("ucpfceiigwkkcdbb")
public suspend fun certificate(`value`: Output) {
this.certificate = value
}
/**
* @param value Member Identity Certificate Encryption Key
*/
@JvmName("kbfcbxjousqhwihk")
public suspend fun encryptionkey(`value`: Output) {
this.encryptionkey = value
}
/**
* @param value
*/
@JvmName("trvxwvgjyduvlryt")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("pcxasmnhdjipgibb")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("drlndtbyfwdmqvhb")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy