...

Source file src/edge-infra.dev/pkg/edge/apis/banner/v1alpha1/zz_generated.deepcopy.go

Documentation: edge-infra.dev/pkg/edge/apis/banner/v1alpha1

     1  //go:build !ignore_autogenerated
     2  
     3  // Code generated by controller-gen. DO NOT EDIT.
     4  
     5  package v1alpha1
     6  
     7  import (
     8  	"edge-infra.dev/pkg/k8s/runtime/inventory"
     9  	"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 *BSLConfig) DeepCopyInto(out *BSLConfig) {
    15  	*out = *in
    16  	out.EnterpriseUnit = in.EnterpriseUnit
    17  	out.Organization = in.Organization
    18  	if in.EntityTypes != nil {
    19  		in, out := &in.EntityTypes, &out.EntityTypes
    20  		*out = make([]string, len(*in))
    21  		copy(*out, *in)
    22  	}
    23  }
    24  
    25  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLConfig.
    26  func (in *BSLConfig) DeepCopy() *BSLConfig {
    27  	if in == nil {
    28  		return nil
    29  	}
    30  	out := new(BSLConfig)
    31  	in.DeepCopyInto(out)
    32  	return out
    33  }
    34  
    35  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    36  func (in *BSLEnterpriseUnit) DeepCopyInto(out *BSLEnterpriseUnit) {
    37  	*out = *in
    38  }
    39  
    40  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLEnterpriseUnit.
    41  func (in *BSLEnterpriseUnit) DeepCopy() *BSLEnterpriseUnit {
    42  	if in == nil {
    43  		return nil
    44  	}
    45  	out := new(BSLEnterpriseUnit)
    46  	in.DeepCopyInto(out)
    47  	return out
    48  }
    49  
    50  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    51  func (in *BSLOrganization) DeepCopyInto(out *BSLOrganization) {
    52  	*out = *in
    53  }
    54  
    55  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BSLOrganization.
    56  func (in *BSLOrganization) DeepCopy() *BSLOrganization {
    57  	if in == nil {
    58  		return nil
    59  	}
    60  	out := new(BSLOrganization)
    61  	in.DeepCopyInto(out)
    62  	return out
    63  }
    64  
    65  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    66  func (in *Banner) DeepCopyInto(out *Banner) {
    67  	*out = *in
    68  	out.TypeMeta = in.TypeMeta
    69  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    70  	in.Spec.DeepCopyInto(&out.Spec)
    71  	in.Status.DeepCopyInto(&out.Status)
    72  }
    73  
    74  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Banner.
    75  func (in *Banner) DeepCopy() *Banner {
    76  	if in == nil {
    77  		return nil
    78  	}
    79  	out := new(Banner)
    80  	in.DeepCopyInto(out)
    81  	return out
    82  }
    83  
    84  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    85  func (in *Banner) DeepCopyObject() runtime.Object {
    86  	if c := in.DeepCopy(); c != nil {
    87  		return c
    88  	}
    89  	return nil
    90  }
    91  
    92  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    93  func (in *BannerList) DeepCopyInto(out *BannerList) {
    94  	*out = *in
    95  	out.TypeMeta = in.TypeMeta
    96  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    97  	if in.Items != nil {
    98  		in, out := &in.Items, &out.Items
    99  		*out = make([]Banner, len(*in))
   100  		for i := range *in {
   101  			(*in)[i].DeepCopyInto(&(*out)[i])
   102  		}
   103  	}
   104  }
   105  
   106  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerList.
   107  func (in *BannerList) DeepCopy() *BannerList {
   108  	if in == nil {
   109  		return nil
   110  	}
   111  	out := new(BannerList)
   112  	in.DeepCopyInto(out)
   113  	return out
   114  }
   115  
   116  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   117  func (in *BannerList) DeepCopyObject() runtime.Object {
   118  	if c := in.DeepCopy(); c != nil {
   119  		return c
   120  	}
   121  	return nil
   122  }
   123  
   124  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   125  func (in *BannerSpec) DeepCopyInto(out *BannerSpec) {
   126  	*out = *in
   127  	in.BSL.DeepCopyInto(&out.BSL)
   128  	out.GCP = in.GCP
   129  	if in.Enablements != nil {
   130  		in, out := &in.Enablements, &out.Enablements
   131  		*out = make([]string, len(*in))
   132  		copy(*out, *in)
   133  	}
   134  }
   135  
   136  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerSpec.
   137  func (in *BannerSpec) DeepCopy() *BannerSpec {
   138  	if in == nil {
   139  		return nil
   140  	}
   141  	out := new(BannerSpec)
   142  	in.DeepCopyInto(out)
   143  	return out
   144  }
   145  
   146  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   147  func (in *BannerStatus) DeepCopyInto(out *BannerStatus) {
   148  	*out = *in
   149  	if in.Conditions != nil {
   150  		in, out := &in.Conditions, &out.Conditions
   151  		*out = make([]v1.Condition, len(*in))
   152  		for i := range *in {
   153  			(*in)[i].DeepCopyInto(&(*out)[i])
   154  		}
   155  	}
   156  	if in.Inventory != nil {
   157  		in, out := &in.Inventory, &out.Inventory
   158  		*out = new(inventory.ResourceInventory)
   159  		(*in).DeepCopyInto(*out)
   160  	}
   161  	if in.BslSyncStatus != nil {
   162  		in, out := &in.BslSyncStatus, &out.BslSyncStatus
   163  		*out = new(BslSyncStatus)
   164  		(*in).DeepCopyInto(*out)
   165  	}
   166  }
   167  
   168  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BannerStatus.
   169  func (in *BannerStatus) DeepCopy() *BannerStatus {
   170  	if in == nil {
   171  		return nil
   172  	}
   173  	out := new(BannerStatus)
   174  	in.DeepCopyInto(out)
   175  	return out
   176  }
   177  
   178  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   179  func (in *BslSyncStatus) DeepCopyInto(out *BslSyncStatus) {
   180  	*out = *in
   181  	if in.EntityTypes != nil {
   182  		in, out := &in.EntityTypes, &out.EntityTypes
   183  		*out = make([]string, len(*in))
   184  		copy(*out, *in)
   185  	}
   186  }
   187  
   188  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BslSyncStatus.
   189  func (in *BslSyncStatus) DeepCopy() *BslSyncStatus {
   190  	if in == nil {
   191  		return nil
   192  	}
   193  	out := new(BslSyncStatus)
   194  	in.DeepCopyInto(out)
   195  	return out
   196  }
   197  
   198  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   199  func (in *GCPConfig) DeepCopyInto(out *GCPConfig) {
   200  	*out = *in
   201  }
   202  
   203  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPConfig.
   204  func (in *GCPConfig) DeepCopy() *GCPConfig {
   205  	if in == nil {
   206  		return nil
   207  	}
   208  	out := new(GCPConfig)
   209  	in.DeepCopyInto(out)
   210  	return out
   211  }
   212  

View as plain text