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

generated changes

This commit is contained in:
Daishan Peng
2017-11-13 18:13:37 -07:00
parent c4c28a9789
commit 0edd94e971
8 changed files with 86 additions and 103 deletions

View File

@@ -6,17 +6,17 @@ import (
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AKSConfig) DeepCopyInto(out *AKSConfig) {
func (in *AzureKubernetesServiceConfig) DeepCopyInto(out *AzureKubernetesServiceConfig) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AKSConfig.
func (in *AKSConfig) DeepCopy() *AKSConfig {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKubernetesServiceConfig.
func (in *AzureKubernetesServiceConfig) DeepCopy() *AzureKubernetesServiceConfig {
if in == nil {
return nil
}
out := new(AKSConfig)
out := new(AzureKubernetesServiceConfig)
in.DeepCopyInto(out)
return out
}
@@ -213,21 +213,21 @@ func (in *ClusterNodeList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterSpec) DeepCopyInto(out *ClusterSpec) {
*out = *in
if in.GKEConfig != nil {
in, out := &in.GKEConfig, &out.GKEConfig
if in.GoogleKubernetesEngineConfig != nil {
in, out := &in.GoogleKubernetesEngineConfig, &out.GoogleKubernetesEngineConfig
if *in == nil {
*out = nil
} else {
*out = new(GKEConfig)
*out = new(GoogleKubernetesEngineConfig)
(*in).DeepCopyInto(*out)
}
}
if in.AKSConfig != nil {
in, out := &in.AKSConfig, &out.AKSConfig
if in.AzureKubernetesServiceConfig != nil {
in, out := &in.AzureKubernetesServiceConfig, &out.AzureKubernetesServiceConfig
if *in == nil {
*out = nil
} else {
*out = new(AKSConfig)
*out = new(AzureKubernetesServiceConfig)
**out = **in
}
}
@@ -313,7 +313,7 @@ func (in *ETCDService) DeepCopy() *ETCDService {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GKEConfig) DeepCopyInto(out *GKEConfig) {
func (in *GoogleKubernetesEngineConfig) DeepCopyInto(out *GoogleKubernetesEngineConfig) {
*out = *in
if in.Labels != nil {
in, out := &in.Labels, &out.Labels
@@ -322,16 +322,15 @@ func (in *GKEConfig) DeepCopyInto(out *GKEConfig) {
(*out)[key] = val
}
}
out.UpdateConfig = in.UpdateConfig
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GKEConfig.
func (in *GKEConfig) DeepCopy() *GKEConfig {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GoogleKubernetesEngineConfig.
func (in *GoogleKubernetesEngineConfig) DeepCopy() *GoogleKubernetesEngineConfig {
if in == nil {
return nil
}
out := new(GKEConfig)
out := new(GoogleKubernetesEngineConfig)
in.DeepCopyInto(out)
return out
}