Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MatchPolicyType (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetRules() []v1.RuleWithOperations
    	// GetFailurePolicy gets the webhook FailurePolicy field.
    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    	GetMatchPolicy() *v1.MatchPolicyType
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetNamespaceSelector() *metav1.LabelSelector
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetObjectSelector() *metav1.LabelSelector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy.
    // +enum
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule.
    	Exact MatchPolicyType = "Exact"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.deepcopy.go

    		*out = make([]NamedRuleWithOperations, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchPolicy != nil {
    		in, out := &in.MatchPolicy, &out.MatchPolicy
    		*out = new(MatchPolicyType)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchResources.
    func (in *MatchResources) DeepCopy() *MatchResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/zz_generated.deepcopy.go

    		*out = make([]NamedRuleWithOperations, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchPolicy != nil {
    		in, out := &in.MatchPolicy, &out.MatchPolicy
    		*out = new(MatchPolicyType)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchResources.
    func (in *MatchResources) DeepCopy() *MatchResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    		*out = make([]NamedRuleWithOperations, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchPolicy != nil {
    		in, out := &in.MatchPolicy, &out.MatchPolicy
    		*out = new(MatchPolicyType)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchResources.
    func (in *MatchResources) DeepCopy() *MatchResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    				return err
    			}
    		}
    	} else {
    		out.ExcludeResourceRules = nil
    	}
    	out.MatchPolicy = (*admissionregistration.MatchPolicyType)(unsafe.Pointer(in.MatchPolicy))
    	return nil
    }
    
    // Convert_v1alpha1_MatchResources_To_admissionregistration_MatchResources is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    		*out = make([]NamedRuleWithOperations, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchPolicy != nil {
    		in, out := &in.MatchPolicy, &out.MatchPolicy
    		*out = new(MatchPolicyType)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchResources.
    func (in *MatchResources) DeepCopy() *MatchResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top