github.com/giantswarm/apiextensions/v2@v2.6.2/pkg/apis/tooling/v1alpha1/zz_generated.deepcopy.go (about)

     1  // +build !ignore_autogenerated
     2  
     3  /*
     4  Copyright 2020 Giant Swarm GmbH.
     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 v1alpha1
    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 *AzureTool) DeepCopyInto(out *AzureTool) {
    29  	*out = *in
    30  	out.TypeMeta = in.TypeMeta
    31  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    32  	out.Spec = in.Spec
    33  	out.Status = in.Status
    34  }
    35  
    36  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureTool.
    37  func (in *AzureTool) DeepCopy() *AzureTool {
    38  	if in == nil {
    39  		return nil
    40  	}
    41  	out := new(AzureTool)
    42  	in.DeepCopyInto(out)
    43  	return out
    44  }
    45  
    46  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    47  func (in *AzureTool) DeepCopyObject() runtime.Object {
    48  	if c := in.DeepCopy(); c != nil {
    49  		return c
    50  	}
    51  	return nil
    52  }
    53  
    54  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    55  func (in *AzureToolList) DeepCopyInto(out *AzureToolList) {
    56  	*out = *in
    57  	out.TypeMeta = in.TypeMeta
    58  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    59  	if in.Items != nil {
    60  		in, out := &in.Items, &out.Items
    61  		*out = make([]AzureTool, len(*in))
    62  		for i := range *in {
    63  			(*in)[i].DeepCopyInto(&(*out)[i])
    64  		}
    65  	}
    66  }
    67  
    68  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureToolList.
    69  func (in *AzureToolList) DeepCopy() *AzureToolList {
    70  	if in == nil {
    71  		return nil
    72  	}
    73  	out := new(AzureToolList)
    74  	in.DeepCopyInto(out)
    75  	return out
    76  }
    77  
    78  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    79  func (in *AzureToolList) DeepCopyObject() runtime.Object {
    80  	if c := in.DeepCopy(); c != nil {
    81  		return c
    82  	}
    83  	return nil
    84  }
    85  
    86  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    87  func (in *AzureToolSpec) DeepCopyInto(out *AzureToolSpec) {
    88  	*out = *in
    89  	out.Workspace = in.Workspace
    90  }
    91  
    92  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureToolSpec.
    93  func (in *AzureToolSpec) DeepCopy() *AzureToolSpec {
    94  	if in == nil {
    95  		return nil
    96  	}
    97  	out := new(AzureToolSpec)
    98  	in.DeepCopyInto(out)
    99  	return out
   100  }
   101  
   102  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   103  func (in *AzureToolStatus) DeepCopyInto(out *AzureToolStatus) {
   104  	*out = *in
   105  }
   106  
   107  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureToolStatus.
   108  func (in *AzureToolStatus) DeepCopy() *AzureToolStatus {
   109  	if in == nil {
   110  		return nil
   111  	}
   112  	out := new(AzureToolStatus)
   113  	in.DeepCopyInto(out)
   114  	return out
   115  }
   116  
   117  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   118  func (in *AzureToolWorkspace) DeepCopyInto(out *AzureToolWorkspace) {
   119  	*out = *in
   120  }
   121  
   122  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureToolWorkspace.
   123  func (in *AzureToolWorkspace) DeepCopy() *AzureToolWorkspace {
   124  	if in == nil {
   125  		return nil
   126  	}
   127  	out := new(AzureToolWorkspace)
   128  	in.DeepCopyInto(out)
   129  	return out
   130  }