mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-30 21:30:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			332 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			332 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !ignore_autogenerated
 | |
| 
 | |
| /*
 | |
| Copyright 2017 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.
 | |
| */
 | |
| 
 | |
| // This file was autogenerated by deepcopy-gen. Do not edit it manually!
 | |
| 
 | |
| package networking
 | |
| 
 | |
| import (
 | |
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | |
| 	conversion "k8s.io/apimachinery/pkg/conversion"
 | |
| 	runtime "k8s.io/apimachinery/pkg/runtime"
 | |
| 	intstr "k8s.io/apimachinery/pkg/util/intstr"
 | |
| 	api "k8s.io/kubernetes/pkg/api"
 | |
| 	reflect "reflect"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	SchemeBuilder.Register(RegisterDeepCopies)
 | |
| }
 | |
| 
 | |
| // RegisterDeepCopies adds deep-copy functions to the given scheme. Public
 | |
| // to allow building arbitrary schemes.
 | |
| //
 | |
| // Deprecated: deepcopy registration will go away when static deepcopy is fully implemented.
 | |
| func RegisterDeepCopies(scheme *runtime.Scheme) error {
 | |
| 	return scheme.AddGeneratedDeepCopyFuncs(
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*IPBlock).DeepCopyInto(out.(*IPBlock))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&IPBlock{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicy).DeepCopyInto(out.(*NetworkPolicy))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicy{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicyEgressRule).DeepCopyInto(out.(*NetworkPolicyEgressRule))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicyEgressRule{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicyIngressRule).DeepCopyInto(out.(*NetworkPolicyIngressRule))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicyIngressRule{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicyList).DeepCopyInto(out.(*NetworkPolicyList))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicyList{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicyPeer).DeepCopyInto(out.(*NetworkPolicyPeer))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicyPeer{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicyPort).DeepCopyInto(out.(*NetworkPolicyPort))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicyPort{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*NetworkPolicySpec).DeepCopyInto(out.(*NetworkPolicySpec))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&NetworkPolicySpec{})},
 | |
| 	)
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| 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)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicy) DeepCopyInto(out *NetworkPolicy) {
 | |
| 	*out = *in
 | |
| 	out.TypeMeta = in.TypeMeta
 | |
| 	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
 | |
| 	in.Spec.DeepCopyInto(&out.Spec)
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicy.
 | |
| func (in *NetworkPolicy) DeepCopy() *NetworkPolicy {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicy)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
 | |
| func (in *NetworkPolicy) DeepCopyObject() runtime.Object {
 | |
| 	if c := in.DeepCopy(); c != nil {
 | |
| 		return c
 | |
| 	} else {
 | |
| 		return nil
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicyEgressRule) DeepCopyInto(out *NetworkPolicyEgressRule) {
 | |
| 	*out = *in
 | |
| 	if in.Ports != nil {
 | |
| 		in, out := &in.Ports, &out.Ports
 | |
| 		*out = make([]NetworkPolicyPort, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	if in.To != nil {
 | |
| 		in, out := &in.To, &out.To
 | |
| 		*out = make([]NetworkPolicyPeer, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicyEgressRule.
 | |
| func (in *NetworkPolicyEgressRule) DeepCopy() *NetworkPolicyEgressRule {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicyEgressRule)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicyIngressRule) DeepCopyInto(out *NetworkPolicyIngressRule) {
 | |
| 	*out = *in
 | |
| 	if in.Ports != nil {
 | |
| 		in, out := &in.Ports, &out.Ports
 | |
| 		*out = make([]NetworkPolicyPort, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	if in.From != nil {
 | |
| 		in, out := &in.From, &out.From
 | |
| 		*out = make([]NetworkPolicyPeer, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicyIngressRule.
 | |
| func (in *NetworkPolicyIngressRule) DeepCopy() *NetworkPolicyIngressRule {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicyIngressRule)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicyList) DeepCopyInto(out *NetworkPolicyList) {
 | |
| 	*out = *in
 | |
| 	out.TypeMeta = in.TypeMeta
 | |
| 	out.ListMeta = in.ListMeta
 | |
| 	if in.Items != nil {
 | |
| 		in, out := &in.Items, &out.Items
 | |
| 		*out = make([]NetworkPolicy, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicyList.
 | |
| func (in *NetworkPolicyList) DeepCopy() *NetworkPolicyList {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicyList)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
 | |
| func (in *NetworkPolicyList) DeepCopyObject() runtime.Object {
 | |
| 	if c := in.DeepCopy(); c != nil {
 | |
| 		return c
 | |
| 	} else {
 | |
| 		return nil
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicyPeer) DeepCopyInto(out *NetworkPolicyPeer) {
 | |
| 	*out = *in
 | |
| 	if in.PodSelector != nil {
 | |
| 		in, out := &in.PodSelector, &out.PodSelector
 | |
| 		if *in == nil {
 | |
| 			*out = nil
 | |
| 		} else {
 | |
| 			*out = new(v1.LabelSelector)
 | |
| 			(*in).DeepCopyInto(*out)
 | |
| 		}
 | |
| 	}
 | |
| 	if in.NamespaceSelector != nil {
 | |
| 		in, out := &in.NamespaceSelector, &out.NamespaceSelector
 | |
| 		if *in == nil {
 | |
| 			*out = nil
 | |
| 		} else {
 | |
| 			*out = new(v1.LabelSelector)
 | |
| 			(*in).DeepCopyInto(*out)
 | |
| 		}
 | |
| 	}
 | |
| 	if in.IPBlock != nil {
 | |
| 		in, out := &in.IPBlock, &out.IPBlock
 | |
| 		if *in == nil {
 | |
| 			*out = nil
 | |
| 		} else {
 | |
| 			*out = new(IPBlock)
 | |
| 			(*in).DeepCopyInto(*out)
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicyPeer.
 | |
| func (in *NetworkPolicyPeer) DeepCopy() *NetworkPolicyPeer {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicyPeer)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicyPort) DeepCopyInto(out *NetworkPolicyPort) {
 | |
| 	*out = *in
 | |
| 	if in.Protocol != nil {
 | |
| 		in, out := &in.Protocol, &out.Protocol
 | |
| 		if *in == nil {
 | |
| 			*out = nil
 | |
| 		} else {
 | |
| 			*out = new(api.Protocol)
 | |
| 			**out = **in
 | |
| 		}
 | |
| 	}
 | |
| 	if in.Port != nil {
 | |
| 		in, out := &in.Port, &out.Port
 | |
| 		if *in == nil {
 | |
| 			*out = nil
 | |
| 		} else {
 | |
| 			*out = new(intstr.IntOrString)
 | |
| 			**out = **in
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicyPort.
 | |
| func (in *NetworkPolicyPort) DeepCopy() *NetworkPolicyPort {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicyPort)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *NetworkPolicySpec) DeepCopyInto(out *NetworkPolicySpec) {
 | |
| 	*out = *in
 | |
| 	in.PodSelector.DeepCopyInto(&out.PodSelector)
 | |
| 	if in.Ingress != nil {
 | |
| 		in, out := &in.Ingress, &out.Ingress
 | |
| 		*out = make([]NetworkPolicyIngressRule, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	if in.Egress != nil {
 | |
| 		in, out := &in.Egress, &out.Egress
 | |
| 		*out = make([]NetworkPolicyEgressRule, len(*in))
 | |
| 		for i := range *in {
 | |
| 			(*in)[i].DeepCopyInto(&(*out)[i])
 | |
| 		}
 | |
| 	}
 | |
| 	if in.PolicyTypes != nil {
 | |
| 		in, out := &in.PolicyTypes, &out.PolicyTypes
 | |
| 		*out = make([]PolicyType, len(*in))
 | |
| 		copy(*out, *in)
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicySpec.
 | |
| func (in *NetworkPolicySpec) DeepCopy() *NetworkPolicySpec {
 | |
| 	if in == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(NetworkPolicySpec)
 | |
| 	in.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 |