mirror of
https://github.com/rancher/types.git
synced 2025-09-26 04:38:17 +00:00
generate code
This commit is contained in:
committed by
Alena Prokharchyk
parent
4c32b98a34
commit
3e10f98fe0
@@ -3348,6 +3348,22 @@ func (in *GroupMemberList) DeepCopyObject() runtime.Object {
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *HTTPClientConfig) DeepCopyInto(out *HTTPClientConfig) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPClientConfig.
|
||||
func (in *HTTPClientConfig) DeepCopy() *HTTPClientConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(HTTPClientConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *HealthCheck) DeepCopyInto(out *HealthCheck) {
|
||||
*out = *in
|
||||
@@ -5295,22 +5311,22 @@ func (in *Notification) DeepCopyInto(out *Notification) {
|
||||
if in.SlackConfig != nil {
|
||||
in, out := &in.SlackConfig, &out.SlackConfig
|
||||
*out = new(SlackConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.PagerdutyConfig != nil {
|
||||
in, out := &in.PagerdutyConfig, &out.PagerdutyConfig
|
||||
*out = new(PagerdutyConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.WebhookConfig != nil {
|
||||
in, out := &in.WebhookConfig, &out.WebhookConfig
|
||||
*out = new(WebhookConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.WechatConfig != nil {
|
||||
in, out := &in.WechatConfig, &out.WechatConfig
|
||||
*out = new(WechatConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
}
|
||||
@@ -5398,22 +5414,22 @@ func (in *NotifierSpec) DeepCopyInto(out *NotifierSpec) {
|
||||
if in.SlackConfig != nil {
|
||||
in, out := &in.SlackConfig, &out.SlackConfig
|
||||
*out = new(SlackConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.PagerdutyConfig != nil {
|
||||
in, out := &in.PagerdutyConfig, &out.PagerdutyConfig
|
||||
*out = new(PagerdutyConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.WebhookConfig != nil {
|
||||
in, out := &in.WebhookConfig, &out.WebhookConfig
|
||||
*out = new(WebhookConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.WechatConfig != nil {
|
||||
in, out := &in.WechatConfig, &out.WechatConfig
|
||||
*out = new(WechatConfig)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
return
|
||||
}
|
||||
@@ -5543,6 +5559,11 @@ func (in *OpenstackCloudProvider) DeepCopy() *OpenstackCloudProvider {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PagerdutyConfig) DeepCopyInto(out *PagerdutyConfig) {
|
||||
*out = *in
|
||||
if in.HTTPClientConfig != nil {
|
||||
in, out := &in.HTTPClientConfig, &out.HTTPClientConfig
|
||||
*out = new(HTTPClientConfig)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -7713,6 +7734,11 @@ func (in *SettingList) DeepCopyObject() runtime.Object {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *SlackConfig) DeepCopyInto(out *SlackConfig) {
|
||||
*out = *in
|
||||
if in.HTTPClientConfig != nil {
|
||||
in, out := &in.HTTPClientConfig, &out.HTTPClientConfig
|
||||
*out = new(HTTPClientConfig)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -8676,6 +8702,11 @@ func (in *WeaveNetworkProvider) DeepCopy() *WeaveNetworkProvider {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *WebhookConfig) DeepCopyInto(out *WebhookConfig) {
|
||||
*out = *in
|
||||
if in.HTTPClientConfig != nil {
|
||||
in, out := &in.HTTPClientConfig, &out.HTTPClientConfig
|
||||
*out = new(HTTPClientConfig)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -8692,6 +8723,11 @@ func (in *WebhookConfig) DeepCopy() *WebhookConfig {
|
||||
// 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
|
||||
if in.HTTPClientConfig != nil {
|
||||
in, out := &in.HTTPClientConfig, &out.HTTPClientConfig
|
||||
*out = new(HTTPClientConfig)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user