X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=xappKubernetesOperator%2Fapi%2Fv1%2Fzz_generated.deepcopy.go;fp=xappKubernetesOperator%2Fapi%2Fv1%2Fzz_generated.deepcopy.go;h=c0c085cc8385cb49cda4b2e718276e1b6ce31a91;hb=57551b79b2581cdc32416b6816199d23f15fda5a;hp=0000000000000000000000000000000000000000;hpb=51803ca2559db8160f42cc4688c57542ef65c733;p=ric-plt%2Fricdms.git diff --git a/xappKubernetesOperator/api/v1/zz_generated.deepcopy.go b/xappKubernetesOperator/api/v1/zz_generated.deepcopy.go new file mode 100644 index 0000000..c0c085c --- /dev/null +++ b/xappKubernetesOperator/api/v1/zz_generated.deepcopy.go @@ -0,0 +1,115 @@ +//go:build !ignore_autogenerated +// +build !ignore_autogenerated + +/* +Copyright 2023. + +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 v1 + +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 *XappDep) DeepCopyInto(out *XappDep) { + *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 XappDep. +func (in *XappDep) DeepCopy() *XappDep { + if in == nil { + return nil + } + out := new(XappDep) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *XappDep) 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 *XappDepList) DeepCopyInto(out *XappDepList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]XappDep, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new XappDepList. +func (in *XappDepList) DeepCopy() *XappDepList { + if in == nil { + return nil + } + out := new(XappDepList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *XappDepList) 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 *XappDepSpec) DeepCopyInto(out *XappDepSpec) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new XappDepSpec. +func (in *XappDepSpec) DeepCopy() *XappDepSpec { + if in == nil { + return nil + } + out := new(XappDepSpec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *XappDepStatus) DeepCopyInto(out *XappDepStatus) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new XappDepStatus. +func (in *XappDepStatus) DeepCopy() *XappDepStatus { + if in == nil { + return nil + } + out := new(XappDepStatus) + in.DeepCopyInto(out) + return out +}