mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-01-11 22:41:09 +01:00
70 lines
2.2 KiB
Go
70 lines
2.2 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package config
|
|
|
|
import (
|
|
healthcheckconfig "github.com/gardener/gardener/extensions/pkg/controller/healthcheck/config"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
componentbaseconfig "k8s.io/component-base/config"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FleetAgentConfig) DeepCopyInto(out *FleetAgentConfig) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.ClientConnection != nil {
|
|
in, out := &in.ClientConnection, &out.ClientConnection
|
|
*out = new(componentbaseconfig.ClientConnectionConfiguration)
|
|
**out = **in
|
|
}
|
|
if in.Labels != nil {
|
|
in, out := &in.Labels, &out.Labels
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.HealthCheckConfig != nil {
|
|
in, out := &in.HealthCheckConfig, &out.HealthCheckConfig
|
|
*out = new(healthcheckconfig.HealthCheckConfig)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetAgentConfig.
|
|
func (in *FleetAgentConfig) DeepCopy() *FleetAgentConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FleetAgentConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *FleetAgentConfig) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|