ApplyConfigurationArgs

data class ApplyConfigurationArgs(val expression: Output<String>? = null) : ConvertibleToJava<ApplyConfigurationArgs>

ApplyConfiguration defines the desired configuration values of an object.

Constructors

Link copied to clipboard
constructor(expression: Output<String>? = null)

Properties

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

expression will be evaluated by CEL to create an apply configuration. ref: https://github.com/google/cel-spec Apply configurations are declared in CEL using object initialization. For example, this CEL expression returns an apply configuration to set a single field: Object{ spec: Object.spec{ serviceAccountName: "example" } } Apply configurations may not modify atomic structs, maps or arrays due to the risk of accidental deletion of values not included in the apply configuration. CEL expressions have access to the object types needed to create apply configurations:

Functions

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