Forked from XenoWYC121 / proj110-k8sOperator
Source project has a limited visibility.
zz_generated.deepcopy.go 3.11 KiB
//go:build !ignore_autogenerated
/*
Copyright 2024.
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 controller-gen. DO NOT EDIT.
package v1alpha1
import (
	runtime "k8s.io/apimachinery/pkg/runtime"
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MyKind) DeepCopyInto(out *MyKind) {
	*out = *in
	out.TypeMeta = in.TypeMeta
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
	out.Spec = in.Spec
	out.Status = in.Status
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyKind.
func (in *MyKind) DeepCopy() *MyKind {
	if in == nil {
		return nil
	out := new(MyKind)
	in.DeepCopyInto(out)
	return out
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *MyKind) 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 *MyKindList) DeepCopyInto(out *MyKindList) {
	*out = *in
	out.TypeMeta = in.TypeMeta
	in.ListMeta.DeepCopyInto(&out.ListMeta)
	if in.Items != nil {
		in, out := &in.Items, &out.Items
		*out = make([]MyKind, len(*in))
		for i := range *in {
			(*in)[i].DeepCopyInto(&(*out)[i])
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyKindList.
func (in *MyKindList) DeepCopy() *MyKindList {
	if in == nil {
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
return nil } out := new(MyKindList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *MyKindList) 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 *MyKindSpec) DeepCopyInto(out *MyKindSpec) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyKindSpec. func (in *MyKindSpec) DeepCopy() *MyKindSpec { if in == nil { return nil } out := new(MyKindSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MyKindStatus) DeepCopyInto(out *MyKindStatus) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyKindStatus. func (in *MyKindStatus) DeepCopy() *MyKindStatus { if in == nil { return nil } out := new(MyKindStatus) in.DeepCopyInto(out) return out }