...

Source file src/github.com/openshift/api/helm/v1beta1/zz_generated.deepcopy.go

Documentation: github.com/openshift/api/helm/v1beta1

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

View as plain text