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

go generate

This commit is contained in:
loganhz
2018-12-21 15:43:41 +08:00
committed by Craig Jellick
parent 38e1530406
commit 3ba50684a6
5 changed files with 50 additions and 0 deletions

View File

@@ -4552,6 +4552,11 @@ func (in *Notification) DeepCopyInto(out *Notification) {
*out = new(WebhookConfig)
**out = **in
}
if in.WechatConfig != nil {
in, out := &in.WechatConfig, &out.WechatConfig
*out = new(WechatConfig)
**out = **in
}
return
}
@@ -4650,6 +4655,11 @@ func (in *NotifierSpec) DeepCopyInto(out *NotifierSpec) {
*out = new(WebhookConfig)
**out = **in
}
if in.WechatConfig != nil {
in, out := &in.WechatConfig, &out.WechatConfig
*out = new(WechatConfig)
**out = **in
}
return
}
@@ -7692,6 +7702,22 @@ func (in *WebhookConfig) DeepCopy() *WebhookConfig {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *WechatConfig) DeepCopyInto(out *WechatConfig) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WechatConfig.
func (in *WechatConfig) DeepCopy() *WechatConfig {
if in == nil {
return nil
}
out := new(WechatConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *WindowsSystemImages) DeepCopyInto(out *WindowsSystemImages) {
*out = *in