From b7473b018b4c87b468cbe4278312ae056271bf30 Mon Sep 17 00:00:00 2001 From: shuting Date: Tue, 5 Oct 2021 16:57:10 -0700 Subject: [PATCH] update deepcopy methods for types.fo (#2478) --- pkg/api/kyverno/v1/utils.go | 5 ++++ pkg/api/kyverno/v1/zz_generated.deepcopy.go | 27 +++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/pkg/api/kyverno/v1/utils.go b/pkg/api/kyverno/v1/utils.go index 8656c1610c..69d433e751 100755 --- a/pkg/api/kyverno/v1/utils.go +++ b/pkg/api/kyverno/v1/utils.go @@ -167,6 +167,11 @@ func (in *Validation) DeepCopyInto(out *Validation) { *out = *in } } +func (in *ForEachValidation) DeepCopyInto(out *ForEachValidation) { + if out != nil { + *out = *in + } +} func (gen *Generation) DeepCopyInto(out *Generation) { if out != nil { *out = *gen diff --git a/pkg/api/kyverno/v1/zz_generated.deepcopy.go b/pkg/api/kyverno/v1/zz_generated.deepcopy.go index cf0b16562e..b4b8617335 100755 --- a/pkg/api/kyverno/v1/zz_generated.deepcopy.go +++ b/pkg/api/kyverno/v1/zz_generated.deepcopy.go @@ -43,6 +43,22 @@ func (in *APICall) DeepCopy() *APICall { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AdmissionRequestInfoObject) DeepCopyInto(out *AdmissionRequestInfoObject) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionRequestInfoObject. +func (in *AdmissionRequestInfoObject) DeepCopy() *AdmissionRequestInfoObject { + if in == nil { + return nil + } + out := new(AdmissionRequestInfoObject) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AnyAllConditions) DeepCopyInto(out *AnyAllConditions) { *out = *in @@ -244,6 +260,16 @@ func (in *ExcludeResources) DeepCopy() *ExcludeResources { return out } +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForEachValidation. +func (in *ForEachValidation) DeepCopy() *ForEachValidation { + if in == nil { + return nil + } + out := new(ForEachValidation) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GenerateRequest) DeepCopyInto(out *GenerateRequest) { *out = *in @@ -276,6 +302,7 @@ func (in *GenerateRequest) DeepCopyObject() runtime.Object { func (in *GenerateRequestContext) DeepCopyInto(out *GenerateRequestContext) { *out = *in in.UserRequestInfo.DeepCopyInto(&out.UserRequestInfo) + out.AdmissionRequestInfo = in.AdmissionRequestInfo return }