mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 02:08:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			145 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			4.6 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 imagepolicy
 | |
| 
 | |
| import (
 | |
| 	conversion "k8s.io/apimachinery/pkg/conversion"
 | |
| 	runtime "k8s.io/apimachinery/pkg/runtime"
 | |
| 	reflect "reflect"
 | |
| )
 | |
| 
 | |
| // Deprecated: register deep-copy functions.
 | |
| func init() {
 | |
| 	SchemeBuilder.Register(RegisterDeepCopies)
 | |
| }
 | |
| 
 | |
| // Deprecated: RegisterDeepCopies adds deep-copy functions to the given scheme. Public
 | |
| // to allow building arbitrary schemes.
 | |
| func RegisterDeepCopies(scheme *runtime.Scheme) error {
 | |
| 	return scheme.AddGeneratedDeepCopyFuncs(
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*ImageReview).DeepCopyInto(out.(*ImageReview))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&ImageReview{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*ImageReviewContainerSpec).DeepCopyInto(out.(*ImageReviewContainerSpec))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&ImageReviewContainerSpec{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*ImageReviewSpec).DeepCopyInto(out.(*ImageReviewSpec))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&ImageReviewSpec{})},
 | |
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
 | |
| 			in.(*ImageReviewStatus).DeepCopyInto(out.(*ImageReviewStatus))
 | |
| 			return nil
 | |
| 		}, InType: reflect.TypeOf(&ImageReviewStatus{})},
 | |
| 	)
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *ImageReview) DeepCopyInto(out *ImageReview) {
 | |
| 	*out = *in
 | |
| 	out.TypeMeta = in.TypeMeta
 | |
| 	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
 | |
| 	in.Spec.DeepCopyInto(&out.Spec)
 | |
| 	out.Status = in.Status
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ImageReview.
 | |
| func (x *ImageReview) DeepCopy() *ImageReview {
 | |
| 	if x == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(ImageReview)
 | |
| 	x.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
 | |
| func (x *ImageReview) DeepCopyObject() runtime.Object {
 | |
| 	if c := x.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 *ImageReviewContainerSpec) DeepCopyInto(out *ImageReviewContainerSpec) {
 | |
| 	*out = *in
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewContainerSpec.
 | |
| func (x *ImageReviewContainerSpec) DeepCopy() *ImageReviewContainerSpec {
 | |
| 	if x == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(ImageReviewContainerSpec)
 | |
| 	x.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *ImageReviewSpec) DeepCopyInto(out *ImageReviewSpec) {
 | |
| 	*out = *in
 | |
| 	if in.Containers != nil {
 | |
| 		in, out := &in.Containers, &out.Containers
 | |
| 		*out = make([]ImageReviewContainerSpec, len(*in))
 | |
| 		copy(*out, *in)
 | |
| 	}
 | |
| 	if in.Annotations != nil {
 | |
| 		in, out := &in.Annotations, &out.Annotations
 | |
| 		*out = make(map[string]string, len(*in))
 | |
| 		for key, val := range *in {
 | |
| 			(*out)[key] = val
 | |
| 		}
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewSpec.
 | |
| func (x *ImageReviewSpec) DeepCopy() *ImageReviewSpec {
 | |
| 	if x == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(ImageReviewSpec)
 | |
| 	x.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 | |
| func (in *ImageReviewStatus) DeepCopyInto(out *ImageReviewStatus) {
 | |
| 	*out = *in
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewStatus.
 | |
| func (x *ImageReviewStatus) DeepCopy() *ImageReviewStatus {
 | |
| 	if x == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	out := new(ImageReviewStatus)
 | |
| 	x.DeepCopyInto(out)
 | |
| 	return out
 | |
| }
 | 
