...

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

Documentation: github.com/openshift/api/console/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  	authorizationv1 "k8s.io/api/authorization/v1"
    10  	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    11  	runtime "k8s.io/apimachinery/pkg/runtime"
    12  )
    13  
    14  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    15  func (in *ApplicationMenuSpec) DeepCopyInto(out *ApplicationMenuSpec) {
    16  	*out = *in
    17  	return
    18  }
    19  
    20  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationMenuSpec.
    21  func (in *ApplicationMenuSpec) DeepCopy() *ApplicationMenuSpec {
    22  	if in == nil {
    23  		return nil
    24  	}
    25  	out := new(ApplicationMenuSpec)
    26  	in.DeepCopyInto(out)
    27  	return out
    28  }
    29  
    30  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    31  func (in *CLIDownloadLink) DeepCopyInto(out *CLIDownloadLink) {
    32  	*out = *in
    33  	return
    34  }
    35  
    36  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CLIDownloadLink.
    37  func (in *CLIDownloadLink) DeepCopy() *CLIDownloadLink {
    38  	if in == nil {
    39  		return nil
    40  	}
    41  	out := new(CLIDownloadLink)
    42  	in.DeepCopyInto(out)
    43  	return out
    44  }
    45  
    46  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    47  func (in *ConsoleCLIDownload) DeepCopyInto(out *ConsoleCLIDownload) {
    48  	*out = *in
    49  	out.TypeMeta = in.TypeMeta
    50  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    51  	in.Spec.DeepCopyInto(&out.Spec)
    52  	return
    53  }
    54  
    55  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleCLIDownload.
    56  func (in *ConsoleCLIDownload) DeepCopy() *ConsoleCLIDownload {
    57  	if in == nil {
    58  		return nil
    59  	}
    60  	out := new(ConsoleCLIDownload)
    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 *ConsoleCLIDownload) 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 *ConsoleCLIDownloadList) DeepCopyInto(out *ConsoleCLIDownloadList) {
    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([]ConsoleCLIDownload, 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 ConsoleCLIDownloadList.
    89  func (in *ConsoleCLIDownloadList) DeepCopy() *ConsoleCLIDownloadList {
    90  	if in == nil {
    91  		return nil
    92  	}
    93  	out := new(ConsoleCLIDownloadList)
    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 *ConsoleCLIDownloadList) 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 *ConsoleCLIDownloadSpec) DeepCopyInto(out *ConsoleCLIDownloadSpec) {
   108  	*out = *in
   109  	if in.Links != nil {
   110  		in, out := &in.Links, &out.Links
   111  		*out = make([]CLIDownloadLink, len(*in))
   112  		copy(*out, *in)
   113  	}
   114  	return
   115  }
   116  
   117  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleCLIDownloadSpec.
   118  func (in *ConsoleCLIDownloadSpec) DeepCopy() *ConsoleCLIDownloadSpec {
   119  	if in == nil {
   120  		return nil
   121  	}
   122  	out := new(ConsoleCLIDownloadSpec)
   123  	in.DeepCopyInto(out)
   124  	return out
   125  }
   126  
   127  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   128  func (in *ConsoleExternalLogLink) DeepCopyInto(out *ConsoleExternalLogLink) {
   129  	*out = *in
   130  	out.TypeMeta = in.TypeMeta
   131  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   132  	out.Spec = in.Spec
   133  	return
   134  }
   135  
   136  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleExternalLogLink.
   137  func (in *ConsoleExternalLogLink) DeepCopy() *ConsoleExternalLogLink {
   138  	if in == nil {
   139  		return nil
   140  	}
   141  	out := new(ConsoleExternalLogLink)
   142  	in.DeepCopyInto(out)
   143  	return out
   144  }
   145  
   146  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   147  func (in *ConsoleExternalLogLink) DeepCopyObject() runtime.Object {
   148  	if c := in.DeepCopy(); c != nil {
   149  		return c
   150  	}
   151  	return nil
   152  }
   153  
   154  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   155  func (in *ConsoleExternalLogLinkList) DeepCopyInto(out *ConsoleExternalLogLinkList) {
   156  	*out = *in
   157  	out.TypeMeta = in.TypeMeta
   158  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   159  	if in.Items != nil {
   160  		in, out := &in.Items, &out.Items
   161  		*out = make([]ConsoleExternalLogLink, len(*in))
   162  		for i := range *in {
   163  			(*in)[i].DeepCopyInto(&(*out)[i])
   164  		}
   165  	}
   166  	return
   167  }
   168  
   169  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleExternalLogLinkList.
   170  func (in *ConsoleExternalLogLinkList) DeepCopy() *ConsoleExternalLogLinkList {
   171  	if in == nil {
   172  		return nil
   173  	}
   174  	out := new(ConsoleExternalLogLinkList)
   175  	in.DeepCopyInto(out)
   176  	return out
   177  }
   178  
   179  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   180  func (in *ConsoleExternalLogLinkList) DeepCopyObject() runtime.Object {
   181  	if c := in.DeepCopy(); c != nil {
   182  		return c
   183  	}
   184  	return nil
   185  }
   186  
   187  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   188  func (in *ConsoleExternalLogLinkSpec) DeepCopyInto(out *ConsoleExternalLogLinkSpec) {
   189  	*out = *in
   190  	return
   191  }
   192  
   193  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleExternalLogLinkSpec.
   194  func (in *ConsoleExternalLogLinkSpec) DeepCopy() *ConsoleExternalLogLinkSpec {
   195  	if in == nil {
   196  		return nil
   197  	}
   198  	out := new(ConsoleExternalLogLinkSpec)
   199  	in.DeepCopyInto(out)
   200  	return out
   201  }
   202  
   203  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   204  func (in *ConsoleLink) DeepCopyInto(out *ConsoleLink) {
   205  	*out = *in
   206  	out.TypeMeta = in.TypeMeta
   207  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   208  	in.Spec.DeepCopyInto(&out.Spec)
   209  	return
   210  }
   211  
   212  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleLink.
   213  func (in *ConsoleLink) DeepCopy() *ConsoleLink {
   214  	if in == nil {
   215  		return nil
   216  	}
   217  	out := new(ConsoleLink)
   218  	in.DeepCopyInto(out)
   219  	return out
   220  }
   221  
   222  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   223  func (in *ConsoleLink) DeepCopyObject() runtime.Object {
   224  	if c := in.DeepCopy(); c != nil {
   225  		return c
   226  	}
   227  	return nil
   228  }
   229  
   230  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   231  func (in *ConsoleLinkList) DeepCopyInto(out *ConsoleLinkList) {
   232  	*out = *in
   233  	out.TypeMeta = in.TypeMeta
   234  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   235  	if in.Items != nil {
   236  		in, out := &in.Items, &out.Items
   237  		*out = make([]ConsoleLink, len(*in))
   238  		for i := range *in {
   239  			(*in)[i].DeepCopyInto(&(*out)[i])
   240  		}
   241  	}
   242  	return
   243  }
   244  
   245  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleLinkList.
   246  func (in *ConsoleLinkList) DeepCopy() *ConsoleLinkList {
   247  	if in == nil {
   248  		return nil
   249  	}
   250  	out := new(ConsoleLinkList)
   251  	in.DeepCopyInto(out)
   252  	return out
   253  }
   254  
   255  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   256  func (in *ConsoleLinkList) DeepCopyObject() runtime.Object {
   257  	if c := in.DeepCopy(); c != nil {
   258  		return c
   259  	}
   260  	return nil
   261  }
   262  
   263  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   264  func (in *ConsoleLinkSpec) DeepCopyInto(out *ConsoleLinkSpec) {
   265  	*out = *in
   266  	out.Link = in.Link
   267  	if in.ApplicationMenu != nil {
   268  		in, out := &in.ApplicationMenu, &out.ApplicationMenu
   269  		*out = new(ApplicationMenuSpec)
   270  		**out = **in
   271  	}
   272  	if in.NamespaceDashboard != nil {
   273  		in, out := &in.NamespaceDashboard, &out.NamespaceDashboard
   274  		*out = new(NamespaceDashboardSpec)
   275  		(*in).DeepCopyInto(*out)
   276  	}
   277  	return
   278  }
   279  
   280  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleLinkSpec.
   281  func (in *ConsoleLinkSpec) DeepCopy() *ConsoleLinkSpec {
   282  	if in == nil {
   283  		return nil
   284  	}
   285  	out := new(ConsoleLinkSpec)
   286  	in.DeepCopyInto(out)
   287  	return out
   288  }
   289  
   290  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   291  func (in *ConsoleNotification) DeepCopyInto(out *ConsoleNotification) {
   292  	*out = *in
   293  	out.TypeMeta = in.TypeMeta
   294  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   295  	in.Spec.DeepCopyInto(&out.Spec)
   296  	return
   297  }
   298  
   299  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleNotification.
   300  func (in *ConsoleNotification) DeepCopy() *ConsoleNotification {
   301  	if in == nil {
   302  		return nil
   303  	}
   304  	out := new(ConsoleNotification)
   305  	in.DeepCopyInto(out)
   306  	return out
   307  }
   308  
   309  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   310  func (in *ConsoleNotification) DeepCopyObject() runtime.Object {
   311  	if c := in.DeepCopy(); c != nil {
   312  		return c
   313  	}
   314  	return nil
   315  }
   316  
   317  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   318  func (in *ConsoleNotificationList) DeepCopyInto(out *ConsoleNotificationList) {
   319  	*out = *in
   320  	out.TypeMeta = in.TypeMeta
   321  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   322  	if in.Items != nil {
   323  		in, out := &in.Items, &out.Items
   324  		*out = make([]ConsoleNotification, len(*in))
   325  		for i := range *in {
   326  			(*in)[i].DeepCopyInto(&(*out)[i])
   327  		}
   328  	}
   329  	return
   330  }
   331  
   332  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleNotificationList.
   333  func (in *ConsoleNotificationList) DeepCopy() *ConsoleNotificationList {
   334  	if in == nil {
   335  		return nil
   336  	}
   337  	out := new(ConsoleNotificationList)
   338  	in.DeepCopyInto(out)
   339  	return out
   340  }
   341  
   342  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   343  func (in *ConsoleNotificationList) DeepCopyObject() runtime.Object {
   344  	if c := in.DeepCopy(); c != nil {
   345  		return c
   346  	}
   347  	return nil
   348  }
   349  
   350  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   351  func (in *ConsoleNotificationSpec) DeepCopyInto(out *ConsoleNotificationSpec) {
   352  	*out = *in
   353  	if in.Link != nil {
   354  		in, out := &in.Link, &out.Link
   355  		*out = new(Link)
   356  		**out = **in
   357  	}
   358  	return
   359  }
   360  
   361  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleNotificationSpec.
   362  func (in *ConsoleNotificationSpec) DeepCopy() *ConsoleNotificationSpec {
   363  	if in == nil {
   364  		return nil
   365  	}
   366  	out := new(ConsoleNotificationSpec)
   367  	in.DeepCopyInto(out)
   368  	return out
   369  }
   370  
   371  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   372  func (in *ConsolePlugin) DeepCopyInto(out *ConsolePlugin) {
   373  	*out = *in
   374  	out.TypeMeta = in.TypeMeta
   375  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   376  	in.Spec.DeepCopyInto(&out.Spec)
   377  	return
   378  }
   379  
   380  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePlugin.
   381  func (in *ConsolePlugin) DeepCopy() *ConsolePlugin {
   382  	if in == nil {
   383  		return nil
   384  	}
   385  	out := new(ConsolePlugin)
   386  	in.DeepCopyInto(out)
   387  	return out
   388  }
   389  
   390  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   391  func (in *ConsolePlugin) DeepCopyObject() runtime.Object {
   392  	if c := in.DeepCopy(); c != nil {
   393  		return c
   394  	}
   395  	return nil
   396  }
   397  
   398  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   399  func (in *ConsolePluginBackend) DeepCopyInto(out *ConsolePluginBackend) {
   400  	*out = *in
   401  	if in.Service != nil {
   402  		in, out := &in.Service, &out.Service
   403  		*out = new(ConsolePluginService)
   404  		**out = **in
   405  	}
   406  	return
   407  }
   408  
   409  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginBackend.
   410  func (in *ConsolePluginBackend) DeepCopy() *ConsolePluginBackend {
   411  	if in == nil {
   412  		return nil
   413  	}
   414  	out := new(ConsolePluginBackend)
   415  	in.DeepCopyInto(out)
   416  	return out
   417  }
   418  
   419  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   420  func (in *ConsolePluginI18n) DeepCopyInto(out *ConsolePluginI18n) {
   421  	*out = *in
   422  	return
   423  }
   424  
   425  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginI18n.
   426  func (in *ConsolePluginI18n) DeepCopy() *ConsolePluginI18n {
   427  	if in == nil {
   428  		return nil
   429  	}
   430  	out := new(ConsolePluginI18n)
   431  	in.DeepCopyInto(out)
   432  	return out
   433  }
   434  
   435  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   436  func (in *ConsolePluginList) DeepCopyInto(out *ConsolePluginList) {
   437  	*out = *in
   438  	out.TypeMeta = in.TypeMeta
   439  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   440  	if in.Items != nil {
   441  		in, out := &in.Items, &out.Items
   442  		*out = make([]ConsolePlugin, len(*in))
   443  		for i := range *in {
   444  			(*in)[i].DeepCopyInto(&(*out)[i])
   445  		}
   446  	}
   447  	return
   448  }
   449  
   450  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginList.
   451  func (in *ConsolePluginList) DeepCopy() *ConsolePluginList {
   452  	if in == nil {
   453  		return nil
   454  	}
   455  	out := new(ConsolePluginList)
   456  	in.DeepCopyInto(out)
   457  	return out
   458  }
   459  
   460  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   461  func (in *ConsolePluginList) DeepCopyObject() runtime.Object {
   462  	if c := in.DeepCopy(); c != nil {
   463  		return c
   464  	}
   465  	return nil
   466  }
   467  
   468  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   469  func (in *ConsolePluginProxy) DeepCopyInto(out *ConsolePluginProxy) {
   470  	*out = *in
   471  	in.Endpoint.DeepCopyInto(&out.Endpoint)
   472  	return
   473  }
   474  
   475  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginProxy.
   476  func (in *ConsolePluginProxy) DeepCopy() *ConsolePluginProxy {
   477  	if in == nil {
   478  		return nil
   479  	}
   480  	out := new(ConsolePluginProxy)
   481  	in.DeepCopyInto(out)
   482  	return out
   483  }
   484  
   485  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   486  func (in *ConsolePluginProxyEndpoint) DeepCopyInto(out *ConsolePluginProxyEndpoint) {
   487  	*out = *in
   488  	if in.Service != nil {
   489  		in, out := &in.Service, &out.Service
   490  		*out = new(ConsolePluginProxyServiceConfig)
   491  		**out = **in
   492  	}
   493  	return
   494  }
   495  
   496  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginProxyEndpoint.
   497  func (in *ConsolePluginProxyEndpoint) DeepCopy() *ConsolePluginProxyEndpoint {
   498  	if in == nil {
   499  		return nil
   500  	}
   501  	out := new(ConsolePluginProxyEndpoint)
   502  	in.DeepCopyInto(out)
   503  	return out
   504  }
   505  
   506  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   507  func (in *ConsolePluginProxyServiceConfig) DeepCopyInto(out *ConsolePluginProxyServiceConfig) {
   508  	*out = *in
   509  	return
   510  }
   511  
   512  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginProxyServiceConfig.
   513  func (in *ConsolePluginProxyServiceConfig) DeepCopy() *ConsolePluginProxyServiceConfig {
   514  	if in == nil {
   515  		return nil
   516  	}
   517  	out := new(ConsolePluginProxyServiceConfig)
   518  	in.DeepCopyInto(out)
   519  	return out
   520  }
   521  
   522  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   523  func (in *ConsolePluginService) DeepCopyInto(out *ConsolePluginService) {
   524  	*out = *in
   525  	return
   526  }
   527  
   528  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginService.
   529  func (in *ConsolePluginService) DeepCopy() *ConsolePluginService {
   530  	if in == nil {
   531  		return nil
   532  	}
   533  	out := new(ConsolePluginService)
   534  	in.DeepCopyInto(out)
   535  	return out
   536  }
   537  
   538  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   539  func (in *ConsolePluginSpec) DeepCopyInto(out *ConsolePluginSpec) {
   540  	*out = *in
   541  	in.Backend.DeepCopyInto(&out.Backend)
   542  	if in.Proxy != nil {
   543  		in, out := &in.Proxy, &out.Proxy
   544  		*out = make([]ConsolePluginProxy, len(*in))
   545  		for i := range *in {
   546  			(*in)[i].DeepCopyInto(&(*out)[i])
   547  		}
   548  	}
   549  	out.I18n = in.I18n
   550  	return
   551  }
   552  
   553  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsolePluginSpec.
   554  func (in *ConsolePluginSpec) DeepCopy() *ConsolePluginSpec {
   555  	if in == nil {
   556  		return nil
   557  	}
   558  	out := new(ConsolePluginSpec)
   559  	in.DeepCopyInto(out)
   560  	return out
   561  }
   562  
   563  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   564  func (in *ConsoleQuickStart) DeepCopyInto(out *ConsoleQuickStart) {
   565  	*out = *in
   566  	out.TypeMeta = in.TypeMeta
   567  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   568  	in.Spec.DeepCopyInto(&out.Spec)
   569  	return
   570  }
   571  
   572  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStart.
   573  func (in *ConsoleQuickStart) DeepCopy() *ConsoleQuickStart {
   574  	if in == nil {
   575  		return nil
   576  	}
   577  	out := new(ConsoleQuickStart)
   578  	in.DeepCopyInto(out)
   579  	return out
   580  }
   581  
   582  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   583  func (in *ConsoleQuickStart) DeepCopyObject() runtime.Object {
   584  	if c := in.DeepCopy(); c != nil {
   585  		return c
   586  	}
   587  	return nil
   588  }
   589  
   590  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   591  func (in *ConsoleQuickStartList) DeepCopyInto(out *ConsoleQuickStartList) {
   592  	*out = *in
   593  	out.TypeMeta = in.TypeMeta
   594  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   595  	if in.Items != nil {
   596  		in, out := &in.Items, &out.Items
   597  		*out = make([]ConsoleQuickStart, len(*in))
   598  		for i := range *in {
   599  			(*in)[i].DeepCopyInto(&(*out)[i])
   600  		}
   601  	}
   602  	return
   603  }
   604  
   605  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStartList.
   606  func (in *ConsoleQuickStartList) DeepCopy() *ConsoleQuickStartList {
   607  	if in == nil {
   608  		return nil
   609  	}
   610  	out := new(ConsoleQuickStartList)
   611  	in.DeepCopyInto(out)
   612  	return out
   613  }
   614  
   615  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   616  func (in *ConsoleQuickStartList) DeepCopyObject() runtime.Object {
   617  	if c := in.DeepCopy(); c != nil {
   618  		return c
   619  	}
   620  	return nil
   621  }
   622  
   623  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   624  func (in *ConsoleQuickStartSpec) DeepCopyInto(out *ConsoleQuickStartSpec) {
   625  	*out = *in
   626  	if in.Tags != nil {
   627  		in, out := &in.Tags, &out.Tags
   628  		*out = make([]string, len(*in))
   629  		copy(*out, *in)
   630  	}
   631  	if in.Prerequisites != nil {
   632  		in, out := &in.Prerequisites, &out.Prerequisites
   633  		*out = make([]string, len(*in))
   634  		copy(*out, *in)
   635  	}
   636  	if in.Tasks != nil {
   637  		in, out := &in.Tasks, &out.Tasks
   638  		*out = make([]ConsoleQuickStartTask, len(*in))
   639  		for i := range *in {
   640  			(*in)[i].DeepCopyInto(&(*out)[i])
   641  		}
   642  	}
   643  	if in.NextQuickStart != nil {
   644  		in, out := &in.NextQuickStart, &out.NextQuickStart
   645  		*out = make([]string, len(*in))
   646  		copy(*out, *in)
   647  	}
   648  	if in.AccessReviewResources != nil {
   649  		in, out := &in.AccessReviewResources, &out.AccessReviewResources
   650  		*out = make([]authorizationv1.ResourceAttributes, len(*in))
   651  		copy(*out, *in)
   652  	}
   653  	return
   654  }
   655  
   656  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStartSpec.
   657  func (in *ConsoleQuickStartSpec) DeepCopy() *ConsoleQuickStartSpec {
   658  	if in == nil {
   659  		return nil
   660  	}
   661  	out := new(ConsoleQuickStartSpec)
   662  	in.DeepCopyInto(out)
   663  	return out
   664  }
   665  
   666  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   667  func (in *ConsoleQuickStartTask) DeepCopyInto(out *ConsoleQuickStartTask) {
   668  	*out = *in
   669  	if in.Review != nil {
   670  		in, out := &in.Review, &out.Review
   671  		*out = new(ConsoleQuickStartTaskReview)
   672  		**out = **in
   673  	}
   674  	if in.Summary != nil {
   675  		in, out := &in.Summary, &out.Summary
   676  		*out = new(ConsoleQuickStartTaskSummary)
   677  		**out = **in
   678  	}
   679  	return
   680  }
   681  
   682  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStartTask.
   683  func (in *ConsoleQuickStartTask) DeepCopy() *ConsoleQuickStartTask {
   684  	if in == nil {
   685  		return nil
   686  	}
   687  	out := new(ConsoleQuickStartTask)
   688  	in.DeepCopyInto(out)
   689  	return out
   690  }
   691  
   692  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   693  func (in *ConsoleQuickStartTaskReview) DeepCopyInto(out *ConsoleQuickStartTaskReview) {
   694  	*out = *in
   695  	return
   696  }
   697  
   698  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStartTaskReview.
   699  func (in *ConsoleQuickStartTaskReview) DeepCopy() *ConsoleQuickStartTaskReview {
   700  	if in == nil {
   701  		return nil
   702  	}
   703  	out := new(ConsoleQuickStartTaskReview)
   704  	in.DeepCopyInto(out)
   705  	return out
   706  }
   707  
   708  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   709  func (in *ConsoleQuickStartTaskSummary) DeepCopyInto(out *ConsoleQuickStartTaskSummary) {
   710  	*out = *in
   711  	return
   712  }
   713  
   714  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleQuickStartTaskSummary.
   715  func (in *ConsoleQuickStartTaskSummary) DeepCopy() *ConsoleQuickStartTaskSummary {
   716  	if in == nil {
   717  		return nil
   718  	}
   719  	out := new(ConsoleQuickStartTaskSummary)
   720  	in.DeepCopyInto(out)
   721  	return out
   722  }
   723  
   724  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   725  func (in *ConsoleYAMLSample) DeepCopyInto(out *ConsoleYAMLSample) {
   726  	*out = *in
   727  	out.TypeMeta = in.TypeMeta
   728  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   729  	out.Spec = in.Spec
   730  	return
   731  }
   732  
   733  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleYAMLSample.
   734  func (in *ConsoleYAMLSample) DeepCopy() *ConsoleYAMLSample {
   735  	if in == nil {
   736  		return nil
   737  	}
   738  	out := new(ConsoleYAMLSample)
   739  	in.DeepCopyInto(out)
   740  	return out
   741  }
   742  
   743  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   744  func (in *ConsoleYAMLSample) DeepCopyObject() runtime.Object {
   745  	if c := in.DeepCopy(); c != nil {
   746  		return c
   747  	}
   748  	return nil
   749  }
   750  
   751  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   752  func (in *ConsoleYAMLSampleList) DeepCopyInto(out *ConsoleYAMLSampleList) {
   753  	*out = *in
   754  	out.TypeMeta = in.TypeMeta
   755  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   756  	if in.Items != nil {
   757  		in, out := &in.Items, &out.Items
   758  		*out = make([]ConsoleYAMLSample, len(*in))
   759  		for i := range *in {
   760  			(*in)[i].DeepCopyInto(&(*out)[i])
   761  		}
   762  	}
   763  	return
   764  }
   765  
   766  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleYAMLSampleList.
   767  func (in *ConsoleYAMLSampleList) DeepCopy() *ConsoleYAMLSampleList {
   768  	if in == nil {
   769  		return nil
   770  	}
   771  	out := new(ConsoleYAMLSampleList)
   772  	in.DeepCopyInto(out)
   773  	return out
   774  }
   775  
   776  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   777  func (in *ConsoleYAMLSampleList) DeepCopyObject() runtime.Object {
   778  	if c := in.DeepCopy(); c != nil {
   779  		return c
   780  	}
   781  	return nil
   782  }
   783  
   784  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   785  func (in *ConsoleYAMLSampleSpec) DeepCopyInto(out *ConsoleYAMLSampleSpec) {
   786  	*out = *in
   787  	out.TargetResource = in.TargetResource
   788  	return
   789  }
   790  
   791  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleYAMLSampleSpec.
   792  func (in *ConsoleYAMLSampleSpec) DeepCopy() *ConsoleYAMLSampleSpec {
   793  	if in == nil {
   794  		return nil
   795  	}
   796  	out := new(ConsoleYAMLSampleSpec)
   797  	in.DeepCopyInto(out)
   798  	return out
   799  }
   800  
   801  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   802  func (in *Link) DeepCopyInto(out *Link) {
   803  	*out = *in
   804  	return
   805  }
   806  
   807  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Link.
   808  func (in *Link) DeepCopy() *Link {
   809  	if in == nil {
   810  		return nil
   811  	}
   812  	out := new(Link)
   813  	in.DeepCopyInto(out)
   814  	return out
   815  }
   816  
   817  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   818  func (in *NamespaceDashboardSpec) DeepCopyInto(out *NamespaceDashboardSpec) {
   819  	*out = *in
   820  	if in.Namespaces != nil {
   821  		in, out := &in.Namespaces, &out.Namespaces
   822  		*out = make([]string, len(*in))
   823  		copy(*out, *in)
   824  	}
   825  	if in.NamespaceSelector != nil {
   826  		in, out := &in.NamespaceSelector, &out.NamespaceSelector
   827  		*out = new(metav1.LabelSelector)
   828  		(*in).DeepCopyInto(*out)
   829  	}
   830  	return
   831  }
   832  
   833  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamespaceDashboardSpec.
   834  func (in *NamespaceDashboardSpec) DeepCopy() *NamespaceDashboardSpec {
   835  	if in == nil {
   836  		return nil
   837  	}
   838  	out := new(NamespaceDashboardSpec)
   839  	in.DeepCopyInto(out)
   840  	return out
   841  }
   842  

View as plain text