
com.pulumi.azurenative.azurelargeinstance.kotlin.inputs.StorageBillingPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.azurelargeinstance.kotlin.inputs
import com.pulumi.azurenative.azurelargeinstance.inputs.StorageBillingPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Describes the billing related details of the AzureLargeStorageInstance.
* @property billingMode the billing mode for the storage instance
* @property sku the SKU type that is provisioned
*/
public data class StorageBillingPropertiesArgs(
public val billingMode: Output? = null,
public val sku: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.azurelargeinstance.inputs.StorageBillingPropertiesArgs =
com.pulumi.azurenative.azurelargeinstance.inputs.StorageBillingPropertiesArgs.builder()
.billingMode(billingMode?.applyValue({ args0 -> args0 }))
.sku(sku?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StorageBillingPropertiesArgs].
*/
@PulumiTagMarker
public class StorageBillingPropertiesArgsBuilder internal constructor() {
private var billingMode: Output? = null
private var sku: Output? = null
/**
* @param value the billing mode for the storage instance
*/
@JvmName("shjnaxrkmllolwqn")
public suspend fun billingMode(`value`: Output) {
this.billingMode = value
}
/**
* @param value the SKU type that is provisioned
*/
@JvmName("oencfapoucoocvsn")
public suspend fun sku(`value`: Output) {
this.sku = value
}
/**
* @param value the billing mode for the storage instance
*/
@JvmName("lcnhmpjfvlnxvrxo")
public suspend fun billingMode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.billingMode = mapped
}
/**
* @param value the SKU type that is provisioned
*/
@JvmName("bnxummfccktjggbr")
public suspend fun sku(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sku = mapped
}
internal fun build(): StorageBillingPropertiesArgs = StorageBillingPropertiesArgs(
billingMode = billingMode,
sku = sku,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy