...

Source file src/github.com/openshift/api/platform/v1alpha1/zz_generated.deepcopy.go

Documentation: github.com/openshift/api/platform/v1alpha1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  // Code generated by deepcopy-gen. DO NOT EDIT.
     5  
     6  package v1alpha1
     7  
     8  import (
     9  	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    10  	runtime "k8s.io/apimachinery/pkg/runtime"
    11  )
    12  
    13  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    14  func (in *ActiveBundleDeployment) DeepCopyInto(out *ActiveBundleDeployment) {
    15  	*out = *in
    16  	return
    17  }
    18  
    19  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActiveBundleDeployment.
    20  func (in *ActiveBundleDeployment) DeepCopy() *ActiveBundleDeployment {
    21  	if in == nil {
    22  		return nil
    23  	}
    24  	out := new(ActiveBundleDeployment)
    25  	in.DeepCopyInto(out)
    26  	return out
    27  }
    28  
    29  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    30  func (in *Package) DeepCopyInto(out *Package) {
    31  	*out = *in
    32  	return
    33  }
    34  
    35  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Package.
    36  func (in *Package) DeepCopy() *Package {
    37  	if in == nil {
    38  		return nil
    39  	}
    40  	out := new(Package)
    41  	in.DeepCopyInto(out)
    42  	return out
    43  }
    44  
    45  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    46  func (in *PlatformOperator) DeepCopyInto(out *PlatformOperator) {
    47  	*out = *in
    48  	out.TypeMeta = in.TypeMeta
    49  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    50  	out.Spec = in.Spec
    51  	in.Status.DeepCopyInto(&out.Status)
    52  	return
    53  }
    54  
    55  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PlatformOperator.
    56  func (in *PlatformOperator) DeepCopy() *PlatformOperator {
    57  	if in == nil {
    58  		return nil
    59  	}
    60  	out := new(PlatformOperator)
    61  	in.DeepCopyInto(out)
    62  	return out
    63  }
    64  
    65  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    66  func (in *PlatformOperator) DeepCopyObject() runtime.Object {
    67  	if c := in.DeepCopy(); c != nil {
    68  		return c
    69  	}
    70  	return nil
    71  }
    72  
    73  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    74  func (in *PlatformOperatorList) DeepCopyInto(out *PlatformOperatorList) {
    75  	*out = *in
    76  	out.TypeMeta = in.TypeMeta
    77  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    78  	if in.Items != nil {
    79  		in, out := &in.Items, &out.Items
    80  		*out = make([]PlatformOperator, len(*in))
    81  		for i := range *in {
    82  			(*in)[i].DeepCopyInto(&(*out)[i])
    83  		}
    84  	}
    85  	return
    86  }
    87  
    88  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PlatformOperatorList.
    89  func (in *PlatformOperatorList) DeepCopy() *PlatformOperatorList {
    90  	if in == nil {
    91  		return nil
    92  	}
    93  	out := new(PlatformOperatorList)
    94  	in.DeepCopyInto(out)
    95  	return out
    96  }
    97  
    98  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    99  func (in *PlatformOperatorList) DeepCopyObject() runtime.Object {
   100  	if c := in.DeepCopy(); c != nil {
   101  		return c
   102  	}
   103  	return nil
   104  }
   105  
   106  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   107  func (in *PlatformOperatorSpec) DeepCopyInto(out *PlatformOperatorSpec) {
   108  	*out = *in
   109  	out.Package = in.Package
   110  	return
   111  }
   112  
   113  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PlatformOperatorSpec.
   114  func (in *PlatformOperatorSpec) DeepCopy() *PlatformOperatorSpec {
   115  	if in == nil {
   116  		return nil
   117  	}
   118  	out := new(PlatformOperatorSpec)
   119  	in.DeepCopyInto(out)
   120  	return out
   121  }
   122  
   123  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   124  func (in *PlatformOperatorStatus) DeepCopyInto(out *PlatformOperatorStatus) {
   125  	*out = *in
   126  	if in.Conditions != nil {
   127  		in, out := &in.Conditions, &out.Conditions
   128  		*out = make([]v1.Condition, len(*in))
   129  		for i := range *in {
   130  			(*in)[i].DeepCopyInto(&(*out)[i])
   131  		}
   132  	}
   133  	out.ActiveBundleDeployment = in.ActiveBundleDeployment
   134  	return
   135  }
   136  
   137  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PlatformOperatorStatus.
   138  func (in *PlatformOperatorStatus) DeepCopy() *PlatformOperatorStatus {
   139  	if in == nil {
   140  		return nil
   141  	}
   142  	out := new(PlatformOperatorStatus)
   143  	in.DeepCopyInto(out)
   144  	return out
   145  }
   146  

View as plain text