1
0
mirror of https://github.com/rancher/types.git synced 2025-09-15 22:39:05 +00:00

Generated changes - cluster caps

This commit is contained in:
rajashree
2018-10-03 00:30:32 -07:00
committed by Alena Prokharchyk
parent c3805641e9
commit 96b142a253
6 changed files with 110 additions and 0 deletions

View File

@@ -522,6 +522,28 @@ func (in *CanalNetworkProvider) DeepCopy() *CanalNetworkProvider {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Capabilities) DeepCopyInto(out *Capabilities) {
*out = *in
in.L4LoadBalancer.DeepCopyInto(&out.L4LoadBalancer)
if in.IngressControllers != nil {
in, out := &in.IngressControllers, &out.IngressControllers
*out = make([]IngressController, len(*in))
copy(*out, *in)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Capabilities.
func (in *Capabilities) DeepCopy() *Capabilities {
if in == nil {
return nil
}
out := new(Capabilities)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Catalog) DeepCopyInto(out *Catalog) {
*out = *in
@@ -1429,6 +1451,7 @@ func (in *ClusterStatus) DeepCopyInto(out *ClusterStatus) {
**out = **in
}
}
in.Capabilities.DeepCopyInto(&out.Capabilities)
return
}
@@ -2516,6 +2539,22 @@ func (in *IngressConfig) DeepCopy() *IngressConfig {
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
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
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *KafkaConfig) DeepCopyInto(out *KafkaConfig) {
*out = *in
@@ -2681,6 +2720,27 @@ func (in *KubernetesServicesOptions) DeepCopy() *KubernetesServicesOptions {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *L4LoadBalancer) DeepCopyInto(out *L4LoadBalancer) {
*out = *in
if in.ProtocolsSupported != nil {
in, out := &in.ProtocolsSupported, &out.ProtocolsSupported
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new L4LoadBalancer.
func (in *L4LoadBalancer) DeepCopy() *L4LoadBalancer {
if in == nil {
return nil
}
out := new(L4LoadBalancer)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *LdapConfig) DeepCopyInto(out *LdapConfig) {
*out = *in