diff --git a/control-plane/api/v1alpha1/zz_generated.deepcopy.go b/control-plane/api/v1alpha1/zz_generated.deepcopy.go index 5b54f4a5c5..23269fd8f0 100644 --- a/control-plane/api/v1alpha1/zz_generated.deepcopy.go +++ b/control-plane/api/v1alpha1/zz_generated.deepcopy.go @@ -848,6 +848,11 @@ func (in *IngressServiceConfig) DeepCopyInto(out *IngressServiceConfig) { *out = new(uint32) **out = **in } + if in.PassiveHealthCheck != nil { + in, out := &in.PassiveHealthCheck, &out.PassiveHealthCheck + *out = new(PassiveHealthCheck) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressServiceConfig. @@ -1116,6 +1121,26 @@ func (in *JSONWebKeySet) DeepCopy() *JSONWebKeySet { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *JWKSCluster) DeepCopyInto(out *JWKSCluster) { + *out = *in + if in.TLSCertificates != nil { + in, out := &in.TLSCertificates, &out.TLSCertificates + *out = new(JWKSTLSCertificate) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWKSCluster. +func (in *JWKSCluster) DeepCopy() *JWKSCluster { + if in == nil { + return nil + } + out := new(JWKSCluster) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *JWKSRetryPolicy) DeepCopyInto(out *JWKSRetryPolicy) { *out = *in @@ -1136,6 +1161,66 @@ func (in *JWKSRetryPolicy) DeepCopy() *JWKSRetryPolicy { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *JWKSTLSCertProviderInstance) DeepCopyInto(out *JWKSTLSCertProviderInstance) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWKSTLSCertProviderInstance. +func (in *JWKSTLSCertProviderInstance) DeepCopy() *JWKSTLSCertProviderInstance { + if in == nil { + return nil + } + out := new(JWKSTLSCertProviderInstance) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *JWKSTLSCertTrustedCA) DeepCopyInto(out *JWKSTLSCertTrustedCA) { + *out = *in + if in.InlineBytes != nil { + in, out := &in.InlineBytes, &out.InlineBytes + *out = make([]byte, len(*in)) + copy(*out, *in) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWKSTLSCertTrustedCA. +func (in *JWKSTLSCertTrustedCA) DeepCopy() *JWKSTLSCertTrustedCA { + if in == nil { + return nil + } + out := new(JWKSTLSCertTrustedCA) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *JWKSTLSCertificate) DeepCopyInto(out *JWKSTLSCertificate) { + *out = *in + if in.CaCertificateProviderInstance != nil { + in, out := &in.CaCertificateProviderInstance, &out.CaCertificateProviderInstance + *out = new(JWKSTLSCertProviderInstance) + **out = **in + } + if in.TrustedCA != nil { + in, out := &in.TrustedCA, &out.TrustedCA + *out = new(JWKSTLSCertTrustedCA) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JWKSTLSCertificate. +func (in *JWKSTLSCertificate) DeepCopy() *JWKSTLSCertificate { + if in == nil { + return nil + } + out := new(JWKSTLSCertificate) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *JWTCacheConfig) DeepCopyInto(out *JWTCacheConfig) { *out = *in @@ -2154,6 +2239,11 @@ func (in *RemoteJWKS) DeepCopyInto(out *RemoteJWKS) { *out = new(JWKSRetryPolicy) (*in).DeepCopyInto(*out) } + if in.JWKSCluster != nil { + in, out := &in.JWKSCluster, &out.JWKSCluster + *out = new(JWKSCluster) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RemoteJWKS.