...

Source file src/github.com/openshift/api/image/v1/zz_generated.deepcopy.go

Documentation: github.com/openshift/api/image/v1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  // Code generated by deepcopy-gen. DO NOT EDIT.
     5  
     6  package v1
     7  
     8  import (
     9  	corev1 "k8s.io/api/core/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 *DockerImageReference) DeepCopyInto(out *DockerImageReference) {
    15  	*out = *in
    16  	return
    17  }
    18  
    19  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerImageReference.
    20  func (in *DockerImageReference) DeepCopy() *DockerImageReference {
    21  	if in == nil {
    22  		return nil
    23  	}
    24  	out := new(DockerImageReference)
    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 *Image) DeepCopyInto(out *Image) {
    31  	*out = *in
    32  	out.TypeMeta = in.TypeMeta
    33  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    34  	in.DockerImageMetadata.DeepCopyInto(&out.DockerImageMetadata)
    35  	if in.DockerImageLayers != nil {
    36  		in, out := &in.DockerImageLayers, &out.DockerImageLayers
    37  		*out = make([]ImageLayer, len(*in))
    38  		copy(*out, *in)
    39  	}
    40  	if in.Signatures != nil {
    41  		in, out := &in.Signatures, &out.Signatures
    42  		*out = make([]ImageSignature, len(*in))
    43  		for i := range *in {
    44  			(*in)[i].DeepCopyInto(&(*out)[i])
    45  		}
    46  	}
    47  	if in.DockerImageSignatures != nil {
    48  		in, out := &in.DockerImageSignatures, &out.DockerImageSignatures
    49  		*out = make([][]byte, len(*in))
    50  		for i := range *in {
    51  			if (*in)[i] != nil {
    52  				in, out := &(*in)[i], &(*out)[i]
    53  				*out = make([]byte, len(*in))
    54  				copy(*out, *in)
    55  			}
    56  		}
    57  	}
    58  	if in.DockerImageManifests != nil {
    59  		in, out := &in.DockerImageManifests, &out.DockerImageManifests
    60  		*out = make([]ImageManifest, len(*in))
    61  		copy(*out, *in)
    62  	}
    63  	return
    64  }
    65  
    66  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Image.
    67  func (in *Image) DeepCopy() *Image {
    68  	if in == nil {
    69  		return nil
    70  	}
    71  	out := new(Image)
    72  	in.DeepCopyInto(out)
    73  	return out
    74  }
    75  
    76  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    77  func (in *Image) DeepCopyObject() runtime.Object {
    78  	if c := in.DeepCopy(); c != nil {
    79  		return c
    80  	}
    81  	return nil
    82  }
    83  
    84  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    85  func (in *ImageBlobReferences) DeepCopyInto(out *ImageBlobReferences) {
    86  	*out = *in
    87  	if in.Layers != nil {
    88  		in, out := &in.Layers, &out.Layers
    89  		*out = make([]string, len(*in))
    90  		copy(*out, *in)
    91  	}
    92  	if in.Config != nil {
    93  		in, out := &in.Config, &out.Config
    94  		*out = new(string)
    95  		**out = **in
    96  	}
    97  	if in.Manifests != nil {
    98  		in, out := &in.Manifests, &out.Manifests
    99  		*out = make([]string, len(*in))
   100  		copy(*out, *in)
   101  	}
   102  	return
   103  }
   104  
   105  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageBlobReferences.
   106  func (in *ImageBlobReferences) DeepCopy() *ImageBlobReferences {
   107  	if in == nil {
   108  		return nil
   109  	}
   110  	out := new(ImageBlobReferences)
   111  	in.DeepCopyInto(out)
   112  	return out
   113  }
   114  
   115  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   116  func (in *ImageImportSpec) DeepCopyInto(out *ImageImportSpec) {
   117  	*out = *in
   118  	out.From = in.From
   119  	if in.To != nil {
   120  		in, out := &in.To, &out.To
   121  		*out = new(corev1.LocalObjectReference)
   122  		**out = **in
   123  	}
   124  	out.ImportPolicy = in.ImportPolicy
   125  	out.ReferencePolicy = in.ReferencePolicy
   126  	return
   127  }
   128  
   129  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageImportSpec.
   130  func (in *ImageImportSpec) DeepCopy() *ImageImportSpec {
   131  	if in == nil {
   132  		return nil
   133  	}
   134  	out := new(ImageImportSpec)
   135  	in.DeepCopyInto(out)
   136  	return out
   137  }
   138  
   139  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   140  func (in *ImageImportStatus) DeepCopyInto(out *ImageImportStatus) {
   141  	*out = *in
   142  	in.Status.DeepCopyInto(&out.Status)
   143  	if in.Image != nil {
   144  		in, out := &in.Image, &out.Image
   145  		*out = new(Image)
   146  		(*in).DeepCopyInto(*out)
   147  	}
   148  	if in.Manifests != nil {
   149  		in, out := &in.Manifests, &out.Manifests
   150  		*out = make([]Image, len(*in))
   151  		for i := range *in {
   152  			(*in)[i].DeepCopyInto(&(*out)[i])
   153  		}
   154  	}
   155  	return
   156  }
   157  
   158  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageImportStatus.
   159  func (in *ImageImportStatus) DeepCopy() *ImageImportStatus {
   160  	if in == nil {
   161  		return nil
   162  	}
   163  	out := new(ImageImportStatus)
   164  	in.DeepCopyInto(out)
   165  	return out
   166  }
   167  
   168  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   169  func (in *ImageLayer) DeepCopyInto(out *ImageLayer) {
   170  	*out = *in
   171  	return
   172  }
   173  
   174  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageLayer.
   175  func (in *ImageLayer) DeepCopy() *ImageLayer {
   176  	if in == nil {
   177  		return nil
   178  	}
   179  	out := new(ImageLayer)
   180  	in.DeepCopyInto(out)
   181  	return out
   182  }
   183  
   184  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   185  func (in *ImageLayerData) DeepCopyInto(out *ImageLayerData) {
   186  	*out = *in
   187  	if in.LayerSize != nil {
   188  		in, out := &in.LayerSize, &out.LayerSize
   189  		*out = new(int64)
   190  		**out = **in
   191  	}
   192  	return
   193  }
   194  
   195  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageLayerData.
   196  func (in *ImageLayerData) DeepCopy() *ImageLayerData {
   197  	if in == nil {
   198  		return nil
   199  	}
   200  	out := new(ImageLayerData)
   201  	in.DeepCopyInto(out)
   202  	return out
   203  }
   204  
   205  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   206  func (in *ImageList) DeepCopyInto(out *ImageList) {
   207  	*out = *in
   208  	out.TypeMeta = in.TypeMeta
   209  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   210  	if in.Items != nil {
   211  		in, out := &in.Items, &out.Items
   212  		*out = make([]Image, len(*in))
   213  		for i := range *in {
   214  			(*in)[i].DeepCopyInto(&(*out)[i])
   215  		}
   216  	}
   217  	return
   218  }
   219  
   220  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageList.
   221  func (in *ImageList) DeepCopy() *ImageList {
   222  	if in == nil {
   223  		return nil
   224  	}
   225  	out := new(ImageList)
   226  	in.DeepCopyInto(out)
   227  	return out
   228  }
   229  
   230  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   231  func (in *ImageList) DeepCopyObject() runtime.Object {
   232  	if c := in.DeepCopy(); c != nil {
   233  		return c
   234  	}
   235  	return nil
   236  }
   237  
   238  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   239  func (in *ImageLookupPolicy) DeepCopyInto(out *ImageLookupPolicy) {
   240  	*out = *in
   241  	return
   242  }
   243  
   244  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageLookupPolicy.
   245  func (in *ImageLookupPolicy) DeepCopy() *ImageLookupPolicy {
   246  	if in == nil {
   247  		return nil
   248  	}
   249  	out := new(ImageLookupPolicy)
   250  	in.DeepCopyInto(out)
   251  	return out
   252  }
   253  
   254  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   255  func (in *ImageManifest) DeepCopyInto(out *ImageManifest) {
   256  	*out = *in
   257  	return
   258  }
   259  
   260  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageManifest.
   261  func (in *ImageManifest) DeepCopy() *ImageManifest {
   262  	if in == nil {
   263  		return nil
   264  	}
   265  	out := new(ImageManifest)
   266  	in.DeepCopyInto(out)
   267  	return out
   268  }
   269  
   270  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   271  func (in *ImageSignature) DeepCopyInto(out *ImageSignature) {
   272  	*out = *in
   273  	out.TypeMeta = in.TypeMeta
   274  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   275  	if in.Content != nil {
   276  		in, out := &in.Content, &out.Content
   277  		*out = make([]byte, len(*in))
   278  		copy(*out, *in)
   279  	}
   280  	if in.Conditions != nil {
   281  		in, out := &in.Conditions, &out.Conditions
   282  		*out = make([]SignatureCondition, len(*in))
   283  		for i := range *in {
   284  			(*in)[i].DeepCopyInto(&(*out)[i])
   285  		}
   286  	}
   287  	if in.SignedClaims != nil {
   288  		in, out := &in.SignedClaims, &out.SignedClaims
   289  		*out = make(map[string]string, len(*in))
   290  		for key, val := range *in {
   291  			(*out)[key] = val
   292  		}
   293  	}
   294  	if in.Created != nil {
   295  		in, out := &in.Created, &out.Created
   296  		*out = (*in).DeepCopy()
   297  	}
   298  	if in.IssuedBy != nil {
   299  		in, out := &in.IssuedBy, &out.IssuedBy
   300  		*out = new(SignatureIssuer)
   301  		**out = **in
   302  	}
   303  	if in.IssuedTo != nil {
   304  		in, out := &in.IssuedTo, &out.IssuedTo
   305  		*out = new(SignatureSubject)
   306  		**out = **in
   307  	}
   308  	return
   309  }
   310  
   311  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageSignature.
   312  func (in *ImageSignature) DeepCopy() *ImageSignature {
   313  	if in == nil {
   314  		return nil
   315  	}
   316  	out := new(ImageSignature)
   317  	in.DeepCopyInto(out)
   318  	return out
   319  }
   320  
   321  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   322  func (in *ImageSignature) DeepCopyObject() runtime.Object {
   323  	if c := in.DeepCopy(); c != nil {
   324  		return c
   325  	}
   326  	return nil
   327  }
   328  
   329  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   330  func (in *ImageStream) DeepCopyInto(out *ImageStream) {
   331  	*out = *in
   332  	out.TypeMeta = in.TypeMeta
   333  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   334  	in.Spec.DeepCopyInto(&out.Spec)
   335  	in.Status.DeepCopyInto(&out.Status)
   336  	return
   337  }
   338  
   339  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStream.
   340  func (in *ImageStream) DeepCopy() *ImageStream {
   341  	if in == nil {
   342  		return nil
   343  	}
   344  	out := new(ImageStream)
   345  	in.DeepCopyInto(out)
   346  	return out
   347  }
   348  
   349  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   350  func (in *ImageStream) DeepCopyObject() runtime.Object {
   351  	if c := in.DeepCopy(); c != nil {
   352  		return c
   353  	}
   354  	return nil
   355  }
   356  
   357  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   358  func (in *ImageStreamImage) DeepCopyInto(out *ImageStreamImage) {
   359  	*out = *in
   360  	out.TypeMeta = in.TypeMeta
   361  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   362  	in.Image.DeepCopyInto(&out.Image)
   363  	return
   364  }
   365  
   366  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamImage.
   367  func (in *ImageStreamImage) DeepCopy() *ImageStreamImage {
   368  	if in == nil {
   369  		return nil
   370  	}
   371  	out := new(ImageStreamImage)
   372  	in.DeepCopyInto(out)
   373  	return out
   374  }
   375  
   376  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   377  func (in *ImageStreamImage) DeepCopyObject() runtime.Object {
   378  	if c := in.DeepCopy(); c != nil {
   379  		return c
   380  	}
   381  	return nil
   382  }
   383  
   384  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   385  func (in *ImageStreamImport) DeepCopyInto(out *ImageStreamImport) {
   386  	*out = *in
   387  	out.TypeMeta = in.TypeMeta
   388  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   389  	in.Spec.DeepCopyInto(&out.Spec)
   390  	in.Status.DeepCopyInto(&out.Status)
   391  	return
   392  }
   393  
   394  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamImport.
   395  func (in *ImageStreamImport) DeepCopy() *ImageStreamImport {
   396  	if in == nil {
   397  		return nil
   398  	}
   399  	out := new(ImageStreamImport)
   400  	in.DeepCopyInto(out)
   401  	return out
   402  }
   403  
   404  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   405  func (in *ImageStreamImport) DeepCopyObject() runtime.Object {
   406  	if c := in.DeepCopy(); c != nil {
   407  		return c
   408  	}
   409  	return nil
   410  }
   411  
   412  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   413  func (in *ImageStreamImportSpec) DeepCopyInto(out *ImageStreamImportSpec) {
   414  	*out = *in
   415  	if in.Repository != nil {
   416  		in, out := &in.Repository, &out.Repository
   417  		*out = new(RepositoryImportSpec)
   418  		**out = **in
   419  	}
   420  	if in.Images != nil {
   421  		in, out := &in.Images, &out.Images
   422  		*out = make([]ImageImportSpec, len(*in))
   423  		for i := range *in {
   424  			(*in)[i].DeepCopyInto(&(*out)[i])
   425  		}
   426  	}
   427  	return
   428  }
   429  
   430  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamImportSpec.
   431  func (in *ImageStreamImportSpec) DeepCopy() *ImageStreamImportSpec {
   432  	if in == nil {
   433  		return nil
   434  	}
   435  	out := new(ImageStreamImportSpec)
   436  	in.DeepCopyInto(out)
   437  	return out
   438  }
   439  
   440  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   441  func (in *ImageStreamImportStatus) DeepCopyInto(out *ImageStreamImportStatus) {
   442  	*out = *in
   443  	if in.Import != nil {
   444  		in, out := &in.Import, &out.Import
   445  		*out = new(ImageStream)
   446  		(*in).DeepCopyInto(*out)
   447  	}
   448  	if in.Repository != nil {
   449  		in, out := &in.Repository, &out.Repository
   450  		*out = new(RepositoryImportStatus)
   451  		(*in).DeepCopyInto(*out)
   452  	}
   453  	if in.Images != nil {
   454  		in, out := &in.Images, &out.Images
   455  		*out = make([]ImageImportStatus, len(*in))
   456  		for i := range *in {
   457  			(*in)[i].DeepCopyInto(&(*out)[i])
   458  		}
   459  	}
   460  	return
   461  }
   462  
   463  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamImportStatus.
   464  func (in *ImageStreamImportStatus) DeepCopy() *ImageStreamImportStatus {
   465  	if in == nil {
   466  		return nil
   467  	}
   468  	out := new(ImageStreamImportStatus)
   469  	in.DeepCopyInto(out)
   470  	return out
   471  }
   472  
   473  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   474  func (in *ImageStreamLayers) DeepCopyInto(out *ImageStreamLayers) {
   475  	*out = *in
   476  	out.TypeMeta = in.TypeMeta
   477  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   478  	if in.Blobs != nil {
   479  		in, out := &in.Blobs, &out.Blobs
   480  		*out = make(map[string]ImageLayerData, len(*in))
   481  		for key, val := range *in {
   482  			(*out)[key] = *val.DeepCopy()
   483  		}
   484  	}
   485  	if in.Images != nil {
   486  		in, out := &in.Images, &out.Images
   487  		*out = make(map[string]ImageBlobReferences, len(*in))
   488  		for key, val := range *in {
   489  			(*out)[key] = *val.DeepCopy()
   490  		}
   491  	}
   492  	return
   493  }
   494  
   495  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamLayers.
   496  func (in *ImageStreamLayers) DeepCopy() *ImageStreamLayers {
   497  	if in == nil {
   498  		return nil
   499  	}
   500  	out := new(ImageStreamLayers)
   501  	in.DeepCopyInto(out)
   502  	return out
   503  }
   504  
   505  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   506  func (in *ImageStreamLayers) DeepCopyObject() runtime.Object {
   507  	if c := in.DeepCopy(); c != nil {
   508  		return c
   509  	}
   510  	return nil
   511  }
   512  
   513  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   514  func (in *ImageStreamList) DeepCopyInto(out *ImageStreamList) {
   515  	*out = *in
   516  	out.TypeMeta = in.TypeMeta
   517  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   518  	if in.Items != nil {
   519  		in, out := &in.Items, &out.Items
   520  		*out = make([]ImageStream, len(*in))
   521  		for i := range *in {
   522  			(*in)[i].DeepCopyInto(&(*out)[i])
   523  		}
   524  	}
   525  	return
   526  }
   527  
   528  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamList.
   529  func (in *ImageStreamList) DeepCopy() *ImageStreamList {
   530  	if in == nil {
   531  		return nil
   532  	}
   533  	out := new(ImageStreamList)
   534  	in.DeepCopyInto(out)
   535  	return out
   536  }
   537  
   538  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   539  func (in *ImageStreamList) DeepCopyObject() runtime.Object {
   540  	if c := in.DeepCopy(); c != nil {
   541  		return c
   542  	}
   543  	return nil
   544  }
   545  
   546  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   547  func (in *ImageStreamMapping) DeepCopyInto(out *ImageStreamMapping) {
   548  	*out = *in
   549  	out.TypeMeta = in.TypeMeta
   550  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   551  	in.Image.DeepCopyInto(&out.Image)
   552  	return
   553  }
   554  
   555  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamMapping.
   556  func (in *ImageStreamMapping) DeepCopy() *ImageStreamMapping {
   557  	if in == nil {
   558  		return nil
   559  	}
   560  	out := new(ImageStreamMapping)
   561  	in.DeepCopyInto(out)
   562  	return out
   563  }
   564  
   565  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   566  func (in *ImageStreamMapping) DeepCopyObject() runtime.Object {
   567  	if c := in.DeepCopy(); c != nil {
   568  		return c
   569  	}
   570  	return nil
   571  }
   572  
   573  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   574  func (in *ImageStreamSpec) DeepCopyInto(out *ImageStreamSpec) {
   575  	*out = *in
   576  	out.LookupPolicy = in.LookupPolicy
   577  	if in.Tags != nil {
   578  		in, out := &in.Tags, &out.Tags
   579  		*out = make([]TagReference, len(*in))
   580  		for i := range *in {
   581  			(*in)[i].DeepCopyInto(&(*out)[i])
   582  		}
   583  	}
   584  	return
   585  }
   586  
   587  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamSpec.
   588  func (in *ImageStreamSpec) DeepCopy() *ImageStreamSpec {
   589  	if in == nil {
   590  		return nil
   591  	}
   592  	out := new(ImageStreamSpec)
   593  	in.DeepCopyInto(out)
   594  	return out
   595  }
   596  
   597  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   598  func (in *ImageStreamStatus) DeepCopyInto(out *ImageStreamStatus) {
   599  	*out = *in
   600  	if in.Tags != nil {
   601  		in, out := &in.Tags, &out.Tags
   602  		*out = make([]NamedTagEventList, len(*in))
   603  		for i := range *in {
   604  			(*in)[i].DeepCopyInto(&(*out)[i])
   605  		}
   606  	}
   607  	return
   608  }
   609  
   610  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamStatus.
   611  func (in *ImageStreamStatus) DeepCopy() *ImageStreamStatus {
   612  	if in == nil {
   613  		return nil
   614  	}
   615  	out := new(ImageStreamStatus)
   616  	in.DeepCopyInto(out)
   617  	return out
   618  }
   619  
   620  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   621  func (in *ImageStreamTag) DeepCopyInto(out *ImageStreamTag) {
   622  	*out = *in
   623  	out.TypeMeta = in.TypeMeta
   624  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   625  	if in.Tag != nil {
   626  		in, out := &in.Tag, &out.Tag
   627  		*out = new(TagReference)
   628  		(*in).DeepCopyInto(*out)
   629  	}
   630  	out.LookupPolicy = in.LookupPolicy
   631  	if in.Conditions != nil {
   632  		in, out := &in.Conditions, &out.Conditions
   633  		*out = make([]TagEventCondition, len(*in))
   634  		for i := range *in {
   635  			(*in)[i].DeepCopyInto(&(*out)[i])
   636  		}
   637  	}
   638  	in.Image.DeepCopyInto(&out.Image)
   639  	return
   640  }
   641  
   642  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamTag.
   643  func (in *ImageStreamTag) DeepCopy() *ImageStreamTag {
   644  	if in == nil {
   645  		return nil
   646  	}
   647  	out := new(ImageStreamTag)
   648  	in.DeepCopyInto(out)
   649  	return out
   650  }
   651  
   652  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   653  func (in *ImageStreamTag) DeepCopyObject() runtime.Object {
   654  	if c := in.DeepCopy(); c != nil {
   655  		return c
   656  	}
   657  	return nil
   658  }
   659  
   660  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   661  func (in *ImageStreamTagList) DeepCopyInto(out *ImageStreamTagList) {
   662  	*out = *in
   663  	out.TypeMeta = in.TypeMeta
   664  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   665  	if in.Items != nil {
   666  		in, out := &in.Items, &out.Items
   667  		*out = make([]ImageStreamTag, len(*in))
   668  		for i := range *in {
   669  			(*in)[i].DeepCopyInto(&(*out)[i])
   670  		}
   671  	}
   672  	return
   673  }
   674  
   675  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStreamTagList.
   676  func (in *ImageStreamTagList) DeepCopy() *ImageStreamTagList {
   677  	if in == nil {
   678  		return nil
   679  	}
   680  	out := new(ImageStreamTagList)
   681  	in.DeepCopyInto(out)
   682  	return out
   683  }
   684  
   685  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   686  func (in *ImageStreamTagList) DeepCopyObject() runtime.Object {
   687  	if c := in.DeepCopy(); c != nil {
   688  		return c
   689  	}
   690  	return nil
   691  }
   692  
   693  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   694  func (in *ImageTag) DeepCopyInto(out *ImageTag) {
   695  	*out = *in
   696  	out.TypeMeta = in.TypeMeta
   697  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   698  	if in.Spec != nil {
   699  		in, out := &in.Spec, &out.Spec
   700  		*out = new(TagReference)
   701  		(*in).DeepCopyInto(*out)
   702  	}
   703  	if in.Status != nil {
   704  		in, out := &in.Status, &out.Status
   705  		*out = new(NamedTagEventList)
   706  		(*in).DeepCopyInto(*out)
   707  	}
   708  	if in.Image != nil {
   709  		in, out := &in.Image, &out.Image
   710  		*out = new(Image)
   711  		(*in).DeepCopyInto(*out)
   712  	}
   713  	return
   714  }
   715  
   716  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageTag.
   717  func (in *ImageTag) DeepCopy() *ImageTag {
   718  	if in == nil {
   719  		return nil
   720  	}
   721  	out := new(ImageTag)
   722  	in.DeepCopyInto(out)
   723  	return out
   724  }
   725  
   726  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   727  func (in *ImageTag) DeepCopyObject() runtime.Object {
   728  	if c := in.DeepCopy(); c != nil {
   729  		return c
   730  	}
   731  	return nil
   732  }
   733  
   734  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   735  func (in *ImageTagList) DeepCopyInto(out *ImageTagList) {
   736  	*out = *in
   737  	out.TypeMeta = in.TypeMeta
   738  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   739  	if in.Items != nil {
   740  		in, out := &in.Items, &out.Items
   741  		*out = make([]ImageTag, len(*in))
   742  		for i := range *in {
   743  			(*in)[i].DeepCopyInto(&(*out)[i])
   744  		}
   745  	}
   746  	return
   747  }
   748  
   749  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageTagList.
   750  func (in *ImageTagList) DeepCopy() *ImageTagList {
   751  	if in == nil {
   752  		return nil
   753  	}
   754  	out := new(ImageTagList)
   755  	in.DeepCopyInto(out)
   756  	return out
   757  }
   758  
   759  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   760  func (in *ImageTagList) DeepCopyObject() runtime.Object {
   761  	if c := in.DeepCopy(); c != nil {
   762  		return c
   763  	}
   764  	return nil
   765  }
   766  
   767  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   768  func (in *NamedTagEventList) DeepCopyInto(out *NamedTagEventList) {
   769  	*out = *in
   770  	if in.Items != nil {
   771  		in, out := &in.Items, &out.Items
   772  		*out = make([]TagEvent, len(*in))
   773  		for i := range *in {
   774  			(*in)[i].DeepCopyInto(&(*out)[i])
   775  		}
   776  	}
   777  	if in.Conditions != nil {
   778  		in, out := &in.Conditions, &out.Conditions
   779  		*out = make([]TagEventCondition, len(*in))
   780  		for i := range *in {
   781  			(*in)[i].DeepCopyInto(&(*out)[i])
   782  		}
   783  	}
   784  	return
   785  }
   786  
   787  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamedTagEventList.
   788  func (in *NamedTagEventList) DeepCopy() *NamedTagEventList {
   789  	if in == nil {
   790  		return nil
   791  	}
   792  	out := new(NamedTagEventList)
   793  	in.DeepCopyInto(out)
   794  	return out
   795  }
   796  
   797  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   798  func (in *RepositoryImportSpec) DeepCopyInto(out *RepositoryImportSpec) {
   799  	*out = *in
   800  	out.From = in.From
   801  	out.ImportPolicy = in.ImportPolicy
   802  	out.ReferencePolicy = in.ReferencePolicy
   803  	return
   804  }
   805  
   806  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryImportSpec.
   807  func (in *RepositoryImportSpec) DeepCopy() *RepositoryImportSpec {
   808  	if in == nil {
   809  		return nil
   810  	}
   811  	out := new(RepositoryImportSpec)
   812  	in.DeepCopyInto(out)
   813  	return out
   814  }
   815  
   816  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   817  func (in *RepositoryImportStatus) DeepCopyInto(out *RepositoryImportStatus) {
   818  	*out = *in
   819  	in.Status.DeepCopyInto(&out.Status)
   820  	if in.Images != nil {
   821  		in, out := &in.Images, &out.Images
   822  		*out = make([]ImageImportStatus, len(*in))
   823  		for i := range *in {
   824  			(*in)[i].DeepCopyInto(&(*out)[i])
   825  		}
   826  	}
   827  	if in.AdditionalTags != nil {
   828  		in, out := &in.AdditionalTags, &out.AdditionalTags
   829  		*out = make([]string, len(*in))
   830  		copy(*out, *in)
   831  	}
   832  	return
   833  }
   834  
   835  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryImportStatus.
   836  func (in *RepositoryImportStatus) DeepCopy() *RepositoryImportStatus {
   837  	if in == nil {
   838  		return nil
   839  	}
   840  	out := new(RepositoryImportStatus)
   841  	in.DeepCopyInto(out)
   842  	return out
   843  }
   844  
   845  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   846  func (in *SecretList) DeepCopyInto(out *SecretList) {
   847  	*out = *in
   848  	out.TypeMeta = in.TypeMeta
   849  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   850  	if in.Items != nil {
   851  		in, out := &in.Items, &out.Items
   852  		*out = make([]corev1.Secret, len(*in))
   853  		for i := range *in {
   854  			(*in)[i].DeepCopyInto(&(*out)[i])
   855  		}
   856  	}
   857  	return
   858  }
   859  
   860  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretList.
   861  func (in *SecretList) DeepCopy() *SecretList {
   862  	if in == nil {
   863  		return nil
   864  	}
   865  	out := new(SecretList)
   866  	in.DeepCopyInto(out)
   867  	return out
   868  }
   869  
   870  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   871  func (in *SecretList) DeepCopyObject() runtime.Object {
   872  	if c := in.DeepCopy(); c != nil {
   873  		return c
   874  	}
   875  	return nil
   876  }
   877  
   878  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   879  func (in *SignatureCondition) DeepCopyInto(out *SignatureCondition) {
   880  	*out = *in
   881  	in.LastProbeTime.DeepCopyInto(&out.LastProbeTime)
   882  	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
   883  	return
   884  }
   885  
   886  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SignatureCondition.
   887  func (in *SignatureCondition) DeepCopy() *SignatureCondition {
   888  	if in == nil {
   889  		return nil
   890  	}
   891  	out := new(SignatureCondition)
   892  	in.DeepCopyInto(out)
   893  	return out
   894  }
   895  
   896  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   897  func (in *SignatureGenericEntity) DeepCopyInto(out *SignatureGenericEntity) {
   898  	*out = *in
   899  	return
   900  }
   901  
   902  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SignatureGenericEntity.
   903  func (in *SignatureGenericEntity) DeepCopy() *SignatureGenericEntity {
   904  	if in == nil {
   905  		return nil
   906  	}
   907  	out := new(SignatureGenericEntity)
   908  	in.DeepCopyInto(out)
   909  	return out
   910  }
   911  
   912  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   913  func (in *SignatureIssuer) DeepCopyInto(out *SignatureIssuer) {
   914  	*out = *in
   915  	out.SignatureGenericEntity = in.SignatureGenericEntity
   916  	return
   917  }
   918  
   919  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SignatureIssuer.
   920  func (in *SignatureIssuer) DeepCopy() *SignatureIssuer {
   921  	if in == nil {
   922  		return nil
   923  	}
   924  	out := new(SignatureIssuer)
   925  	in.DeepCopyInto(out)
   926  	return out
   927  }
   928  
   929  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   930  func (in *SignatureSubject) DeepCopyInto(out *SignatureSubject) {
   931  	*out = *in
   932  	out.SignatureGenericEntity = in.SignatureGenericEntity
   933  	return
   934  }
   935  
   936  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SignatureSubject.
   937  func (in *SignatureSubject) DeepCopy() *SignatureSubject {
   938  	if in == nil {
   939  		return nil
   940  	}
   941  	out := new(SignatureSubject)
   942  	in.DeepCopyInto(out)
   943  	return out
   944  }
   945  
   946  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   947  func (in *TagEvent) DeepCopyInto(out *TagEvent) {
   948  	*out = *in
   949  	in.Created.DeepCopyInto(&out.Created)
   950  	return
   951  }
   952  
   953  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagEvent.
   954  func (in *TagEvent) DeepCopy() *TagEvent {
   955  	if in == nil {
   956  		return nil
   957  	}
   958  	out := new(TagEvent)
   959  	in.DeepCopyInto(out)
   960  	return out
   961  }
   962  
   963  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   964  func (in *TagEventCondition) DeepCopyInto(out *TagEventCondition) {
   965  	*out = *in
   966  	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
   967  	return
   968  }
   969  
   970  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagEventCondition.
   971  func (in *TagEventCondition) DeepCopy() *TagEventCondition {
   972  	if in == nil {
   973  		return nil
   974  	}
   975  	out := new(TagEventCondition)
   976  	in.DeepCopyInto(out)
   977  	return out
   978  }
   979  
   980  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   981  func (in *TagImportPolicy) DeepCopyInto(out *TagImportPolicy) {
   982  	*out = *in
   983  	return
   984  }
   985  
   986  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagImportPolicy.
   987  func (in *TagImportPolicy) DeepCopy() *TagImportPolicy {
   988  	if in == nil {
   989  		return nil
   990  	}
   991  	out := new(TagImportPolicy)
   992  	in.DeepCopyInto(out)
   993  	return out
   994  }
   995  
   996  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   997  func (in *TagReference) DeepCopyInto(out *TagReference) {
   998  	*out = *in
   999  	if in.Annotations != nil {
  1000  		in, out := &in.Annotations, &out.Annotations
  1001  		*out = make(map[string]string, len(*in))
  1002  		for key, val := range *in {
  1003  			(*out)[key] = val
  1004  		}
  1005  	}
  1006  	if in.From != nil {
  1007  		in, out := &in.From, &out.From
  1008  		*out = new(corev1.ObjectReference)
  1009  		**out = **in
  1010  	}
  1011  	if in.Generation != nil {
  1012  		in, out := &in.Generation, &out.Generation
  1013  		*out = new(int64)
  1014  		**out = **in
  1015  	}
  1016  	out.ImportPolicy = in.ImportPolicy
  1017  	out.ReferencePolicy = in.ReferencePolicy
  1018  	return
  1019  }
  1020  
  1021  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagReference.
  1022  func (in *TagReference) DeepCopy() *TagReference {
  1023  	if in == nil {
  1024  		return nil
  1025  	}
  1026  	out := new(TagReference)
  1027  	in.DeepCopyInto(out)
  1028  	return out
  1029  }
  1030  
  1031  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1032  func (in *TagReferencePolicy) DeepCopyInto(out *TagReferencePolicy) {
  1033  	*out = *in
  1034  	return
  1035  }
  1036  
  1037  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagReferencePolicy.
  1038  func (in *TagReferencePolicy) DeepCopy() *TagReferencePolicy {
  1039  	if in == nil {
  1040  		return nil
  1041  	}
  1042  	out := new(TagReferencePolicy)
  1043  	in.DeepCopyInto(out)
  1044  	return out
  1045  }
  1046  

View as plain text