mirror of
https://github.com/rancher/types.git
synced 2025-09-01 13:18:20 +00:00
generated
This commit is contained in:
@@ -4717,11 +4717,7 @@ func (in *LdapConfig) DeepCopyInto(out *LdapConfig) {
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
in.AuthConfig.DeepCopyInto(&out.AuthConfig)
|
||||
if in.Servers != nil {
|
||||
in, out := &in.Servers, &out.Servers
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
in.LdapFields.DeepCopyInto(&out.LdapFields)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -4776,6 +4772,27 @@ func (in *LdapConfigList) DeepCopyObject() runtime.Object {
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LdapFields) DeepCopyInto(out *LdapFields) {
|
||||
*out = *in
|
||||
if in.Servers != nil {
|
||||
in, out := &in.Servers, &out.Servers
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LdapFields.
|
||||
func (in *LdapFields) DeepCopy() *LdapFields {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(LdapFields)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LdapTestAndApplyInput) DeepCopyInto(out *LdapTestAndApplyInput) {
|
||||
*out = *in
|
||||
@@ -8979,6 +8996,32 @@ func (in *SettingList) DeepCopyObject() runtime.Object {
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ShibbolethConfig) DeepCopyInto(out *ShibbolethConfig) {
|
||||
*out = *in
|
||||
in.SamlConfig.DeepCopyInto(&out.SamlConfig)
|
||||
in.LdapFields.DeepCopyInto(&out.LdapFields)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShibbolethConfig.
|
||||
func (in *ShibbolethConfig) DeepCopy() *ShibbolethConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ShibbolethConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *ShibbolethConfig) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// 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
|
||||
|
Reference in New Issue
Block a user