github.com/giantswarm/apiextensions/v2@v2.6.2/pkg/apis/security/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 *Organization) DeepCopyInto(out *Organization) {
    29  	*out = *in
    30  	out.TypeMeta = in.TypeMeta
    31  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    32  	out.Spec = in.Spec
    33  }
    34  
    35  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Organization.
    36  func (in *Organization) DeepCopy() *Organization {
    37  	if in == nil {
    38  		return nil
    39  	}
    40  	out := new(Organization)
    41  	in.DeepCopyInto(out)
    42  	return out
    43  }
    44  
    45  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    46  func (in *Organization) DeepCopyObject() runtime.Object {
    47  	if c := in.DeepCopy(); c != nil {
    48  		return c
    49  	}
    50  	return nil
    51  }
    52  
    53  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    54  func (in *OrganizationList) DeepCopyInto(out *OrganizationList) {
    55  	*out = *in
    56  	out.TypeMeta = in.TypeMeta
    57  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    58  	if in.Items != nil {
    59  		in, out := &in.Items, &out.Items
    60  		*out = make([]Organization, len(*in))
    61  		for i := range *in {
    62  			(*in)[i].DeepCopyInto(&(*out)[i])
    63  		}
    64  	}
    65  }
    66  
    67  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationList.
    68  func (in *OrganizationList) DeepCopy() *OrganizationList {
    69  	if in == nil {
    70  		return nil
    71  	}
    72  	out := new(OrganizationList)
    73  	in.DeepCopyInto(out)
    74  	return out
    75  }
    76  
    77  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    78  func (in *OrganizationList) DeepCopyObject() runtime.Object {
    79  	if c := in.DeepCopy(); c != nil {
    80  		return c
    81  	}
    82  	return nil
    83  }
    84  
    85  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    86  func (in *OrganizationSpec) DeepCopyInto(out *OrganizationSpec) {
    87  	*out = *in
    88  }
    89  
    90  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationSpec.
    91  func (in *OrganizationSpec) DeepCopy() *OrganizationSpec {
    92  	if in == nil {
    93  		return nil
    94  	}
    95  	out := new(OrganizationSpec)
    96  	in.DeepCopyInto(out)
    97  	return out
    98  }