![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.media.kotlin.inputs.MediaServiceIdentityArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.media.kotlin.inputs
import com.pulumi.azurenative.media.inputs.MediaServiceIdentityArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property type The identity type.
* @property userAssignedIdentities The user assigned managed identities.
*/
public data class MediaServiceIdentityArgs(
public val type: Output,
public val userAssignedIdentities: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.media.inputs.MediaServiceIdentityArgs =
com.pulumi.azurenative.media.inputs.MediaServiceIdentityArgs.builder()
.type(type.applyValue({ args0 -> args0 }))
.userAssignedIdentities(
userAssignedIdentities?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [MediaServiceIdentityArgs].
*/
@PulumiTagMarker
public class MediaServiceIdentityArgsBuilder internal constructor() {
private var type: Output? = null
private var userAssignedIdentities: Output>? = null
/**
* @param value The identity type.
*/
@JvmName("dcgtlwrdudrdjgpj")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The user assigned managed identities.
*/
@JvmName("gixrgtyositfjyyd")
public suspend fun userAssignedIdentities(`value`: Output>) {
this.userAssignedIdentities = value
}
@JvmName("pfdlmhsfekbtsysg")
public suspend fun userAssignedIdentities(vararg values: Output) {
this.userAssignedIdentities = Output.all(values.asList())
}
/**
* @param values The user assigned managed identities.
*/
@JvmName("divkyaoxbsnsorpf")
public suspend fun userAssignedIdentities(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy