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

generate changes

This commit is contained in:
Daishan Peng
2018-05-17 09:28:25 -07:00
committed by Darren Shepherd
parent 8f3c21fdf2
commit e4d6a30f09
4 changed files with 25 additions and 3 deletions

View File

@@ -370,6 +370,13 @@ func (in *AppRevisionStatus) DeepCopy() *AppRevisionStatus {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AppSpec) DeepCopyInto(out *AppSpec) {
*out = *in
if in.Files != nil {
in, out := &in.Files, &out.Files
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Answers != nil {
in, out := &in.Answers, &out.Answers
*out = make(map[string]string, len(*in))
@@ -393,6 +400,13 @@ func (in *AppSpec) DeepCopy() *AppSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AppStatus) DeepCopyInto(out *AppStatus) {
*out = *in
if in.AppliedFiles != nil {
in, out := &in.AppliedFiles, &out.AppliedFiles
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]AppCondition, len(*in))