Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AuditAnnotation (0.18 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    			}
    			for i, auditAnnotation := range spec.AuditAnnotations {
    				allErrors = append(allErrors, validateAuditAnnotation(getCompiler(), meta, &auditAnnotation, spec.ParamKind, opts, fldPath.Child("auditAnnotations").Index(i))...)
    				if keys.Has(auditAnnotation.Key) {
    					allErrors = append(allErrors, field.Duplicate(fldPath.Child("auditAnnotations").Index(i).Child("key"), auditAnnotation.Key))
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    // AuditAnnotation describes how to produce an audit annotation for an API request.
    message AuditAnnotation {
      // key specifies the audit annotation key. The audit annotation keys of
      // a ValidatingAdmissionPolicy must be unique. The key must be a qualified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	Expression string `json:"expression" protobuf:"bytes,2,opt,name=Expression"`
    }
    
    // AuditAnnotation describes how to produce an audit annotation for an API request.
    type AuditAnnotation struct {
    	// key specifies the audit annotation key. The audit annotation keys of
    	// a ValidatingAdmissionPolicy must be unique. The key must be a qualified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top