mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	Bump github.com/gogo/googleapis to v1.3.2 Bump github.com/docker/cli to master Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
		
			
				
	
	
		
			263 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			263 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !ignore_autogenerated
 | 
						|
 | 
						|
/*
 | 
						|
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 deepcopy-gen. DO NOT EDIT.
 | 
						|
 | 
						|
package v1
 | 
						|
 | 
						|
import (
 | 
						|
	corev1 "k8s.io/api/core/v1"
 | 
						|
	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
						|
	runtime "k8s.io/apimachinery/pkg/runtime"
 | 
						|
	intstr "k8s.io/apimachinery/pkg/util/intstr"
 | 
						|
)
 | 
						|
 | 
						|
// 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
 | 
						|
	}
 | 
						|
	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
 | 
						|
	in.ListMeta.DeepCopyInto(&out.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
 | 
						|
	}
 | 
						|
	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
 | 
						|
		*out = new(metav1.LabelSelector)
 | 
						|
		(*in).DeepCopyInto(*out)
 | 
						|
	}
 | 
						|
	if in.NamespaceSelector != nil {
 | 
						|
		in, out := &in.NamespaceSelector, &out.NamespaceSelector
 | 
						|
		*out = new(metav1.LabelSelector)
 | 
						|
		(*in).DeepCopyInto(*out)
 | 
						|
	}
 | 
						|
	if in.IPBlock != nil {
 | 
						|
		in, out := &in.IPBlock, &out.IPBlock
 | 
						|
		*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
 | 
						|
		*out = new(corev1.Protocol)
 | 
						|
		**out = **in
 | 
						|
	}
 | 
						|
	if in.Port != nil {
 | 
						|
		in, out := &in.Port, &out.Port
 | 
						|
		*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
 | 
						|
}
 |