...

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

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/apigee/v1beta1

     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 v1beta1
    26  
    27  import (
    28  	v1alpha1 "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 *ApigeeEnvironment) DeepCopyInto(out *ApigeeEnvironment) {
    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 ApigeeEnvironment.
    43  func (in *ApigeeEnvironment) DeepCopy() *ApigeeEnvironment {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(ApigeeEnvironment)
    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 *ApigeeEnvironment) 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 *ApigeeEnvironmentList) DeepCopyInto(out *ApigeeEnvironmentList) {
    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([]ApigeeEnvironment, 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 ApigeeEnvironmentList.
    76  func (in *ApigeeEnvironmentList) DeepCopy() *ApigeeEnvironmentList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(ApigeeEnvironmentList)
    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 *ApigeeEnvironmentList) 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 *ApigeeEnvironmentSpec) DeepCopyInto(out *ApigeeEnvironmentSpec) {
    95  	*out = *in
    96  	out.ApigeeOrganizationRef = in.ApigeeOrganizationRef
    97  	if in.Description != nil {
    98  		in, out := &in.Description, &out.Description
    99  		*out = new(string)
   100  		**out = **in
   101  	}
   102  	if in.DisplayName != nil {
   103  		in, out := &in.DisplayName, &out.DisplayName
   104  		*out = new(string)
   105  		**out = **in
   106  	}
   107  	if in.Properties != nil {
   108  		in, out := &in.Properties, &out.Properties
   109  		*out = make(map[string]string, len(*in))
   110  		for key, val := range *in {
   111  			(*out)[key] = val
   112  		}
   113  	}
   114  	if in.ResourceID != nil {
   115  		in, out := &in.ResourceID, &out.ResourceID
   116  		*out = new(string)
   117  		**out = **in
   118  	}
   119  	return
   120  }
   121  
   122  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeEnvironmentSpec.
   123  func (in *ApigeeEnvironmentSpec) DeepCopy() *ApigeeEnvironmentSpec {
   124  	if in == nil {
   125  		return nil
   126  	}
   127  	out := new(ApigeeEnvironmentSpec)
   128  	in.DeepCopyInto(out)
   129  	return out
   130  }
   131  
   132  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   133  func (in *ApigeeEnvironmentStatus) DeepCopyInto(out *ApigeeEnvironmentStatus) {
   134  	*out = *in
   135  	if in.Conditions != nil {
   136  		in, out := &in.Conditions, &out.Conditions
   137  		*out = make([]v1alpha1.Condition, len(*in))
   138  		copy(*out, *in)
   139  	}
   140  	if in.CreatedAt != nil {
   141  		in, out := &in.CreatedAt, &out.CreatedAt
   142  		*out = new(int)
   143  		**out = **in
   144  	}
   145  	if in.LastModifiedAt != nil {
   146  		in, out := &in.LastModifiedAt, &out.LastModifiedAt
   147  		*out = new(int)
   148  		**out = **in
   149  	}
   150  	if in.ObservedGeneration != nil {
   151  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   152  		*out = new(int)
   153  		**out = **in
   154  	}
   155  	if in.State != nil {
   156  		in, out := &in.State, &out.State
   157  		*out = new(string)
   158  		**out = **in
   159  	}
   160  	return
   161  }
   162  
   163  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeEnvironmentStatus.
   164  func (in *ApigeeEnvironmentStatus) DeepCopy() *ApigeeEnvironmentStatus {
   165  	if in == nil {
   166  		return nil
   167  	}
   168  	out := new(ApigeeEnvironmentStatus)
   169  	in.DeepCopyInto(out)
   170  	return out
   171  }
   172  
   173  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   174  func (in *ApigeeOrganization) DeepCopyInto(out *ApigeeOrganization) {
   175  	*out = *in
   176  	out.TypeMeta = in.TypeMeta
   177  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   178  	in.Spec.DeepCopyInto(&out.Spec)
   179  	in.Status.DeepCopyInto(&out.Status)
   180  	return
   181  }
   182  
   183  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeOrganization.
   184  func (in *ApigeeOrganization) DeepCopy() *ApigeeOrganization {
   185  	if in == nil {
   186  		return nil
   187  	}
   188  	out := new(ApigeeOrganization)
   189  	in.DeepCopyInto(out)
   190  	return out
   191  }
   192  
   193  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   194  func (in *ApigeeOrganization) DeepCopyObject() runtime.Object {
   195  	if c := in.DeepCopy(); c != nil {
   196  		return c
   197  	}
   198  	return nil
   199  }
   200  
   201  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   202  func (in *ApigeeOrganizationList) DeepCopyInto(out *ApigeeOrganizationList) {
   203  	*out = *in
   204  	out.TypeMeta = in.TypeMeta
   205  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   206  	if in.Items != nil {
   207  		in, out := &in.Items, &out.Items
   208  		*out = make([]ApigeeOrganization, len(*in))
   209  		for i := range *in {
   210  			(*in)[i].DeepCopyInto(&(*out)[i])
   211  		}
   212  	}
   213  	return
   214  }
   215  
   216  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeOrganizationList.
   217  func (in *ApigeeOrganizationList) DeepCopy() *ApigeeOrganizationList {
   218  	if in == nil {
   219  		return nil
   220  	}
   221  	out := new(ApigeeOrganizationList)
   222  	in.DeepCopyInto(out)
   223  	return out
   224  }
   225  
   226  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   227  func (in *ApigeeOrganizationList) DeepCopyObject() runtime.Object {
   228  	if c := in.DeepCopy(); c != nil {
   229  		return c
   230  	}
   231  	return nil
   232  }
   233  
   234  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   235  func (in *ApigeeOrganizationSpec) DeepCopyInto(out *ApigeeOrganizationSpec) {
   236  	*out = *in
   237  	if in.AddonsConfig != nil {
   238  		in, out := &in.AddonsConfig, &out.AddonsConfig
   239  		*out = new(OrganizationAddonsConfig)
   240  		(*in).DeepCopyInto(*out)
   241  	}
   242  	if in.AuthorizedNetworkRef != nil {
   243  		in, out := &in.AuthorizedNetworkRef, &out.AuthorizedNetworkRef
   244  		*out = new(v1alpha1.ResourceRef)
   245  		**out = **in
   246  	}
   247  	if in.Description != nil {
   248  		in, out := &in.Description, &out.Description
   249  		*out = new(string)
   250  		**out = **in
   251  	}
   252  	if in.DisplayName != nil {
   253  		in, out := &in.DisplayName, &out.DisplayName
   254  		*out = new(string)
   255  		**out = **in
   256  	}
   257  	out.ProjectRef = in.ProjectRef
   258  	if in.Properties != nil {
   259  		in, out := &in.Properties, &out.Properties
   260  		*out = make(map[string]string, len(*in))
   261  		for key, val := range *in {
   262  			(*out)[key] = val
   263  		}
   264  	}
   265  	if in.ResourceID != nil {
   266  		in, out := &in.ResourceID, &out.ResourceID
   267  		*out = new(string)
   268  		**out = **in
   269  	}
   270  	if in.RuntimeDatabaseEncryptionKeyRef != nil {
   271  		in, out := &in.RuntimeDatabaseEncryptionKeyRef, &out.RuntimeDatabaseEncryptionKeyRef
   272  		*out = new(v1alpha1.ResourceRef)
   273  		**out = **in
   274  	}
   275  	return
   276  }
   277  
   278  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeOrganizationSpec.
   279  func (in *ApigeeOrganizationSpec) DeepCopy() *ApigeeOrganizationSpec {
   280  	if in == nil {
   281  		return nil
   282  	}
   283  	out := new(ApigeeOrganizationSpec)
   284  	in.DeepCopyInto(out)
   285  	return out
   286  }
   287  
   288  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   289  func (in *ApigeeOrganizationStatus) DeepCopyInto(out *ApigeeOrganizationStatus) {
   290  	*out = *in
   291  	if in.Conditions != nil {
   292  		in, out := &in.Conditions, &out.Conditions
   293  		*out = make([]v1alpha1.Condition, len(*in))
   294  		copy(*out, *in)
   295  	}
   296  	if in.BillingType != nil {
   297  		in, out := &in.BillingType, &out.BillingType
   298  		*out = new(string)
   299  		**out = **in
   300  	}
   301  	if in.CaCertificate != nil {
   302  		in, out := &in.CaCertificate, &out.CaCertificate
   303  		*out = new(string)
   304  		**out = **in
   305  	}
   306  	if in.CreatedAt != nil {
   307  		in, out := &in.CreatedAt, &out.CreatedAt
   308  		*out = new(int)
   309  		**out = **in
   310  	}
   311  	if in.Environments != nil {
   312  		in, out := &in.Environments, &out.Environments
   313  		*out = make([]string, len(*in))
   314  		copy(*out, *in)
   315  	}
   316  	if in.ExpiresAt != nil {
   317  		in, out := &in.ExpiresAt, &out.ExpiresAt
   318  		*out = new(int)
   319  		**out = **in
   320  	}
   321  	if in.LastModifiedAt != nil {
   322  		in, out := &in.LastModifiedAt, &out.LastModifiedAt
   323  		*out = new(int)
   324  		**out = **in
   325  	}
   326  	if in.ObservedGeneration != nil {
   327  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   328  		*out = new(int)
   329  		**out = **in
   330  	}
   331  	if in.ProjectId != nil {
   332  		in, out := &in.ProjectId, &out.ProjectId
   333  		*out = new(string)
   334  		**out = **in
   335  	}
   336  	if in.State != nil {
   337  		in, out := &in.State, &out.State
   338  		*out = new(string)
   339  		**out = **in
   340  	}
   341  	if in.SubscriptionType != nil {
   342  		in, out := &in.SubscriptionType, &out.SubscriptionType
   343  		*out = new(string)
   344  		**out = **in
   345  	}
   346  	return
   347  }
   348  
   349  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApigeeOrganizationStatus.
   350  func (in *ApigeeOrganizationStatus) DeepCopy() *ApigeeOrganizationStatus {
   351  	if in == nil {
   352  		return nil
   353  	}
   354  	out := new(ApigeeOrganizationStatus)
   355  	in.DeepCopyInto(out)
   356  	return out
   357  }
   358  
   359  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   360  func (in *OrganizationAddonsConfig) DeepCopyInto(out *OrganizationAddonsConfig) {
   361  	*out = *in
   362  	if in.AdvancedApiOpsConfig != nil {
   363  		in, out := &in.AdvancedApiOpsConfig, &out.AdvancedApiOpsConfig
   364  		*out = new(OrganizationAdvancedApiOpsConfig)
   365  		(*in).DeepCopyInto(*out)
   366  	}
   367  	if in.MonetizationConfig != nil {
   368  		in, out := &in.MonetizationConfig, &out.MonetizationConfig
   369  		*out = new(OrganizationMonetizationConfig)
   370  		(*in).DeepCopyInto(*out)
   371  	}
   372  	return
   373  }
   374  
   375  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationAddonsConfig.
   376  func (in *OrganizationAddonsConfig) DeepCopy() *OrganizationAddonsConfig {
   377  	if in == nil {
   378  		return nil
   379  	}
   380  	out := new(OrganizationAddonsConfig)
   381  	in.DeepCopyInto(out)
   382  	return out
   383  }
   384  
   385  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   386  func (in *OrganizationAdvancedApiOpsConfig) DeepCopyInto(out *OrganizationAdvancedApiOpsConfig) {
   387  	*out = *in
   388  	if in.Enabled != nil {
   389  		in, out := &in.Enabled, &out.Enabled
   390  		*out = new(bool)
   391  		**out = **in
   392  	}
   393  	return
   394  }
   395  
   396  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationAdvancedApiOpsConfig.
   397  func (in *OrganizationAdvancedApiOpsConfig) DeepCopy() *OrganizationAdvancedApiOpsConfig {
   398  	if in == nil {
   399  		return nil
   400  	}
   401  	out := new(OrganizationAdvancedApiOpsConfig)
   402  	in.DeepCopyInto(out)
   403  	return out
   404  }
   405  
   406  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   407  func (in *OrganizationMonetizationConfig) DeepCopyInto(out *OrganizationMonetizationConfig) {
   408  	*out = *in
   409  	if in.Enabled != nil {
   410  		in, out := &in.Enabled, &out.Enabled
   411  		*out = new(bool)
   412  		**out = **in
   413  	}
   414  	return
   415  }
   416  
   417  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrganizationMonetizationConfig.
   418  func (in *OrganizationMonetizationConfig) DeepCopy() *OrganizationMonetizationConfig {
   419  	if in == nil {
   420  		return nil
   421  	}
   422  	out := new(OrganizationMonetizationConfig)
   423  	in.DeepCopyInto(out)
   424  	return out
   425  }
   426  

View as plain text