Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for IPBlock (0.35 sec)

  1. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    	out := new(IPBlock)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,2,opt,name=namespaceSelector"`
    
    	// ipBlock defines policy on a particular IPBlock. If this field is set then
    	// neither of the other fields can be.
    	// +optional
    	IPBlock *IPBlock `json:"ipBlock,omitempty" protobuf:"bytes,3,rep,name=ipBlock"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  4. pkg/apis/networking/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. pkg/apis/networking/types.go

    	// Otherwise it selects all pods in the namespaces selected by namespaceSelector.
    	// +optional
    	NamespaceSelector *metav1.LabelSelector
    
    	// ipBlock defines policy on a particular IPBlock. If this field is set then
    	// neither of the other fields can be.
    	// +optional
    	IPBlock *IPBlock
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // NetworkPolicyList is a list of NetworkPolicy objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 2;
    
      // ipBlock defines policy on a particular IPBlock. If this field is set then
      // neither of the other fields can be.
      // +optional
      optional IPBlock ipBlock = 3;
    }
    
    // NetworkPolicyPort describes a port to allow traffic on
    message NetworkPolicyPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 2;
    
      // ipBlock defines policy on a particular IPBlock. If this field is set then
      // neither of the other fields can be.
      // +optional
      optional IPBlock ipBlock = 3;
    }
    
    // NetworkPolicyPort describes a port to allow traffic on
    message NetworkPolicyPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"ipBlock":           "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.",
    }
    
    func (NetworkPolicyPeer) SwaggerDoc() map[string]string {
    	return map_NetworkPolicyPeer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation.go

    	}
    	if peer.IPBlock != nil {
    		numPeers++
    		allErrs = append(allErrs, ValidateIPBlock(peer.IPBlock, peerPath.Child("ipBlock"))...)
    	}
    
    	if numPeers == 0 {
    		allErrs = append(allErrs, field.Required(peerPath, "must specify a peer"))
    	} else if numPeers > 1 && peer.IPBlock != nil {
    		allErrs = append(allErrs, field.Forbidden(peerPath, "may not specify both ipBlock and another peer"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    }
    
    func (HTTPIngressRuleValue) SwaggerDoc() map[string]string {
    	return map_HTTPIngressRuleValue
    }
    
    var map_IPBlock = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top