mirror of
https://github.com/rancher/types.git
synced 2025-09-01 13:18:20 +00:00
go generate
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user