...

Source file src/github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/cloudasset/v1alpha1/zz_generated.deepcopy.go

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/cloudasset/v1alpha1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  // Copyright 2020 Google LLC
     5  //
     6  // Licensed under the Apache License, Version 2.0 (the "License");
     7  // you may not use this file except in compliance with the License.
     8  // You may obtain a copy of the License at
     9  //
    10  //     http://www.apache.org/licenses/LICENSE-2.0
    11  //
    12  // Unless required by applicable law or agreed to in writing, software
    13  // distributed under the License is distributed on an "AS IS" BASIS,
    14  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15  // See the License for the specific language governing permissions and
    16  // limitations under the License.
    17  
    18  // *** DISCLAIMER ***
    19  // Config Connector's go-client for CRDs is currently in ALPHA, which means
    20  // that future versions of the go-client may include breaking changes.
    21  // Please try it out and give us feedback!
    22  
    23  // Code generated by main. DO NOT EDIT.
    24  
    25  package v1alpha1
    26  
    27  import (
    28  	k8sv1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/k8s/v1alpha1"
    29  	runtime "k8s.io/apimachinery/pkg/runtime"
    30  )
    31  
    32  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    33  func (in *CloudAssetFolderFeed) DeepCopyInto(out *CloudAssetFolderFeed) {
    34  	*out = *in
    35  	out.TypeMeta = in.TypeMeta
    36  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    37  	in.Spec.DeepCopyInto(&out.Spec)
    38  	in.Status.DeepCopyInto(&out.Status)
    39  	return
    40  }
    41  
    42  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetFolderFeed.
    43  func (in *CloudAssetFolderFeed) DeepCopy() *CloudAssetFolderFeed {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(CloudAssetFolderFeed)
    48  	in.DeepCopyInto(out)
    49  	return out
    50  }
    51  
    52  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    53  func (in *CloudAssetFolderFeed) DeepCopyObject() runtime.Object {
    54  	if c := in.DeepCopy(); c != nil {
    55  		return c
    56  	}
    57  	return nil
    58  }
    59  
    60  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    61  func (in *CloudAssetFolderFeedList) DeepCopyInto(out *CloudAssetFolderFeedList) {
    62  	*out = *in
    63  	out.TypeMeta = in.TypeMeta
    64  	in.ListMeta.DeepCopyInto(&out.ListMeta)
    65  	if in.Items != nil {
    66  		in, out := &in.Items, &out.Items
    67  		*out = make([]CloudAssetFolderFeed, len(*in))
    68  		for i := range *in {
    69  			(*in)[i].DeepCopyInto(&(*out)[i])
    70  		}
    71  	}
    72  	return
    73  }
    74  
    75  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetFolderFeedList.
    76  func (in *CloudAssetFolderFeedList) DeepCopy() *CloudAssetFolderFeedList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(CloudAssetFolderFeedList)
    81  	in.DeepCopyInto(out)
    82  	return out
    83  }
    84  
    85  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    86  func (in *CloudAssetFolderFeedList) DeepCopyObject() runtime.Object {
    87  	if c := in.DeepCopy(); c != nil {
    88  		return c
    89  	}
    90  	return nil
    91  }
    92  
    93  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    94  func (in *CloudAssetFolderFeedSpec) DeepCopyInto(out *CloudAssetFolderFeedSpec) {
    95  	*out = *in
    96  	if in.AssetNames != nil {
    97  		in, out := &in.AssetNames, &out.AssetNames
    98  		*out = make([]string, len(*in))
    99  		copy(*out, *in)
   100  	}
   101  	if in.AssetTypes != nil {
   102  		in, out := &in.AssetTypes, &out.AssetTypes
   103  		*out = make([]string, len(*in))
   104  		copy(*out, *in)
   105  	}
   106  	if in.Condition != nil {
   107  		in, out := &in.Condition, &out.Condition
   108  		*out = new(FolderfeedCondition)
   109  		(*in).DeepCopyInto(*out)
   110  	}
   111  	if in.ContentType != nil {
   112  		in, out := &in.ContentType, &out.ContentType
   113  		*out = new(string)
   114  		**out = **in
   115  	}
   116  	out.FeedOutputConfig = in.FeedOutputConfig
   117  	out.FolderRef = in.FolderRef
   118  	if in.ResourceID != nil {
   119  		in, out := &in.ResourceID, &out.ResourceID
   120  		*out = new(string)
   121  		**out = **in
   122  	}
   123  	return
   124  }
   125  
   126  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetFolderFeedSpec.
   127  func (in *CloudAssetFolderFeedSpec) DeepCopy() *CloudAssetFolderFeedSpec {
   128  	if in == nil {
   129  		return nil
   130  	}
   131  	out := new(CloudAssetFolderFeedSpec)
   132  	in.DeepCopyInto(out)
   133  	return out
   134  }
   135  
   136  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   137  func (in *CloudAssetFolderFeedStatus) DeepCopyInto(out *CloudAssetFolderFeedStatus) {
   138  	*out = *in
   139  	if in.Conditions != nil {
   140  		in, out := &in.Conditions, &out.Conditions
   141  		*out = make([]k8sv1alpha1.Condition, len(*in))
   142  		copy(*out, *in)
   143  	}
   144  	if in.FolderId != nil {
   145  		in, out := &in.FolderId, &out.FolderId
   146  		*out = new(string)
   147  		**out = **in
   148  	}
   149  	if in.Name != nil {
   150  		in, out := &in.Name, &out.Name
   151  		*out = new(string)
   152  		**out = **in
   153  	}
   154  	if in.ObservedGeneration != nil {
   155  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   156  		*out = new(int)
   157  		**out = **in
   158  	}
   159  	return
   160  }
   161  
   162  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetFolderFeedStatus.
   163  func (in *CloudAssetFolderFeedStatus) DeepCopy() *CloudAssetFolderFeedStatus {
   164  	if in == nil {
   165  		return nil
   166  	}
   167  	out := new(CloudAssetFolderFeedStatus)
   168  	in.DeepCopyInto(out)
   169  	return out
   170  }
   171  
   172  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   173  func (in *CloudAssetOrganizationFeed) DeepCopyInto(out *CloudAssetOrganizationFeed) {
   174  	*out = *in
   175  	out.TypeMeta = in.TypeMeta
   176  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   177  	in.Spec.DeepCopyInto(&out.Spec)
   178  	in.Status.DeepCopyInto(&out.Status)
   179  	return
   180  }
   181  
   182  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetOrganizationFeed.
   183  func (in *CloudAssetOrganizationFeed) DeepCopy() *CloudAssetOrganizationFeed {
   184  	if in == nil {
   185  		return nil
   186  	}
   187  	out := new(CloudAssetOrganizationFeed)
   188  	in.DeepCopyInto(out)
   189  	return out
   190  }
   191  
   192  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   193  func (in *CloudAssetOrganizationFeed) DeepCopyObject() runtime.Object {
   194  	if c := in.DeepCopy(); c != nil {
   195  		return c
   196  	}
   197  	return nil
   198  }
   199  
   200  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   201  func (in *CloudAssetOrganizationFeedList) DeepCopyInto(out *CloudAssetOrganizationFeedList) {
   202  	*out = *in
   203  	out.TypeMeta = in.TypeMeta
   204  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   205  	if in.Items != nil {
   206  		in, out := &in.Items, &out.Items
   207  		*out = make([]CloudAssetOrganizationFeed, len(*in))
   208  		for i := range *in {
   209  			(*in)[i].DeepCopyInto(&(*out)[i])
   210  		}
   211  	}
   212  	return
   213  }
   214  
   215  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetOrganizationFeedList.
   216  func (in *CloudAssetOrganizationFeedList) DeepCopy() *CloudAssetOrganizationFeedList {
   217  	if in == nil {
   218  		return nil
   219  	}
   220  	out := new(CloudAssetOrganizationFeedList)
   221  	in.DeepCopyInto(out)
   222  	return out
   223  }
   224  
   225  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   226  func (in *CloudAssetOrganizationFeedList) DeepCopyObject() runtime.Object {
   227  	if c := in.DeepCopy(); c != nil {
   228  		return c
   229  	}
   230  	return nil
   231  }
   232  
   233  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   234  func (in *CloudAssetOrganizationFeedSpec) DeepCopyInto(out *CloudAssetOrganizationFeedSpec) {
   235  	*out = *in
   236  	if in.AssetNames != nil {
   237  		in, out := &in.AssetNames, &out.AssetNames
   238  		*out = make([]string, len(*in))
   239  		copy(*out, *in)
   240  	}
   241  	if in.AssetTypes != nil {
   242  		in, out := &in.AssetTypes, &out.AssetTypes
   243  		*out = make([]string, len(*in))
   244  		copy(*out, *in)
   245  	}
   246  	if in.Condition != nil {
   247  		in, out := &in.Condition, &out.Condition
   248  		*out = new(OrganizationfeedCondition)
   249  		(*in).DeepCopyInto(*out)
   250  	}
   251  	if in.ContentType != nil {
   252  		in, out := &in.ContentType, &out.ContentType
   253  		*out = new(string)
   254  		**out = **in
   255  	}
   256  	out.FeedOutputConfig = in.FeedOutputConfig
   257  	out.OrganizationRef = in.OrganizationRef
   258  	if in.ResourceID != nil {
   259  		in, out := &in.ResourceID, &out.ResourceID
   260  		*out = new(string)
   261  		**out = **in
   262  	}
   263  	return
   264  }
   265  
   266  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetOrganizationFeedSpec.
   267  func (in *CloudAssetOrganizationFeedSpec) DeepCopy() *CloudAssetOrganizationFeedSpec {
   268  	if in == nil {
   269  		return nil
   270  	}
   271  	out := new(CloudAssetOrganizationFeedSpec)
   272  	in.DeepCopyInto(out)
   273  	return out
   274  }
   275  
   276  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   277  func (in *CloudAssetOrganizationFeedStatus) DeepCopyInto(out *CloudAssetOrganizationFeedStatus) {
   278  	*out = *in
   279  	if in.Conditions != nil {
   280  		in, out := &in.Conditions, &out.Conditions
   281  		*out = make([]k8sv1alpha1.Condition, len(*in))
   282  		copy(*out, *in)
   283  	}
   284  	if in.Name != nil {
   285  		in, out := &in.Name, &out.Name
   286  		*out = new(string)
   287  		**out = **in
   288  	}
   289  	if in.ObservedGeneration != nil {
   290  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   291  		*out = new(int)
   292  		**out = **in
   293  	}
   294  	return
   295  }
   296  
   297  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetOrganizationFeedStatus.
   298  func (in *CloudAssetOrganizationFeedStatus) DeepCopy() *CloudAssetOrganizationFeedStatus {
   299  	if in == nil {
   300  		return nil
   301  	}
   302  	out := new(CloudAssetOrganizationFeedStatus)
   303  	in.DeepCopyInto(out)
   304  	return out
   305  }
   306  
   307  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   308  func (in *CloudAssetProjectFeed) DeepCopyInto(out *CloudAssetProjectFeed) {
   309  	*out = *in
   310  	out.TypeMeta = in.TypeMeta
   311  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   312  	in.Spec.DeepCopyInto(&out.Spec)
   313  	in.Status.DeepCopyInto(&out.Status)
   314  	return
   315  }
   316  
   317  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetProjectFeed.
   318  func (in *CloudAssetProjectFeed) DeepCopy() *CloudAssetProjectFeed {
   319  	if in == nil {
   320  		return nil
   321  	}
   322  	out := new(CloudAssetProjectFeed)
   323  	in.DeepCopyInto(out)
   324  	return out
   325  }
   326  
   327  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   328  func (in *CloudAssetProjectFeed) DeepCopyObject() runtime.Object {
   329  	if c := in.DeepCopy(); c != nil {
   330  		return c
   331  	}
   332  	return nil
   333  }
   334  
   335  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   336  func (in *CloudAssetProjectFeedList) DeepCopyInto(out *CloudAssetProjectFeedList) {
   337  	*out = *in
   338  	out.TypeMeta = in.TypeMeta
   339  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   340  	if in.Items != nil {
   341  		in, out := &in.Items, &out.Items
   342  		*out = make([]CloudAssetProjectFeed, len(*in))
   343  		for i := range *in {
   344  			(*in)[i].DeepCopyInto(&(*out)[i])
   345  		}
   346  	}
   347  	return
   348  }
   349  
   350  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetProjectFeedList.
   351  func (in *CloudAssetProjectFeedList) DeepCopy() *CloudAssetProjectFeedList {
   352  	if in == nil {
   353  		return nil
   354  	}
   355  	out := new(CloudAssetProjectFeedList)
   356  	in.DeepCopyInto(out)
   357  	return out
   358  }
   359  
   360  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   361  func (in *CloudAssetProjectFeedList) DeepCopyObject() runtime.Object {
   362  	if c := in.DeepCopy(); c != nil {
   363  		return c
   364  	}
   365  	return nil
   366  }
   367  
   368  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   369  func (in *CloudAssetProjectFeedSpec) DeepCopyInto(out *CloudAssetProjectFeedSpec) {
   370  	*out = *in
   371  	if in.AssetNames != nil {
   372  		in, out := &in.AssetNames, &out.AssetNames
   373  		*out = make([]string, len(*in))
   374  		copy(*out, *in)
   375  	}
   376  	if in.AssetTypes != nil {
   377  		in, out := &in.AssetTypes, &out.AssetTypes
   378  		*out = make([]string, len(*in))
   379  		copy(*out, *in)
   380  	}
   381  	if in.BillingProject != nil {
   382  		in, out := &in.BillingProject, &out.BillingProject
   383  		*out = new(string)
   384  		**out = **in
   385  	}
   386  	if in.Condition != nil {
   387  		in, out := &in.Condition, &out.Condition
   388  		*out = new(ProjectfeedCondition)
   389  		(*in).DeepCopyInto(*out)
   390  	}
   391  	if in.ContentType != nil {
   392  		in, out := &in.ContentType, &out.ContentType
   393  		*out = new(string)
   394  		**out = **in
   395  	}
   396  	out.FeedOutputConfig = in.FeedOutputConfig
   397  	out.ProjectRef = in.ProjectRef
   398  	if in.ResourceID != nil {
   399  		in, out := &in.ResourceID, &out.ResourceID
   400  		*out = new(string)
   401  		**out = **in
   402  	}
   403  	return
   404  }
   405  
   406  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetProjectFeedSpec.
   407  func (in *CloudAssetProjectFeedSpec) DeepCopy() *CloudAssetProjectFeedSpec {
   408  	if in == nil {
   409  		return nil
   410  	}
   411  	out := new(CloudAssetProjectFeedSpec)
   412  	in.DeepCopyInto(out)
   413  	return out
   414  }
   415  
   416  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   417  func (in *CloudAssetProjectFeedStatus) DeepCopyInto(out *CloudAssetProjectFeedStatus) {
   418  	*out = *in
   419  	if in.Conditions != nil {
   420  		in, out := &in.Conditions, &out.Conditions
   421  		*out = make([]k8sv1alpha1.Condition, len(*in))
   422  		copy(*out, *in)
   423  	}
   424  	if in.Name != nil {
   425  		in, out := &in.Name, &out.Name
   426  		*out = new(string)
   427  		**out = **in
   428  	}
   429  	if in.ObservedGeneration != nil {
   430  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   431  		*out = new(int)
   432  		**out = **in
   433  	}
   434  	return
   435  }
   436  
   437  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudAssetProjectFeedStatus.
   438  func (in *CloudAssetProjectFeedStatus) DeepCopy() *CloudAssetProjectFeedStatus {
   439  	if in == nil {
   440  		return nil
   441  	}
   442  	out := new(CloudAssetProjectFeedStatus)
   443  	in.DeepCopyInto(out)
   444  	return out
   445  }
   446  
   447  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   448  func (in *FolderfeedCondition) DeepCopyInto(out *FolderfeedCondition) {
   449  	*out = *in
   450  	if in.Description != nil {
   451  		in, out := &in.Description, &out.Description
   452  		*out = new(string)
   453  		**out = **in
   454  	}
   455  	if in.Location != nil {
   456  		in, out := &in.Location, &out.Location
   457  		*out = new(string)
   458  		**out = **in
   459  	}
   460  	if in.Title != nil {
   461  		in, out := &in.Title, &out.Title
   462  		*out = new(string)
   463  		**out = **in
   464  	}
   465  	return
   466  }
   467  
   468  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FolderfeedCondition.
   469  func (in *FolderfeedCondition) DeepCopy() *FolderfeedCondition {
   470  	if in == nil {
   471  		return nil
   472  	}
   473  	out := new(FolderfeedCondition)
   474  	in.DeepCopyInto(out)
   475  	return out
   476  }
   477  
   478  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   479  func (in *FolderfeedFeedOutputConfig) DeepCopyInto(out *FolderfeedFeedOutputConfig) {
   480  	*out = *in
   481  	out.PubsubDestination = in.PubsubDestination
   482  	return
   483  }
   484  
   485  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FolderfeedFeedOutputConfig.
   486  func (in *FolderfeedFeedOutputConfig) DeepCopy() *FolderfeedFeedOutputConfig {
   487  	if in == nil {
   488  		return nil
   489  	}
   490  	out := new(FolderfeedFeedOutputConfig)
   491  	in.DeepCopyInto(out)
   492  	return out
   493  }
   494  
   495  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   496  func (in *FolderfeedPubsubDestination) DeepCopyInto(out *FolderfeedPubsubDestination) {
   497  	*out = *in
   498  	return
   499  }
   500  
   501  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FolderfeedPubsubDestination.
   502  func (in *FolderfeedPubsubDestination) DeepCopy() *FolderfeedPubsubDestination {
   503  	if in == nil {
   504  		return nil
   505  	}
   506  	out := new(FolderfeedPubsubDestination)
   507  	in.DeepCopyInto(out)
   508  	return out
   509  }
   510  
   511  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   512  func (in *OrganizationfeedCondition) DeepCopyInto(out *OrganizationfeedCondition) {
   513  	*out = *in
   514  	if in.Description != nil {
   515  		in, out := &in.Description, &out.Description
   516  		*out = new(string)
   517  		**out = **in
   518  	}
   519  	if in.Location != nil {
   520  		in, out := &in.Location, &out.Location
   521  		*out = new(string)
   522  		**out = **in
   523  	}
   524  	if in.Title != nil {
   525  		in, out := &in.Title, &out.Title
   526  		*out = new(string)
   527  		**out = **in
   528  	}
   529  	return
   530  }
   531  
   532  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationfeedCondition.
   533  func (in *OrganizationfeedCondition) DeepCopy() *OrganizationfeedCondition {
   534  	if in == nil {
   535  		return nil
   536  	}
   537  	out := new(OrganizationfeedCondition)
   538  	in.DeepCopyInto(out)
   539  	return out
   540  }
   541  
   542  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   543  func (in *OrganizationfeedFeedOutputConfig) DeepCopyInto(out *OrganizationfeedFeedOutputConfig) {
   544  	*out = *in
   545  	out.PubsubDestination = in.PubsubDestination
   546  	return
   547  }
   548  
   549  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationfeedFeedOutputConfig.
   550  func (in *OrganizationfeedFeedOutputConfig) DeepCopy() *OrganizationfeedFeedOutputConfig {
   551  	if in == nil {
   552  		return nil
   553  	}
   554  	out := new(OrganizationfeedFeedOutputConfig)
   555  	in.DeepCopyInto(out)
   556  	return out
   557  }
   558  
   559  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   560  func (in *OrganizationfeedPubsubDestination) DeepCopyInto(out *OrganizationfeedPubsubDestination) {
   561  	*out = *in
   562  	return
   563  }
   564  
   565  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationfeedPubsubDestination.
   566  func (in *OrganizationfeedPubsubDestination) DeepCopy() *OrganizationfeedPubsubDestination {
   567  	if in == nil {
   568  		return nil
   569  	}
   570  	out := new(OrganizationfeedPubsubDestination)
   571  	in.DeepCopyInto(out)
   572  	return out
   573  }
   574  
   575  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   576  func (in *ProjectfeedCondition) DeepCopyInto(out *ProjectfeedCondition) {
   577  	*out = *in
   578  	if in.Description != nil {
   579  		in, out := &in.Description, &out.Description
   580  		*out = new(string)
   581  		**out = **in
   582  	}
   583  	if in.Location != nil {
   584  		in, out := &in.Location, &out.Location
   585  		*out = new(string)
   586  		**out = **in
   587  	}
   588  	if in.Title != nil {
   589  		in, out := &in.Title, &out.Title
   590  		*out = new(string)
   591  		**out = **in
   592  	}
   593  	return
   594  }
   595  
   596  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectfeedCondition.
   597  func (in *ProjectfeedCondition) DeepCopy() *ProjectfeedCondition {
   598  	if in == nil {
   599  		return nil
   600  	}
   601  	out := new(ProjectfeedCondition)
   602  	in.DeepCopyInto(out)
   603  	return out
   604  }
   605  
   606  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   607  func (in *ProjectfeedFeedOutputConfig) DeepCopyInto(out *ProjectfeedFeedOutputConfig) {
   608  	*out = *in
   609  	out.PubsubDestination = in.PubsubDestination
   610  	return
   611  }
   612  
   613  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectfeedFeedOutputConfig.
   614  func (in *ProjectfeedFeedOutputConfig) DeepCopy() *ProjectfeedFeedOutputConfig {
   615  	if in == nil {
   616  		return nil
   617  	}
   618  	out := new(ProjectfeedFeedOutputConfig)
   619  	in.DeepCopyInto(out)
   620  	return out
   621  }
   622  
   623  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   624  func (in *ProjectfeedPubsubDestination) DeepCopyInto(out *ProjectfeedPubsubDestination) {
   625  	*out = *in
   626  	return
   627  }
   628  
   629  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectfeedPubsubDestination.
   630  func (in *ProjectfeedPubsubDestination) DeepCopy() *ProjectfeedPubsubDestination {
   631  	if in == nil {
   632  		return nil
   633  	}
   634  	out := new(ProjectfeedPubsubDestination)
   635  	in.DeepCopyInto(out)
   636  	return out
   637  }
   638  

View as plain text