...

Source file src/kubevirt.io/containerized-data-importer-api/pkg/apis/upload/v1beta1/zz_generated.deepcopy.go

Documentation: kubevirt.io/containerized-data-importer-api/pkg/apis/upload/v1beta1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  /*
     5  Copyright 2018 The CDI Authors.
     6  
     7  Licensed under the Apache License, Version 2.0 (the "License");
     8  you may not use this file except in compliance with the License.
     9  You may obtain a copy of the License at
    10  
    11      http://www.apache.org/licenses/LICENSE-2.0
    12  
    13  Unless required by applicable law or agreed to in writing, software
    14  distributed under the License is distributed on an "AS IS" BASIS,
    15  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    16  See the License for the specific language governing permissions and
    17  limitations under the License.
    18  */
    19  
    20  // Code generated by deepcopy-gen. DO NOT EDIT.
    21  
    22  package v1beta1
    23  
    24  import (
    25  	runtime "k8s.io/apimachinery/pkg/runtime"
    26  )
    27  
    28  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    29  func (in *UploadTokenRequest) DeepCopyInto(out *UploadTokenRequest) {
    30  	*out = *in
    31  	out.TypeMeta = in.TypeMeta
    32  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    33  	out.Spec = in.Spec
    34  	out.Status = in.Status
    35  	return
    36  }
    37  
    38  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UploadTokenRequest.
    39  func (in *UploadTokenRequest) DeepCopy() *UploadTokenRequest {
    40  	if in == nil {
    41  		return nil
    42  	}
    43  	out := new(UploadTokenRequest)
    44  	in.DeepCopyInto(out)
    45  	return out
    46  }
    47  
    48  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    49  func (in *UploadTokenRequest) DeepCopyObject() runtime.Object {
    50  	if c := in.DeepCopy(); c != nil {
    51  		return c
    52  	}
    53  	return nil
    54  }
    55  
    56  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    57  func (in *UploadTokenRequestList) DeepCopyInto(out *UploadTokenRequestList) {
    58  	*out = *in
    59  	out.TypeMeta = in.TypeMeta
    60  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    61  	if in.Items != nil {
    62  		in, out := &in.Items, &out.Items
    63  		*out = make([]UploadTokenRequest, len(*in))
    64  		for i := range *in {
    65  			(*in)[i].DeepCopyInto(&(*out)[i])
    66  		}
    67  	}
    68  	return
    69  }
    70  
    71  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UploadTokenRequestList.
    72  func (in *UploadTokenRequestList) DeepCopy() *UploadTokenRequestList {
    73  	if in == nil {
    74  		return nil
    75  	}
    76  	out := new(UploadTokenRequestList)
    77  	in.DeepCopyInto(out)
    78  	return out
    79  }
    80  
    81  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    82  func (in *UploadTokenRequestList) DeepCopyObject() runtime.Object {
    83  	if c := in.DeepCopy(); c != nil {
    84  		return c
    85  	}
    86  	return nil
    87  }
    88  
    89  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    90  func (in *UploadTokenRequestSpec) DeepCopyInto(out *UploadTokenRequestSpec) {
    91  	*out = *in
    92  	return
    93  }
    94  
    95  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UploadTokenRequestSpec.
    96  func (in *UploadTokenRequestSpec) DeepCopy() *UploadTokenRequestSpec {
    97  	if in == nil {
    98  		return nil
    99  	}
   100  	out := new(UploadTokenRequestSpec)
   101  	in.DeepCopyInto(out)
   102  	return out
   103  }
   104  
   105  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   106  func (in *UploadTokenRequestStatus) DeepCopyInto(out *UploadTokenRequestStatus) {
   107  	*out = *in
   108  	return
   109  }
   110  
   111  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UploadTokenRequestStatus.
   112  func (in *UploadTokenRequestStatus) DeepCopy() *UploadTokenRequestStatus {
   113  	if in == nil {
   114  		return nil
   115  	}
   116  	out := new(UploadTokenRequestStatus)
   117  	in.DeepCopyInto(out)
   118  	return out
   119  }
   120  

View as plain text