From c258d2224101a2486f4a397cb7b932f9643aad17 Mon Sep 17 00:00:00 2001 From: Milos Tomic Date: Fri, 19 Jul 2024 16:56:38 +0200 Subject: [PATCH] feat: CC Scope --- .../v1beta1/zz_generated.deepcopy.go | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/api/cloud-control/v1beta1/zz_generated.deepcopy.go b/api/cloud-control/v1beta1/zz_generated.deepcopy.go index 0fca55b61..e3ebcc626 100644 --- a/api/cloud-control/v1beta1/zz_generated.deepcopy.go +++ b/api/cloud-control/v1beta1/zz_generated.deepcopy.go @@ -626,6 +626,42 @@ func (in *NfsOptionsGcp) DeepCopy() *NfsOptionsGcp { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *OpenStackNetwork) DeepCopyInto(out *OpenStackNetwork) { + *out = *in + if in.Zones != nil { + in, out := &in.Zones, &out.Zones + *out = make([]string, len(*in)) + copy(*out, *in) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackNetwork. +func (in *OpenStackNetwork) DeepCopy() *OpenStackNetwork { + if in == nil { + return nil + } + out := new(OpenStackNetwork) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *OpenStackScope) DeepCopyInto(out *OpenStackScope) { + *out = *in + in.Network.DeepCopyInto(&out.Network) +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackScope. +func (in *OpenStackScope) DeepCopy() *OpenStackScope { + if in == nil { + return nil + } + out := new(OpenStackScope) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RedisInstance) DeepCopyInto(out *RedisInstance) { *out = *in @@ -894,6 +930,11 @@ func (in *ScopeInfo) DeepCopyInto(out *ScopeInfo) { *out = new(AwsScope) (*in).DeepCopyInto(*out) } + if in.OpenStack != nil { + in, out := &in.OpenStack, &out.OpenStack + *out = new(OpenStackScope) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScopeInfo.