sigs.k8s.io/cluster-api@v1.7.1/cmd/clusterctl/api/v1alpha3/zz_generated.deepcopy.go (about)

     1  //go: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 controller-gen. DO NOT EDIT.
    20  
    21  package v1alpha3
    22  
    23  import (
    24  	"k8s.io/apimachinery/pkg/runtime"
    25  )
    26  
    27  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    28  func (in *Metadata) DeepCopyInto(out *Metadata) {
    29  	*out = *in
    30  	out.TypeMeta = in.TypeMeta
    31  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    32  	if in.ReleaseSeries != nil {
    33  		in, out := &in.ReleaseSeries, &out.ReleaseSeries
    34  		*out = make([]ReleaseSeries, len(*in))
    35  		copy(*out, *in)
    36  	}
    37  }
    38  
    39  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Metadata.
    40  func (in *Metadata) DeepCopy() *Metadata {
    41  	if in == nil {
    42  		return nil
    43  	}
    44  	out := new(Metadata)
    45  	in.DeepCopyInto(out)
    46  	return out
    47  }
    48  
    49  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    50  func (in *Metadata) DeepCopyObject() runtime.Object {
    51  	if c := in.DeepCopy(); c != nil {
    52  		return c
    53  	}
    54  	return nil
    55  }
    56  
    57  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    58  func (in *Provider) DeepCopyInto(out *Provider) {
    59  	*out = *in
    60  	out.TypeMeta = in.TypeMeta
    61  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    62  }
    63  
    64  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Provider.
    65  func (in *Provider) DeepCopy() *Provider {
    66  	if in == nil {
    67  		return nil
    68  	}
    69  	out := new(Provider)
    70  	in.DeepCopyInto(out)
    71  	return out
    72  }
    73  
    74  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    75  func (in *Provider) DeepCopyObject() runtime.Object {
    76  	if c := in.DeepCopy(); c != nil {
    77  		return c
    78  	}
    79  	return nil
    80  }
    81  
    82  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    83  func (in *ProviderList) DeepCopyInto(out *ProviderList) {
    84  	*out = *in
    85  	out.TypeMeta = in.TypeMeta
    86  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    87  	if in.Items != nil {
    88  		in, out := &in.Items, &out.Items
    89  		*out = make([]Provider, len(*in))
    90  		for i := range *in {
    91  			(*in)[i].DeepCopyInto(&(*out)[i])
    92  		}
    93  	}
    94  }
    95  
    96  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderList.
    97  func (in *ProviderList) DeepCopy() *ProviderList {
    98  	if in == nil {
    99  		return nil
   100  	}
   101  	out := new(ProviderList)
   102  	in.DeepCopyInto(out)
   103  	return out
   104  }
   105  
   106  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   107  func (in *ProviderList) DeepCopyObject() runtime.Object {
   108  	if c := in.DeepCopy(); c != nil {
   109  		return c
   110  	}
   111  	return nil
   112  }
   113  
   114  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   115  func (in *ReleaseSeries) DeepCopyInto(out *ReleaseSeries) {
   116  	*out = *in
   117  }
   118  
   119  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReleaseSeries.
   120  func (in *ReleaseSeries) DeepCopy() *ReleaseSeries {
   121  	if in == nil {
   122  		return nil
   123  	}
   124  	out := new(ReleaseSeries)
   125  	in.DeepCopyInto(out)
   126  	return out
   127  }