BareMetalAdminApiServerArgumentArgs

data class BareMetalAdminApiServerArgumentArgs(val argument: Output<String>, val value: Output<String>) : ConvertibleToJava<BareMetalAdminApiServerArgumentArgs>

BareMetalAdminApiServerArgument represents an arg name->value pair. Only a subset of customized flags are supported. Please refer to the API server documentation below to know the exact format: https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/

Constructors

Link copied to clipboard
fun BareMetalAdminApiServerArgumentArgs(argument: Output<String>, value: Output<String>)

Functions

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

Properties

Link copied to clipboard
val argument: Output<String>

The argument name as it appears on the API Server command line please make sure to remove the leading dashes.

Link copied to clipboard
val value: Output<String>

The value of the arg as it will be passed to the API Server command line.