
com.pulumi.azurenative.recoveryservices.kotlin.inputs.ContainerIdentityInfoArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.ContainerIdentityInfoArgs.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.jvm.JvmName
/**
* Container identity information
* @property aadTenantId Protection container identity - AAD Tenant
* @property audience Protection container identity - Audience
* @property servicePrincipalClientId Protection container identity - AAD Service Principal
* @property uniqueName Unique name of the container
*/
public data class ContainerIdentityInfoArgs(
public val aadTenantId: Output? = null,
public val audience: Output? = null,
public val servicePrincipalClientId: Output? = null,
public val uniqueName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.ContainerIdentityInfoArgs =
com.pulumi.azurenative.recoveryservices.inputs.ContainerIdentityInfoArgs.builder()
.aadTenantId(aadTenantId?.applyValue({ args0 -> args0 }))
.audience(audience?.applyValue({ args0 -> args0 }))
.servicePrincipalClientId(servicePrincipalClientId?.applyValue({ args0 -> args0 }))
.uniqueName(uniqueName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ContainerIdentityInfoArgs].
*/
@PulumiTagMarker
public class ContainerIdentityInfoArgsBuilder internal constructor() {
private var aadTenantId: Output? = null
private var audience: Output? = null
private var servicePrincipalClientId: Output? = null
private var uniqueName: Output? = null
/**
* @param value Protection container identity - AAD Tenant
*/
@JvmName("yrlnujtmfxxubhyu")
public suspend fun aadTenantId(`value`: Output) {
this.aadTenantId = value
}
/**
* @param value Protection container identity - Audience
*/
@JvmName("nvedvmonnhxyopnn")
public suspend fun audience(`value`: Output) {
this.audience = value
}
/**
* @param value Protection container identity - AAD Service Principal
*/
@JvmName("wqkrqfbspbklxqar")
public suspend fun servicePrincipalClientId(`value`: Output) {
this.servicePrincipalClientId = value
}
/**
* @param value Unique name of the container
*/
@JvmName("nlsywmebrqadxxox")
public suspend fun uniqueName(`value`: Output) {
this.uniqueName = value
}
/**
* @param value Protection container identity - AAD Tenant
*/
@JvmName("mdntlenvlrhqphgb")
public suspend fun aadTenantId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.aadTenantId = mapped
}
/**
* @param value Protection container identity - Audience
*/
@JvmName("kunirevhxlhbhnvq")
public suspend fun audience(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.audience = mapped
}
/**
* @param value Protection container identity - AAD Service Principal
*/
@JvmName("xturyjhhvstqmsuc")
public suspend fun servicePrincipalClientId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.servicePrincipalClientId = mapped
}
/**
* @param value Unique name of the container
*/
@JvmName("lvcqkepvfsgegcco")
public suspend fun uniqueName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.uniqueName = mapped
}
internal fun build(): ContainerIdentityInfoArgs = ContainerIdentityInfoArgs(
aadTenantId = aadTenantId,
audience = audience,
servicePrincipalClientId = servicePrincipalClientId,
uniqueName = uniqueName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy