Class ValidationV1Alpha1.Builder
- java.lang.Object
-
- org.cdk8s.plus28.k8s.ValidationV1Alpha1.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<ValidationV1Alpha1>
- Enclosing interface:
- ValidationV1Alpha1
@Stability(Stable) public static final class ValidationV1Alpha1.Builder extends Object implements software.amazon.jsii.Builder<ValidationV1Alpha1>
A builder forValidationV1Alpha1
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValidationV1Alpha1build()Builds the configured instance.ValidationV1Alpha1.Builderexpression(String expression)Sets the value ofValidationV1Alpha1.getExpression()ValidationV1Alpha1.Buildermessage(String message)Sets the value ofValidationV1Alpha1.getMessage()ValidationV1Alpha1.BuildermessageExpression(String messageExpression)Sets the value ofValidationV1Alpha1.getMessageExpression()ValidationV1Alpha1.Builderreason(String reason)Sets the value ofValidationV1Alpha1.getReason()
-
-
-
Method Detail
-
expression
@Stability(Stable) public ValidationV1Alpha1.Builder expression(String expression)
Sets the value ofValidationV1Alpha1.getExpression()- Parameters:
expression- Expression represents the expression which will be evaluated by CEL. This parameter is required. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request(ref). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value. For example, a variable named 'foo' can be accessed as 'variables.foo'.
- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the request resource.
The
apiVersion,kind,metadata.nameandmetadata.generateNameare always accessible from the root of the object. No other metadata properties are accessible.Only property names of the form
[a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Expression accessing a property named "namespace": {"Expression": "object.namespace > 0"}
- Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
- Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
- 'set':
X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order. - 'map':
X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order. Required.
- Returns:
this
-
message
@Stability(Stable) public ValidationV1Alpha1.Builder message(String message)
Sets the value ofValidationV1Alpha1.getMessage()- Parameters:
message- Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is "failed Expression: {Expression}".- Returns:
this
-
messageExpression
@Stability(Stable) public ValidationV1Alpha1.Builder messageExpression(String messageExpression)
Sets the value ofValidationV1Alpha1.getMessageExpression()- Parameters:
messageExpression- messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as theexpressionexcept for 'authorizer' and 'authorizer.requestResource'. Example: "object.x must be less than max ("+string(params.max)+")"- Returns:
this
-
reason
@Stability(Stable) public ValidationV1Alpha1.Builder reason(String reason)
Sets the value ofValidationV1Alpha1.getReason()- Parameters:
reason- Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge". If not set, StatusReasonInvalid is used in the response to the client.- Returns:
this
-
build
@Stability(Stable) public ValidationV1Alpha1 build()
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<ValidationV1Alpha1>- Returns:
- a new instance of
ValidationV1Alpha1 - Throws:
NullPointerException- if any required attribute was not provided
-
-