ParamRefPatchArgs

data class ParamRefPatchArgs(val name: Output<String>? = null, val namespace: Output<String>? = null, val parameterNotFoundAction: Output<String>? = null, val selector: Output<LabelSelectorPatchArgs>? = null) : ConvertibleToJava<ParamRefPatchArgs>

ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.

Constructors

Link copied to clipboard
constructor(name: Output<String>? = null, namespace: Output<String>? = null, parameterNotFoundAction: Output<String>? = null, selector: Output<LabelSelectorPatchArgs>? = null)

Properties

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

name is the name of the resource being referenced. One of name or selector must be set, but name and selector are mutually exclusive properties. If one is set, the other must be unset. A single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped.

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

namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both name and selector fields. A per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty.

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

parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding. If set to Deny, then no matched parameters will be subject to the failurePolicy of the policy. Allowed values are Allow or Deny Required

Link copied to clipboard
val selector: Output<LabelSelectorPatchArgs>? = null

selector can be used to match multiple param objects based on their labels. Supply selector: {} to match all resources of the ParamKind. If multiple params are found, they are all evaluated with the policy expressions and the results are ANDed together. One of name or selector must be set, but name and selector are mutually exclusive properties. If one is set, the other must be unset.

Functions

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