...

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

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

View as plain text