com.pulumi.azure.mysql.kotlin.FlexibleServerActiveDirectoryAdministratoryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.mysql.kotlin
import com.pulumi.azure.mysql.FlexibleServerActiveDirectoryAdministratoryArgs.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
/**
*
* @property identityId
* @property login
* @property objectId
* @property serverId
* @property tenantId
*/
public data class FlexibleServerActiveDirectoryAdministratoryArgs(
public val identityId: Output? = null,
public val login: Output? = null,
public val objectId: Output? = null,
public val serverId: Output? = null,
public val tenantId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.mysql.FlexibleServerActiveDirectoryAdministratoryArgs =
com.pulumi.azure.mysql.FlexibleServerActiveDirectoryAdministratoryArgs.builder()
.identityId(identityId?.applyValue({ args0 -> args0 }))
.login(login?.applyValue({ args0 -> args0 }))
.objectId(objectId?.applyValue({ args0 -> args0 }))
.serverId(serverId?.applyValue({ args0 -> args0 }))
.tenantId(tenantId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FlexibleServerActiveDirectoryAdministratoryArgs].
*/
@PulumiTagMarker
public class FlexibleServerActiveDirectoryAdministratoryArgsBuilder internal constructor() {
private var identityId: Output? = null
private var login: Output? = null
private var objectId: Output? = null
private var serverId: Output? = null
private var tenantId: Output? = null
/**
* @param value
*/
@JvmName("asaqkvljvkerwqwx")
public suspend fun identityId(`value`: Output) {
this.identityId = value
}
/**
* @param value
*/
@JvmName("qupynarmrjtsxvnb")
public suspend fun login(`value`: Output) {
this.login = value
}
/**
* @param value
*/
@JvmName("yvyvimiwihvjvaap")
public suspend fun objectId(`value`: Output) {
this.objectId = value
}
/**
* @param value
*/
@JvmName("kbqavdrfferwuhlv")
public suspend fun serverId(`value`: Output) {
this.serverId = value
}
/**
* @param value
*/
@JvmName("xmgdimgrlwedltfq")
public suspend fun tenantId(`value`: Output) {
this.tenantId = value
}
/**
* @param value
*/
@JvmName("ojdhbjicraouyajs")
public suspend fun identityId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.identityId = mapped
}
/**
* @param value
*/
@JvmName("cpqupyvexumswhxa")
public suspend fun login(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.login = mapped
}
/**
* @param value
*/
@JvmName("bplpajuvmmihthcb")
public suspend fun objectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.objectId = mapped
}
/**
* @param value
*/
@JvmName("neywwqbjeruipsll")
public suspend fun serverId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serverId = mapped
}
/**
* @param value
*/
@JvmName("irffheaboohijuhp")
public suspend fun tenantId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tenantId = mapped
}
internal fun build(): FlexibleServerActiveDirectoryAdministratoryArgs =
FlexibleServerActiveDirectoryAdministratoryArgs(
identityId = identityId,
login = login,
objectId = objectId,
serverId = serverId,
tenantId = tenantId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy