knative.dev/pkg@v0.0.0-20260602142205-ac97e43f6622/apis/test/example/v1alpha1/zz_generated.deepcopy.go (about)

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  /*
     5  Copyright 2022 The Knative 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 v1alpha1
    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 *ClusterFiz) DeepCopyInto(out *ClusterFiz) {
    30  	*out = *in
    31  	out.TypeMeta = in.TypeMeta
    32  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    33  	out.Spec = in.Spec
    34  	in.Status.DeepCopyInto(&out.Status)
    35  	return
    36  }
    37  
    38  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterFiz.
    39  func (in *ClusterFiz) DeepCopy() *ClusterFiz {
    40  	if in == nil {
    41  		return nil
    42  	}
    43  	out := new(ClusterFiz)
    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 *ClusterFiz) 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 *ClusterFizList) DeepCopyInto(out *ClusterFizList) {
    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([]ClusterFiz, 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 ClusterFizList.
    72  func (in *ClusterFizList) DeepCopy() *ClusterFizList {
    73  	if in == nil {
    74  		return nil
    75  	}
    76  	out := new(ClusterFizList)
    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 *ClusterFizList) 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 *ClusterFizSpec) DeepCopyInto(out *ClusterFizSpec) {
    91  	*out = *in
    92  	return
    93  }
    94  
    95  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterFizSpec.
    96  func (in *ClusterFizSpec) DeepCopy() *ClusterFizSpec {
    97  	if in == nil {
    98  		return nil
    99  	}
   100  	out := new(ClusterFizSpec)
   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 *ClusterFizStatus) DeepCopyInto(out *ClusterFizStatus) {
   107  	*out = *in
   108  	in.Status.DeepCopyInto(&out.Status)
   109  	return
   110  }
   111  
   112  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterFizStatus.
   113  func (in *ClusterFizStatus) DeepCopy() *ClusterFizStatus {
   114  	if in == nil {
   115  		return nil
   116  	}
   117  	out := new(ClusterFizStatus)
   118  	in.DeepCopyInto(out)
   119  	return out
   120  }
   121  
   122  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   123  func (in *Foo) DeepCopyInto(out *Foo) {
   124  	*out = *in
   125  	out.TypeMeta = in.TypeMeta
   126  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   127  	out.Spec = in.Spec
   128  	in.Status.DeepCopyInto(&out.Status)
   129  	return
   130  }
   131  
   132  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Foo.
   133  func (in *Foo) DeepCopy() *Foo {
   134  	if in == nil {
   135  		return nil
   136  	}
   137  	out := new(Foo)
   138  	in.DeepCopyInto(out)
   139  	return out
   140  }
   141  
   142  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   143  func (in *Foo) DeepCopyObject() runtime.Object {
   144  	if c := in.DeepCopy(); c != nil {
   145  		return c
   146  	}
   147  	return nil
   148  }
   149  
   150  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   151  func (in *FooList) DeepCopyInto(out *FooList) {
   152  	*out = *in
   153  	out.TypeMeta = in.TypeMeta
   154  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   155  	if in.Items != nil {
   156  		in, out := &in.Items, &out.Items
   157  		*out = make([]Foo, len(*in))
   158  		for i := range *in {
   159  			(*in)[i].DeepCopyInto(&(*out)[i])
   160  		}
   161  	}
   162  	return
   163  }
   164  
   165  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooList.
   166  func (in *FooList) DeepCopy() *FooList {
   167  	if in == nil {
   168  		return nil
   169  	}
   170  	out := new(FooList)
   171  	in.DeepCopyInto(out)
   172  	return out
   173  }
   174  
   175  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   176  func (in *FooList) DeepCopyObject() runtime.Object {
   177  	if c := in.DeepCopy(); c != nil {
   178  		return c
   179  	}
   180  	return nil
   181  }
   182  
   183  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   184  func (in *FooSpec) DeepCopyInto(out *FooSpec) {
   185  	*out = *in
   186  	return
   187  }
   188  
   189  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooSpec.
   190  func (in *FooSpec) DeepCopy() *FooSpec {
   191  	if in == nil {
   192  		return nil
   193  	}
   194  	out := new(FooSpec)
   195  	in.DeepCopyInto(out)
   196  	return out
   197  }
   198  
   199  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   200  func (in *FooStatus) DeepCopyInto(out *FooStatus) {
   201  	*out = *in
   202  	in.Status.DeepCopyInto(&out.Status)
   203  	return
   204  }
   205  
   206  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooStatus.
   207  func (in *FooStatus) DeepCopy() *FooStatus {
   208  	if in == nil {
   209  		return nil
   210  	}
   211  	out := new(FooStatus)
   212  	in.DeepCopyInto(out)
   213  	return out
   214  }