Class ValidatingAdmissionPolicyBindingSpecV1Alpha1.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus28.k8s.ValidatingAdmissionPolicyBindingSpecV1Alpha1.Jsii$Proxy
-
- All Implemented Interfaces:
ValidatingAdmissionPolicyBindingSpecV1Alpha1,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
- ValidatingAdmissionPolicyBindingSpecV1Alpha1
@Stability(Stable) @Internal public static final class ValidatingAdmissionPolicyBindingSpecV1Alpha1.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ValidatingAdmissionPolicyBindingSpecV1Alpha1
An implementation forValidatingAdmissionPolicyBindingSpecV1Alpha1
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.plus28.k8s.ValidatingAdmissionPolicyBindingSpecV1Alpha1
ValidatingAdmissionPolicyBindingSpecV1Alpha1.Builder, ValidatingAdmissionPolicyBindingSpecV1Alpha1.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedJsii$Proxy(ValidatingAdmissionPolicyBindingSpecV1Alpha1.Builder builder)Constructor that initializes the object based on literal property values passed by theValidatingAdmissionPolicyBindingSpecV1Alpha1.Builder.protectedJsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode$jsii$toJson()booleanequals(Object o)MatchResourcesV1Alpha1getMatchResources()MatchResources declares what resources match this binding and will be validated by it.ParamRefV1Alpha1getParamRef()paramRef specifies the parameter resource used to configure the admission control policy.StringgetPolicyName()PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to.List<String>getValidationActions()validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.inthashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(ValidatingAdmissionPolicyBindingSpecV1Alpha1.Builder builder)
Constructor that initializes the object based on literal property values passed by theValidatingAdmissionPolicyBindingSpecV1Alpha1.Builder.
-
-
Method Detail
-
getMatchResources
public final MatchResourcesV1Alpha1 getMatchResources()
Description copied from interface:ValidatingAdmissionPolicyBindingSpecV1Alpha1MatchResources declares what resources match this binding and will be validated by it.Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated. Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
- Specified by:
getMatchResourcesin interfaceValidatingAdmissionPolicyBindingSpecV1Alpha1
-
getParamRef
public final ParamRefV1Alpha1 getParamRef()
Description copied from interface:ValidatingAdmissionPolicyBindingSpecV1Alpha1paramRef specifies the parameter resource used to configure the admission control policy.It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy. If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied. If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.
- Specified by:
getParamRefin interfaceValidatingAdmissionPolicyBindingSpecV1Alpha1
-
getPolicyName
public final String getPolicyName()
Description copied from interface:ValidatingAdmissionPolicyBindingSpecV1Alpha1PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to.If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.
- Specified by:
getPolicyNamein interfaceValidatingAdmissionPolicyBindingSpecV1Alpha1
-
getValidationActions
public final List<String> getValidationActions()
Description copied from interface:ValidatingAdmissionPolicyBindingSpecV1Alpha1validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.If a validation evaluates to false it is always enforced according to these actions.
Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.
validationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.
The supported actions values are:
"Deny" specifies that a validation failure results in a denied request.
"Warn" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.
"Audit" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a
validation.policy.admission.k8s.io/validation_failureaudit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation:"validation.policy.admission.k8s.io/validation_failure": "[{"message": "Invalid value", {"policy": "policy.example.com", {"binding": "policybinding.example.com", {"expressionIndex": "1", {"validationActions": ["Audit"]}]"Clients should expect to handle additional values by ignoring any values not recognized.
"Deny" and "Warn" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.
Required.
- Specified by:
getValidationActionsin interfaceValidatingAdmissionPolicyBindingSpecV1Alpha1
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJsonin interfacesoftware.amazon.jsii.JsiiSerializable
-
-