EnumValueArgs

data class EnumValueArgs(val name: Output<String>? = null, val number: Output<Int>? = null, val options: Output<List<OptionArgs>>? = null) : ConvertibleToJava<EnumValueArgs>

Enum value definition.

Constructors

Link copied to clipboard
fun EnumValueArgs(name: Output<String>? = null, number: Output<Int>? = null, options: Output<List<OptionArgs>>? = null)

Functions

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

Properties

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

Enum value name.

Link copied to clipboard
val number: Output<Int>? = null

Enum value number.

Link copied to clipboard
val options: Output<List<OptionArgs>>? = null

Protocol buffer options.