@@ -89,6 +89,27 @@ func (in *ArangoDeploymentReplicationList) DeepCopyObject() runtime.Object {
8989 return nil
9090}
9191
92+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
93+ func (in * CollectionStatus ) DeepCopyInto (out * CollectionStatus ) {
94+ * out = * in
95+ if in .Shards != nil {
96+ in , out := & in .Shards , & out .Shards
97+ * out = make ([]ShardStatus , len (* in ))
98+ copy (* out , * in )
99+ }
100+ return
101+ }
102+
103+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectionStatus.
104+ func (in * CollectionStatus ) DeepCopy () * CollectionStatus {
105+ if in == nil {
106+ return nil
107+ }
108+ out := new (CollectionStatus )
109+ in .DeepCopyInto (out )
110+ return out
111+ }
112+
92113// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
93114func (in * Condition ) DeepCopyInto (out * Condition ) {
94115 * out = * in
@@ -107,6 +128,29 @@ func (in *Condition) DeepCopy() *Condition {
107128 return out
108129}
109130
131+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
132+ func (in * DatabaseStatus ) DeepCopyInto (out * DatabaseStatus ) {
133+ * out = * in
134+ if in .Collections != nil {
135+ in , out := & in .Collections , & out .Collections
136+ * out = make ([]CollectionStatus , len (* in ))
137+ for i := range * in {
138+ (* in )[i ].DeepCopyInto (& (* out )[i ])
139+ }
140+ }
141+ return
142+ }
143+
144+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseStatus.
145+ func (in * DatabaseStatus ) DeepCopy () * DatabaseStatus {
146+ if in == nil {
147+ return nil
148+ }
149+ out := new (DatabaseStatus )
150+ in .DeepCopyInto (out )
151+ return out
152+ }
153+
110154// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
111155func (in * DeploymentReplicationSpec ) DeepCopyInto (out * DeploymentReplicationSpec ) {
112156 * out = * in
@@ -135,6 +179,8 @@ func (in *DeploymentReplicationStatus) DeepCopyInto(out *DeploymentReplicationSt
135179 (* in )[i ].DeepCopyInto (& (* out )[i ])
136180 }
137181 }
182+ in .Source .DeepCopyInto (& out .Source )
183+ in .Destination .DeepCopyInto (& out .Destination )
138184 return
139185}
140186
@@ -214,6 +260,29 @@ func (in *EndpointSpec) DeepCopy() *EndpointSpec {
214260 return out
215261}
216262
263+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
264+ func (in * EndpointStatus ) DeepCopyInto (out * EndpointStatus ) {
265+ * out = * in
266+ if in .Databases != nil {
267+ in , out := & in .Databases , & out .Databases
268+ * out = make ([]DatabaseStatus , len (* in ))
269+ for i := range * in {
270+ (* in )[i ].DeepCopyInto (& (* out )[i ])
271+ }
272+ }
273+ return
274+ }
275+
276+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointStatus.
277+ func (in * EndpointStatus ) DeepCopy () * EndpointStatus {
278+ if in == nil {
279+ return nil
280+ }
281+ out := new (EndpointStatus )
282+ in .DeepCopyInto (out )
283+ return out
284+ }
285+
217286// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
218287func (in * EndpointTLSSpec ) DeepCopyInto (out * EndpointTLSSpec ) {
219288 * out = * in
@@ -238,3 +307,19 @@ func (in *EndpointTLSSpec) DeepCopy() *EndpointTLSSpec {
238307 in .DeepCopyInto (out )
239308 return out
240309}
310+
311+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
312+ func (in * ShardStatus ) DeepCopyInto (out * ShardStatus ) {
313+ * out = * in
314+ return
315+ }
316+
317+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShardStatus.
318+ func (in * ShardStatus ) DeepCopy () * ShardStatus {
319+ if in == nil {
320+ return nil
321+ }
322+ out := new (ShardStatus )
323+ in .DeepCopyInto (out )
324+ return out
325+ }
0 commit comments