api/v1alpha1/zz_generated.deepcopy.go (191 lines of code) (raw):

//go:build !ignore_autogenerated // Code generated by controller-gen. DO NOT EDIT. package v1alpha1 import ( "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClusterDetails) DeepCopyInto(out *ClusterDetails) { *out = *in if in.CertificateAuthority != nil { in, out := &in.CertificateAuthority, &out.CertificateAuthority *out = make([]byte, len(*in)) copy(*out, *in) } if in.EnableOutpost != nil { in, out := &in.EnableOutpost, &out.EnableOutpost *out = new(bool) **out = **in } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterDetails. func (in *ClusterDetails) DeepCopy() *ClusterDetails { if in == nil { return nil } out := new(ClusterDetails) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ContainerdOptions) DeepCopyInto(out *ContainerdOptions) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerdOptions. func (in *ContainerdOptions) DeepCopy() *ContainerdOptions { if in == nil { return nil } out := new(ContainerdOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HybridOptions) DeepCopyInto(out *HybridOptions) { *out = *in if in.IAMRolesAnywhere != nil { in, out := &in.IAMRolesAnywhere, &out.IAMRolesAnywhere *out = new(IAMRolesAnywhere) **out = **in } if in.SSM != nil { in, out := &in.SSM, &out.SSM *out = new(SSM) **out = **in } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HybridOptions. func (in *HybridOptions) DeepCopy() *HybridOptions { if in == nil { return nil } out := new(HybridOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IAMRolesAnywhere) DeepCopyInto(out *IAMRolesAnywhere) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAMRolesAnywhere. func (in *IAMRolesAnywhere) DeepCopy() *IAMRolesAnywhere { if in == nil { return nil } out := new(IAMRolesAnywhere) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *InstanceOptions) DeepCopyInto(out *InstanceOptions) { *out = *in out.LocalStorage = in.LocalStorage } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanceOptions. func (in *InstanceOptions) DeepCopy() *InstanceOptions { if in == nil { return nil } out := new(InstanceOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeletOptions) DeepCopyInto(out *KubeletOptions) { *out = *in if in.Config != nil { in, out := &in.Config, &out.Config *out = make(map[string]runtime.RawExtension, len(*in)) for key, val := range *in { (*out)[key] = *val.DeepCopy() } } if in.Flags != nil { in, out := &in.Flags, &out.Flags *out = make([]string, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletOptions. func (in *KubeletOptions) DeepCopy() *KubeletOptions { if in == nil { return nil } out := new(KubeletOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LocalStorageOptions) DeepCopyInto(out *LocalStorageOptions) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalStorageOptions. func (in *LocalStorageOptions) DeepCopy() *LocalStorageOptions { if in == nil { return nil } out := new(LocalStorageOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NodeConfig) DeepCopyInto(out *NodeConfig) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeConfig. func (in *NodeConfig) DeepCopy() *NodeConfig { if in == nil { return nil } out := new(NodeConfig) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *NodeConfig) 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 *NodeConfigList) DeepCopyInto(out *NodeConfigList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]NodeConfig, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeConfigList. func (in *NodeConfigList) DeepCopy() *NodeConfigList { if in == nil { return nil } out := new(NodeConfigList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *NodeConfigList) 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 *NodeConfigSpec) DeepCopyInto(out *NodeConfigSpec) { *out = *in in.Cluster.DeepCopyInto(&out.Cluster) out.Containerd = in.Containerd out.Instance = in.Instance in.Kubelet.DeepCopyInto(&out.Kubelet) if in.Hybrid != nil { in, out := &in.Hybrid, &out.Hybrid *out = new(HybridOptions) (*in).DeepCopyInto(*out) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeConfigSpec. func (in *NodeConfigSpec) DeepCopy() *NodeConfigSpec { if in == nil { return nil } out := new(NodeConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SSM) DeepCopyInto(out *SSM) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSM. func (in *SSM) DeepCopy() *SSM { if in == nil { return nil } out := new(SSM) in.DeepCopyInto(out) return out }