1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 16:10:58 +00:00

go generate

This commit is contained in:
kinarashah
2019-02-07 11:35:01 -08:00
committed by Alena Prokharchyk
parent 3c48ece2e0
commit d8b411ad21
3 changed files with 31 additions and 0 deletions

View File

@@ -806,6 +806,7 @@ func (in *CloudCredential) DeepCopyInto(out *CloudCredential) {
out.Namespaced = in.Namespaced
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
out.Spec = in.Spec
return
}
@@ -860,6 +861,22 @@ func (in *CloudCredentialList) DeepCopyObject() runtime.Object {
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudCredentialSpec) DeepCopyInto(out *CloudCredentialSpec) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudCredentialSpec.
func (in *CloudCredentialSpec) DeepCopy() *CloudCredentialSpec {
if in == nil {
return nil
}
out := new(CloudCredentialSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudProvider) DeepCopyInto(out *CloudProvider) {
*out = *in