Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cache.kotlin.inputs
import com.pulumi.azurenative.cache.inputs.SkuArgs.builder
import com.pulumi.azurenative.cache.kotlin.enums.SkuFamily
import com.pulumi.azurenative.cache.kotlin.enums.SkuName
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.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* SKU parameters supplied to the create Redis operation.
* @property capacity The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
* @property family The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
* @property name The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
*/
public data class SkuArgs(
public val capacity: Output,
public val family: Output>,
public val name: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.cache.inputs.SkuArgs =
com.pulumi.azurenative.cache.inputs.SkuArgs.builder()
.capacity(capacity.applyValue({ args0 -> args0 }))
.family(
family.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.name(
name.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [SkuArgs].
*/
@PulumiTagMarker
public class SkuArgsBuilder internal constructor() {
private var capacity: Output? = null
private var family: Output>? = null
private var name: Output>? = null
/**
* @param value The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
*/
@JvmName("usxketcknwjrhqot")
public suspend fun capacity(`value`: Output) {
this.capacity = value
}
/**
* @param value The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
*/
@JvmName("egwcrvcriuggrylk")
public suspend fun family(`value`: Output>) {
this.family = value
}
/**
* @param value The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
*/
@JvmName("ourggsyxubuswavf")
public suspend fun name(`value`: Output>) {
this.name = value
}
/**
* @param value The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
*/
@JvmName("akwroworaxesbpyv")
public suspend fun capacity(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.capacity = mapped
}
/**
* @param value The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
*/
@JvmName("kxvkfwnthmiuadxb")
public suspend fun family(`value`: Either) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.family = mapped
}
/**
* @param value The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
*/
@JvmName("xqhkcsugsgcxbyex")
public fun family(`value`: String) {
val toBeMapped = Either.ofLeft(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.family = mapped
}
/**
* @param value The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
*/
@JvmName("rdncmndcwemcalms")
public fun family(`value`: SkuFamily) {
val toBeMapped = Either.ofRight(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.family = mapped
}
/**
* @param value The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
*/
@JvmName("ibsjrvxqonbqxxeu")
public suspend fun name(`value`: Either) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
*/
@JvmName("ctllkjondknyvocf")
public fun name(`value`: String) {
val toBeMapped = Either.ofLeft(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
*/
@JvmName("uaexdccjwirrkaag")
public fun name(`value`: SkuName) {
val toBeMapped = Either.ofRight(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): SkuArgs = SkuArgs(
capacity = capacity ?: throw PulumiNullFieldException("capacity"),
family = family ?: throw PulumiNullFieldException("family"),
name = name ?: throw PulumiNullFieldException("name"),
)
}