pkg/kube/apisix/apis/config/v2/zz_generated.deepcopy.go (1,417 lines of code) (raw):

//go:build !ignore_autogenerated // +build !ignore_autogenerated // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Code generated by deepcopy-gen. DO NOT EDIT. package v2 import ( v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ActiveHealthCheck) DeepCopyInto(out *ActiveHealthCheck) { *out = *in if in.StrictTLS != nil { in, out := &in.StrictTLS, &out.StrictTLS *out = new(bool) **out = **in } if in.RequestHeaders != nil { in, out := &in.RequestHeaders, &out.RequestHeaders *out = make([]string, len(*in)) copy(*out, *in) } if in.Healthy != nil { in, out := &in.Healthy, &out.Healthy *out = new(ActiveHealthCheckHealthy) (*in).DeepCopyInto(*out) } if in.Unhealthy != nil { in, out := &in.Unhealthy, &out.Unhealthy *out = new(ActiveHealthCheckUnhealthy) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveHealthCheck. func (in *ActiveHealthCheck) DeepCopy() *ActiveHealthCheck { if in == nil { return nil } out := new(ActiveHealthCheck) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ActiveHealthCheckHealthy) DeepCopyInto(out *ActiveHealthCheckHealthy) { *out = *in in.PassiveHealthCheckHealthy.DeepCopyInto(&out.PassiveHealthCheckHealthy) out.Interval = in.Interval return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveHealthCheckHealthy. func (in *ActiveHealthCheckHealthy) DeepCopy() *ActiveHealthCheckHealthy { if in == nil { return nil } out := new(ActiveHealthCheckHealthy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ActiveHealthCheckUnhealthy) DeepCopyInto(out *ActiveHealthCheckUnhealthy) { *out = *in in.PassiveHealthCheckUnhealthy.DeepCopyInto(&out.PassiveHealthCheckUnhealthy) out.Interval = in.Interval return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveHealthCheckUnhealthy. func (in *ActiveHealthCheckUnhealthy) DeepCopy() *ActiveHealthCheckUnhealthy { if in == nil { return nil } out := new(ActiveHealthCheckUnhealthy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterAdminConfig) DeepCopyInto(out *ApisixClusterAdminConfig) { *out = *in out.ClientTimeout = in.ClientTimeout return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterAdminConfig. func (in *ApisixClusterAdminConfig) DeepCopy() *ApisixClusterAdminConfig { if in == nil { return nil } out := new(ApisixClusterAdminConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterConfig) DeepCopyInto(out *ApisixClusterConfig) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterConfig. func (in *ApisixClusterConfig) DeepCopy() *ApisixClusterConfig { if in == nil { return nil } out := new(ApisixClusterConfig) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixClusterConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterConfigList) DeepCopyInto(out *ApisixClusterConfigList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixClusterConfig, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterConfigList. func (in *ApisixClusterConfigList) DeepCopy() *ApisixClusterConfigList { if in == nil { return nil } out := new(ApisixClusterConfigList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixClusterConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterConfigSpec) DeepCopyInto(out *ApisixClusterConfigSpec) { *out = *in if in.Monitoring != nil { in, out := &in.Monitoring, &out.Monitoring *out = new(ApisixClusterMonitoringConfig) **out = **in } if in.Admin != nil { in, out := &in.Admin, &out.Admin *out = new(ApisixClusterAdminConfig) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterConfigSpec. func (in *ApisixClusterConfigSpec) DeepCopy() *ApisixClusterConfigSpec { if in == nil { return nil } out := new(ApisixClusterConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterMonitoringConfig) DeepCopyInto(out *ApisixClusterMonitoringConfig) { *out = *in out.Prometheus = in.Prometheus out.Skywalking = in.Skywalking return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterMonitoringConfig. func (in *ApisixClusterMonitoringConfig) DeepCopy() *ApisixClusterMonitoringConfig { if in == nil { return nil } out := new(ApisixClusterMonitoringConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterPrometheusConfig) DeepCopyInto(out *ApisixClusterPrometheusConfig) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterPrometheusConfig. func (in *ApisixClusterPrometheusConfig) DeepCopy() *ApisixClusterPrometheusConfig { if in == nil { return nil } out := new(ApisixClusterPrometheusConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixClusterSkywalkingConfig) DeepCopyInto(out *ApisixClusterSkywalkingConfig) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixClusterSkywalkingConfig. func (in *ApisixClusterSkywalkingConfig) DeepCopy() *ApisixClusterSkywalkingConfig { if in == nil { return nil } out := new(ApisixClusterSkywalkingConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumer) DeepCopyInto(out *ApisixConsumer) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumer. func (in *ApisixConsumer) DeepCopy() *ApisixConsumer { if in == nil { return nil } out := new(ApisixConsumer) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixConsumer) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerAuthParameter) DeepCopyInto(out *ApisixConsumerAuthParameter) { *out = *in if in.BasicAuth != nil { in, out := &in.BasicAuth, &out.BasicAuth *out = new(ApisixConsumerBasicAuth) (*in).DeepCopyInto(*out) } if in.KeyAuth != nil { in, out := &in.KeyAuth, &out.KeyAuth *out = new(ApisixConsumerKeyAuth) (*in).DeepCopyInto(*out) } if in.WolfRBAC != nil { in, out := &in.WolfRBAC, &out.WolfRBAC *out = new(ApisixConsumerWolfRBAC) (*in).DeepCopyInto(*out) } if in.JwtAuth != nil { in, out := &in.JwtAuth, &out.JwtAuth *out = new(ApisixConsumerJwtAuth) (*in).DeepCopyInto(*out) } if in.HMACAuth != nil { in, out := &in.HMACAuth, &out.HMACAuth *out = new(ApisixConsumerHMACAuth) (*in).DeepCopyInto(*out) } if in.LDAPAuth != nil { in, out := &in.LDAPAuth, &out.LDAPAuth *out = new(ApisixConsumerLDAPAuth) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerAuthParameter. func (in *ApisixConsumerAuthParameter) DeepCopy() *ApisixConsumerAuthParameter { if in == nil { return nil } out := new(ApisixConsumerAuthParameter) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerBasicAuth) DeepCopyInto(out *ApisixConsumerBasicAuth) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerBasicAuthValue) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerBasicAuth. func (in *ApisixConsumerBasicAuth) DeepCopy() *ApisixConsumerBasicAuth { if in == nil { return nil } out := new(ApisixConsumerBasicAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerBasicAuthValue) DeepCopyInto(out *ApisixConsumerBasicAuthValue) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerBasicAuthValue. func (in *ApisixConsumerBasicAuthValue) DeepCopy() *ApisixConsumerBasicAuthValue { if in == nil { return nil } out := new(ApisixConsumerBasicAuthValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerHMACAuth) DeepCopyInto(out *ApisixConsumerHMACAuth) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerHMACAuthValue) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerHMACAuth. func (in *ApisixConsumerHMACAuth) DeepCopy() *ApisixConsumerHMACAuth { if in == nil { return nil } out := new(ApisixConsumerHMACAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerHMACAuthValue) DeepCopyInto(out *ApisixConsumerHMACAuthValue) { *out = *in if in.SignedHeaders != nil { in, out := &in.SignedHeaders, &out.SignedHeaders *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerHMACAuthValue. func (in *ApisixConsumerHMACAuthValue) DeepCopy() *ApisixConsumerHMACAuthValue { if in == nil { return nil } out := new(ApisixConsumerHMACAuthValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerJwtAuth) DeepCopyInto(out *ApisixConsumerJwtAuth) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerJwtAuthValue) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerJwtAuth. func (in *ApisixConsumerJwtAuth) DeepCopy() *ApisixConsumerJwtAuth { if in == nil { return nil } out := new(ApisixConsumerJwtAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerJwtAuthValue) DeepCopyInto(out *ApisixConsumerJwtAuthValue) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerJwtAuthValue. func (in *ApisixConsumerJwtAuthValue) DeepCopy() *ApisixConsumerJwtAuthValue { if in == nil { return nil } out := new(ApisixConsumerJwtAuthValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerKeyAuth) DeepCopyInto(out *ApisixConsumerKeyAuth) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerKeyAuthValue) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerKeyAuth. func (in *ApisixConsumerKeyAuth) DeepCopy() *ApisixConsumerKeyAuth { if in == nil { return nil } out := new(ApisixConsumerKeyAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerKeyAuthValue) DeepCopyInto(out *ApisixConsumerKeyAuthValue) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerKeyAuthValue. func (in *ApisixConsumerKeyAuthValue) DeepCopy() *ApisixConsumerKeyAuthValue { if in == nil { return nil } out := new(ApisixConsumerKeyAuthValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerLDAPAuth) DeepCopyInto(out *ApisixConsumerLDAPAuth) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerLDAPAuthValue) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerLDAPAuth. func (in *ApisixConsumerLDAPAuth) DeepCopy() *ApisixConsumerLDAPAuth { if in == nil { return nil } out := new(ApisixConsumerLDAPAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerLDAPAuthValue) DeepCopyInto(out *ApisixConsumerLDAPAuthValue) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerLDAPAuthValue. func (in *ApisixConsumerLDAPAuthValue) DeepCopy() *ApisixConsumerLDAPAuthValue { if in == nil { return nil } out := new(ApisixConsumerLDAPAuthValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerList) DeepCopyInto(out *ApisixConsumerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixConsumer, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerList. func (in *ApisixConsumerList) DeepCopy() *ApisixConsumerList { if in == nil { return nil } out := new(ApisixConsumerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixConsumerList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerSpec) DeepCopyInto(out *ApisixConsumerSpec) { *out = *in in.AuthParameter.DeepCopyInto(&out.AuthParameter) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerSpec. func (in *ApisixConsumerSpec) DeepCopy() *ApisixConsumerSpec { if in == nil { return nil } out := new(ApisixConsumerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerWolfRBAC) DeepCopyInto(out *ApisixConsumerWolfRBAC) { *out = *in if in.SecretRef != nil { in, out := &in.SecretRef, &out.SecretRef *out = new(v1.LocalObjectReference) **out = **in } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(ApisixConsumerWolfRBACValue) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerWolfRBAC. func (in *ApisixConsumerWolfRBAC) DeepCopy() *ApisixConsumerWolfRBAC { if in == nil { return nil } out := new(ApisixConsumerWolfRBAC) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixConsumerWolfRBACValue) DeepCopyInto(out *ApisixConsumerWolfRBACValue) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixConsumerWolfRBACValue. func (in *ApisixConsumerWolfRBACValue) DeepCopy() *ApisixConsumerWolfRBACValue { if in == nil { return nil } out := new(ApisixConsumerWolfRBACValue) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixGlobalRule) DeepCopyInto(out *ApisixGlobalRule) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixGlobalRule. func (in *ApisixGlobalRule) DeepCopy() *ApisixGlobalRule { if in == nil { return nil } out := new(ApisixGlobalRule) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixGlobalRule) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixGlobalRuleList) DeepCopyInto(out *ApisixGlobalRuleList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixGlobalRule, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixGlobalRuleList. func (in *ApisixGlobalRuleList) DeepCopy() *ApisixGlobalRuleList { if in == nil { return nil } out := new(ApisixGlobalRuleList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixGlobalRuleList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixGlobalRuleSpec) DeepCopyInto(out *ApisixGlobalRuleSpec) { *out = *in if in.Plugins != nil { in, out := &in.Plugins, &out.Plugins *out = make([]ApisixRoutePlugin, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixGlobalRuleSpec. func (in *ApisixGlobalRuleSpec) DeepCopy() *ApisixGlobalRuleSpec { if in == nil { return nil } out := new(ApisixGlobalRuleSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixMutualTlsClientConfig) DeepCopyInto(out *ApisixMutualTlsClientConfig) { *out = *in out.CASecret = in.CASecret if in.SkipMTLSUriRegex != nil { in, out := &in.SkipMTLSUriRegex, &out.SkipMTLSUriRegex *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixMutualTlsClientConfig. func (in *ApisixMutualTlsClientConfig) DeepCopy() *ApisixMutualTlsClientConfig { if in == nil { return nil } out := new(ApisixMutualTlsClientConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixPluginConfig) DeepCopyInto(out *ApisixPluginConfig) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixPluginConfig. func (in *ApisixPluginConfig) DeepCopy() *ApisixPluginConfig { if in == nil { return nil } out := new(ApisixPluginConfig) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixPluginConfig) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixPluginConfigList) DeepCopyInto(out *ApisixPluginConfigList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixPluginConfig, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixPluginConfigList. func (in *ApisixPluginConfigList) DeepCopy() *ApisixPluginConfigList { if in == nil { return nil } out := new(ApisixPluginConfigList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixPluginConfigList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixPluginConfigSpec) DeepCopyInto(out *ApisixPluginConfigSpec) { *out = *in if in.Plugins != nil { in, out := &in.Plugins, &out.Plugins *out = make([]ApisixRoutePlugin, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixPluginConfigSpec. func (in *ApisixPluginConfigSpec) DeepCopy() *ApisixPluginConfigSpec { if in == nil { return nil } out := new(ApisixPluginConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRoute) DeepCopyInto(out *ApisixRoute) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRoute. func (in *ApisixRoute) DeepCopy() *ApisixRoute { if in == nil { return nil } out := new(ApisixRoute) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixRoute) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteAuthentication) DeepCopyInto(out *ApisixRouteAuthentication) { *out = *in out.KeyAuth = in.KeyAuth out.JwtAuth = in.JwtAuth out.LDAPAuth = in.LDAPAuth return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteAuthentication. func (in *ApisixRouteAuthentication) DeepCopy() *ApisixRouteAuthentication { if in == nil { return nil } out := new(ApisixRouteAuthentication) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteAuthenticationJwtAuth) DeepCopyInto(out *ApisixRouteAuthenticationJwtAuth) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteAuthenticationJwtAuth. func (in *ApisixRouteAuthenticationJwtAuth) DeepCopy() *ApisixRouteAuthenticationJwtAuth { if in == nil { return nil } out := new(ApisixRouteAuthenticationJwtAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteAuthenticationKeyAuth) DeepCopyInto(out *ApisixRouteAuthenticationKeyAuth) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteAuthenticationKeyAuth. func (in *ApisixRouteAuthenticationKeyAuth) DeepCopy() *ApisixRouteAuthenticationKeyAuth { if in == nil { return nil } out := new(ApisixRouteAuthenticationKeyAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteAuthenticationLDAPAuth) DeepCopyInto(out *ApisixRouteAuthenticationLDAPAuth) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteAuthenticationLDAPAuth. func (in *ApisixRouteAuthenticationLDAPAuth) DeepCopy() *ApisixRouteAuthenticationLDAPAuth { if in == nil { return nil } out := new(ApisixRouteAuthenticationLDAPAuth) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteHTTP) DeepCopyInto(out *ApisixRouteHTTP) { *out = *in if in.Timeout != nil { in, out := &in.Timeout, &out.Timeout *out = new(UpstreamTimeout) **out = **in } in.Match.DeepCopyInto(&out.Match) if in.Backends != nil { in, out := &in.Backends, &out.Backends *out = make([]ApisixRouteHTTPBackend, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Upstreams != nil { in, out := &in.Upstreams, &out.Upstreams *out = make([]ApisixRouteUpstreamReference, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Plugins != nil { in, out := &in.Plugins, &out.Plugins *out = make([]ApisixRoutePlugin, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } out.Authentication = in.Authentication return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteHTTP. func (in *ApisixRouteHTTP) DeepCopy() *ApisixRouteHTTP { if in == nil { return nil } out := new(ApisixRouteHTTP) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteHTTPBackend) DeepCopyInto(out *ApisixRouteHTTPBackend) { *out = *in out.ServicePort = in.ServicePort if in.Weight != nil { in, out := &in.Weight, &out.Weight *out = new(int) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteHTTPBackend. func (in *ApisixRouteHTTPBackend) DeepCopy() *ApisixRouteHTTPBackend { if in == nil { return nil } out := new(ApisixRouteHTTPBackend) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteHTTPMatch) DeepCopyInto(out *ApisixRouteHTTPMatch) { *out = *in if in.Paths != nil { in, out := &in.Paths, &out.Paths *out = make([]string, len(*in)) copy(*out, *in) } if in.Methods != nil { in, out := &in.Methods, &out.Methods *out = make([]string, len(*in)) copy(*out, *in) } if in.Hosts != nil { in, out := &in.Hosts, &out.Hosts *out = make([]string, len(*in)) copy(*out, *in) } if in.RemoteAddrs != nil { in, out := &in.RemoteAddrs, &out.RemoteAddrs *out = make([]string, len(*in)) copy(*out, *in) } if in.NginxVars != nil { in, out := &in.NginxVars, &out.NginxVars *out = make([]ApisixRouteHTTPMatchExpr, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteHTTPMatch. func (in *ApisixRouteHTTPMatch) DeepCopy() *ApisixRouteHTTPMatch { if in == nil { return nil } out := new(ApisixRouteHTTPMatch) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteHTTPMatchExpr) DeepCopyInto(out *ApisixRouteHTTPMatchExpr) { *out = *in out.Subject = in.Subject if in.Set != nil { in, out := &in.Set, &out.Set *out = make([]string, len(*in)) copy(*out, *in) } if in.Value != nil { in, out := &in.Value, &out.Value *out = new(string) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteHTTPMatchExpr. func (in *ApisixRouteHTTPMatchExpr) DeepCopy() *ApisixRouteHTTPMatchExpr { if in == nil { return nil } out := new(ApisixRouteHTTPMatchExpr) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteHTTPMatchExprSubject) DeepCopyInto(out *ApisixRouteHTTPMatchExprSubject) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteHTTPMatchExprSubject. func (in *ApisixRouteHTTPMatchExprSubject) DeepCopy() *ApisixRouteHTTPMatchExprSubject { if in == nil { return nil } out := new(ApisixRouteHTTPMatchExprSubject) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteList) DeepCopyInto(out *ApisixRouteList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixRoute, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteList. func (in *ApisixRouteList) DeepCopy() *ApisixRouteList { if in == nil { return nil } out := new(ApisixRouteList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixRouteList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRoutePlugin) DeepCopyInto(out *ApisixRoutePlugin) { *out = *in in.Config.DeepCopyInto(&out.Config) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRoutePlugin. func (in *ApisixRoutePlugin) DeepCopy() *ApisixRoutePlugin { if in == nil { return nil } out := new(ApisixRoutePlugin) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteSpec) DeepCopyInto(out *ApisixRouteSpec) { *out = *in if in.HTTP != nil { in, out := &in.HTTP, &out.HTTP *out = make([]ApisixRouteHTTP, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Stream != nil { in, out := &in.Stream, &out.Stream *out = make([]ApisixRouteStream, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteSpec. func (in *ApisixRouteSpec) DeepCopy() *ApisixRouteSpec { if in == nil { return nil } out := new(ApisixRouteSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteStream) DeepCopyInto(out *ApisixRouteStream) { *out = *in out.Match = in.Match out.Backend = in.Backend if in.Plugins != nil { in, out := &in.Plugins, &out.Plugins *out = make([]ApisixRoutePlugin, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteStream. func (in *ApisixRouteStream) DeepCopy() *ApisixRouteStream { if in == nil { return nil } out := new(ApisixRouteStream) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteStreamBackend) DeepCopyInto(out *ApisixRouteStreamBackend) { *out = *in out.ServicePort = in.ServicePort return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteStreamBackend. func (in *ApisixRouteStreamBackend) DeepCopy() *ApisixRouteStreamBackend { if in == nil { return nil } out := new(ApisixRouteStreamBackend) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteStreamMatch) DeepCopyInto(out *ApisixRouteStreamMatch) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteStreamMatch. func (in *ApisixRouteStreamMatch) DeepCopy() *ApisixRouteStreamMatch { if in == nil { return nil } out := new(ApisixRouteStreamMatch) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixRouteUpstreamReference) DeepCopyInto(out *ApisixRouteUpstreamReference) { *out = *in if in.Weight != nil { in, out := &in.Weight, &out.Weight *out = new(int) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixRouteUpstreamReference. func (in *ApisixRouteUpstreamReference) DeepCopy() *ApisixRouteUpstreamReference { if in == nil { return nil } out := new(ApisixRouteUpstreamReference) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixSecret) DeepCopyInto(out *ApisixSecret) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixSecret. func (in *ApisixSecret) DeepCopy() *ApisixSecret { if in == nil { return nil } out := new(ApisixSecret) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixStatus) DeepCopyInto(out *ApisixStatus) { *out = *in if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]metav1.Condition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixStatus. func (in *ApisixStatus) DeepCopy() *ApisixStatus { if in == nil { return nil } out := new(ApisixStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixTls) DeepCopyInto(out *ApisixTls) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) if in.Spec != nil { in, out := &in.Spec, &out.Spec *out = new(ApisixTlsSpec) (*in).DeepCopyInto(*out) } in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixTls. func (in *ApisixTls) DeepCopy() *ApisixTls { if in == nil { return nil } out := new(ApisixTls) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixTls) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixTlsList) DeepCopyInto(out *ApisixTlsList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixTls, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixTlsList. func (in *ApisixTlsList) DeepCopy() *ApisixTlsList { if in == nil { return nil } out := new(ApisixTlsList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixTlsList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixTlsSpec) DeepCopyInto(out *ApisixTlsSpec) { *out = *in if in.Hosts != nil { in, out := &in.Hosts, &out.Hosts *out = make([]HostType, len(*in)) copy(*out, *in) } out.Secret = in.Secret if in.Client != nil { in, out := &in.Client, &out.Client *out = new(ApisixMutualTlsClientConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixTlsSpec. func (in *ApisixTlsSpec) DeepCopy() *ApisixTlsSpec { if in == nil { return nil } out := new(ApisixTlsSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstream) DeepCopyInto(out *ApisixUpstream) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) if in.Spec != nil { in, out := &in.Spec, &out.Spec *out = new(ApisixUpstreamSpec) (*in).DeepCopyInto(*out) } in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstream. func (in *ApisixUpstream) DeepCopy() *ApisixUpstream { if in == nil { return nil } out := new(ApisixUpstream) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixUpstream) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstreamConfig) DeepCopyInto(out *ApisixUpstreamConfig) { *out = *in if in.LoadBalancer != nil { in, out := &in.LoadBalancer, &out.LoadBalancer *out = new(LoadBalancer) **out = **in } if in.Retries != nil { in, out := &in.Retries, &out.Retries *out = new(int) **out = **in } if in.Timeout != nil { in, out := &in.Timeout, &out.Timeout *out = new(UpstreamTimeout) **out = **in } if in.HealthCheck != nil { in, out := &in.HealthCheck, &out.HealthCheck *out = new(HealthCheck) (*in).DeepCopyInto(*out) } if in.TLSSecret != nil { in, out := &in.TLSSecret, &out.TLSSecret *out = new(ApisixSecret) **out = **in } if in.Subsets != nil { in, out := &in.Subsets, &out.Subsets *out = make([]ApisixUpstreamSubset, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Discovery != nil { in, out := &in.Discovery, &out.Discovery *out = new(Discovery) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstreamConfig. func (in *ApisixUpstreamConfig) DeepCopy() *ApisixUpstreamConfig { if in == nil { return nil } out := new(ApisixUpstreamConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstreamExternalNode) DeepCopyInto(out *ApisixUpstreamExternalNode) { *out = *in if in.Weight != nil { in, out := &in.Weight, &out.Weight *out = new(int) **out = **in } if in.Port != nil { in, out := &in.Port, &out.Port *out = new(int) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstreamExternalNode. func (in *ApisixUpstreamExternalNode) DeepCopy() *ApisixUpstreamExternalNode { if in == nil { return nil } out := new(ApisixUpstreamExternalNode) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstreamList) DeepCopyInto(out *ApisixUpstreamList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ApisixUpstream, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstreamList. func (in *ApisixUpstreamList) DeepCopy() *ApisixUpstreamList { if in == nil { return nil } out := new(ApisixUpstreamList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ApisixUpstreamList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstreamSpec) DeepCopyInto(out *ApisixUpstreamSpec) { *out = *in if in.ExternalNodes != nil { in, out := &in.ExternalNodes, &out.ExternalNodes *out = make([]ApisixUpstreamExternalNode, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } in.ApisixUpstreamConfig.DeepCopyInto(&out.ApisixUpstreamConfig) if in.PortLevelSettings != nil { in, out := &in.PortLevelSettings, &out.PortLevelSettings *out = make([]PortLevelSettings, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstreamSpec. func (in *ApisixUpstreamSpec) DeepCopy() *ApisixUpstreamSpec { if in == nil { return nil } out := new(ApisixUpstreamSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ApisixUpstreamSubset) DeepCopyInto(out *ApisixUpstreamSubset) { *out = *in if in.Labels != nil { in, out := &in.Labels, &out.Labels *out = make(map[string]string, len(*in)) for key, val := range *in { (*out)[key] = val } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApisixUpstreamSubset. func (in *ApisixUpstreamSubset) DeepCopy() *ApisixUpstreamSubset { if in == nil { return nil } out := new(ApisixUpstreamSubset) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Discovery) DeepCopyInto(out *Discovery) { *out = *in if in.Args != nil { in, out := &in.Args, &out.Args *out = make(map[string]string, len(*in)) for key, val := range *in { (*out)[key] = val } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Discovery. func (in *Discovery) DeepCopy() *Discovery { if in == nil { return nil } out := new(Discovery) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HealthCheck) DeepCopyInto(out *HealthCheck) { *out = *in if in.Active != nil { in, out := &in.Active, &out.Active *out = new(ActiveHealthCheck) (*in).DeepCopyInto(*out) } if in.Passive != nil { in, out := &in.Passive, &out.Passive *out = new(PassiveHealthCheck) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheck. func (in *HealthCheck) DeepCopy() *HealthCheck { if in == nil { return nil } out := new(HealthCheck) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LoadBalancer) DeepCopyInto(out *LoadBalancer) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoadBalancer. func (in *LoadBalancer) DeepCopy() *LoadBalancer { if in == nil { return nil } out := new(LoadBalancer) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PassiveHealthCheck) DeepCopyInto(out *PassiveHealthCheck) { *out = *in if in.Healthy != nil { in, out := &in.Healthy, &out.Healthy *out = new(PassiveHealthCheckHealthy) (*in).DeepCopyInto(*out) } if in.Unhealthy != nil { in, out := &in.Unhealthy, &out.Unhealthy *out = new(PassiveHealthCheckUnhealthy) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassiveHealthCheck. func (in *PassiveHealthCheck) DeepCopy() *PassiveHealthCheck { if in == nil { return nil } out := new(PassiveHealthCheck) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PassiveHealthCheckHealthy) DeepCopyInto(out *PassiveHealthCheckHealthy) { *out = *in if in.HTTPCodes != nil { in, out := &in.HTTPCodes, &out.HTTPCodes *out = make([]int, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassiveHealthCheckHealthy. func (in *PassiveHealthCheckHealthy) DeepCopy() *PassiveHealthCheckHealthy { if in == nil { return nil } out := new(PassiveHealthCheckHealthy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PassiveHealthCheckUnhealthy) DeepCopyInto(out *PassiveHealthCheckUnhealthy) { *out = *in if in.HTTPCodes != nil { in, out := &in.HTTPCodes, &out.HTTPCodes *out = make([]int, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassiveHealthCheckUnhealthy. func (in *PassiveHealthCheckUnhealthy) DeepCopy() *PassiveHealthCheckUnhealthy { if in == nil { return nil } out := new(PassiveHealthCheckUnhealthy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Plugin) DeepCopyInto(out *Plugin) { *out = *in in.Config.DeepCopyInto(&out.Config) in.ConfigSet.DeepCopyInto(&out.ConfigSet) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugin. func (in *Plugin) DeepCopy() *Plugin { if in == nil { return nil } out := new(Plugin) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PortLevelSettings) DeepCopyInto(out *PortLevelSettings) { *out = *in in.ApisixUpstreamConfig.DeepCopyInto(&out.ApisixUpstreamConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortLevelSettings. func (in *PortLevelSettings) DeepCopy() *PortLevelSettings { if in == nil { return nil } out := new(PortLevelSettings) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *UpstreamTimeout) DeepCopyInto(out *UpstreamTimeout) { *out = *in out.Connect = in.Connect out.Send = in.Send out.Read = in.Read return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpstreamTimeout. func (in *UpstreamTimeout) DeepCopy() *UpstreamTimeout { if in == nil { return nil } out := new(UpstreamTimeout) in.DeepCopyInto(out) return out }