From 57ade61ad8aa33d9aa0365e86cd5dbc30d973d58 Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Tue, 26 Mar 2024 12:18:33 -0700 Subject: [PATCH] codegen --- kong/zz_generated.deepcopy.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/kong/zz_generated.deepcopy.go b/kong/zz_generated.deepcopy.go index b8cf3de57..bcbe3ca30 100644 --- a/kong/zz_generated.deepcopy.go +++ b/kong/zz_generated.deepcopy.go @@ -517,6 +517,33 @@ func (in *ConsumerGroupConsumer) DeepCopy() *ConsumerGroupConsumer { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ConsumerGroupConsumers) DeepCopyInto(out *ConsumerGroupConsumers) { + *out = *in + if in.Data != nil { + in, out := &in.Data, &out.Data + *out = make([]*Consumer, len(*in)) + for i := range *in { + if (*in)[i] != nil { + in, out := &(*in)[i], &(*out)[i] + *out = new(Consumer) + (*in).DeepCopyInto(*out) + } + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsumerGroupConsumers. +func (in *ConsumerGroupConsumers) DeepCopy() *ConsumerGroupConsumers { + if in == nil { + return nil + } + out := new(ConsumerGroupConsumers) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsumerGroupObject) DeepCopyInto(out *ConsumerGroupObject) { *out = *in