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

generated

This commit is contained in:
gitlawr
2018-10-11 15:58:58 +08:00
committed by Alena Prokharchyk
parent a2f8f8ffc8
commit b86e0a039b
4 changed files with 110 additions and 17 deletions

View File

@@ -264,6 +264,29 @@ func (in *AppUpgradeConfig) DeepCopy() *AppUpgradeConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ApplyAppConfig) DeepCopyInto(out *ApplyAppConfig) {
*out = *in
if in.Answers != nil {
in, out := &in.Answers, &out.Answers
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyAppConfig.
func (in *ApplyAppConfig) DeepCopy() *ApplyAppConfig {
if in == nil {
return nil
}
out := new(ApplyAppConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ApplyYamlConfig) DeepCopyInto(out *ApplyYamlConfig) {
*out = *in
@@ -1628,6 +1651,22 @@ func (in *PublicEndpoint) DeepCopy() *PublicEndpoint {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PublishCatalogConfig) DeepCopyInto(out *PublishCatalogConfig) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublishCatalogConfig.
func (in *PublishCatalogConfig) DeepCopy() *PublishCatalogConfig {
if in == nil {
return nil
}
out := new(PublishCatalogConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PublishImageConfig) DeepCopyInto(out *PublishImageConfig) {
*out = *in
@@ -2279,6 +2318,16 @@ func (in *Step) DeepCopyInto(out *Step) {
*out = new(ApplyYamlConfig)
**out = **in
}
if in.PublishCatalogConfig != nil {
in, out := &in.PublishCatalogConfig, &out.PublishCatalogConfig
*out = new(PublishCatalogConfig)
**out = **in
}
if in.ApplyAppConfig != nil {
in, out := &in.ApplyAppConfig, &out.ApplyAppConfig
*out = new(ApplyAppConfig)
(*in).DeepCopyInto(*out)
}
if in.Env != nil {
in, out := &in.Env, &out.Env
*out = make(map[string]string, len(*in))