80 lines
3.6 KiB
Go
80 lines
3.6 KiB
Go
/*
|
|
Copyright The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v1beta1
|
|
|
|
// AuditAnnotationApplyConfiguration represents a declarative configuration of the AuditAnnotation type for use
|
|
// with apply.
|
|
//
|
|
// AuditAnnotation describes how to produce an audit annotation for an API request.
|
|
type AuditAnnotationApplyConfiguration struct {
|
|
// key specifies the audit annotation key. The audit annotation keys of
|
|
// a ValidatingAdmissionPolicy must be unique. The key must be a qualified
|
|
// name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
|
|
//
|
|
// The key is combined with the resource name of the
|
|
// ValidatingAdmissionPolicy to construct an audit annotation key:
|
|
// "{ValidatingAdmissionPolicy name}/{key}".
|
|
//
|
|
// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
|
|
// and the same audit annotation key, the annotation key will be identical.
|
|
// In this case, the first annotation written with the key will be included
|
|
// in the audit event and all subsequent annotations with the same key
|
|
// will be discarded.
|
|
//
|
|
// Required.
|
|
Key *string `json:"key,omitempty"`
|
|
// valueExpression represents the expression which is evaluated by CEL to
|
|
// produce an audit annotation value. The expression must evaluate to either
|
|
// a string or null value. If the expression evaluates to a string, the
|
|
// audit annotation is included with the string value. If the expression
|
|
// evaluates to null or empty string the audit annotation will be omitted.
|
|
// The valueExpression may be no longer than 5kb in length.
|
|
// If the result of the valueExpression is more than 10kb in length, it
|
|
// will be truncated to 10kb.
|
|
//
|
|
// If multiple ValidatingAdmissionPolicyBinding resources match an
|
|
// API request, then the valueExpression will be evaluated for
|
|
// each binding. All unique values produced by the valueExpressions
|
|
// will be joined together in a comma-separated list.
|
|
//
|
|
// Required.
|
|
ValueExpression *string `json:"valueExpression,omitempty"`
|
|
}
|
|
|
|
// AuditAnnotationApplyConfiguration constructs a declarative configuration of the AuditAnnotation type for use with
|
|
// apply.
|
|
func AuditAnnotation() *AuditAnnotationApplyConfiguration {
|
|
return &AuditAnnotationApplyConfiguration{}
|
|
}
|
|
|
|
// WithKey sets the Key field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Key field is set to the value of the last call.
|
|
func (b *AuditAnnotationApplyConfiguration) WithKey(value string) *AuditAnnotationApplyConfiguration {
|
|
b.Key = &value
|
|
return b
|
|
}
|
|
|
|
// WithValueExpression sets the ValueExpression field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the ValueExpression field is set to the value of the last call.
|
|
func (b *AuditAnnotationApplyConfiguration) WithValueExpression(value string) *AuditAnnotationApplyConfiguration {
|
|
b.ValueExpression = &value
|
|
return b
|
|
}
|