//go:build !ignore_autogenerated // +build !ignore_autogenerated // Code generated by deepcopy-gen. DO NOT EDIT. package v1 import ( configv1 "github.com/openshift/api/config/v1" authorizationv1 "k8s.io/api/authorization/v1" corev1 "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 *AWSCSIDriverConfigSpec) DeepCopyInto(out *AWSCSIDriverConfigSpec) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSCSIDriverConfigSpec. func (in *AWSCSIDriverConfigSpec) DeepCopy() *AWSCSIDriverConfigSpec { if in == nil { return nil } out := new(AWSCSIDriverConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AWSClassicLoadBalancerParameters) DeepCopyInto(out *AWSClassicLoadBalancerParameters) { *out = *in out.ConnectionIdleTimeout = in.ConnectionIdleTimeout return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSClassicLoadBalancerParameters. func (in *AWSClassicLoadBalancerParameters) DeepCopy() *AWSClassicLoadBalancerParameters { if in == nil { return nil } out := new(AWSClassicLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AWSLoadBalancerParameters) DeepCopyInto(out *AWSLoadBalancerParameters) { *out = *in if in.ClassicLoadBalancerParameters != nil { in, out := &in.ClassicLoadBalancerParameters, &out.ClassicLoadBalancerParameters *out = new(AWSClassicLoadBalancerParameters) **out = **in } if in.NetworkLoadBalancerParameters != nil { in, out := &in.NetworkLoadBalancerParameters, &out.NetworkLoadBalancerParameters *out = new(AWSNetworkLoadBalancerParameters) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSLoadBalancerParameters. func (in *AWSLoadBalancerParameters) DeepCopy() *AWSLoadBalancerParameters { if in == nil { return nil } out := new(AWSLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AWSNetworkLoadBalancerParameters) DeepCopyInto(out *AWSNetworkLoadBalancerParameters) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSNetworkLoadBalancerParameters. func (in *AWSNetworkLoadBalancerParameters) DeepCopy() *AWSNetworkLoadBalancerParameters { if in == nil { return nil } out := new(AWSNetworkLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AccessLogging) DeepCopyInto(out *AccessLogging) { *out = *in in.Destination.DeepCopyInto(&out.Destination) in.HTTPCaptureHeaders.DeepCopyInto(&out.HTTPCaptureHeaders) if in.HTTPCaptureCookies != nil { in, out := &in.HTTPCaptureCookies, &out.HTTPCaptureCookies *out = make([]IngressControllerCaptureHTTPCookie, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessLogging. func (in *AccessLogging) DeepCopy() *AccessLogging { if in == nil { return nil } out := new(AccessLogging) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AddPage) DeepCopyInto(out *AddPage) { *out = *in if in.DisabledActions != nil { in, out := &in.DisabledActions, &out.DisabledActions *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddPage. func (in *AddPage) DeepCopy() *AddPage { if in == nil { return nil } out := new(AddPage) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AdditionalNetworkDefinition) DeepCopyInto(out *AdditionalNetworkDefinition) { *out = *in if in.SimpleMacvlanConfig != nil { in, out := &in.SimpleMacvlanConfig, &out.SimpleMacvlanConfig *out = new(SimpleMacvlanConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdditionalNetworkDefinition. func (in *AdditionalNetworkDefinition) DeepCopy() *AdditionalNetworkDefinition { if in == nil { return nil } out := new(AdditionalNetworkDefinition) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Authentication) DeepCopyInto(out *Authentication) { *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 Authentication. func (in *Authentication) DeepCopy() *Authentication { if in == nil { return nil } out := new(Authentication) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Authentication) 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 *AuthenticationList) DeepCopyInto(out *AuthenticationList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Authentication, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthenticationList. func (in *AuthenticationList) DeepCopy() *AuthenticationList { if in == nil { return nil } out := new(AuthenticationList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *AuthenticationList) 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 *AuthenticationSpec) DeepCopyInto(out *AuthenticationSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthenticationSpec. func (in *AuthenticationSpec) DeepCopy() *AuthenticationSpec { if in == nil { return nil } out := new(AuthenticationSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AuthenticationStatus) DeepCopyInto(out *AuthenticationStatus) { *out = *in out.OAuthAPIServer = in.OAuthAPIServer in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthenticationStatus. func (in *AuthenticationStatus) DeepCopy() *AuthenticationStatus { if in == nil { return nil } out := new(AuthenticationStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AzureCSIDriverConfigSpec) DeepCopyInto(out *AzureCSIDriverConfigSpec) { *out = *in if in.DiskEncryptionSet != nil { in, out := &in.DiskEncryptionSet, &out.DiskEncryptionSet *out = new(AzureDiskEncryptionSet) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureCSIDriverConfigSpec. func (in *AzureCSIDriverConfigSpec) DeepCopy() *AzureCSIDriverConfigSpec { if in == nil { return nil } out := new(AzureCSIDriverConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AzureDiskEncryptionSet) DeepCopyInto(out *AzureDiskEncryptionSet) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureDiskEncryptionSet. func (in *AzureDiskEncryptionSet) DeepCopy() *AzureDiskEncryptionSet { if in == nil { return nil } out := new(AzureDiskEncryptionSet) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CSIDriverConfigSpec) DeepCopyInto(out *CSIDriverConfigSpec) { *out = *in if in.AWS != nil { in, out := &in.AWS, &out.AWS *out = new(AWSCSIDriverConfigSpec) **out = **in } if in.Azure != nil { in, out := &in.Azure, &out.Azure *out = new(AzureCSIDriverConfigSpec) (*in).DeepCopyInto(*out) } if in.GCP != nil { in, out := &in.GCP, &out.GCP *out = new(GCPCSIDriverConfigSpec) (*in).DeepCopyInto(*out) } if in.VSphere != nil { in, out := &in.VSphere, &out.VSphere *out = new(VSphereCSIDriverConfigSpec) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriverConfigSpec. func (in *CSIDriverConfigSpec) DeepCopy() *CSIDriverConfigSpec { if in == nil { return nil } out := new(CSIDriverConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CSISnapshotController) DeepCopyInto(out *CSISnapshotController) { *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 CSISnapshotController. func (in *CSISnapshotController) DeepCopy() *CSISnapshotController { if in == nil { return nil } out := new(CSISnapshotController) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *CSISnapshotController) 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 *CSISnapshotControllerList) DeepCopyInto(out *CSISnapshotControllerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]CSISnapshotController, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSISnapshotControllerList. func (in *CSISnapshotControllerList) DeepCopy() *CSISnapshotControllerList { if in == nil { return nil } out := new(CSISnapshotControllerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *CSISnapshotControllerList) 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 *CSISnapshotControllerSpec) DeepCopyInto(out *CSISnapshotControllerSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSISnapshotControllerSpec. func (in *CSISnapshotControllerSpec) DeepCopy() *CSISnapshotControllerSpec { if in == nil { return nil } out := new(CSISnapshotControllerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CSISnapshotControllerStatus) DeepCopyInto(out *CSISnapshotControllerStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSISnapshotControllerStatus. func (in *CSISnapshotControllerStatus) DeepCopy() *CSISnapshotControllerStatus { if in == nil { return nil } out := new(CSISnapshotControllerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClientTLS) DeepCopyInto(out *ClientTLS) { *out = *in out.ClientCA = in.ClientCA if in.AllowedSubjectPatterns != nil { in, out := &in.AllowedSubjectPatterns, &out.AllowedSubjectPatterns *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientTLS. func (in *ClientTLS) DeepCopy() *ClientTLS { if in == nil { return nil } out := new(ClientTLS) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CloudCredential) DeepCopyInto(out *CloudCredential) { *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 CloudCredential. func (in *CloudCredential) DeepCopy() *CloudCredential { if in == nil { return nil } out := new(CloudCredential) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *CloudCredential) 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 *CloudCredentialList) DeepCopyInto(out *CloudCredentialList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]CloudCredential, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudCredentialList. func (in *CloudCredentialList) DeepCopy() *CloudCredentialList { if in == nil { return nil } out := new(CloudCredentialList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *CloudCredentialList) 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 *CloudCredentialSpec) DeepCopyInto(out *CloudCredentialSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudCredentialSpec. func (in *CloudCredentialSpec) DeepCopy() *CloudCredentialSpec { if in == nil { return nil } out := new(CloudCredentialSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CloudCredentialStatus) DeepCopyInto(out *CloudCredentialStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudCredentialStatus. func (in *CloudCredentialStatus) DeepCopy() *CloudCredentialStatus { if in == nil { return nil } out := new(CloudCredentialStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClusterCSIDriver) DeepCopyInto(out *ClusterCSIDriver) { *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 ClusterCSIDriver. func (in *ClusterCSIDriver) DeepCopy() *ClusterCSIDriver { if in == nil { return nil } out := new(ClusterCSIDriver) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ClusterCSIDriver) 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 *ClusterCSIDriverList) DeepCopyInto(out *ClusterCSIDriverList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ClusterCSIDriver, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterCSIDriverList. func (in *ClusterCSIDriverList) DeepCopy() *ClusterCSIDriverList { if in == nil { return nil } out := new(ClusterCSIDriverList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ClusterCSIDriverList) 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 *ClusterCSIDriverSpec) DeepCopyInto(out *ClusterCSIDriverSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) in.DriverConfig.DeepCopyInto(&out.DriverConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterCSIDriverSpec. func (in *ClusterCSIDriverSpec) DeepCopy() *ClusterCSIDriverSpec { if in == nil { return nil } out := new(ClusterCSIDriverSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClusterCSIDriverStatus) DeepCopyInto(out *ClusterCSIDriverStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterCSIDriverStatus. func (in *ClusterCSIDriverStatus) DeepCopy() *ClusterCSIDriverStatus { if in == nil { return nil } out := new(ClusterCSIDriverStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ClusterNetworkEntry) DeepCopyInto(out *ClusterNetworkEntry) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterNetworkEntry. func (in *ClusterNetworkEntry) DeepCopy() *ClusterNetworkEntry { if in == nil { return nil } out := new(ClusterNetworkEntry) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Config) DeepCopyInto(out *Config) { *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 Config. func (in *Config) DeepCopy() *Config { if in == nil { return nil } out := new(Config) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Config) 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 *ConfigList) DeepCopyInto(out *ConfigList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Config, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigList. func (in *ConfigList) DeepCopy() *ConfigList { if in == nil { return nil } out := new(ConfigList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ConfigList) 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 *ConfigSpec) DeepCopyInto(out *ConfigSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigSpec. func (in *ConfigSpec) DeepCopy() *ConfigSpec { if in == nil { return nil } out := new(ConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConfigStatus) DeepCopyInto(out *ConfigStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigStatus. func (in *ConfigStatus) DeepCopy() *ConfigStatus { if in == nil { return nil } out := new(ConfigStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Console) DeepCopyInto(out *Console) { *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 Console. func (in *Console) DeepCopy() *Console { if in == nil { return nil } out := new(Console) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Console) 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 *ConsoleConfigRoute) DeepCopyInto(out *ConsoleConfigRoute) { *out = *in out.Secret = in.Secret return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleConfigRoute. func (in *ConsoleConfigRoute) DeepCopy() *ConsoleConfigRoute { if in == nil { return nil } out := new(ConsoleConfigRoute) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsoleCustomization) DeepCopyInto(out *ConsoleCustomization) { *out = *in out.CustomLogoFile = in.CustomLogoFile in.DeveloperCatalog.DeepCopyInto(&out.DeveloperCatalog) in.ProjectAccess.DeepCopyInto(&out.ProjectAccess) in.QuickStarts.DeepCopyInto(&out.QuickStarts) in.AddPage.DeepCopyInto(&out.AddPage) if in.Perspectives != nil { in, out := &in.Perspectives, &out.Perspectives *out = make([]Perspective, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleCustomization. func (in *ConsoleCustomization) DeepCopy() *ConsoleCustomization { if in == nil { return nil } out := new(ConsoleCustomization) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsoleList) DeepCopyInto(out *ConsoleList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Console, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleList. func (in *ConsoleList) DeepCopy() *ConsoleList { if in == nil { return nil } out := new(ConsoleList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ConsoleList) 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 *ConsoleProviders) DeepCopyInto(out *ConsoleProviders) { *out = *in if in.Statuspage != nil { in, out := &in.Statuspage, &out.Statuspage *out = new(StatuspageProvider) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleProviders. func (in *ConsoleProviders) DeepCopy() *ConsoleProviders { if in == nil { return nil } out := new(ConsoleProviders) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsoleSpec) DeepCopyInto(out *ConsoleSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) in.Customization.DeepCopyInto(&out.Customization) in.Providers.DeepCopyInto(&out.Providers) out.Route = in.Route if in.Plugins != nil { in, out := &in.Plugins, &out.Plugins *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleSpec. func (in *ConsoleSpec) DeepCopy() *ConsoleSpec { if in == nil { return nil } out := new(ConsoleSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsoleStatus) DeepCopyInto(out *ConsoleStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleStatus. func (in *ConsoleStatus) DeepCopy() *ConsoleStatus { if in == nil { return nil } out := new(ConsoleStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ContainerLoggingDestinationParameters) DeepCopyInto(out *ContainerLoggingDestinationParameters) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerLoggingDestinationParameters. func (in *ContainerLoggingDestinationParameters) DeepCopy() *ContainerLoggingDestinationParameters { if in == nil { return nil } out := new(ContainerLoggingDestinationParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNS) DeepCopyInto(out *DNS) { *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 DNS. func (in *DNS) DeepCopy() *DNS { if in == nil { return nil } out := new(DNS) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *DNS) 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 *DNSCache) DeepCopyInto(out *DNSCache) { *out = *in out.PositiveTTL = in.PositiveTTL out.NegativeTTL = in.NegativeTTL return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSCache. func (in *DNSCache) DeepCopy() *DNSCache { if in == nil { return nil } out := new(DNSCache) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSList) DeepCopyInto(out *DNSList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]DNS, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSList. func (in *DNSList) DeepCopy() *DNSList { if in == nil { return nil } out := new(DNSList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *DNSList) 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 *DNSNodePlacement) DeepCopyInto(out *DNSNodePlacement) { *out = *in if in.NodeSelector != nil { in, out := &in.NodeSelector, &out.NodeSelector *out = make(map[string]string, len(*in)) for key, val := range *in { (*out)[key] = val } } if in.Tolerations != nil { in, out := &in.Tolerations, &out.Tolerations *out = make([]corev1.Toleration, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSNodePlacement. func (in *DNSNodePlacement) DeepCopy() *DNSNodePlacement { if in == nil { return nil } out := new(DNSNodePlacement) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSOverTLSConfig) DeepCopyInto(out *DNSOverTLSConfig) { *out = *in out.CABundle = in.CABundle return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSOverTLSConfig. func (in *DNSOverTLSConfig) DeepCopy() *DNSOverTLSConfig { if in == nil { return nil } out := new(DNSOverTLSConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSSpec) DeepCopyInto(out *DNSSpec) { *out = *in if in.Servers != nil { in, out := &in.Servers, &out.Servers *out = make([]Server, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } in.UpstreamResolvers.DeepCopyInto(&out.UpstreamResolvers) in.NodePlacement.DeepCopyInto(&out.NodePlacement) out.Cache = in.Cache return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSSpec. func (in *DNSSpec) DeepCopy() *DNSSpec { if in == nil { return nil } out := new(DNSSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSStatus) DeepCopyInto(out *DNSStatus) { *out = *in if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]OperatorCondition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSStatus. func (in *DNSStatus) DeepCopy() *DNSStatus { if in == nil { return nil } out := new(DNSStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSTransportConfig) DeepCopyInto(out *DNSTransportConfig) { *out = *in if in.TLS != nil { in, out := &in.TLS, &out.TLS *out = new(DNSOverTLSConfig) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSTransportConfig. func (in *DNSTransportConfig) DeepCopy() *DNSTransportConfig { if in == nil { return nil } out := new(DNSTransportConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DefaultNetworkDefinition) DeepCopyInto(out *DefaultNetworkDefinition) { *out = *in if in.OpenShiftSDNConfig != nil { in, out := &in.OpenShiftSDNConfig, &out.OpenShiftSDNConfig *out = new(OpenShiftSDNConfig) (*in).DeepCopyInto(*out) } if in.OVNKubernetesConfig != nil { in, out := &in.OVNKubernetesConfig, &out.OVNKubernetesConfig *out = new(OVNKubernetesConfig) (*in).DeepCopyInto(*out) } if in.KuryrConfig != nil { in, out := &in.KuryrConfig, &out.KuryrConfig *out = new(KuryrConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DefaultNetworkDefinition. func (in *DefaultNetworkDefinition) DeepCopy() *DefaultNetworkDefinition { if in == nil { return nil } out := new(DefaultNetworkDefinition) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DeveloperConsoleCatalogCategory) DeepCopyInto(out *DeveloperConsoleCatalogCategory) { *out = *in in.DeveloperConsoleCatalogCategoryMeta.DeepCopyInto(&out.DeveloperConsoleCatalogCategoryMeta) if in.Subcategories != nil { in, out := &in.Subcategories, &out.Subcategories *out = make([]DeveloperConsoleCatalogCategoryMeta, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeveloperConsoleCatalogCategory. func (in *DeveloperConsoleCatalogCategory) DeepCopy() *DeveloperConsoleCatalogCategory { if in == nil { return nil } out := new(DeveloperConsoleCatalogCategory) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DeveloperConsoleCatalogCategoryMeta) DeepCopyInto(out *DeveloperConsoleCatalogCategoryMeta) { *out = *in if in.Tags != nil { in, out := &in.Tags, &out.Tags *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeveloperConsoleCatalogCategoryMeta. func (in *DeveloperConsoleCatalogCategoryMeta) DeepCopy() *DeveloperConsoleCatalogCategoryMeta { if in == nil { return nil } out := new(DeveloperConsoleCatalogCategoryMeta) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DeveloperConsoleCatalogCustomization) DeepCopyInto(out *DeveloperConsoleCatalogCustomization) { *out = *in if in.Categories != nil { in, out := &in.Categories, &out.Categories *out = make([]DeveloperConsoleCatalogCategory, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } in.Types.DeepCopyInto(&out.Types) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeveloperConsoleCatalogCustomization. func (in *DeveloperConsoleCatalogCustomization) DeepCopy() *DeveloperConsoleCatalogCustomization { if in == nil { return nil } out := new(DeveloperConsoleCatalogCustomization) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DeveloperConsoleCatalogTypes) DeepCopyInto(out *DeveloperConsoleCatalogTypes) { *out = *in if in.Enabled != nil { in, out := &in.Enabled, &out.Enabled *out = new([]string) if **in != nil { in, out := *in, *out *out = make([]string, len(*in)) copy(*out, *in) } } if in.Disabled != nil { in, out := &in.Disabled, &out.Disabled *out = new([]string) if **in != nil { in, out := *in, *out *out = make([]string, len(*in)) copy(*out, *in) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeveloperConsoleCatalogTypes. func (in *DeveloperConsoleCatalogTypes) DeepCopy() *DeveloperConsoleCatalogTypes { if in == nil { return nil } out := new(DeveloperConsoleCatalogTypes) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *EgressIPConfig) DeepCopyInto(out *EgressIPConfig) { *out = *in if in.ReachabilityTotalTimeoutSeconds != nil { in, out := &in.ReachabilityTotalTimeoutSeconds, &out.ReachabilityTotalTimeoutSeconds *out = new(uint32) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EgressIPConfig. func (in *EgressIPConfig) DeepCopy() *EgressIPConfig { if in == nil { return nil } out := new(EgressIPConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *EndpointPublishingStrategy) DeepCopyInto(out *EndpointPublishingStrategy) { *out = *in if in.LoadBalancer != nil { in, out := &in.LoadBalancer, &out.LoadBalancer *out = new(LoadBalancerStrategy) (*in).DeepCopyInto(*out) } if in.HostNetwork != nil { in, out := &in.HostNetwork, &out.HostNetwork *out = new(HostNetworkStrategy) **out = **in } if in.Private != nil { in, out := &in.Private, &out.Private *out = new(PrivateStrategy) **out = **in } if in.NodePort != nil { in, out := &in.NodePort, &out.NodePort *out = new(NodePortStrategy) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointPublishingStrategy. func (in *EndpointPublishingStrategy) DeepCopy() *EndpointPublishingStrategy { if in == nil { return nil } out := new(EndpointPublishingStrategy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Etcd) DeepCopyInto(out *Etcd) { *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 Etcd. func (in *Etcd) DeepCopy() *Etcd { if in == nil { return nil } out := new(Etcd) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Etcd) 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 *EtcdList) DeepCopyInto(out *EtcdList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Etcd, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EtcdList. func (in *EtcdList) DeepCopy() *EtcdList { if in == nil { return nil } out := new(EtcdList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *EtcdList) 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 *EtcdSpec) DeepCopyInto(out *EtcdSpec) { *out = *in in.StaticPodOperatorSpec.DeepCopyInto(&out.StaticPodOperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EtcdSpec. func (in *EtcdSpec) DeepCopy() *EtcdSpec { if in == nil { return nil } out := new(EtcdSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *EtcdStatus) DeepCopyInto(out *EtcdStatus) { *out = *in in.StaticPodOperatorStatus.DeepCopyInto(&out.StaticPodOperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EtcdStatus. func (in *EtcdStatus) DeepCopy() *EtcdStatus { if in == nil { return nil } out := new(EtcdStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ExportNetworkFlows) DeepCopyInto(out *ExportNetworkFlows) { *out = *in if in.NetFlow != nil { in, out := &in.NetFlow, &out.NetFlow *out = new(NetFlowConfig) (*in).DeepCopyInto(*out) } if in.SFlow != nil { in, out := &in.SFlow, &out.SFlow *out = new(SFlowConfig) (*in).DeepCopyInto(*out) } if in.IPFIX != nil { in, out := &in.IPFIX, &out.IPFIX *out = new(IPFIXConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportNetworkFlows. func (in *ExportNetworkFlows) DeepCopy() *ExportNetworkFlows { if in == nil { return nil } out := new(ExportNetworkFlows) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *FeaturesMigration) DeepCopyInto(out *FeaturesMigration) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FeaturesMigration. func (in *FeaturesMigration) DeepCopy() *FeaturesMigration { if in == nil { return nil } out := new(FeaturesMigration) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ForwardPlugin) DeepCopyInto(out *ForwardPlugin) { *out = *in if in.Upstreams != nil { in, out := &in.Upstreams, &out.Upstreams *out = make([]string, len(*in)) copy(*out, *in) } in.TransportConfig.DeepCopyInto(&out.TransportConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForwardPlugin. func (in *ForwardPlugin) DeepCopy() *ForwardPlugin { if in == nil { return nil } out := new(ForwardPlugin) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GCPCSIDriverConfigSpec) DeepCopyInto(out *GCPCSIDriverConfigSpec) { *out = *in if in.KMSKey != nil { in, out := &in.KMSKey, &out.KMSKey *out = new(GCPKMSKeyReference) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPCSIDriverConfigSpec. func (in *GCPCSIDriverConfigSpec) DeepCopy() *GCPCSIDriverConfigSpec { if in == nil { return nil } out := new(GCPCSIDriverConfigSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GCPKMSKeyReference) DeepCopyInto(out *GCPKMSKeyReference) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPKMSKeyReference. func (in *GCPKMSKeyReference) DeepCopy() *GCPKMSKeyReference { if in == nil { return nil } out := new(GCPKMSKeyReference) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GCPLoadBalancerParameters) DeepCopyInto(out *GCPLoadBalancerParameters) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPLoadBalancerParameters. func (in *GCPLoadBalancerParameters) DeepCopy() *GCPLoadBalancerParameters { if in == nil { return nil } out := new(GCPLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GatewayConfig) DeepCopyInto(out *GatewayConfig) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayConfig. func (in *GatewayConfig) DeepCopy() *GatewayConfig { if in == nil { return nil } out := new(GatewayConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GatherStatus) DeepCopyInto(out *GatherStatus) { *out = *in in.LastGatherTime.DeepCopyInto(&out.LastGatherTime) out.LastGatherDuration = in.LastGatherDuration if in.Gatherers != nil { in, out := &in.Gatherers, &out.Gatherers *out = make([]GathererStatus, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatherStatus. func (in *GatherStatus) DeepCopy() *GatherStatus { if in == nil { return nil } out := new(GatherStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GathererStatus) DeepCopyInto(out *GathererStatus) { *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]) } } out.LastGatherDuration = in.LastGatherDuration return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GathererStatus. func (in *GathererStatus) DeepCopy() *GathererStatus { if in == nil { return nil } out := new(GathererStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GenerationStatus) DeepCopyInto(out *GenerationStatus) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenerationStatus. func (in *GenerationStatus) DeepCopy() *GenerationStatus { if in == nil { return nil } out := new(GenerationStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HTTPCompressionPolicy) DeepCopyInto(out *HTTPCompressionPolicy) { *out = *in if in.MimeTypes != nil { in, out := &in.MimeTypes, &out.MimeTypes *out = make([]CompressionMIMEType, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPCompressionPolicy. func (in *HTTPCompressionPolicy) DeepCopy() *HTTPCompressionPolicy { if in == nil { return nil } out := new(HTTPCompressionPolicy) 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 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 *HostNetworkStrategy) DeepCopyInto(out *HostNetworkStrategy) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostNetworkStrategy. func (in *HostNetworkStrategy) DeepCopy() *HostNetworkStrategy { if in == nil { return nil } out := new(HostNetworkStrategy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HybridOverlayConfig) DeepCopyInto(out *HybridOverlayConfig) { *out = *in if in.HybridClusterNetwork != nil { in, out := &in.HybridClusterNetwork, &out.HybridClusterNetwork *out = make([]ClusterNetworkEntry, len(*in)) copy(*out, *in) } if in.HybridOverlayVXLANPort != nil { in, out := &in.HybridOverlayVXLANPort, &out.HybridOverlayVXLANPort *out = new(uint32) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HybridOverlayConfig. func (in *HybridOverlayConfig) DeepCopy() *HybridOverlayConfig { if in == nil { return nil } out := new(HybridOverlayConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IBMLoadBalancerParameters) DeepCopyInto(out *IBMLoadBalancerParameters) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMLoadBalancerParameters. func (in *IBMLoadBalancerParameters) DeepCopy() *IBMLoadBalancerParameters { if in == nil { return nil } out := new(IBMLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IPAMConfig) DeepCopyInto(out *IPAMConfig) { *out = *in if in.StaticIPAMConfig != nil { in, out := &in.StaticIPAMConfig, &out.StaticIPAMConfig *out = new(StaticIPAMConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAMConfig. func (in *IPAMConfig) DeepCopy() *IPAMConfig { if in == nil { return nil } out := new(IPAMConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IPFIXConfig) DeepCopyInto(out *IPFIXConfig) { *out = *in if in.Collectors != nil { in, out := &in.Collectors, &out.Collectors *out = make([]IPPort, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPFIXConfig. func (in *IPFIXConfig) DeepCopy() *IPFIXConfig { if in == nil { return nil } out := new(IPFIXConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IPsecConfig) DeepCopyInto(out *IPsecConfig) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPsecConfig. func (in *IPsecConfig) DeepCopy() *IPsecConfig { if in == nil { return nil } out := new(IPsecConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressController) DeepCopyInto(out *IngressController) { *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 IngressController. func (in *IngressController) DeepCopy() *IngressController { if in == nil { return nil } out := new(IngressController) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *IngressController) 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 *IngressControllerCaptureHTTPCookie) DeepCopyInto(out *IngressControllerCaptureHTTPCookie) { *out = *in out.IngressControllerCaptureHTTPCookieUnion = in.IngressControllerCaptureHTTPCookieUnion return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerCaptureHTTPCookie. func (in *IngressControllerCaptureHTTPCookie) DeepCopy() *IngressControllerCaptureHTTPCookie { if in == nil { return nil } out := new(IngressControllerCaptureHTTPCookie) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerCaptureHTTPCookieUnion) DeepCopyInto(out *IngressControllerCaptureHTTPCookieUnion) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerCaptureHTTPCookieUnion. func (in *IngressControllerCaptureHTTPCookieUnion) DeepCopy() *IngressControllerCaptureHTTPCookieUnion { if in == nil { return nil } out := new(IngressControllerCaptureHTTPCookieUnion) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerCaptureHTTPHeader) DeepCopyInto(out *IngressControllerCaptureHTTPHeader) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerCaptureHTTPHeader. func (in *IngressControllerCaptureHTTPHeader) DeepCopy() *IngressControllerCaptureHTTPHeader { if in == nil { return nil } out := new(IngressControllerCaptureHTTPHeader) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerCaptureHTTPHeaders) DeepCopyInto(out *IngressControllerCaptureHTTPHeaders) { *out = *in if in.Request != nil { in, out := &in.Request, &out.Request *out = make([]IngressControllerCaptureHTTPHeader, len(*in)) copy(*out, *in) } if in.Response != nil { in, out := &in.Response, &out.Response *out = make([]IngressControllerCaptureHTTPHeader, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerCaptureHTTPHeaders. func (in *IngressControllerCaptureHTTPHeaders) DeepCopy() *IngressControllerCaptureHTTPHeaders { if in == nil { return nil } out := new(IngressControllerCaptureHTTPHeaders) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerHTTPHeaders) DeepCopyInto(out *IngressControllerHTTPHeaders) { *out = *in out.UniqueId = in.UniqueId if in.HeaderNameCaseAdjustments != nil { in, out := &in.HeaderNameCaseAdjustments, &out.HeaderNameCaseAdjustments *out = make([]IngressControllerHTTPHeaderNameCaseAdjustment, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerHTTPHeaders. func (in *IngressControllerHTTPHeaders) DeepCopy() *IngressControllerHTTPHeaders { if in == nil { return nil } out := new(IngressControllerHTTPHeaders) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerHTTPUniqueIdHeaderPolicy) DeepCopyInto(out *IngressControllerHTTPUniqueIdHeaderPolicy) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerHTTPUniqueIdHeaderPolicy. func (in *IngressControllerHTTPUniqueIdHeaderPolicy) DeepCopy() *IngressControllerHTTPUniqueIdHeaderPolicy { if in == nil { return nil } out := new(IngressControllerHTTPUniqueIdHeaderPolicy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerList) DeepCopyInto(out *IngressControllerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]IngressController, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerList. func (in *IngressControllerList) DeepCopy() *IngressControllerList { if in == nil { return nil } out := new(IngressControllerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *IngressControllerList) 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 *IngressControllerLogging) DeepCopyInto(out *IngressControllerLogging) { *out = *in if in.Access != nil { in, out := &in.Access, &out.Access *out = new(AccessLogging) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerLogging. func (in *IngressControllerLogging) DeepCopy() *IngressControllerLogging { if in == nil { return nil } out := new(IngressControllerLogging) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerSpec) DeepCopyInto(out *IngressControllerSpec) { *out = *in out.HttpErrorCodePages = in.HttpErrorCodePages if in.Replicas != nil { in, out := &in.Replicas, &out.Replicas *out = new(int32) **out = **in } if in.EndpointPublishingStrategy != nil { in, out := &in.EndpointPublishingStrategy, &out.EndpointPublishingStrategy *out = new(EndpointPublishingStrategy) (*in).DeepCopyInto(*out) } if in.DefaultCertificate != nil { in, out := &in.DefaultCertificate, &out.DefaultCertificate *out = new(corev1.LocalObjectReference) **out = **in } if in.NamespaceSelector != nil { in, out := &in.NamespaceSelector, &out.NamespaceSelector *out = new(metav1.LabelSelector) (*in).DeepCopyInto(*out) } if in.RouteSelector != nil { in, out := &in.RouteSelector, &out.RouteSelector *out = new(metav1.LabelSelector) (*in).DeepCopyInto(*out) } if in.NodePlacement != nil { in, out := &in.NodePlacement, &out.NodePlacement *out = new(NodePlacement) (*in).DeepCopyInto(*out) } if in.TLSSecurityProfile != nil { in, out := &in.TLSSecurityProfile, &out.TLSSecurityProfile *out = new(configv1.TLSSecurityProfile) (*in).DeepCopyInto(*out) } in.ClientTLS.DeepCopyInto(&out.ClientTLS) if in.RouteAdmission != nil { in, out := &in.RouteAdmission, &out.RouteAdmission *out = new(RouteAdmissionPolicy) **out = **in } if in.Logging != nil { in, out := &in.Logging, &out.Logging *out = new(IngressControllerLogging) (*in).DeepCopyInto(*out) } if in.HTTPHeaders != nil { in, out := &in.HTTPHeaders, &out.HTTPHeaders *out = new(IngressControllerHTTPHeaders) (*in).DeepCopyInto(*out) } in.TuningOptions.DeepCopyInto(&out.TuningOptions) in.UnsupportedConfigOverrides.DeepCopyInto(&out.UnsupportedConfigOverrides) in.HTTPCompression.DeepCopyInto(&out.HTTPCompression) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerSpec. func (in *IngressControllerSpec) DeepCopy() *IngressControllerSpec { if in == nil { return nil } out := new(IngressControllerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerStatus) DeepCopyInto(out *IngressControllerStatus) { *out = *in if in.EndpointPublishingStrategy != nil { in, out := &in.EndpointPublishingStrategy, &out.EndpointPublishingStrategy *out = new(EndpointPublishingStrategy) (*in).DeepCopyInto(*out) } if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]OperatorCondition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.TLSProfile != nil { in, out := &in.TLSProfile, &out.TLSProfile *out = new(configv1.TLSProfileSpec) (*in).DeepCopyInto(*out) } if in.NamespaceSelector != nil { in, out := &in.NamespaceSelector, &out.NamespaceSelector *out = new(metav1.LabelSelector) (*in).DeepCopyInto(*out) } if in.RouteSelector != nil { in, out := &in.RouteSelector, &out.RouteSelector *out = new(metav1.LabelSelector) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerStatus. func (in *IngressControllerStatus) DeepCopy() *IngressControllerStatus { if in == nil { return nil } out := new(IngressControllerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IngressControllerTuningOptions) DeepCopyInto(out *IngressControllerTuningOptions) { *out = *in if in.ClientTimeout != nil { in, out := &in.ClientTimeout, &out.ClientTimeout *out = new(metav1.Duration) **out = **in } if in.ClientFinTimeout != nil { in, out := &in.ClientFinTimeout, &out.ClientFinTimeout *out = new(metav1.Duration) **out = **in } if in.ServerTimeout != nil { in, out := &in.ServerTimeout, &out.ServerTimeout *out = new(metav1.Duration) **out = **in } if in.ServerFinTimeout != nil { in, out := &in.ServerFinTimeout, &out.ServerFinTimeout *out = new(metav1.Duration) **out = **in } if in.TunnelTimeout != nil { in, out := &in.TunnelTimeout, &out.TunnelTimeout *out = new(metav1.Duration) **out = **in } if in.TLSInspectDelay != nil { in, out := &in.TLSInspectDelay, &out.TLSInspectDelay *out = new(metav1.Duration) **out = **in } if in.HealthCheckInterval != nil { in, out := &in.HealthCheckInterval, &out.HealthCheckInterval *out = new(metav1.Duration) **out = **in } out.ReloadInterval = in.ReloadInterval return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressControllerTuningOptions. func (in *IngressControllerTuningOptions) DeepCopy() *IngressControllerTuningOptions { if in == nil { return nil } out := new(IngressControllerTuningOptions) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *InsightsOperator) DeepCopyInto(out *InsightsOperator) { *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 InsightsOperator. func (in *InsightsOperator) DeepCopy() *InsightsOperator { if in == nil { return nil } out := new(InsightsOperator) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *InsightsOperator) 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 *InsightsOperatorList) DeepCopyInto(out *InsightsOperatorList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]InsightsOperator, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InsightsOperatorList. func (in *InsightsOperatorList) DeepCopy() *InsightsOperatorList { if in == nil { return nil } out := new(InsightsOperatorList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *InsightsOperatorList) 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 *InsightsOperatorSpec) DeepCopyInto(out *InsightsOperatorSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InsightsOperatorSpec. func (in *InsightsOperatorSpec) DeepCopy() *InsightsOperatorSpec { if in == nil { return nil } out := new(InsightsOperatorSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *InsightsOperatorStatus) DeepCopyInto(out *InsightsOperatorStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) in.GatherStatus.DeepCopyInto(&out.GatherStatus) in.InsightsReport.DeepCopyInto(&out.InsightsReport) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InsightsOperatorStatus. func (in *InsightsOperatorStatus) DeepCopy() *InsightsOperatorStatus { if in == nil { return nil } out := new(InsightsOperatorStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *InsightsReport) DeepCopyInto(out *InsightsReport) { *out = *in in.DownloadedAt.DeepCopyInto(&out.DownloadedAt) if in.HealthChecks != nil { in, out := &in.HealthChecks, &out.HealthChecks *out = make([]HealthCheck, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InsightsReport. func (in *InsightsReport) DeepCopy() *InsightsReport { if in == nil { return nil } out := new(InsightsReport) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeAPIServer) DeepCopyInto(out *KubeAPIServer) { *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 KubeAPIServer. func (in *KubeAPIServer) DeepCopy() *KubeAPIServer { if in == nil { return nil } out := new(KubeAPIServer) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeAPIServer) 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 *KubeAPIServerList) DeepCopyInto(out *KubeAPIServerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]KubeAPIServer, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServerList. func (in *KubeAPIServerList) DeepCopy() *KubeAPIServerList { if in == nil { return nil } out := new(KubeAPIServerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeAPIServerList) 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 *KubeAPIServerSpec) DeepCopyInto(out *KubeAPIServerSpec) { *out = *in in.StaticPodOperatorSpec.DeepCopyInto(&out.StaticPodOperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServerSpec. func (in *KubeAPIServerSpec) DeepCopy() *KubeAPIServerSpec { if in == nil { return nil } out := new(KubeAPIServerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeAPIServerStatus) DeepCopyInto(out *KubeAPIServerStatus) { *out = *in in.StaticPodOperatorStatus.DeepCopyInto(&out.StaticPodOperatorStatus) if in.ServiceAccountIssuers != nil { in, out := &in.ServiceAccountIssuers, &out.ServiceAccountIssuers *out = make([]ServiceAccountIssuerStatus, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServerStatus. func (in *KubeAPIServerStatus) DeepCopy() *KubeAPIServerStatus { if in == nil { return nil } out := new(KubeAPIServerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeControllerManager) DeepCopyInto(out *KubeControllerManager) { *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 KubeControllerManager. func (in *KubeControllerManager) DeepCopy() *KubeControllerManager { if in == nil { return nil } out := new(KubeControllerManager) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeControllerManager) 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 *KubeControllerManagerList) DeepCopyInto(out *KubeControllerManagerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]KubeControllerManager, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerList. func (in *KubeControllerManagerList) DeepCopy() *KubeControllerManagerList { if in == nil { return nil } out := new(KubeControllerManagerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeControllerManagerList) 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 *KubeControllerManagerSpec) DeepCopyInto(out *KubeControllerManagerSpec) { *out = *in in.StaticPodOperatorSpec.DeepCopyInto(&out.StaticPodOperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerSpec. func (in *KubeControllerManagerSpec) DeepCopy() *KubeControllerManagerSpec { if in == nil { return nil } out := new(KubeControllerManagerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeControllerManagerStatus) DeepCopyInto(out *KubeControllerManagerStatus) { *out = *in in.StaticPodOperatorStatus.DeepCopyInto(&out.StaticPodOperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerStatus. func (in *KubeControllerManagerStatus) DeepCopy() *KubeControllerManagerStatus { if in == nil { return nil } out := new(KubeControllerManagerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeScheduler) DeepCopyInto(out *KubeScheduler) { *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 KubeScheduler. func (in *KubeScheduler) DeepCopy() *KubeScheduler { if in == nil { return nil } out := new(KubeScheduler) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeScheduler) 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 *KubeSchedulerList) DeepCopyInto(out *KubeSchedulerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]KubeScheduler, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerList. func (in *KubeSchedulerList) DeepCopy() *KubeSchedulerList { if in == nil { return nil } out := new(KubeSchedulerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeSchedulerList) 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 *KubeSchedulerSpec) DeepCopyInto(out *KubeSchedulerSpec) { *out = *in in.StaticPodOperatorSpec.DeepCopyInto(&out.StaticPodOperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerSpec. func (in *KubeSchedulerSpec) DeepCopy() *KubeSchedulerSpec { if in == nil { return nil } out := new(KubeSchedulerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeSchedulerStatus) DeepCopyInto(out *KubeSchedulerStatus) { *out = *in in.StaticPodOperatorStatus.DeepCopyInto(&out.StaticPodOperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerStatus. func (in *KubeSchedulerStatus) DeepCopy() *KubeSchedulerStatus { if in == nil { return nil } out := new(KubeSchedulerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeStorageVersionMigrator) DeepCopyInto(out *KubeStorageVersionMigrator) { *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 KubeStorageVersionMigrator. func (in *KubeStorageVersionMigrator) DeepCopy() *KubeStorageVersionMigrator { if in == nil { return nil } out := new(KubeStorageVersionMigrator) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeStorageVersionMigrator) 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 *KubeStorageVersionMigratorList) DeepCopyInto(out *KubeStorageVersionMigratorList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]KubeStorageVersionMigrator, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeStorageVersionMigratorList. func (in *KubeStorageVersionMigratorList) DeepCopy() *KubeStorageVersionMigratorList { if in == nil { return nil } out := new(KubeStorageVersionMigratorList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KubeStorageVersionMigratorList) 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 *KubeStorageVersionMigratorSpec) DeepCopyInto(out *KubeStorageVersionMigratorSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeStorageVersionMigratorSpec. func (in *KubeStorageVersionMigratorSpec) DeepCopy() *KubeStorageVersionMigratorSpec { if in == nil { return nil } out := new(KubeStorageVersionMigratorSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KubeStorageVersionMigratorStatus) DeepCopyInto(out *KubeStorageVersionMigratorStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeStorageVersionMigratorStatus. func (in *KubeStorageVersionMigratorStatus) DeepCopy() *KubeStorageVersionMigratorStatus { if in == nil { return nil } out := new(KubeStorageVersionMigratorStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KuryrConfig) DeepCopyInto(out *KuryrConfig) { *out = *in if in.DaemonProbesPort != nil { in, out := &in.DaemonProbesPort, &out.DaemonProbesPort *out = new(uint32) **out = **in } if in.ControllerProbesPort != nil { in, out := &in.ControllerProbesPort, &out.ControllerProbesPort *out = new(uint32) **out = **in } if in.PoolBatchPorts != nil { in, out := &in.PoolBatchPorts, &out.PoolBatchPorts *out = new(uint) **out = **in } if in.MTU != nil { in, out := &in.MTU, &out.MTU *out = new(uint32) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KuryrConfig. func (in *KuryrConfig) DeepCopy() *KuryrConfig { if in == nil { return nil } out := new(KuryrConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LoadBalancerStrategy) DeepCopyInto(out *LoadBalancerStrategy) { *out = *in if in.AllowedSourceRanges != nil { in, out := &in.AllowedSourceRanges, &out.AllowedSourceRanges *out = make([]CIDR, len(*in)) copy(*out, *in) } if in.ProviderParameters != nil { in, out := &in.ProviderParameters, &out.ProviderParameters *out = new(ProviderLoadBalancerParameters) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoadBalancerStrategy. func (in *LoadBalancerStrategy) DeepCopy() *LoadBalancerStrategy { if in == nil { return nil } out := new(LoadBalancerStrategy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LoggingDestination) DeepCopyInto(out *LoggingDestination) { *out = *in if in.Syslog != nil { in, out := &in.Syslog, &out.Syslog *out = new(SyslogLoggingDestinationParameters) **out = **in } if in.Container != nil { in, out := &in.Container, &out.Container *out = new(ContainerLoggingDestinationParameters) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingDestination. func (in *LoggingDestination) DeepCopy() *LoggingDestination { if in == nil { return nil } out := new(LoggingDestination) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MTUMigration) DeepCopyInto(out *MTUMigration) { *out = *in if in.Network != nil { in, out := &in.Network, &out.Network *out = new(MTUMigrationValues) (*in).DeepCopyInto(*out) } if in.Machine != nil { in, out := &in.Machine, &out.Machine *out = new(MTUMigrationValues) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MTUMigration. func (in *MTUMigration) DeepCopy() *MTUMigration { if in == nil { return nil } out := new(MTUMigration) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MTUMigrationValues) DeepCopyInto(out *MTUMigrationValues) { *out = *in if in.To != nil { in, out := &in.To, &out.To *out = new(uint32) **out = **in } if in.From != nil { in, out := &in.From, &out.From *out = new(uint32) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MTUMigrationValues. func (in *MTUMigrationValues) DeepCopy() *MTUMigrationValues { if in == nil { return nil } out := new(MTUMigrationValues) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MyOperatorResource) DeepCopyInto(out *MyOperatorResource) { *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 MyOperatorResource. func (in *MyOperatorResource) DeepCopy() *MyOperatorResource { if in == nil { return nil } out := new(MyOperatorResource) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MyOperatorResourceSpec) DeepCopyInto(out *MyOperatorResourceSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyOperatorResourceSpec. func (in *MyOperatorResourceSpec) DeepCopy() *MyOperatorResourceSpec { if in == nil { return nil } out := new(MyOperatorResourceSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MyOperatorResourceStatus) DeepCopyInto(out *MyOperatorResourceStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MyOperatorResourceStatus. func (in *MyOperatorResourceStatus) DeepCopy() *MyOperatorResourceStatus { if in == nil { return nil } out := new(MyOperatorResourceStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NetFlowConfig) DeepCopyInto(out *NetFlowConfig) { *out = *in if in.Collectors != nil { in, out := &in.Collectors, &out.Collectors *out = make([]IPPort, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetFlowConfig. func (in *NetFlowConfig) DeepCopy() *NetFlowConfig { if in == nil { return nil } out := new(NetFlowConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Network) DeepCopyInto(out *Network) { *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 Network. func (in *Network) DeepCopy() *Network { if in == nil { return nil } out := new(Network) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Network) 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 *NetworkList) DeepCopyInto(out *NetworkList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Network, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkList. func (in *NetworkList) DeepCopy() *NetworkList { if in == nil { return nil } out := new(NetworkList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *NetworkList) 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 *NetworkMigration) DeepCopyInto(out *NetworkMigration) { *out = *in if in.MTU != nil { in, out := &in.MTU, &out.MTU *out = new(MTUMigration) (*in).DeepCopyInto(*out) } if in.Features != nil { in, out := &in.Features, &out.Features *out = new(FeaturesMigration) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkMigration. func (in *NetworkMigration) DeepCopy() *NetworkMigration { if in == nil { return nil } out := new(NetworkMigration) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NetworkSpec) DeepCopyInto(out *NetworkSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) if in.ClusterNetwork != nil { in, out := &in.ClusterNetwork, &out.ClusterNetwork *out = make([]ClusterNetworkEntry, len(*in)) copy(*out, *in) } if in.ServiceNetwork != nil { in, out := &in.ServiceNetwork, &out.ServiceNetwork *out = make([]string, len(*in)) copy(*out, *in) } in.DefaultNetwork.DeepCopyInto(&out.DefaultNetwork) if in.AdditionalNetworks != nil { in, out := &in.AdditionalNetworks, &out.AdditionalNetworks *out = make([]AdditionalNetworkDefinition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.DisableMultiNetwork != nil { in, out := &in.DisableMultiNetwork, &out.DisableMultiNetwork *out = new(bool) **out = **in } if in.UseMultiNetworkPolicy != nil { in, out := &in.UseMultiNetworkPolicy, &out.UseMultiNetworkPolicy *out = new(bool) **out = **in } if in.DeployKubeProxy != nil { in, out := &in.DeployKubeProxy, &out.DeployKubeProxy *out = new(bool) **out = **in } if in.KubeProxyConfig != nil { in, out := &in.KubeProxyConfig, &out.KubeProxyConfig *out = new(ProxyConfig) (*in).DeepCopyInto(*out) } if in.ExportNetworkFlows != nil { in, out := &in.ExportNetworkFlows, &out.ExportNetworkFlows *out = new(ExportNetworkFlows) (*in).DeepCopyInto(*out) } if in.Migration != nil { in, out := &in.Migration, &out.Migration *out = new(NetworkMigration) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkSpec. func (in *NetworkSpec) DeepCopy() *NetworkSpec { if in == nil { return nil } out := new(NetworkSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NetworkStatus) DeepCopyInto(out *NetworkStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkStatus. func (in *NetworkStatus) DeepCopy() *NetworkStatus { if in == nil { return nil } out := new(NetworkStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NodePlacement) DeepCopyInto(out *NodePlacement) { *out = *in if in.NodeSelector != nil { in, out := &in.NodeSelector, &out.NodeSelector *out = new(metav1.LabelSelector) (*in).DeepCopyInto(*out) } if in.Tolerations != nil { in, out := &in.Tolerations, &out.Tolerations *out = make([]corev1.Toleration, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodePlacement. func (in *NodePlacement) DeepCopy() *NodePlacement { if in == nil { return nil } out := new(NodePlacement) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NodePortStrategy) DeepCopyInto(out *NodePortStrategy) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodePortStrategy. func (in *NodePortStrategy) DeepCopy() *NodePortStrategy { if in == nil { return nil } out := new(NodePortStrategy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *NodeStatus) DeepCopyInto(out *NodeStatus) { *out = *in if in.LastFailedTime != nil { in, out := &in.LastFailedTime, &out.LastFailedTime *out = (*in).DeepCopy() } if in.LastFailedRevisionErrors != nil { in, out := &in.LastFailedRevisionErrors, &out.LastFailedRevisionErrors *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeStatus. func (in *NodeStatus) DeepCopy() *NodeStatus { if in == nil { return nil } out := new(NodeStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OAuthAPIServerStatus) DeepCopyInto(out *OAuthAPIServerStatus) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuthAPIServerStatus. func (in *OAuthAPIServerStatus) DeepCopy() *OAuthAPIServerStatus { if in == nil { return nil } out := new(OAuthAPIServerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OVNKubernetesConfig) DeepCopyInto(out *OVNKubernetesConfig) { *out = *in if in.MTU != nil { in, out := &in.MTU, &out.MTU *out = new(uint32) **out = **in } if in.GenevePort != nil { in, out := &in.GenevePort, &out.GenevePort *out = new(uint32) **out = **in } if in.HybridOverlayConfig != nil { in, out := &in.HybridOverlayConfig, &out.HybridOverlayConfig *out = new(HybridOverlayConfig) (*in).DeepCopyInto(*out) } if in.IPsecConfig != nil { in, out := &in.IPsecConfig, &out.IPsecConfig *out = new(IPsecConfig) **out = **in } if in.PolicyAuditConfig != nil { in, out := &in.PolicyAuditConfig, &out.PolicyAuditConfig *out = new(PolicyAuditConfig) (*in).DeepCopyInto(*out) } if in.GatewayConfig != nil { in, out := &in.GatewayConfig, &out.GatewayConfig *out = new(GatewayConfig) **out = **in } in.EgressIPConfig.DeepCopyInto(&out.EgressIPConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVNKubernetesConfig. func (in *OVNKubernetesConfig) DeepCopy() *OVNKubernetesConfig { if in == nil { return nil } out := new(OVNKubernetesConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenShiftAPIServer) DeepCopyInto(out *OpenShiftAPIServer) { *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 OpenShiftAPIServer. func (in *OpenShiftAPIServer) DeepCopy() *OpenShiftAPIServer { if in == nil { return nil } out := new(OpenShiftAPIServer) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *OpenShiftAPIServer) 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 *OpenShiftAPIServerList) DeepCopyInto(out *OpenShiftAPIServerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]OpenShiftAPIServer, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftAPIServerList. func (in *OpenShiftAPIServerList) DeepCopy() *OpenShiftAPIServerList { if in == nil { return nil } out := new(OpenShiftAPIServerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *OpenShiftAPIServerList) 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 *OpenShiftAPIServerSpec) DeepCopyInto(out *OpenShiftAPIServerSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftAPIServerSpec. func (in *OpenShiftAPIServerSpec) DeepCopy() *OpenShiftAPIServerSpec { if in == nil { return nil } out := new(OpenShiftAPIServerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenShiftAPIServerStatus) DeepCopyInto(out *OpenShiftAPIServerStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftAPIServerStatus. func (in *OpenShiftAPIServerStatus) DeepCopy() *OpenShiftAPIServerStatus { if in == nil { return nil } out := new(OpenShiftAPIServerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenShiftControllerManager) DeepCopyInto(out *OpenShiftControllerManager) { *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 OpenShiftControllerManager. func (in *OpenShiftControllerManager) DeepCopy() *OpenShiftControllerManager { if in == nil { return nil } out := new(OpenShiftControllerManager) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *OpenShiftControllerManager) 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 *OpenShiftControllerManagerList) DeepCopyInto(out *OpenShiftControllerManagerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]OpenShiftControllerManager, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftControllerManagerList. func (in *OpenShiftControllerManagerList) DeepCopy() *OpenShiftControllerManagerList { if in == nil { return nil } out := new(OpenShiftControllerManagerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *OpenShiftControllerManagerList) 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 *OpenShiftControllerManagerSpec) DeepCopyInto(out *OpenShiftControllerManagerSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftControllerManagerSpec. func (in *OpenShiftControllerManagerSpec) DeepCopy() *OpenShiftControllerManagerSpec { if in == nil { return nil } out := new(OpenShiftControllerManagerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenShiftControllerManagerStatus) DeepCopyInto(out *OpenShiftControllerManagerStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftControllerManagerStatus. func (in *OpenShiftControllerManagerStatus) DeepCopy() *OpenShiftControllerManagerStatus { if in == nil { return nil } out := new(OpenShiftControllerManagerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenShiftSDNConfig) DeepCopyInto(out *OpenShiftSDNConfig) { *out = *in if in.VXLANPort != nil { in, out := &in.VXLANPort, &out.VXLANPort *out = new(uint32) **out = **in } if in.MTU != nil { in, out := &in.MTU, &out.MTU *out = new(uint32) **out = **in } if in.UseExternalOpenvswitch != nil { in, out := &in.UseExternalOpenvswitch, &out.UseExternalOpenvswitch *out = new(bool) **out = **in } if in.EnableUnidling != nil { in, out := &in.EnableUnidling, &out.EnableUnidling *out = new(bool) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftSDNConfig. func (in *OpenShiftSDNConfig) DeepCopy() *OpenShiftSDNConfig { if in == nil { return nil } out := new(OpenShiftSDNConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OperatorCondition) DeepCopyInto(out *OperatorCondition) { *out = *in in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatorCondition. func (in *OperatorCondition) DeepCopy() *OperatorCondition { if in == nil { return nil } out := new(OperatorCondition) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OperatorSpec) DeepCopyInto(out *OperatorSpec) { *out = *in in.UnsupportedConfigOverrides.DeepCopyInto(&out.UnsupportedConfigOverrides) in.ObservedConfig.DeepCopyInto(&out.ObservedConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatorSpec. func (in *OperatorSpec) DeepCopy() *OperatorSpec { if in == nil { return nil } out := new(OperatorSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OperatorStatus) DeepCopyInto(out *OperatorStatus) { *out = *in if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]OperatorCondition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } if in.Generations != nil { in, out := &in.Generations, &out.Generations *out = make([]GenerationStatus, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatorStatus. func (in *OperatorStatus) DeepCopy() *OperatorStatus { if in == nil { return nil } out := new(OperatorStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Perspective) DeepCopyInto(out *Perspective) { *out = *in in.Visibility.DeepCopyInto(&out.Visibility) if in.PinnedResources != nil { in, out := &in.PinnedResources, &out.PinnedResources *out = new([]PinnedResourceReference) if **in != nil { in, out := *in, *out *out = make([]PinnedResourceReference, len(*in)) copy(*out, *in) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Perspective. func (in *Perspective) DeepCopy() *Perspective { if in == nil { return nil } out := new(Perspective) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PerspectiveVisibility) DeepCopyInto(out *PerspectiveVisibility) { *out = *in if in.AccessReview != nil { in, out := &in.AccessReview, &out.AccessReview *out = new(ResourceAttributesAccessReview) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PerspectiveVisibility. func (in *PerspectiveVisibility) DeepCopy() *PerspectiveVisibility { if in == nil { return nil } out := new(PerspectiveVisibility) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PinnedResourceReference) DeepCopyInto(out *PinnedResourceReference) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinnedResourceReference. func (in *PinnedResourceReference) DeepCopy() *PinnedResourceReference { if in == nil { return nil } out := new(PinnedResourceReference) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PolicyAuditConfig) DeepCopyInto(out *PolicyAuditConfig) { *out = *in if in.RateLimit != nil { in, out := &in.RateLimit, &out.RateLimit *out = new(uint32) **out = **in } if in.MaxFileSize != nil { in, out := &in.MaxFileSize, &out.MaxFileSize *out = new(uint32) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyAuditConfig. func (in *PolicyAuditConfig) DeepCopy() *PolicyAuditConfig { if in == nil { return nil } out := new(PolicyAuditConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PrivateStrategy) DeepCopyInto(out *PrivateStrategy) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateStrategy. func (in *PrivateStrategy) DeepCopy() *PrivateStrategy { if in == nil { return nil } out := new(PrivateStrategy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ProjectAccess) DeepCopyInto(out *ProjectAccess) { *out = *in if in.AvailableClusterRoles != nil { in, out := &in.AvailableClusterRoles, &out.AvailableClusterRoles *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectAccess. func (in *ProjectAccess) DeepCopy() *ProjectAccess { if in == nil { return nil } out := new(ProjectAccess) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ProviderLoadBalancerParameters) DeepCopyInto(out *ProviderLoadBalancerParameters) { *out = *in if in.AWS != nil { in, out := &in.AWS, &out.AWS *out = new(AWSLoadBalancerParameters) (*in).DeepCopyInto(*out) } if in.GCP != nil { in, out := &in.GCP, &out.GCP *out = new(GCPLoadBalancerParameters) **out = **in } if in.IBM != nil { in, out := &in.IBM, &out.IBM *out = new(IBMLoadBalancerParameters) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderLoadBalancerParameters. func (in *ProviderLoadBalancerParameters) DeepCopy() *ProviderLoadBalancerParameters { if in == nil { return nil } out := new(ProviderLoadBalancerParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in ProxyArgumentList) DeepCopyInto(out *ProxyArgumentList) { { in := &in *out = make(ProxyArgumentList, len(*in)) copy(*out, *in) return } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyArgumentList. func (in ProxyArgumentList) DeepCopy() ProxyArgumentList { if in == nil { return nil } out := new(ProxyArgumentList) in.DeepCopyInto(out) return *out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ProxyConfig) DeepCopyInto(out *ProxyConfig) { *out = *in if in.ProxyArguments != nil { in, out := &in.ProxyArguments, &out.ProxyArguments *out = make(map[string]ProxyArgumentList, len(*in)) for key, val := range *in { var outVal []string if val == nil { (*out)[key] = nil } else { in, out := &val, &outVal *out = make(ProxyArgumentList, len(*in)) copy(*out, *in) } (*out)[key] = outVal } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyConfig. func (in *ProxyConfig) DeepCopy() *ProxyConfig { if in == nil { return nil } out := new(ProxyConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *QuickStarts) DeepCopyInto(out *QuickStarts) { *out = *in if in.Disabled != nil { in, out := &in.Disabled, &out.Disabled *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuickStarts. func (in *QuickStarts) DeepCopy() *QuickStarts { if in == nil { return nil } out := new(QuickStarts) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ResourceAttributesAccessReview) DeepCopyInto(out *ResourceAttributesAccessReview) { *out = *in if in.Required != nil { in, out := &in.Required, &out.Required *out = make([]authorizationv1.ResourceAttributes, len(*in)) copy(*out, *in) } if in.Missing != nil { in, out := &in.Missing, &out.Missing *out = make([]authorizationv1.ResourceAttributes, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceAttributesAccessReview. func (in *ResourceAttributesAccessReview) DeepCopy() *ResourceAttributesAccessReview { if in == nil { return nil } out := new(ResourceAttributesAccessReview) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RouteAdmissionPolicy) DeepCopyInto(out *RouteAdmissionPolicy) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteAdmissionPolicy. func (in *RouteAdmissionPolicy) DeepCopy() *RouteAdmissionPolicy { if in == nil { return nil } out := new(RouteAdmissionPolicy) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SFlowConfig) DeepCopyInto(out *SFlowConfig) { *out = *in if in.Collectors != nil { in, out := &in.Collectors, &out.Collectors *out = make([]IPPort, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SFlowConfig. func (in *SFlowConfig) DeepCopy() *SFlowConfig { if in == nil { return nil } out := new(SFlowConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Server) DeepCopyInto(out *Server) { *out = *in if in.Zones != nil { in, out := &in.Zones, &out.Zones *out = make([]string, len(*in)) copy(*out, *in) } in.ForwardPlugin.DeepCopyInto(&out.ForwardPlugin) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Server. func (in *Server) DeepCopy() *Server { if in == nil { return nil } out := new(Server) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceAccountIssuerStatus) DeepCopyInto(out *ServiceAccountIssuerStatus) { *out = *in if in.ExpirationTime != nil { in, out := &in.ExpirationTime, &out.ExpirationTime *out = (*in).DeepCopy() } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAccountIssuerStatus. func (in *ServiceAccountIssuerStatus) DeepCopy() *ServiceAccountIssuerStatus { if in == nil { return nil } out := new(ServiceAccountIssuerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCA) DeepCopyInto(out *ServiceCA) { *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 ServiceCA. func (in *ServiceCA) DeepCopy() *ServiceCA { if in == nil { return nil } out := new(ServiceCA) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCA) 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 *ServiceCAList) DeepCopyInto(out *ServiceCAList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ServiceCA, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCAList. func (in *ServiceCAList) DeepCopy() *ServiceCAList { if in == nil { return nil } out := new(ServiceCAList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCAList) 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 *ServiceCASpec) DeepCopyInto(out *ServiceCASpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCASpec. func (in *ServiceCASpec) DeepCopy() *ServiceCASpec { if in == nil { return nil } out := new(ServiceCASpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCAStatus) DeepCopyInto(out *ServiceCAStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCAStatus. func (in *ServiceCAStatus) DeepCopy() *ServiceCAStatus { if in == nil { return nil } out := new(ServiceCAStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCatalogAPIServer) DeepCopyInto(out *ServiceCatalogAPIServer) { *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 ServiceCatalogAPIServer. func (in *ServiceCatalogAPIServer) DeepCopy() *ServiceCatalogAPIServer { if in == nil { return nil } out := new(ServiceCatalogAPIServer) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCatalogAPIServer) 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 *ServiceCatalogAPIServerList) DeepCopyInto(out *ServiceCatalogAPIServerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ServiceCatalogAPIServer, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogAPIServerList. func (in *ServiceCatalogAPIServerList) DeepCopy() *ServiceCatalogAPIServerList { if in == nil { return nil } out := new(ServiceCatalogAPIServerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCatalogAPIServerList) 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 *ServiceCatalogAPIServerSpec) DeepCopyInto(out *ServiceCatalogAPIServerSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogAPIServerSpec. func (in *ServiceCatalogAPIServerSpec) DeepCopy() *ServiceCatalogAPIServerSpec { if in == nil { return nil } out := new(ServiceCatalogAPIServerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCatalogAPIServerStatus) DeepCopyInto(out *ServiceCatalogAPIServerStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogAPIServerStatus. func (in *ServiceCatalogAPIServerStatus) DeepCopy() *ServiceCatalogAPIServerStatus { if in == nil { return nil } out := new(ServiceCatalogAPIServerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCatalogControllerManager) DeepCopyInto(out *ServiceCatalogControllerManager) { *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 ServiceCatalogControllerManager. func (in *ServiceCatalogControllerManager) DeepCopy() *ServiceCatalogControllerManager { if in == nil { return nil } out := new(ServiceCatalogControllerManager) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCatalogControllerManager) 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 *ServiceCatalogControllerManagerList) DeepCopyInto(out *ServiceCatalogControllerManagerList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ServiceCatalogControllerManager, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogControllerManagerList. func (in *ServiceCatalogControllerManagerList) DeepCopy() *ServiceCatalogControllerManagerList { if in == nil { return nil } out := new(ServiceCatalogControllerManagerList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ServiceCatalogControllerManagerList) 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 *ServiceCatalogControllerManagerSpec) DeepCopyInto(out *ServiceCatalogControllerManagerSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogControllerManagerSpec. func (in *ServiceCatalogControllerManagerSpec) DeepCopy() *ServiceCatalogControllerManagerSpec { if in == nil { return nil } out := new(ServiceCatalogControllerManagerSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ServiceCatalogControllerManagerStatus) DeepCopyInto(out *ServiceCatalogControllerManagerStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceCatalogControllerManagerStatus. func (in *ServiceCatalogControllerManagerStatus) DeepCopy() *ServiceCatalogControllerManagerStatus { if in == nil { return nil } out := new(ServiceCatalogControllerManagerStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SimpleMacvlanConfig) DeepCopyInto(out *SimpleMacvlanConfig) { *out = *in if in.IPAMConfig != nil { in, out := &in.IPAMConfig, &out.IPAMConfig *out = new(IPAMConfig) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SimpleMacvlanConfig. func (in *SimpleMacvlanConfig) DeepCopy() *SimpleMacvlanConfig { if in == nil { return nil } out := new(SimpleMacvlanConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticIPAMAddresses) DeepCopyInto(out *StaticIPAMAddresses) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticIPAMAddresses. func (in *StaticIPAMAddresses) DeepCopy() *StaticIPAMAddresses { if in == nil { return nil } out := new(StaticIPAMAddresses) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticIPAMConfig) DeepCopyInto(out *StaticIPAMConfig) { *out = *in if in.Addresses != nil { in, out := &in.Addresses, &out.Addresses *out = make([]StaticIPAMAddresses, len(*in)) copy(*out, *in) } if in.Routes != nil { in, out := &in.Routes, &out.Routes *out = make([]StaticIPAMRoutes, len(*in)) copy(*out, *in) } if in.DNS != nil { in, out := &in.DNS, &out.DNS *out = new(StaticIPAMDNS) (*in).DeepCopyInto(*out) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticIPAMConfig. func (in *StaticIPAMConfig) DeepCopy() *StaticIPAMConfig { if in == nil { return nil } out := new(StaticIPAMConfig) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticIPAMDNS) DeepCopyInto(out *StaticIPAMDNS) { *out = *in if in.Nameservers != nil { in, out := &in.Nameservers, &out.Nameservers *out = make([]string, len(*in)) copy(*out, *in) } if in.Search != nil { in, out := &in.Search, &out.Search *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticIPAMDNS. func (in *StaticIPAMDNS) DeepCopy() *StaticIPAMDNS { if in == nil { return nil } out := new(StaticIPAMDNS) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticIPAMRoutes) DeepCopyInto(out *StaticIPAMRoutes) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticIPAMRoutes. func (in *StaticIPAMRoutes) DeepCopy() *StaticIPAMRoutes { if in == nil { return nil } out := new(StaticIPAMRoutes) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticPodOperatorSpec) DeepCopyInto(out *StaticPodOperatorSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticPodOperatorSpec. func (in *StaticPodOperatorSpec) DeepCopy() *StaticPodOperatorSpec { if in == nil { return nil } out := new(StaticPodOperatorSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StaticPodOperatorStatus) DeepCopyInto(out *StaticPodOperatorStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) if in.NodeStatuses != nil { in, out := &in.NodeStatuses, &out.NodeStatuses *out = make([]NodeStatus, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticPodOperatorStatus. func (in *StaticPodOperatorStatus) DeepCopy() *StaticPodOperatorStatus { if in == nil { return nil } out := new(StaticPodOperatorStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StatuspageProvider) DeepCopyInto(out *StatuspageProvider) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatuspageProvider. func (in *StatuspageProvider) DeepCopy() *StatuspageProvider { if in == nil { return nil } out := new(StatuspageProvider) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Storage) DeepCopyInto(out *Storage) { *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 Storage. func (in *Storage) DeepCopy() *Storage { if in == nil { return nil } out := new(Storage) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Storage) 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 *StorageList) DeepCopyInto(out *StorageList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Storage, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageList. func (in *StorageList) DeepCopy() *StorageList { if in == nil { return nil } out := new(StorageList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *StorageList) 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 *StorageSpec) DeepCopyInto(out *StorageSpec) { *out = *in in.OperatorSpec.DeepCopyInto(&out.OperatorSpec) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageSpec. func (in *StorageSpec) DeepCopy() *StorageSpec { if in == nil { return nil } out := new(StorageSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StorageStatus) DeepCopyInto(out *StorageStatus) { *out = *in in.OperatorStatus.DeepCopyInto(&out.OperatorStatus) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageStatus. func (in *StorageStatus) DeepCopy() *StorageStatus { if in == nil { return nil } out := new(StorageStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SyslogLoggingDestinationParameters) DeepCopyInto(out *SyslogLoggingDestinationParameters) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SyslogLoggingDestinationParameters. func (in *SyslogLoggingDestinationParameters) DeepCopy() *SyslogLoggingDestinationParameters { if in == nil { return nil } out := new(SyslogLoggingDestinationParameters) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Upstream) DeepCopyInto(out *Upstream) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Upstream. func (in *Upstream) DeepCopy() *Upstream { if in == nil { return nil } out := new(Upstream) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *UpstreamResolvers) DeepCopyInto(out *UpstreamResolvers) { *out = *in if in.Upstreams != nil { in, out := &in.Upstreams, &out.Upstreams *out = make([]Upstream, len(*in)) copy(*out, *in) } in.TransportConfig.DeepCopyInto(&out.TransportConfig) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpstreamResolvers. func (in *UpstreamResolvers) DeepCopy() *UpstreamResolvers { if in == nil { return nil } out := new(UpstreamResolvers) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *VSphereCSIDriverConfigSpec) DeepCopyInto(out *VSphereCSIDriverConfigSpec) { *out = *in if in.TopologyCategories != nil { in, out := &in.TopologyCategories, &out.TopologyCategories *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VSphereCSIDriverConfigSpec. func (in *VSphereCSIDriverConfigSpec) DeepCopy() *VSphereCSIDriverConfigSpec { if in == nil { return nil } out := new(VSphereCSIDriverConfigSpec) in.DeepCopyInto(out) return out }