mirror of
https://github.com/rancher/types.git
synced 2025-09-24 19:39:13 +00:00
generated
This commit is contained in:
committed by
Alena Prokharchyk
parent
293e6c4a6d
commit
86cb36ea85
@@ -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
|
||||
|
Reference in New Issue
Block a user