
com.pulumi.azurenative.recoveryservices.kotlin.inputs.DiskExclusionPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.DiskExclusionPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Int
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property diskLunList List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
* @property isInclusionList Flag to indicate whether DiskLunList is to be included/ excluded from backup.
*/
public data class DiskExclusionPropertiesArgs(
public val diskLunList: Output>? = null,
public val isInclusionList: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.DiskExclusionPropertiesArgs = com.pulumi.azurenative.recoveryservices.inputs.DiskExclusionPropertiesArgs.builder()
.diskLunList(diskLunList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.isInclusionList(isInclusionList?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DiskExclusionPropertiesArgs].
*/
@PulumiTagMarker
public class DiskExclusionPropertiesArgsBuilder internal constructor() {
private var diskLunList: Output>? = null
private var isInclusionList: Output? = null
/**
* @param value List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
*/
@JvmName("iduvqitrorcymdhh")
public suspend fun diskLunList(`value`: Output>) {
this.diskLunList = value
}
@JvmName("ydbfpsdvydbronit")
public suspend fun diskLunList(vararg values: Output) {
this.diskLunList = Output.all(values.asList())
}
/**
* @param values List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
*/
@JvmName("ilutoilgholahvma")
public suspend fun diskLunList(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy