1
0
mirror of https://github.com/rancher/types.git synced 2025-09-24 19:39:13 +00:00

generated

This commit is contained in:
gitlawr
2018-09-18 11:45:14 +08:00
committed by Alena Prokharchyk
parent 293e6c4a6d
commit 86cb36ea85
4 changed files with 82 additions and 7 deletions

View File

@@ -1310,6 +1310,11 @@ func (in *PipelineConfig) DeepCopyInto(out *PipelineConfig) {
*out = new(Constraint)
(*in).DeepCopyInto(*out)
}
if in.Notification != nil {
in, out := &in.Notification, &out.Notification
*out = new(PipelineNotification)
(*in).DeepCopyInto(*out)
}
return
}
@@ -1463,6 +1468,32 @@ func (in *PipelineList) DeepCopyObject() runtime.Object {
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PipelineNotification) DeepCopyInto(out *PipelineNotification) {
*out = *in
if in.Recipients != nil {
in, out := &in.Recipients, &out.Recipients
*out = make([]Recipient, len(*in))
copy(*out, *in)
}
if in.Condition != nil {
in, out := &in.Condition, &out.Condition
*out = make(stringorslice, len(*in))
copy(*out, *in)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PipelineNotification.
func (in *PipelineNotification) DeepCopy() *PipelineNotification {
if in == nil {
return nil
}
out := new(PipelineNotification)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PipelineSetting) DeepCopyInto(out *PipelineSetting) {
*out = *in
@@ -1636,6 +1667,22 @@ func (in *PushPipelineConfigInput) DeepCopy() *PushPipelineConfigInput {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Recipient) DeepCopyInto(out *Recipient) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Recipient.
func (in *Recipient) DeepCopy() *Recipient {
if in == nil {
return nil
}
out := new(Recipient)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RegistryCredential) DeepCopyInto(out *RegistryCredential) {
*out = *in