NodeTypeSkuArgs

data class NodeTypeSkuArgs(val capacity: Output<Int>, val name: Output<String>? = null, val tier: Output<String>? = null) : ConvertibleToJava<NodeTypeSkuArgs>

Describes a node type sku.

Constructors

Link copied to clipboard
constructor(capacity: Output<Int>, name: Output<String>? = null, tier: Output<String>? = null)

Properties

Link copied to clipboard
val capacity: Output<Int>

The number of nodes in the node type.

If present in request it will override properties.vmInstanceCount.

Link copied to clipboard
val name: Output<String>? = null

The sku name.

Name is internally generated and is used in auto-scale scenarios.
Property does not allow to be changed to other values than generated.
To avoid deployment errors please omit the property.

Link copied to clipboard
val tier: Output<String>? = null

Specifies the tier of the node type.

Possible Values:
Standard

Functions

Link copied to clipboard
open override fun toJava(): NodeTypeSkuArgs