com.pulumi.azure.compute.kotlin.inputs.OrchestratedVirtualMachineScaleSetIdentityArgs.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.compute.kotlin.inputs
import com.pulumi.azure.compute.inputs.OrchestratedVirtualMachineScaleSetIdentityArgs.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 identityIds Specifies a list of User Managed Identity IDs to be assigned to this Windows Virtual Machine Scale Set.
* @property type The type of Managed Identity that should be configured on this Windows Virtual Machine Scale Set. Only possible value is `UserAssigned`.
*/
public data class OrchestratedVirtualMachineScaleSetIdentityArgs(
public val identityIds: Output>,
public val type: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.compute.inputs.OrchestratedVirtualMachineScaleSetIdentityArgs =
com.pulumi.azure.compute.inputs.OrchestratedVirtualMachineScaleSetIdentityArgs.builder()
.identityIds(identityIds.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OrchestratedVirtualMachineScaleSetIdentityArgs].
*/
@PulumiTagMarker
public class OrchestratedVirtualMachineScaleSetIdentityArgsBuilder internal constructor() {
private var identityIds: Output>? = null
private var type: Output? = null
/**
* @param value Specifies a list of User Managed Identity IDs to be assigned to this Windows Virtual Machine Scale Set.
*/
@JvmName("ewabhwnkajoullwc")
public suspend fun identityIds(`value`: Output>) {
this.identityIds = value
}
@JvmName("kuyoyorntnxomaxc")
public suspend fun identityIds(vararg values: Output) {
this.identityIds = Output.all(values.asList())
}
/**
* @param values Specifies a list of User Managed Identity IDs to be assigned to this Windows Virtual Machine Scale Set.
*/
@JvmName("hxriessvnaowpkys")
public suspend fun identityIds(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy