![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.netapp.kotlin.inputs.VolumeGroupMetaDataArgs.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.netapp.kotlin.inputs
import com.pulumi.azurenative.netapp.inputs.VolumeGroupMetaDataArgs.builder
import com.pulumi.azurenative.netapp.kotlin.enums.ApplicationType
import com.pulumi.core.Either
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Volume group properties
* @property applicationIdentifier Application specific identifier
* @property applicationType Application Type
* @property deploymentSpecId Application specific identifier of deployment rules for the volume group
* @property globalPlacementRules Application specific placement rules for the volume group
* @property groupDescription Group Description
*/
public data class VolumeGroupMetaDataArgs(
public val applicationIdentifier: Output? = null,
public val applicationType: Output>? = null,
public val deploymentSpecId: Output? = null,
public val globalPlacementRules: Output>? = null,
public val groupDescription: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.netapp.inputs.VolumeGroupMetaDataArgs =
com.pulumi.azurenative.netapp.inputs.VolumeGroupMetaDataArgs.builder()
.applicationIdentifier(applicationIdentifier?.applyValue({ args0 -> args0 }))
.applicationType(
applicationType?.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.deploymentSpecId(deploymentSpecId?.applyValue({ args0 -> args0 }))
.globalPlacementRules(
globalPlacementRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.groupDescription(groupDescription?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VolumeGroupMetaDataArgs].
*/
@PulumiTagMarker
public class VolumeGroupMetaDataArgsBuilder internal constructor() {
private var applicationIdentifier: Output? = null
private var applicationType: Output>? = null
private var deploymentSpecId: Output? = null
private var globalPlacementRules: Output>? = null
private var groupDescription: Output? = null
/**
* @param value Application specific identifier
*/
@JvmName("pwsxlkwisxksikju")
public suspend fun applicationIdentifier(`value`: Output) {
this.applicationIdentifier = value
}
/**
* @param value Application Type
*/
@JvmName("roqnguljvucwojwm")
public suspend fun applicationType(`value`: Output>) {
this.applicationType = value
}
/**
* @param value Application specific identifier of deployment rules for the volume group
*/
@JvmName("rnkwepsqbeurpkos")
public suspend fun deploymentSpecId(`value`: Output) {
this.deploymentSpecId = value
}
/**
* @param value Application specific placement rules for the volume group
*/
@JvmName("imdiwyqwxrjysfgl")
public suspend fun globalPlacementRules(`value`: Output>) {
this.globalPlacementRules = value
}
@JvmName("ymuksvrymowkffnt")
public suspend fun globalPlacementRules(vararg values: Output) {
this.globalPlacementRules = Output.all(values.asList())
}
/**
* @param values Application specific placement rules for the volume group
*/
@JvmName("ichomrfmxkuqlyyb")
public suspend fun globalPlacementRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy