//go:build !ignore_autogenerated // Code generated by controller-gen. DO NOT EDIT. package v1alpha1 import ( "edge-infra.dev/pkg/k8s/runtime/inventory" "k8s.io/apimachinery/pkg/apis/meta/v1" 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 *BSLConfig) DeepCopyInto(out *BSLConfig) { *out = *in out.EnterpriseUnit = in.EnterpriseUnit out.Organization = in.Organization if in.EntityTypes != nil { in, out := &in.EntityTypes, &out.EntityTypes *out = make([]string, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLConfig. func (in *BSLConfig) DeepCopy() *BSLConfig { if in == nil { return nil } out := new(BSLConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *BSLEnterpriseUnit) DeepCopyInto(out *BSLEnterpriseUnit) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLEnterpriseUnit. func (in *BSLEnterpriseUnit) DeepCopy() *BSLEnterpriseUnit { if in == nil { return nil } out := new(BSLEnterpriseUnit) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *BSLOrganization) DeepCopyInto(out *BSLOrganization) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLOrganization. func (in *BSLOrganization) DeepCopy() *BSLOrganization { if in == nil { return nil } out := new(BSLOrganization) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Banner) DeepCopyInto(out *Banner) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Banner. func (in *Banner) DeepCopy() *Banner { if in == nil { return nil } out := new(Banner) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Banner) 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 *BannerList) DeepCopyInto(out *BannerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Banner, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerList. func (in *BannerList) DeepCopy() *BannerList { if in == nil { return nil } out := new(BannerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *BannerList) 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 *BannerSpec) DeepCopyInto(out *BannerSpec) { *out = *in in.BSL.DeepCopyInto(&out.BSL) out.GCP = in.GCP if in.Enablements != nil { in, out := &in.Enablements, &out.Enablements *out = make([]string, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerSpec. func (in *BannerSpec) DeepCopy() *BannerSpec { if in == nil { return nil } out := new(BannerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *BannerStatus) DeepCopyInto(out *BannerStatus) { *out = *in if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]v1.Condition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Inventory != nil { in, out := &in.Inventory, &out.Inventory *out = new(inventory.ResourceInventory) (*in).DeepCopyInto(*out) } if in.BslSyncStatus != nil { in, out := &in.BslSyncStatus, &out.BslSyncStatus *out = new(BslSyncStatus) (*in).DeepCopyInto(*out) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerStatus. func (in *BannerStatus) DeepCopy() *BannerStatus { if in == nil { return nil } out := new(BannerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *BslSyncStatus) DeepCopyInto(out *BslSyncStatus) { *out = *in if in.EntityTypes != nil { in, out := &in.EntityTypes, &out.EntityTypes *out = make([]string, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BslSyncStatus. func (in *BslSyncStatus) DeepCopy() *BslSyncStatus { if in == nil { return nil } out := new(BslSyncStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GCPConfig) DeepCopyInto(out *GCPConfig) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPConfig. func (in *GCPConfig) DeepCopy() *GCPConfig { if in == nil { return nil } out := new(GCPConfig) in.DeepCopyInto(out) return out }