
com.pulumi.azurenative.scvmm.kotlin.inputs.StorageProfileArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.scvmm.kotlin.inputs
import com.pulumi.azurenative.scvmm.inputs.StorageProfileArgs.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.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Defines the resource properties.
* @property disks Gets or sets the list of virtual disks associated with the virtual machine.
*/
public data class StorageProfileArgs(
public val disks: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.scvmm.inputs.StorageProfileArgs =
com.pulumi.azurenative.scvmm.inputs.StorageProfileArgs.builder()
.disks(
disks?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [StorageProfileArgs].
*/
@PulumiTagMarker
public class StorageProfileArgsBuilder internal constructor() {
private var disks: Output>? = null
/**
* @param value Gets or sets the list of virtual disks associated with the virtual machine.
*/
@JvmName("isoqamtckvamukpw")
public suspend fun disks(`value`: Output>) {
this.disks = value
}
@JvmName("iitwrhnxopeyncuw")
public suspend fun disks(vararg values: Output) {
this.disks = Output.all(values.asList())
}
/**
* @param values Gets or sets the list of virtual disks associated with the virtual machine.
*/
@JvmName("geumgvjivcgjckps")
public suspend fun disks(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy