halkyon.io/api@v1.0.0-rc.6/capability/v1beta1/zz_generated.deepcopy.go (about)

     1  // +build !ignore_autogenerated
     2  
     3  /*
     4  Copyright The Kubernetes Authors.
     5  
     6  Licensed under the Apache License, Version 2.0 (the "License");
     7  you may not use this file except in compliance with the License.
     8  You may obtain a copy of the License at
     9  
    10      http://www.apache.org/licenses/LICENSE-2.0
    11  
    12  Unless required by applicable law or agreed to in writing, software
    13  distributed under the License is distributed on an "AS IS" BASIS,
    14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15  See the License for the specific language governing permissions and
    16  limitations under the License.
    17  */
    18  
    19  // Code generated by deepcopy-gen. DO NOT EDIT.
    20  
    21  package v1beta1
    22  
    23  import (
    24  	apiv1beta1 "halkyon.io/api/v1beta1"
    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 *Capability) DeepCopyInto(out *Capability) {
    30  	*out = *in
    31  	out.TypeMeta = in.TypeMeta
    32  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    33  	in.Spec.DeepCopyInto(&out.Spec)
    34  	in.Status.DeepCopyInto(&out.Status)
    35  	return
    36  }
    37  
    38  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Capability.
    39  func (in *Capability) DeepCopy() *Capability {
    40  	if in == nil {
    41  		return nil
    42  	}
    43  	out := new(Capability)
    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 *Capability) 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 *CapabilityList) DeepCopyInto(out *CapabilityList) {
    58  	*out = *in
    59  	out.TypeMeta = in.TypeMeta
    60  	out.ListMeta = in.ListMeta
    61  	if in.Items != nil {
    62  		in, out := &in.Items, &out.Items
    63  		*out = make([]Capability, 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 CapabilityList.
    72  func (in *CapabilityList) DeepCopy() *CapabilityList {
    73  	if in == nil {
    74  		return nil
    75  	}
    76  	out := new(CapabilityList)
    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 *CapabilityList) 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 *CapabilitySpec) DeepCopyInto(out *CapabilitySpec) {
    91  	*out = *in
    92  	if in.Parameters != nil {
    93  		in, out := &in.Parameters, &out.Parameters
    94  		*out = make([]apiv1beta1.NameValuePair, len(*in))
    95  		copy(*out, *in)
    96  	}
    97  	return
    98  }
    99  
   100  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CapabilitySpec.
   101  func (in *CapabilitySpec) DeepCopy() *CapabilitySpec {
   102  	if in == nil {
   103  		return nil
   104  	}
   105  	out := new(CapabilitySpec)
   106  	in.DeepCopyInto(out)
   107  	return out
   108  }
   109  
   110  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   111  func (in *CapabilityStatus) DeepCopyInto(out *CapabilityStatus) {
   112  	*out = *in
   113  	in.Status.DeepCopyInto(&out.Status)
   114  	return
   115  }
   116  
   117  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CapabilityStatus.
   118  func (in *CapabilityStatus) DeepCopy() *CapabilityStatus {
   119  	if in == nil {
   120  		return nil
   121  	}
   122  	out := new(CapabilityStatus)
   123  	in.DeepCopyInto(out)
   124  	return out
   125  }