...

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

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/appengine/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 *AppEngineDomainMapping) DeepCopyInto(out *AppEngineDomainMapping) {
    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 AppEngineDomainMapping.
    43  func (in *AppEngineDomainMapping) DeepCopy() *AppEngineDomainMapping {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(AppEngineDomainMapping)
    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 *AppEngineDomainMapping) 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 *AppEngineDomainMappingList) DeepCopyInto(out *AppEngineDomainMappingList) {
    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([]AppEngineDomainMapping, 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 AppEngineDomainMappingList.
    76  func (in *AppEngineDomainMappingList) DeepCopy() *AppEngineDomainMappingList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(AppEngineDomainMappingList)
    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 *AppEngineDomainMappingList) 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 *AppEngineDomainMappingSpec) DeepCopyInto(out *AppEngineDomainMappingSpec) {
    95  	*out = *in
    96  	if in.OverrideStrategy != nil {
    97  		in, out := &in.OverrideStrategy, &out.OverrideStrategy
    98  		*out = new(string)
    99  		**out = **in
   100  	}
   101  	if in.Project != nil {
   102  		in, out := &in.Project, &out.Project
   103  		*out = new(string)
   104  		**out = **in
   105  	}
   106  	if in.ResourceID != nil {
   107  		in, out := &in.ResourceID, &out.ResourceID
   108  		*out = new(string)
   109  		**out = **in
   110  	}
   111  	if in.SslSettings != nil {
   112  		in, out := &in.SslSettings, &out.SslSettings
   113  		*out = new(DomainmappingSslSettings)
   114  		(*in).DeepCopyInto(*out)
   115  	}
   116  	return
   117  }
   118  
   119  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineDomainMappingSpec.
   120  func (in *AppEngineDomainMappingSpec) DeepCopy() *AppEngineDomainMappingSpec {
   121  	if in == nil {
   122  		return nil
   123  	}
   124  	out := new(AppEngineDomainMappingSpec)
   125  	in.DeepCopyInto(out)
   126  	return out
   127  }
   128  
   129  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   130  func (in *AppEngineDomainMappingStatus) DeepCopyInto(out *AppEngineDomainMappingStatus) {
   131  	*out = *in
   132  	if in.Conditions != nil {
   133  		in, out := &in.Conditions, &out.Conditions
   134  		*out = make([]k8sv1alpha1.Condition, len(*in))
   135  		copy(*out, *in)
   136  	}
   137  	if in.Name != nil {
   138  		in, out := &in.Name, &out.Name
   139  		*out = new(string)
   140  		**out = **in
   141  	}
   142  	if in.ObservedGeneration != nil {
   143  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   144  		*out = new(int)
   145  		**out = **in
   146  	}
   147  	if in.ResourceRecords != nil {
   148  		in, out := &in.ResourceRecords, &out.ResourceRecords
   149  		*out = make([]DomainmappingResourceRecordsStatus, len(*in))
   150  		for i := range *in {
   151  			(*in)[i].DeepCopyInto(&(*out)[i])
   152  		}
   153  	}
   154  	return
   155  }
   156  
   157  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineDomainMappingStatus.
   158  func (in *AppEngineDomainMappingStatus) DeepCopy() *AppEngineDomainMappingStatus {
   159  	if in == nil {
   160  		return nil
   161  	}
   162  	out := new(AppEngineDomainMappingStatus)
   163  	in.DeepCopyInto(out)
   164  	return out
   165  }
   166  
   167  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   168  func (in *AppEngineFirewallRule) DeepCopyInto(out *AppEngineFirewallRule) {
   169  	*out = *in
   170  	out.TypeMeta = in.TypeMeta
   171  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   172  	in.Spec.DeepCopyInto(&out.Spec)
   173  	in.Status.DeepCopyInto(&out.Status)
   174  	return
   175  }
   176  
   177  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFirewallRule.
   178  func (in *AppEngineFirewallRule) DeepCopy() *AppEngineFirewallRule {
   179  	if in == nil {
   180  		return nil
   181  	}
   182  	out := new(AppEngineFirewallRule)
   183  	in.DeepCopyInto(out)
   184  	return out
   185  }
   186  
   187  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   188  func (in *AppEngineFirewallRule) DeepCopyObject() runtime.Object {
   189  	if c := in.DeepCopy(); c != nil {
   190  		return c
   191  	}
   192  	return nil
   193  }
   194  
   195  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   196  func (in *AppEngineFirewallRuleList) DeepCopyInto(out *AppEngineFirewallRuleList) {
   197  	*out = *in
   198  	out.TypeMeta = in.TypeMeta
   199  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   200  	if in.Items != nil {
   201  		in, out := &in.Items, &out.Items
   202  		*out = make([]AppEngineFirewallRule, len(*in))
   203  		for i := range *in {
   204  			(*in)[i].DeepCopyInto(&(*out)[i])
   205  		}
   206  	}
   207  	return
   208  }
   209  
   210  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFirewallRuleList.
   211  func (in *AppEngineFirewallRuleList) DeepCopy() *AppEngineFirewallRuleList {
   212  	if in == nil {
   213  		return nil
   214  	}
   215  	out := new(AppEngineFirewallRuleList)
   216  	in.DeepCopyInto(out)
   217  	return out
   218  }
   219  
   220  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   221  func (in *AppEngineFirewallRuleList) DeepCopyObject() runtime.Object {
   222  	if c := in.DeepCopy(); c != nil {
   223  		return c
   224  	}
   225  	return nil
   226  }
   227  
   228  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   229  func (in *AppEngineFirewallRuleSpec) DeepCopyInto(out *AppEngineFirewallRuleSpec) {
   230  	*out = *in
   231  	if in.Description != nil {
   232  		in, out := &in.Description, &out.Description
   233  		*out = new(string)
   234  		**out = **in
   235  	}
   236  	if in.Project != nil {
   237  		in, out := &in.Project, &out.Project
   238  		*out = new(string)
   239  		**out = **in
   240  	}
   241  	if in.ResourceID != nil {
   242  		in, out := &in.ResourceID, &out.ResourceID
   243  		*out = new(string)
   244  		**out = **in
   245  	}
   246  	return
   247  }
   248  
   249  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFirewallRuleSpec.
   250  func (in *AppEngineFirewallRuleSpec) DeepCopy() *AppEngineFirewallRuleSpec {
   251  	if in == nil {
   252  		return nil
   253  	}
   254  	out := new(AppEngineFirewallRuleSpec)
   255  	in.DeepCopyInto(out)
   256  	return out
   257  }
   258  
   259  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   260  func (in *AppEngineFirewallRuleStatus) DeepCopyInto(out *AppEngineFirewallRuleStatus) {
   261  	*out = *in
   262  	if in.Conditions != nil {
   263  		in, out := &in.Conditions, &out.Conditions
   264  		*out = make([]k8sv1alpha1.Condition, len(*in))
   265  		copy(*out, *in)
   266  	}
   267  	if in.ObservedGeneration != nil {
   268  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   269  		*out = new(int)
   270  		**out = **in
   271  	}
   272  	return
   273  }
   274  
   275  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFirewallRuleStatus.
   276  func (in *AppEngineFirewallRuleStatus) DeepCopy() *AppEngineFirewallRuleStatus {
   277  	if in == nil {
   278  		return nil
   279  	}
   280  	out := new(AppEngineFirewallRuleStatus)
   281  	in.DeepCopyInto(out)
   282  	return out
   283  }
   284  
   285  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   286  func (in *AppEngineFlexibleAppVersion) DeepCopyInto(out *AppEngineFlexibleAppVersion) {
   287  	*out = *in
   288  	out.TypeMeta = in.TypeMeta
   289  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   290  	in.Spec.DeepCopyInto(&out.Spec)
   291  	in.Status.DeepCopyInto(&out.Status)
   292  	return
   293  }
   294  
   295  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFlexibleAppVersion.
   296  func (in *AppEngineFlexibleAppVersion) DeepCopy() *AppEngineFlexibleAppVersion {
   297  	if in == nil {
   298  		return nil
   299  	}
   300  	out := new(AppEngineFlexibleAppVersion)
   301  	in.DeepCopyInto(out)
   302  	return out
   303  }
   304  
   305  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   306  func (in *AppEngineFlexibleAppVersion) DeepCopyObject() runtime.Object {
   307  	if c := in.DeepCopy(); c != nil {
   308  		return c
   309  	}
   310  	return nil
   311  }
   312  
   313  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   314  func (in *AppEngineFlexibleAppVersionList) DeepCopyInto(out *AppEngineFlexibleAppVersionList) {
   315  	*out = *in
   316  	out.TypeMeta = in.TypeMeta
   317  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   318  	if in.Items != nil {
   319  		in, out := &in.Items, &out.Items
   320  		*out = make([]AppEngineFlexibleAppVersion, len(*in))
   321  		for i := range *in {
   322  			(*in)[i].DeepCopyInto(&(*out)[i])
   323  		}
   324  	}
   325  	return
   326  }
   327  
   328  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFlexibleAppVersionList.
   329  func (in *AppEngineFlexibleAppVersionList) DeepCopy() *AppEngineFlexibleAppVersionList {
   330  	if in == nil {
   331  		return nil
   332  	}
   333  	out := new(AppEngineFlexibleAppVersionList)
   334  	in.DeepCopyInto(out)
   335  	return out
   336  }
   337  
   338  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   339  func (in *AppEngineFlexibleAppVersionList) DeepCopyObject() runtime.Object {
   340  	if c := in.DeepCopy(); c != nil {
   341  		return c
   342  	}
   343  	return nil
   344  }
   345  
   346  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   347  func (in *AppEngineFlexibleAppVersionSpec) DeepCopyInto(out *AppEngineFlexibleAppVersionSpec) {
   348  	*out = *in
   349  	if in.ApiConfig != nil {
   350  		in, out := &in.ApiConfig, &out.ApiConfig
   351  		*out = new(FlexibleappversionApiConfig)
   352  		(*in).DeepCopyInto(*out)
   353  	}
   354  	if in.AutomaticScaling != nil {
   355  		in, out := &in.AutomaticScaling, &out.AutomaticScaling
   356  		*out = new(FlexibleappversionAutomaticScaling)
   357  		(*in).DeepCopyInto(*out)
   358  	}
   359  	if in.BetaSettings != nil {
   360  		in, out := &in.BetaSettings, &out.BetaSettings
   361  		*out = make(map[string]string, len(*in))
   362  		for key, val := range *in {
   363  			(*out)[key] = val
   364  		}
   365  	}
   366  	if in.DefaultExpiration != nil {
   367  		in, out := &in.DefaultExpiration, &out.DefaultExpiration
   368  		*out = new(string)
   369  		**out = **in
   370  	}
   371  	if in.DeleteServiceOnDestroy != nil {
   372  		in, out := &in.DeleteServiceOnDestroy, &out.DeleteServiceOnDestroy
   373  		*out = new(bool)
   374  		**out = **in
   375  	}
   376  	if in.Deployment != nil {
   377  		in, out := &in.Deployment, &out.Deployment
   378  		*out = new(FlexibleappversionDeployment)
   379  		(*in).DeepCopyInto(*out)
   380  	}
   381  	if in.EndpointsApiService != nil {
   382  		in, out := &in.EndpointsApiService, &out.EndpointsApiService
   383  		*out = new(FlexibleappversionEndpointsApiService)
   384  		(*in).DeepCopyInto(*out)
   385  	}
   386  	if in.Entrypoint != nil {
   387  		in, out := &in.Entrypoint, &out.Entrypoint
   388  		*out = new(FlexibleappversionEntrypoint)
   389  		**out = **in
   390  	}
   391  	if in.EnvVariables != nil {
   392  		in, out := &in.EnvVariables, &out.EnvVariables
   393  		*out = make(map[string]string, len(*in))
   394  		for key, val := range *in {
   395  			(*out)[key] = val
   396  		}
   397  	}
   398  	if in.Handlers != nil {
   399  		in, out := &in.Handlers, &out.Handlers
   400  		*out = make([]FlexibleappversionHandlers, len(*in))
   401  		for i := range *in {
   402  			(*in)[i].DeepCopyInto(&(*out)[i])
   403  		}
   404  	}
   405  	if in.InboundServices != nil {
   406  		in, out := &in.InboundServices, &out.InboundServices
   407  		*out = make([]string, len(*in))
   408  		copy(*out, *in)
   409  	}
   410  	if in.InstanceClass != nil {
   411  		in, out := &in.InstanceClass, &out.InstanceClass
   412  		*out = new(string)
   413  		**out = **in
   414  	}
   415  	in.LivenessCheck.DeepCopyInto(&out.LivenessCheck)
   416  	if in.ManualScaling != nil {
   417  		in, out := &in.ManualScaling, &out.ManualScaling
   418  		*out = new(FlexibleappversionManualScaling)
   419  		**out = **in
   420  	}
   421  	if in.Network != nil {
   422  		in, out := &in.Network, &out.Network
   423  		*out = new(FlexibleappversionNetwork)
   424  		(*in).DeepCopyInto(*out)
   425  	}
   426  	if in.NobuildFilesRegex != nil {
   427  		in, out := &in.NobuildFilesRegex, &out.NobuildFilesRegex
   428  		*out = new(string)
   429  		**out = **in
   430  	}
   431  	if in.NoopOnDestroy != nil {
   432  		in, out := &in.NoopOnDestroy, &out.NoopOnDestroy
   433  		*out = new(bool)
   434  		**out = **in
   435  	}
   436  	if in.Project != nil {
   437  		in, out := &in.Project, &out.Project
   438  		*out = new(string)
   439  		**out = **in
   440  	}
   441  	in.ReadinessCheck.DeepCopyInto(&out.ReadinessCheck)
   442  	if in.ResourceID != nil {
   443  		in, out := &in.ResourceID, &out.ResourceID
   444  		*out = new(string)
   445  		**out = **in
   446  	}
   447  	if in.Resources != nil {
   448  		in, out := &in.Resources, &out.Resources
   449  		*out = new(FlexibleappversionResources)
   450  		(*in).DeepCopyInto(*out)
   451  	}
   452  	if in.RuntimeApiVersion != nil {
   453  		in, out := &in.RuntimeApiVersion, &out.RuntimeApiVersion
   454  		*out = new(string)
   455  		**out = **in
   456  	}
   457  	if in.RuntimeChannel != nil {
   458  		in, out := &in.RuntimeChannel, &out.RuntimeChannel
   459  		*out = new(string)
   460  		**out = **in
   461  	}
   462  	if in.RuntimeMainExecutablePath != nil {
   463  		in, out := &in.RuntimeMainExecutablePath, &out.RuntimeMainExecutablePath
   464  		*out = new(string)
   465  		**out = **in
   466  	}
   467  	if in.ServiceAccount != nil {
   468  		in, out := &in.ServiceAccount, &out.ServiceAccount
   469  		*out = new(string)
   470  		**out = **in
   471  	}
   472  	out.ServiceRef = in.ServiceRef
   473  	if in.ServingStatus != nil {
   474  		in, out := &in.ServingStatus, &out.ServingStatus
   475  		*out = new(string)
   476  		**out = **in
   477  	}
   478  	if in.VpcAccessConnector != nil {
   479  		in, out := &in.VpcAccessConnector, &out.VpcAccessConnector
   480  		*out = new(FlexibleappversionVpcAccessConnector)
   481  		**out = **in
   482  	}
   483  	return
   484  }
   485  
   486  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFlexibleAppVersionSpec.
   487  func (in *AppEngineFlexibleAppVersionSpec) DeepCopy() *AppEngineFlexibleAppVersionSpec {
   488  	if in == nil {
   489  		return nil
   490  	}
   491  	out := new(AppEngineFlexibleAppVersionSpec)
   492  	in.DeepCopyInto(out)
   493  	return out
   494  }
   495  
   496  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   497  func (in *AppEngineFlexibleAppVersionStatus) DeepCopyInto(out *AppEngineFlexibleAppVersionStatus) {
   498  	*out = *in
   499  	if in.Conditions != nil {
   500  		in, out := &in.Conditions, &out.Conditions
   501  		*out = make([]k8sv1alpha1.Condition, len(*in))
   502  		copy(*out, *in)
   503  	}
   504  	if in.Name != nil {
   505  		in, out := &in.Name, &out.Name
   506  		*out = new(string)
   507  		**out = **in
   508  	}
   509  	if in.ObservedGeneration != nil {
   510  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   511  		*out = new(int)
   512  		**out = **in
   513  	}
   514  	return
   515  }
   516  
   517  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineFlexibleAppVersionStatus.
   518  func (in *AppEngineFlexibleAppVersionStatus) DeepCopy() *AppEngineFlexibleAppVersionStatus {
   519  	if in == nil {
   520  		return nil
   521  	}
   522  	out := new(AppEngineFlexibleAppVersionStatus)
   523  	in.DeepCopyInto(out)
   524  	return out
   525  }
   526  
   527  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   528  func (in *AppEngineServiceSplitTraffic) DeepCopyInto(out *AppEngineServiceSplitTraffic) {
   529  	*out = *in
   530  	out.TypeMeta = in.TypeMeta
   531  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   532  	in.Spec.DeepCopyInto(&out.Spec)
   533  	in.Status.DeepCopyInto(&out.Status)
   534  	return
   535  }
   536  
   537  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineServiceSplitTraffic.
   538  func (in *AppEngineServiceSplitTraffic) DeepCopy() *AppEngineServiceSplitTraffic {
   539  	if in == nil {
   540  		return nil
   541  	}
   542  	out := new(AppEngineServiceSplitTraffic)
   543  	in.DeepCopyInto(out)
   544  	return out
   545  }
   546  
   547  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   548  func (in *AppEngineServiceSplitTraffic) DeepCopyObject() runtime.Object {
   549  	if c := in.DeepCopy(); c != nil {
   550  		return c
   551  	}
   552  	return nil
   553  }
   554  
   555  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   556  func (in *AppEngineServiceSplitTrafficList) DeepCopyInto(out *AppEngineServiceSplitTrafficList) {
   557  	*out = *in
   558  	out.TypeMeta = in.TypeMeta
   559  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   560  	if in.Items != nil {
   561  		in, out := &in.Items, &out.Items
   562  		*out = make([]AppEngineServiceSplitTraffic, len(*in))
   563  		for i := range *in {
   564  			(*in)[i].DeepCopyInto(&(*out)[i])
   565  		}
   566  	}
   567  	return
   568  }
   569  
   570  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineServiceSplitTrafficList.
   571  func (in *AppEngineServiceSplitTrafficList) DeepCopy() *AppEngineServiceSplitTrafficList {
   572  	if in == nil {
   573  		return nil
   574  	}
   575  	out := new(AppEngineServiceSplitTrafficList)
   576  	in.DeepCopyInto(out)
   577  	return out
   578  }
   579  
   580  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   581  func (in *AppEngineServiceSplitTrafficList) DeepCopyObject() runtime.Object {
   582  	if c := in.DeepCopy(); c != nil {
   583  		return c
   584  	}
   585  	return nil
   586  }
   587  
   588  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   589  func (in *AppEngineServiceSplitTrafficSpec) DeepCopyInto(out *AppEngineServiceSplitTrafficSpec) {
   590  	*out = *in
   591  	if in.MigrateTraffic != nil {
   592  		in, out := &in.MigrateTraffic, &out.MigrateTraffic
   593  		*out = new(bool)
   594  		**out = **in
   595  	}
   596  	if in.Project != nil {
   597  		in, out := &in.Project, &out.Project
   598  		*out = new(string)
   599  		**out = **in
   600  	}
   601  	if in.ResourceID != nil {
   602  		in, out := &in.ResourceID, &out.ResourceID
   603  		*out = new(string)
   604  		**out = **in
   605  	}
   606  	in.Split.DeepCopyInto(&out.Split)
   607  	return
   608  }
   609  
   610  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineServiceSplitTrafficSpec.
   611  func (in *AppEngineServiceSplitTrafficSpec) DeepCopy() *AppEngineServiceSplitTrafficSpec {
   612  	if in == nil {
   613  		return nil
   614  	}
   615  	out := new(AppEngineServiceSplitTrafficSpec)
   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 *AppEngineServiceSplitTrafficStatus) DeepCopyInto(out *AppEngineServiceSplitTrafficStatus) {
   622  	*out = *in
   623  	if in.Conditions != nil {
   624  		in, out := &in.Conditions, &out.Conditions
   625  		*out = make([]k8sv1alpha1.Condition, len(*in))
   626  		copy(*out, *in)
   627  	}
   628  	if in.ObservedGeneration != nil {
   629  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   630  		*out = new(int)
   631  		**out = **in
   632  	}
   633  	return
   634  }
   635  
   636  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineServiceSplitTrafficStatus.
   637  func (in *AppEngineServiceSplitTrafficStatus) DeepCopy() *AppEngineServiceSplitTrafficStatus {
   638  	if in == nil {
   639  		return nil
   640  	}
   641  	out := new(AppEngineServiceSplitTrafficStatus)
   642  	in.DeepCopyInto(out)
   643  	return out
   644  }
   645  
   646  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   647  func (in *AppEngineStandardAppVersion) DeepCopyInto(out *AppEngineStandardAppVersion) {
   648  	*out = *in
   649  	out.TypeMeta = in.TypeMeta
   650  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   651  	in.Spec.DeepCopyInto(&out.Spec)
   652  	in.Status.DeepCopyInto(&out.Status)
   653  	return
   654  }
   655  
   656  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineStandardAppVersion.
   657  func (in *AppEngineStandardAppVersion) DeepCopy() *AppEngineStandardAppVersion {
   658  	if in == nil {
   659  		return nil
   660  	}
   661  	out := new(AppEngineStandardAppVersion)
   662  	in.DeepCopyInto(out)
   663  	return out
   664  }
   665  
   666  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   667  func (in *AppEngineStandardAppVersion) DeepCopyObject() runtime.Object {
   668  	if c := in.DeepCopy(); c != nil {
   669  		return c
   670  	}
   671  	return nil
   672  }
   673  
   674  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   675  func (in *AppEngineStandardAppVersionList) DeepCopyInto(out *AppEngineStandardAppVersionList) {
   676  	*out = *in
   677  	out.TypeMeta = in.TypeMeta
   678  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   679  	if in.Items != nil {
   680  		in, out := &in.Items, &out.Items
   681  		*out = make([]AppEngineStandardAppVersion, len(*in))
   682  		for i := range *in {
   683  			(*in)[i].DeepCopyInto(&(*out)[i])
   684  		}
   685  	}
   686  	return
   687  }
   688  
   689  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineStandardAppVersionList.
   690  func (in *AppEngineStandardAppVersionList) DeepCopy() *AppEngineStandardAppVersionList {
   691  	if in == nil {
   692  		return nil
   693  	}
   694  	out := new(AppEngineStandardAppVersionList)
   695  	in.DeepCopyInto(out)
   696  	return out
   697  }
   698  
   699  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   700  func (in *AppEngineStandardAppVersionList) DeepCopyObject() runtime.Object {
   701  	if c := in.DeepCopy(); c != nil {
   702  		return c
   703  	}
   704  	return nil
   705  }
   706  
   707  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   708  func (in *AppEngineStandardAppVersionSpec) DeepCopyInto(out *AppEngineStandardAppVersionSpec) {
   709  	*out = *in
   710  	if in.AppEngineApis != nil {
   711  		in, out := &in.AppEngineApis, &out.AppEngineApis
   712  		*out = new(bool)
   713  		**out = **in
   714  	}
   715  	if in.AutomaticScaling != nil {
   716  		in, out := &in.AutomaticScaling, &out.AutomaticScaling
   717  		*out = new(StandardappversionAutomaticScaling)
   718  		(*in).DeepCopyInto(*out)
   719  	}
   720  	if in.BasicScaling != nil {
   721  		in, out := &in.BasicScaling, &out.BasicScaling
   722  		*out = new(StandardappversionBasicScaling)
   723  		(*in).DeepCopyInto(*out)
   724  	}
   725  	if in.DeleteServiceOnDestroy != nil {
   726  		in, out := &in.DeleteServiceOnDestroy, &out.DeleteServiceOnDestroy
   727  		*out = new(bool)
   728  		**out = **in
   729  	}
   730  	in.Deployment.DeepCopyInto(&out.Deployment)
   731  	out.Entrypoint = in.Entrypoint
   732  	if in.EnvVariables != nil {
   733  		in, out := &in.EnvVariables, &out.EnvVariables
   734  		*out = make(map[string]string, len(*in))
   735  		for key, val := range *in {
   736  			(*out)[key] = val
   737  		}
   738  	}
   739  	if in.Handlers != nil {
   740  		in, out := &in.Handlers, &out.Handlers
   741  		*out = make([]StandardappversionHandlers, len(*in))
   742  		for i := range *in {
   743  			(*in)[i].DeepCopyInto(&(*out)[i])
   744  		}
   745  	}
   746  	if in.InboundServices != nil {
   747  		in, out := &in.InboundServices, &out.InboundServices
   748  		*out = make([]string, len(*in))
   749  		copy(*out, *in)
   750  	}
   751  	if in.InstanceClass != nil {
   752  		in, out := &in.InstanceClass, &out.InstanceClass
   753  		*out = new(string)
   754  		**out = **in
   755  	}
   756  	if in.Libraries != nil {
   757  		in, out := &in.Libraries, &out.Libraries
   758  		*out = make([]StandardappversionLibraries, len(*in))
   759  		for i := range *in {
   760  			(*in)[i].DeepCopyInto(&(*out)[i])
   761  		}
   762  	}
   763  	if in.ManualScaling != nil {
   764  		in, out := &in.ManualScaling, &out.ManualScaling
   765  		*out = new(StandardappversionManualScaling)
   766  		**out = **in
   767  	}
   768  	if in.NoopOnDestroy != nil {
   769  		in, out := &in.NoopOnDestroy, &out.NoopOnDestroy
   770  		*out = new(bool)
   771  		**out = **in
   772  	}
   773  	if in.Project != nil {
   774  		in, out := &in.Project, &out.Project
   775  		*out = new(string)
   776  		**out = **in
   777  	}
   778  	if in.ResourceID != nil {
   779  		in, out := &in.ResourceID, &out.ResourceID
   780  		*out = new(string)
   781  		**out = **in
   782  	}
   783  	if in.RuntimeApiVersion != nil {
   784  		in, out := &in.RuntimeApiVersion, &out.RuntimeApiVersion
   785  		*out = new(string)
   786  		**out = **in
   787  	}
   788  	if in.ServiceAccount != nil {
   789  		in, out := &in.ServiceAccount, &out.ServiceAccount
   790  		*out = new(string)
   791  		**out = **in
   792  	}
   793  	out.ServiceRef = in.ServiceRef
   794  	if in.Threadsafe != nil {
   795  		in, out := &in.Threadsafe, &out.Threadsafe
   796  		*out = new(bool)
   797  		**out = **in
   798  	}
   799  	if in.VpcAccessConnector != nil {
   800  		in, out := &in.VpcAccessConnector, &out.VpcAccessConnector
   801  		*out = new(StandardappversionVpcAccessConnector)
   802  		(*in).DeepCopyInto(*out)
   803  	}
   804  	return
   805  }
   806  
   807  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineStandardAppVersionSpec.
   808  func (in *AppEngineStandardAppVersionSpec) DeepCopy() *AppEngineStandardAppVersionSpec {
   809  	if in == nil {
   810  		return nil
   811  	}
   812  	out := new(AppEngineStandardAppVersionSpec)
   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 *AppEngineStandardAppVersionStatus) DeepCopyInto(out *AppEngineStandardAppVersionStatus) {
   819  	*out = *in
   820  	if in.Conditions != nil {
   821  		in, out := &in.Conditions, &out.Conditions
   822  		*out = make([]k8sv1alpha1.Condition, len(*in))
   823  		copy(*out, *in)
   824  	}
   825  	if in.Name != nil {
   826  		in, out := &in.Name, &out.Name
   827  		*out = new(string)
   828  		**out = **in
   829  	}
   830  	if in.ObservedGeneration != nil {
   831  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   832  		*out = new(int)
   833  		**out = **in
   834  	}
   835  	return
   836  }
   837  
   838  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppEngineStandardAppVersionStatus.
   839  func (in *AppEngineStandardAppVersionStatus) DeepCopy() *AppEngineStandardAppVersionStatus {
   840  	if in == nil {
   841  		return nil
   842  	}
   843  	out := new(AppEngineStandardAppVersionStatus)
   844  	in.DeepCopyInto(out)
   845  	return out
   846  }
   847  
   848  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   849  func (in *DomainmappingResourceRecordsStatus) DeepCopyInto(out *DomainmappingResourceRecordsStatus) {
   850  	*out = *in
   851  	if in.Name != nil {
   852  		in, out := &in.Name, &out.Name
   853  		*out = new(string)
   854  		**out = **in
   855  	}
   856  	if in.Rrdata != nil {
   857  		in, out := &in.Rrdata, &out.Rrdata
   858  		*out = new(string)
   859  		**out = **in
   860  	}
   861  	if in.Type != nil {
   862  		in, out := &in.Type, &out.Type
   863  		*out = new(string)
   864  		**out = **in
   865  	}
   866  	return
   867  }
   868  
   869  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainmappingResourceRecordsStatus.
   870  func (in *DomainmappingResourceRecordsStatus) DeepCopy() *DomainmappingResourceRecordsStatus {
   871  	if in == nil {
   872  		return nil
   873  	}
   874  	out := new(DomainmappingResourceRecordsStatus)
   875  	in.DeepCopyInto(out)
   876  	return out
   877  }
   878  
   879  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   880  func (in *DomainmappingSslSettings) DeepCopyInto(out *DomainmappingSslSettings) {
   881  	*out = *in
   882  	if in.CertificateId != nil {
   883  		in, out := &in.CertificateId, &out.CertificateId
   884  		*out = new(string)
   885  		**out = **in
   886  	}
   887  	if in.PendingManagedCertificateId != nil {
   888  		in, out := &in.PendingManagedCertificateId, &out.PendingManagedCertificateId
   889  		*out = new(string)
   890  		**out = **in
   891  	}
   892  	return
   893  }
   894  
   895  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DomainmappingSslSettings.
   896  func (in *DomainmappingSslSettings) DeepCopy() *DomainmappingSslSettings {
   897  	if in == nil {
   898  		return nil
   899  	}
   900  	out := new(DomainmappingSslSettings)
   901  	in.DeepCopyInto(out)
   902  	return out
   903  }
   904  
   905  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   906  func (in *FlexibleappversionApiConfig) DeepCopyInto(out *FlexibleappversionApiConfig) {
   907  	*out = *in
   908  	if in.AuthFailAction != nil {
   909  		in, out := &in.AuthFailAction, &out.AuthFailAction
   910  		*out = new(string)
   911  		**out = **in
   912  	}
   913  	if in.Login != nil {
   914  		in, out := &in.Login, &out.Login
   915  		*out = new(string)
   916  		**out = **in
   917  	}
   918  	if in.SecurityLevel != nil {
   919  		in, out := &in.SecurityLevel, &out.SecurityLevel
   920  		*out = new(string)
   921  		**out = **in
   922  	}
   923  	if in.Url != nil {
   924  		in, out := &in.Url, &out.Url
   925  		*out = new(string)
   926  		**out = **in
   927  	}
   928  	return
   929  }
   930  
   931  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionApiConfig.
   932  func (in *FlexibleappversionApiConfig) DeepCopy() *FlexibleappversionApiConfig {
   933  	if in == nil {
   934  		return nil
   935  	}
   936  	out := new(FlexibleappversionApiConfig)
   937  	in.DeepCopyInto(out)
   938  	return out
   939  }
   940  
   941  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   942  func (in *FlexibleappversionAutomaticScaling) DeepCopyInto(out *FlexibleappversionAutomaticScaling) {
   943  	*out = *in
   944  	if in.CoolDownPeriod != nil {
   945  		in, out := &in.CoolDownPeriod, &out.CoolDownPeriod
   946  		*out = new(string)
   947  		**out = **in
   948  	}
   949  	in.CpuUtilization.DeepCopyInto(&out.CpuUtilization)
   950  	if in.DiskUtilization != nil {
   951  		in, out := &in.DiskUtilization, &out.DiskUtilization
   952  		*out = new(FlexibleappversionDiskUtilization)
   953  		(*in).DeepCopyInto(*out)
   954  	}
   955  	if in.MaxConcurrentRequests != nil {
   956  		in, out := &in.MaxConcurrentRequests, &out.MaxConcurrentRequests
   957  		*out = new(int)
   958  		**out = **in
   959  	}
   960  	if in.MaxIdleInstances != nil {
   961  		in, out := &in.MaxIdleInstances, &out.MaxIdleInstances
   962  		*out = new(int)
   963  		**out = **in
   964  	}
   965  	if in.MaxPendingLatency != nil {
   966  		in, out := &in.MaxPendingLatency, &out.MaxPendingLatency
   967  		*out = new(string)
   968  		**out = **in
   969  	}
   970  	if in.MaxTotalInstances != nil {
   971  		in, out := &in.MaxTotalInstances, &out.MaxTotalInstances
   972  		*out = new(int)
   973  		**out = **in
   974  	}
   975  	if in.MinIdleInstances != nil {
   976  		in, out := &in.MinIdleInstances, &out.MinIdleInstances
   977  		*out = new(int)
   978  		**out = **in
   979  	}
   980  	if in.MinPendingLatency != nil {
   981  		in, out := &in.MinPendingLatency, &out.MinPendingLatency
   982  		*out = new(string)
   983  		**out = **in
   984  	}
   985  	if in.MinTotalInstances != nil {
   986  		in, out := &in.MinTotalInstances, &out.MinTotalInstances
   987  		*out = new(int)
   988  		**out = **in
   989  	}
   990  	if in.NetworkUtilization != nil {
   991  		in, out := &in.NetworkUtilization, &out.NetworkUtilization
   992  		*out = new(FlexibleappversionNetworkUtilization)
   993  		(*in).DeepCopyInto(*out)
   994  	}
   995  	if in.RequestUtilization != nil {
   996  		in, out := &in.RequestUtilization, &out.RequestUtilization
   997  		*out = new(FlexibleappversionRequestUtilization)
   998  		(*in).DeepCopyInto(*out)
   999  	}
  1000  	return
  1001  }
  1002  
  1003  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionAutomaticScaling.
  1004  func (in *FlexibleappversionAutomaticScaling) DeepCopy() *FlexibleappversionAutomaticScaling {
  1005  	if in == nil {
  1006  		return nil
  1007  	}
  1008  	out := new(FlexibleappversionAutomaticScaling)
  1009  	in.DeepCopyInto(out)
  1010  	return out
  1011  }
  1012  
  1013  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1014  func (in *FlexibleappversionCloudBuildOptions) DeepCopyInto(out *FlexibleappversionCloudBuildOptions) {
  1015  	*out = *in
  1016  	if in.CloudBuildTimeout != nil {
  1017  		in, out := &in.CloudBuildTimeout, &out.CloudBuildTimeout
  1018  		*out = new(string)
  1019  		**out = **in
  1020  	}
  1021  	return
  1022  }
  1023  
  1024  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionCloudBuildOptions.
  1025  func (in *FlexibleappversionCloudBuildOptions) DeepCopy() *FlexibleappversionCloudBuildOptions {
  1026  	if in == nil {
  1027  		return nil
  1028  	}
  1029  	out := new(FlexibleappversionCloudBuildOptions)
  1030  	in.DeepCopyInto(out)
  1031  	return out
  1032  }
  1033  
  1034  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1035  func (in *FlexibleappversionContainer) DeepCopyInto(out *FlexibleappversionContainer) {
  1036  	*out = *in
  1037  	return
  1038  }
  1039  
  1040  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionContainer.
  1041  func (in *FlexibleappversionContainer) DeepCopy() *FlexibleappversionContainer {
  1042  	if in == nil {
  1043  		return nil
  1044  	}
  1045  	out := new(FlexibleappversionContainer)
  1046  	in.DeepCopyInto(out)
  1047  	return out
  1048  }
  1049  
  1050  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1051  func (in *FlexibleappversionCpuUtilization) DeepCopyInto(out *FlexibleappversionCpuUtilization) {
  1052  	*out = *in
  1053  	if in.AggregationWindowLength != nil {
  1054  		in, out := &in.AggregationWindowLength, &out.AggregationWindowLength
  1055  		*out = new(string)
  1056  		**out = **in
  1057  	}
  1058  	return
  1059  }
  1060  
  1061  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionCpuUtilization.
  1062  func (in *FlexibleappversionCpuUtilization) DeepCopy() *FlexibleappversionCpuUtilization {
  1063  	if in == nil {
  1064  		return nil
  1065  	}
  1066  	out := new(FlexibleappversionCpuUtilization)
  1067  	in.DeepCopyInto(out)
  1068  	return out
  1069  }
  1070  
  1071  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1072  func (in *FlexibleappversionDeployment) DeepCopyInto(out *FlexibleappversionDeployment) {
  1073  	*out = *in
  1074  	if in.CloudBuildOptions != nil {
  1075  		in, out := &in.CloudBuildOptions, &out.CloudBuildOptions
  1076  		*out = new(FlexibleappversionCloudBuildOptions)
  1077  		(*in).DeepCopyInto(*out)
  1078  	}
  1079  	if in.Container != nil {
  1080  		in, out := &in.Container, &out.Container
  1081  		*out = new(FlexibleappversionContainer)
  1082  		**out = **in
  1083  	}
  1084  	if in.Files != nil {
  1085  		in, out := &in.Files, &out.Files
  1086  		*out = make([]FlexibleappversionFiles, len(*in))
  1087  		for i := range *in {
  1088  			(*in)[i].DeepCopyInto(&(*out)[i])
  1089  		}
  1090  	}
  1091  	if in.Zip != nil {
  1092  		in, out := &in.Zip, &out.Zip
  1093  		*out = new(FlexibleappversionZip)
  1094  		(*in).DeepCopyInto(*out)
  1095  	}
  1096  	return
  1097  }
  1098  
  1099  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionDeployment.
  1100  func (in *FlexibleappversionDeployment) DeepCopy() *FlexibleappversionDeployment {
  1101  	if in == nil {
  1102  		return nil
  1103  	}
  1104  	out := new(FlexibleappversionDeployment)
  1105  	in.DeepCopyInto(out)
  1106  	return out
  1107  }
  1108  
  1109  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1110  func (in *FlexibleappversionDiskUtilization) DeepCopyInto(out *FlexibleappversionDiskUtilization) {
  1111  	*out = *in
  1112  	if in.TargetReadBytesPerSecond != nil {
  1113  		in, out := &in.TargetReadBytesPerSecond, &out.TargetReadBytesPerSecond
  1114  		*out = new(int)
  1115  		**out = **in
  1116  	}
  1117  	if in.TargetReadOpsPerSecond != nil {
  1118  		in, out := &in.TargetReadOpsPerSecond, &out.TargetReadOpsPerSecond
  1119  		*out = new(int)
  1120  		**out = **in
  1121  	}
  1122  	if in.TargetWriteBytesPerSecond != nil {
  1123  		in, out := &in.TargetWriteBytesPerSecond, &out.TargetWriteBytesPerSecond
  1124  		*out = new(int)
  1125  		**out = **in
  1126  	}
  1127  	if in.TargetWriteOpsPerSecond != nil {
  1128  		in, out := &in.TargetWriteOpsPerSecond, &out.TargetWriteOpsPerSecond
  1129  		*out = new(int)
  1130  		**out = **in
  1131  	}
  1132  	return
  1133  }
  1134  
  1135  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionDiskUtilization.
  1136  func (in *FlexibleappversionDiskUtilization) DeepCopy() *FlexibleappversionDiskUtilization {
  1137  	if in == nil {
  1138  		return nil
  1139  	}
  1140  	out := new(FlexibleappversionDiskUtilization)
  1141  	in.DeepCopyInto(out)
  1142  	return out
  1143  }
  1144  
  1145  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1146  func (in *FlexibleappversionEndpointsApiService) DeepCopyInto(out *FlexibleappversionEndpointsApiService) {
  1147  	*out = *in
  1148  	if in.ConfigId != nil {
  1149  		in, out := &in.ConfigId, &out.ConfigId
  1150  		*out = new(string)
  1151  		**out = **in
  1152  	}
  1153  	if in.DisableTraceSampling != nil {
  1154  		in, out := &in.DisableTraceSampling, &out.DisableTraceSampling
  1155  		*out = new(bool)
  1156  		**out = **in
  1157  	}
  1158  	if in.RolloutStrategy != nil {
  1159  		in, out := &in.RolloutStrategy, &out.RolloutStrategy
  1160  		*out = new(string)
  1161  		**out = **in
  1162  	}
  1163  	return
  1164  }
  1165  
  1166  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionEndpointsApiService.
  1167  func (in *FlexibleappversionEndpointsApiService) DeepCopy() *FlexibleappversionEndpointsApiService {
  1168  	if in == nil {
  1169  		return nil
  1170  	}
  1171  	out := new(FlexibleappversionEndpointsApiService)
  1172  	in.DeepCopyInto(out)
  1173  	return out
  1174  }
  1175  
  1176  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1177  func (in *FlexibleappversionEntrypoint) DeepCopyInto(out *FlexibleappversionEntrypoint) {
  1178  	*out = *in
  1179  	return
  1180  }
  1181  
  1182  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionEntrypoint.
  1183  func (in *FlexibleappversionEntrypoint) DeepCopy() *FlexibleappversionEntrypoint {
  1184  	if in == nil {
  1185  		return nil
  1186  	}
  1187  	out := new(FlexibleappversionEntrypoint)
  1188  	in.DeepCopyInto(out)
  1189  	return out
  1190  }
  1191  
  1192  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1193  func (in *FlexibleappversionFiles) DeepCopyInto(out *FlexibleappversionFiles) {
  1194  	*out = *in
  1195  	if in.Sha1Sum != nil {
  1196  		in, out := &in.Sha1Sum, &out.Sha1Sum
  1197  		*out = new(string)
  1198  		**out = **in
  1199  	}
  1200  	return
  1201  }
  1202  
  1203  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionFiles.
  1204  func (in *FlexibleappversionFiles) DeepCopy() *FlexibleappversionFiles {
  1205  	if in == nil {
  1206  		return nil
  1207  	}
  1208  	out := new(FlexibleappversionFiles)
  1209  	in.DeepCopyInto(out)
  1210  	return out
  1211  }
  1212  
  1213  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1214  func (in *FlexibleappversionHandlers) DeepCopyInto(out *FlexibleappversionHandlers) {
  1215  	*out = *in
  1216  	if in.AuthFailAction != nil {
  1217  		in, out := &in.AuthFailAction, &out.AuthFailAction
  1218  		*out = new(string)
  1219  		**out = **in
  1220  	}
  1221  	if in.Login != nil {
  1222  		in, out := &in.Login, &out.Login
  1223  		*out = new(string)
  1224  		**out = **in
  1225  	}
  1226  	if in.RedirectHttpResponseCode != nil {
  1227  		in, out := &in.RedirectHttpResponseCode, &out.RedirectHttpResponseCode
  1228  		*out = new(string)
  1229  		**out = **in
  1230  	}
  1231  	if in.Script != nil {
  1232  		in, out := &in.Script, &out.Script
  1233  		*out = new(FlexibleappversionScript)
  1234  		**out = **in
  1235  	}
  1236  	if in.SecurityLevel != nil {
  1237  		in, out := &in.SecurityLevel, &out.SecurityLevel
  1238  		*out = new(string)
  1239  		**out = **in
  1240  	}
  1241  	if in.StaticFiles != nil {
  1242  		in, out := &in.StaticFiles, &out.StaticFiles
  1243  		*out = new(FlexibleappversionStaticFiles)
  1244  		(*in).DeepCopyInto(*out)
  1245  	}
  1246  	if in.UrlRegex != nil {
  1247  		in, out := &in.UrlRegex, &out.UrlRegex
  1248  		*out = new(string)
  1249  		**out = **in
  1250  	}
  1251  	return
  1252  }
  1253  
  1254  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionHandlers.
  1255  func (in *FlexibleappversionHandlers) DeepCopy() *FlexibleappversionHandlers {
  1256  	if in == nil {
  1257  		return nil
  1258  	}
  1259  	out := new(FlexibleappversionHandlers)
  1260  	in.DeepCopyInto(out)
  1261  	return out
  1262  }
  1263  
  1264  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1265  func (in *FlexibleappversionLivenessCheck) DeepCopyInto(out *FlexibleappversionLivenessCheck) {
  1266  	*out = *in
  1267  	if in.CheckInterval != nil {
  1268  		in, out := &in.CheckInterval, &out.CheckInterval
  1269  		*out = new(string)
  1270  		**out = **in
  1271  	}
  1272  	if in.FailureThreshold != nil {
  1273  		in, out := &in.FailureThreshold, &out.FailureThreshold
  1274  		*out = new(float64)
  1275  		**out = **in
  1276  	}
  1277  	if in.Host != nil {
  1278  		in, out := &in.Host, &out.Host
  1279  		*out = new(string)
  1280  		**out = **in
  1281  	}
  1282  	if in.InitialDelay != nil {
  1283  		in, out := &in.InitialDelay, &out.InitialDelay
  1284  		*out = new(string)
  1285  		**out = **in
  1286  	}
  1287  	if in.SuccessThreshold != nil {
  1288  		in, out := &in.SuccessThreshold, &out.SuccessThreshold
  1289  		*out = new(float64)
  1290  		**out = **in
  1291  	}
  1292  	if in.Timeout != nil {
  1293  		in, out := &in.Timeout, &out.Timeout
  1294  		*out = new(string)
  1295  		**out = **in
  1296  	}
  1297  	return
  1298  }
  1299  
  1300  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionLivenessCheck.
  1301  func (in *FlexibleappversionLivenessCheck) DeepCopy() *FlexibleappversionLivenessCheck {
  1302  	if in == nil {
  1303  		return nil
  1304  	}
  1305  	out := new(FlexibleappversionLivenessCheck)
  1306  	in.DeepCopyInto(out)
  1307  	return out
  1308  }
  1309  
  1310  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1311  func (in *FlexibleappversionManualScaling) DeepCopyInto(out *FlexibleappversionManualScaling) {
  1312  	*out = *in
  1313  	return
  1314  }
  1315  
  1316  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionManualScaling.
  1317  func (in *FlexibleappversionManualScaling) DeepCopy() *FlexibleappversionManualScaling {
  1318  	if in == nil {
  1319  		return nil
  1320  	}
  1321  	out := new(FlexibleappversionManualScaling)
  1322  	in.DeepCopyInto(out)
  1323  	return out
  1324  }
  1325  
  1326  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1327  func (in *FlexibleappversionNetwork) DeepCopyInto(out *FlexibleappversionNetwork) {
  1328  	*out = *in
  1329  	if in.ForwardedPorts != nil {
  1330  		in, out := &in.ForwardedPorts, &out.ForwardedPorts
  1331  		*out = make([]string, len(*in))
  1332  		copy(*out, *in)
  1333  	}
  1334  	if in.InstanceTag != nil {
  1335  		in, out := &in.InstanceTag, &out.InstanceTag
  1336  		*out = new(string)
  1337  		**out = **in
  1338  	}
  1339  	if in.SessionAffinity != nil {
  1340  		in, out := &in.SessionAffinity, &out.SessionAffinity
  1341  		*out = new(bool)
  1342  		**out = **in
  1343  	}
  1344  	if in.Subnetwork != nil {
  1345  		in, out := &in.Subnetwork, &out.Subnetwork
  1346  		*out = new(string)
  1347  		**out = **in
  1348  	}
  1349  	return
  1350  }
  1351  
  1352  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionNetwork.
  1353  func (in *FlexibleappversionNetwork) DeepCopy() *FlexibleappversionNetwork {
  1354  	if in == nil {
  1355  		return nil
  1356  	}
  1357  	out := new(FlexibleappversionNetwork)
  1358  	in.DeepCopyInto(out)
  1359  	return out
  1360  }
  1361  
  1362  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1363  func (in *FlexibleappversionNetworkUtilization) DeepCopyInto(out *FlexibleappversionNetworkUtilization) {
  1364  	*out = *in
  1365  	if in.TargetReceivedBytesPerSecond != nil {
  1366  		in, out := &in.TargetReceivedBytesPerSecond, &out.TargetReceivedBytesPerSecond
  1367  		*out = new(int)
  1368  		**out = **in
  1369  	}
  1370  	if in.TargetReceivedPacketsPerSecond != nil {
  1371  		in, out := &in.TargetReceivedPacketsPerSecond, &out.TargetReceivedPacketsPerSecond
  1372  		*out = new(int)
  1373  		**out = **in
  1374  	}
  1375  	if in.TargetSentBytesPerSecond != nil {
  1376  		in, out := &in.TargetSentBytesPerSecond, &out.TargetSentBytesPerSecond
  1377  		*out = new(int)
  1378  		**out = **in
  1379  	}
  1380  	if in.TargetSentPacketsPerSecond != nil {
  1381  		in, out := &in.TargetSentPacketsPerSecond, &out.TargetSentPacketsPerSecond
  1382  		*out = new(int)
  1383  		**out = **in
  1384  	}
  1385  	return
  1386  }
  1387  
  1388  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionNetworkUtilization.
  1389  func (in *FlexibleappversionNetworkUtilization) DeepCopy() *FlexibleappversionNetworkUtilization {
  1390  	if in == nil {
  1391  		return nil
  1392  	}
  1393  	out := new(FlexibleappversionNetworkUtilization)
  1394  	in.DeepCopyInto(out)
  1395  	return out
  1396  }
  1397  
  1398  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1399  func (in *FlexibleappversionReadinessCheck) DeepCopyInto(out *FlexibleappversionReadinessCheck) {
  1400  	*out = *in
  1401  	if in.AppStartTimeout != nil {
  1402  		in, out := &in.AppStartTimeout, &out.AppStartTimeout
  1403  		*out = new(string)
  1404  		**out = **in
  1405  	}
  1406  	if in.CheckInterval != nil {
  1407  		in, out := &in.CheckInterval, &out.CheckInterval
  1408  		*out = new(string)
  1409  		**out = **in
  1410  	}
  1411  	if in.FailureThreshold != nil {
  1412  		in, out := &in.FailureThreshold, &out.FailureThreshold
  1413  		*out = new(float64)
  1414  		**out = **in
  1415  	}
  1416  	if in.Host != nil {
  1417  		in, out := &in.Host, &out.Host
  1418  		*out = new(string)
  1419  		**out = **in
  1420  	}
  1421  	if in.SuccessThreshold != nil {
  1422  		in, out := &in.SuccessThreshold, &out.SuccessThreshold
  1423  		*out = new(float64)
  1424  		**out = **in
  1425  	}
  1426  	if in.Timeout != nil {
  1427  		in, out := &in.Timeout, &out.Timeout
  1428  		*out = new(string)
  1429  		**out = **in
  1430  	}
  1431  	return
  1432  }
  1433  
  1434  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionReadinessCheck.
  1435  func (in *FlexibleappversionReadinessCheck) DeepCopy() *FlexibleappversionReadinessCheck {
  1436  	if in == nil {
  1437  		return nil
  1438  	}
  1439  	out := new(FlexibleappversionReadinessCheck)
  1440  	in.DeepCopyInto(out)
  1441  	return out
  1442  }
  1443  
  1444  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1445  func (in *FlexibleappversionRequestUtilization) DeepCopyInto(out *FlexibleappversionRequestUtilization) {
  1446  	*out = *in
  1447  	if in.TargetConcurrentRequests != nil {
  1448  		in, out := &in.TargetConcurrentRequests, &out.TargetConcurrentRequests
  1449  		*out = new(float64)
  1450  		**out = **in
  1451  	}
  1452  	if in.TargetRequestCountPerSecond != nil {
  1453  		in, out := &in.TargetRequestCountPerSecond, &out.TargetRequestCountPerSecond
  1454  		*out = new(string)
  1455  		**out = **in
  1456  	}
  1457  	return
  1458  }
  1459  
  1460  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionRequestUtilization.
  1461  func (in *FlexibleappversionRequestUtilization) DeepCopy() *FlexibleappversionRequestUtilization {
  1462  	if in == nil {
  1463  		return nil
  1464  	}
  1465  	out := new(FlexibleappversionRequestUtilization)
  1466  	in.DeepCopyInto(out)
  1467  	return out
  1468  }
  1469  
  1470  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1471  func (in *FlexibleappversionResources) DeepCopyInto(out *FlexibleappversionResources) {
  1472  	*out = *in
  1473  	if in.Cpu != nil {
  1474  		in, out := &in.Cpu, &out.Cpu
  1475  		*out = new(int)
  1476  		**out = **in
  1477  	}
  1478  	if in.DiskGb != nil {
  1479  		in, out := &in.DiskGb, &out.DiskGb
  1480  		*out = new(int)
  1481  		**out = **in
  1482  	}
  1483  	if in.MemoryGb != nil {
  1484  		in, out := &in.MemoryGb, &out.MemoryGb
  1485  		*out = new(float64)
  1486  		**out = **in
  1487  	}
  1488  	if in.Volumes != nil {
  1489  		in, out := &in.Volumes, &out.Volumes
  1490  		*out = make([]FlexibleappversionVolumes, len(*in))
  1491  		copy(*out, *in)
  1492  	}
  1493  	return
  1494  }
  1495  
  1496  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionResources.
  1497  func (in *FlexibleappversionResources) DeepCopy() *FlexibleappversionResources {
  1498  	if in == nil {
  1499  		return nil
  1500  	}
  1501  	out := new(FlexibleappversionResources)
  1502  	in.DeepCopyInto(out)
  1503  	return out
  1504  }
  1505  
  1506  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1507  func (in *FlexibleappversionScript) DeepCopyInto(out *FlexibleappversionScript) {
  1508  	*out = *in
  1509  	return
  1510  }
  1511  
  1512  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionScript.
  1513  func (in *FlexibleappversionScript) DeepCopy() *FlexibleappversionScript {
  1514  	if in == nil {
  1515  		return nil
  1516  	}
  1517  	out := new(FlexibleappversionScript)
  1518  	in.DeepCopyInto(out)
  1519  	return out
  1520  }
  1521  
  1522  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1523  func (in *FlexibleappversionStaticFiles) DeepCopyInto(out *FlexibleappversionStaticFiles) {
  1524  	*out = *in
  1525  	if in.ApplicationReadable != nil {
  1526  		in, out := &in.ApplicationReadable, &out.ApplicationReadable
  1527  		*out = new(bool)
  1528  		**out = **in
  1529  	}
  1530  	if in.Expiration != nil {
  1531  		in, out := &in.Expiration, &out.Expiration
  1532  		*out = new(string)
  1533  		**out = **in
  1534  	}
  1535  	if in.HttpHeaders != nil {
  1536  		in, out := &in.HttpHeaders, &out.HttpHeaders
  1537  		*out = make(map[string]string, len(*in))
  1538  		for key, val := range *in {
  1539  			(*out)[key] = val
  1540  		}
  1541  	}
  1542  	if in.MimeType != nil {
  1543  		in, out := &in.MimeType, &out.MimeType
  1544  		*out = new(string)
  1545  		**out = **in
  1546  	}
  1547  	if in.Path != nil {
  1548  		in, out := &in.Path, &out.Path
  1549  		*out = new(string)
  1550  		**out = **in
  1551  	}
  1552  	if in.RequireMatchingFile != nil {
  1553  		in, out := &in.RequireMatchingFile, &out.RequireMatchingFile
  1554  		*out = new(bool)
  1555  		**out = **in
  1556  	}
  1557  	if in.UploadPathRegex != nil {
  1558  		in, out := &in.UploadPathRegex, &out.UploadPathRegex
  1559  		*out = new(string)
  1560  		**out = **in
  1561  	}
  1562  	return
  1563  }
  1564  
  1565  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionStaticFiles.
  1566  func (in *FlexibleappversionStaticFiles) DeepCopy() *FlexibleappversionStaticFiles {
  1567  	if in == nil {
  1568  		return nil
  1569  	}
  1570  	out := new(FlexibleappversionStaticFiles)
  1571  	in.DeepCopyInto(out)
  1572  	return out
  1573  }
  1574  
  1575  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1576  func (in *FlexibleappversionVolumes) DeepCopyInto(out *FlexibleappversionVolumes) {
  1577  	*out = *in
  1578  	return
  1579  }
  1580  
  1581  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionVolumes.
  1582  func (in *FlexibleappversionVolumes) DeepCopy() *FlexibleappversionVolumes {
  1583  	if in == nil {
  1584  		return nil
  1585  	}
  1586  	out := new(FlexibleappversionVolumes)
  1587  	in.DeepCopyInto(out)
  1588  	return out
  1589  }
  1590  
  1591  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1592  func (in *FlexibleappversionVpcAccessConnector) DeepCopyInto(out *FlexibleappversionVpcAccessConnector) {
  1593  	*out = *in
  1594  	return
  1595  }
  1596  
  1597  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionVpcAccessConnector.
  1598  func (in *FlexibleappversionVpcAccessConnector) DeepCopy() *FlexibleappversionVpcAccessConnector {
  1599  	if in == nil {
  1600  		return nil
  1601  	}
  1602  	out := new(FlexibleappversionVpcAccessConnector)
  1603  	in.DeepCopyInto(out)
  1604  	return out
  1605  }
  1606  
  1607  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1608  func (in *FlexibleappversionZip) DeepCopyInto(out *FlexibleappversionZip) {
  1609  	*out = *in
  1610  	if in.FilesCount != nil {
  1611  		in, out := &in.FilesCount, &out.FilesCount
  1612  		*out = new(int)
  1613  		**out = **in
  1614  	}
  1615  	return
  1616  }
  1617  
  1618  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlexibleappversionZip.
  1619  func (in *FlexibleappversionZip) DeepCopy() *FlexibleappversionZip {
  1620  	if in == nil {
  1621  		return nil
  1622  	}
  1623  	out := new(FlexibleappversionZip)
  1624  	in.DeepCopyInto(out)
  1625  	return out
  1626  }
  1627  
  1628  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1629  func (in *ServicesplittrafficSplit) DeepCopyInto(out *ServicesplittrafficSplit) {
  1630  	*out = *in
  1631  	if in.Allocations != nil {
  1632  		in, out := &in.Allocations, &out.Allocations
  1633  		*out = make(map[string]string, len(*in))
  1634  		for key, val := range *in {
  1635  			(*out)[key] = val
  1636  		}
  1637  	}
  1638  	if in.ShardBy != nil {
  1639  		in, out := &in.ShardBy, &out.ShardBy
  1640  		*out = new(string)
  1641  		**out = **in
  1642  	}
  1643  	return
  1644  }
  1645  
  1646  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicesplittrafficSplit.
  1647  func (in *ServicesplittrafficSplit) DeepCopy() *ServicesplittrafficSplit {
  1648  	if in == nil {
  1649  		return nil
  1650  	}
  1651  	out := new(ServicesplittrafficSplit)
  1652  	in.DeepCopyInto(out)
  1653  	return out
  1654  }
  1655  
  1656  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1657  func (in *StandardappversionAutomaticScaling) DeepCopyInto(out *StandardappversionAutomaticScaling) {
  1658  	*out = *in
  1659  	if in.MaxConcurrentRequests != nil {
  1660  		in, out := &in.MaxConcurrentRequests, &out.MaxConcurrentRequests
  1661  		*out = new(int)
  1662  		**out = **in
  1663  	}
  1664  	if in.MaxIdleInstances != nil {
  1665  		in, out := &in.MaxIdleInstances, &out.MaxIdleInstances
  1666  		*out = new(int)
  1667  		**out = **in
  1668  	}
  1669  	if in.MaxPendingLatency != nil {
  1670  		in, out := &in.MaxPendingLatency, &out.MaxPendingLatency
  1671  		*out = new(string)
  1672  		**out = **in
  1673  	}
  1674  	if in.MinIdleInstances != nil {
  1675  		in, out := &in.MinIdleInstances, &out.MinIdleInstances
  1676  		*out = new(int)
  1677  		**out = **in
  1678  	}
  1679  	if in.MinPendingLatency != nil {
  1680  		in, out := &in.MinPendingLatency, &out.MinPendingLatency
  1681  		*out = new(string)
  1682  		**out = **in
  1683  	}
  1684  	if in.StandardSchedulerSettings != nil {
  1685  		in, out := &in.StandardSchedulerSettings, &out.StandardSchedulerSettings
  1686  		*out = new(StandardappversionStandardSchedulerSettings)
  1687  		(*in).DeepCopyInto(*out)
  1688  	}
  1689  	return
  1690  }
  1691  
  1692  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionAutomaticScaling.
  1693  func (in *StandardappversionAutomaticScaling) DeepCopy() *StandardappversionAutomaticScaling {
  1694  	if in == nil {
  1695  		return nil
  1696  	}
  1697  	out := new(StandardappversionAutomaticScaling)
  1698  	in.DeepCopyInto(out)
  1699  	return out
  1700  }
  1701  
  1702  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1703  func (in *StandardappversionBasicScaling) DeepCopyInto(out *StandardappversionBasicScaling) {
  1704  	*out = *in
  1705  	if in.IdleTimeout != nil {
  1706  		in, out := &in.IdleTimeout, &out.IdleTimeout
  1707  		*out = new(string)
  1708  		**out = **in
  1709  	}
  1710  	return
  1711  }
  1712  
  1713  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionBasicScaling.
  1714  func (in *StandardappversionBasicScaling) DeepCopy() *StandardappversionBasicScaling {
  1715  	if in == nil {
  1716  		return nil
  1717  	}
  1718  	out := new(StandardappversionBasicScaling)
  1719  	in.DeepCopyInto(out)
  1720  	return out
  1721  }
  1722  
  1723  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1724  func (in *StandardappversionDeployment) DeepCopyInto(out *StandardappversionDeployment) {
  1725  	*out = *in
  1726  	if in.Files != nil {
  1727  		in, out := &in.Files, &out.Files
  1728  		*out = make([]StandardappversionFiles, len(*in))
  1729  		for i := range *in {
  1730  			(*in)[i].DeepCopyInto(&(*out)[i])
  1731  		}
  1732  	}
  1733  	if in.Zip != nil {
  1734  		in, out := &in.Zip, &out.Zip
  1735  		*out = new(StandardappversionZip)
  1736  		(*in).DeepCopyInto(*out)
  1737  	}
  1738  	return
  1739  }
  1740  
  1741  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionDeployment.
  1742  func (in *StandardappversionDeployment) DeepCopy() *StandardappversionDeployment {
  1743  	if in == nil {
  1744  		return nil
  1745  	}
  1746  	out := new(StandardappversionDeployment)
  1747  	in.DeepCopyInto(out)
  1748  	return out
  1749  }
  1750  
  1751  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1752  func (in *StandardappversionEntrypoint) DeepCopyInto(out *StandardappversionEntrypoint) {
  1753  	*out = *in
  1754  	return
  1755  }
  1756  
  1757  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionEntrypoint.
  1758  func (in *StandardappversionEntrypoint) DeepCopy() *StandardappversionEntrypoint {
  1759  	if in == nil {
  1760  		return nil
  1761  	}
  1762  	out := new(StandardappversionEntrypoint)
  1763  	in.DeepCopyInto(out)
  1764  	return out
  1765  }
  1766  
  1767  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1768  func (in *StandardappversionFiles) DeepCopyInto(out *StandardappversionFiles) {
  1769  	*out = *in
  1770  	if in.Sha1Sum != nil {
  1771  		in, out := &in.Sha1Sum, &out.Sha1Sum
  1772  		*out = new(string)
  1773  		**out = **in
  1774  	}
  1775  	return
  1776  }
  1777  
  1778  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionFiles.
  1779  func (in *StandardappversionFiles) DeepCopy() *StandardappversionFiles {
  1780  	if in == nil {
  1781  		return nil
  1782  	}
  1783  	out := new(StandardappversionFiles)
  1784  	in.DeepCopyInto(out)
  1785  	return out
  1786  }
  1787  
  1788  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1789  func (in *StandardappversionHandlers) DeepCopyInto(out *StandardappversionHandlers) {
  1790  	*out = *in
  1791  	if in.AuthFailAction != nil {
  1792  		in, out := &in.AuthFailAction, &out.AuthFailAction
  1793  		*out = new(string)
  1794  		**out = **in
  1795  	}
  1796  	if in.Login != nil {
  1797  		in, out := &in.Login, &out.Login
  1798  		*out = new(string)
  1799  		**out = **in
  1800  	}
  1801  	if in.RedirectHttpResponseCode != nil {
  1802  		in, out := &in.RedirectHttpResponseCode, &out.RedirectHttpResponseCode
  1803  		*out = new(string)
  1804  		**out = **in
  1805  	}
  1806  	if in.Script != nil {
  1807  		in, out := &in.Script, &out.Script
  1808  		*out = new(StandardappversionScript)
  1809  		**out = **in
  1810  	}
  1811  	if in.SecurityLevel != nil {
  1812  		in, out := &in.SecurityLevel, &out.SecurityLevel
  1813  		*out = new(string)
  1814  		**out = **in
  1815  	}
  1816  	if in.StaticFiles != nil {
  1817  		in, out := &in.StaticFiles, &out.StaticFiles
  1818  		*out = new(StandardappversionStaticFiles)
  1819  		(*in).DeepCopyInto(*out)
  1820  	}
  1821  	if in.UrlRegex != nil {
  1822  		in, out := &in.UrlRegex, &out.UrlRegex
  1823  		*out = new(string)
  1824  		**out = **in
  1825  	}
  1826  	return
  1827  }
  1828  
  1829  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionHandlers.
  1830  func (in *StandardappversionHandlers) DeepCopy() *StandardappversionHandlers {
  1831  	if in == nil {
  1832  		return nil
  1833  	}
  1834  	out := new(StandardappversionHandlers)
  1835  	in.DeepCopyInto(out)
  1836  	return out
  1837  }
  1838  
  1839  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1840  func (in *StandardappversionLibraries) DeepCopyInto(out *StandardappversionLibraries) {
  1841  	*out = *in
  1842  	if in.Name != nil {
  1843  		in, out := &in.Name, &out.Name
  1844  		*out = new(string)
  1845  		**out = **in
  1846  	}
  1847  	if in.Version != nil {
  1848  		in, out := &in.Version, &out.Version
  1849  		*out = new(string)
  1850  		**out = **in
  1851  	}
  1852  	return
  1853  }
  1854  
  1855  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionLibraries.
  1856  func (in *StandardappversionLibraries) DeepCopy() *StandardappversionLibraries {
  1857  	if in == nil {
  1858  		return nil
  1859  	}
  1860  	out := new(StandardappversionLibraries)
  1861  	in.DeepCopyInto(out)
  1862  	return out
  1863  }
  1864  
  1865  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1866  func (in *StandardappversionManualScaling) DeepCopyInto(out *StandardappversionManualScaling) {
  1867  	*out = *in
  1868  	return
  1869  }
  1870  
  1871  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionManualScaling.
  1872  func (in *StandardappversionManualScaling) DeepCopy() *StandardappversionManualScaling {
  1873  	if in == nil {
  1874  		return nil
  1875  	}
  1876  	out := new(StandardappversionManualScaling)
  1877  	in.DeepCopyInto(out)
  1878  	return out
  1879  }
  1880  
  1881  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1882  func (in *StandardappversionScript) DeepCopyInto(out *StandardappversionScript) {
  1883  	*out = *in
  1884  	return
  1885  }
  1886  
  1887  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionScript.
  1888  func (in *StandardappversionScript) DeepCopy() *StandardappversionScript {
  1889  	if in == nil {
  1890  		return nil
  1891  	}
  1892  	out := new(StandardappversionScript)
  1893  	in.DeepCopyInto(out)
  1894  	return out
  1895  }
  1896  
  1897  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1898  func (in *StandardappversionStandardSchedulerSettings) DeepCopyInto(out *StandardappversionStandardSchedulerSettings) {
  1899  	*out = *in
  1900  	if in.MaxInstances != nil {
  1901  		in, out := &in.MaxInstances, &out.MaxInstances
  1902  		*out = new(int)
  1903  		**out = **in
  1904  	}
  1905  	if in.MinInstances != nil {
  1906  		in, out := &in.MinInstances, &out.MinInstances
  1907  		*out = new(int)
  1908  		**out = **in
  1909  	}
  1910  	if in.TargetCpuUtilization != nil {
  1911  		in, out := &in.TargetCpuUtilization, &out.TargetCpuUtilization
  1912  		*out = new(float64)
  1913  		**out = **in
  1914  	}
  1915  	if in.TargetThroughputUtilization != nil {
  1916  		in, out := &in.TargetThroughputUtilization, &out.TargetThroughputUtilization
  1917  		*out = new(float64)
  1918  		**out = **in
  1919  	}
  1920  	return
  1921  }
  1922  
  1923  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionStandardSchedulerSettings.
  1924  func (in *StandardappversionStandardSchedulerSettings) DeepCopy() *StandardappversionStandardSchedulerSettings {
  1925  	if in == nil {
  1926  		return nil
  1927  	}
  1928  	out := new(StandardappversionStandardSchedulerSettings)
  1929  	in.DeepCopyInto(out)
  1930  	return out
  1931  }
  1932  
  1933  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1934  func (in *StandardappversionStaticFiles) DeepCopyInto(out *StandardappversionStaticFiles) {
  1935  	*out = *in
  1936  	if in.ApplicationReadable != nil {
  1937  		in, out := &in.ApplicationReadable, &out.ApplicationReadable
  1938  		*out = new(bool)
  1939  		**out = **in
  1940  	}
  1941  	if in.Expiration != nil {
  1942  		in, out := &in.Expiration, &out.Expiration
  1943  		*out = new(string)
  1944  		**out = **in
  1945  	}
  1946  	if in.HttpHeaders != nil {
  1947  		in, out := &in.HttpHeaders, &out.HttpHeaders
  1948  		*out = make(map[string]string, len(*in))
  1949  		for key, val := range *in {
  1950  			(*out)[key] = val
  1951  		}
  1952  	}
  1953  	if in.MimeType != nil {
  1954  		in, out := &in.MimeType, &out.MimeType
  1955  		*out = new(string)
  1956  		**out = **in
  1957  	}
  1958  	if in.Path != nil {
  1959  		in, out := &in.Path, &out.Path
  1960  		*out = new(string)
  1961  		**out = **in
  1962  	}
  1963  	if in.RequireMatchingFile != nil {
  1964  		in, out := &in.RequireMatchingFile, &out.RequireMatchingFile
  1965  		*out = new(bool)
  1966  		**out = **in
  1967  	}
  1968  	if in.UploadPathRegex != nil {
  1969  		in, out := &in.UploadPathRegex, &out.UploadPathRegex
  1970  		*out = new(string)
  1971  		**out = **in
  1972  	}
  1973  	return
  1974  }
  1975  
  1976  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionStaticFiles.
  1977  func (in *StandardappversionStaticFiles) DeepCopy() *StandardappversionStaticFiles {
  1978  	if in == nil {
  1979  		return nil
  1980  	}
  1981  	out := new(StandardappversionStaticFiles)
  1982  	in.DeepCopyInto(out)
  1983  	return out
  1984  }
  1985  
  1986  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1987  func (in *StandardappversionVpcAccessConnector) DeepCopyInto(out *StandardappversionVpcAccessConnector) {
  1988  	*out = *in
  1989  	if in.EgressSetting != nil {
  1990  		in, out := &in.EgressSetting, &out.EgressSetting
  1991  		*out = new(string)
  1992  		**out = **in
  1993  	}
  1994  	return
  1995  }
  1996  
  1997  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionVpcAccessConnector.
  1998  func (in *StandardappversionVpcAccessConnector) DeepCopy() *StandardappversionVpcAccessConnector {
  1999  	if in == nil {
  2000  		return nil
  2001  	}
  2002  	out := new(StandardappversionVpcAccessConnector)
  2003  	in.DeepCopyInto(out)
  2004  	return out
  2005  }
  2006  
  2007  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2008  func (in *StandardappversionZip) DeepCopyInto(out *StandardappversionZip) {
  2009  	*out = *in
  2010  	if in.FilesCount != nil {
  2011  		in, out := &in.FilesCount, &out.FilesCount
  2012  		*out = new(int)
  2013  		**out = **in
  2014  	}
  2015  	return
  2016  }
  2017  
  2018  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StandardappversionZip.
  2019  func (in *StandardappversionZip) DeepCopy() *StandardappversionZip {
  2020  	if in == nil {
  2021  		return nil
  2022  	}
  2023  	out := new(StandardappversionZip)
  2024  	in.DeepCopyInto(out)
  2025  	return out
  2026  }
  2027  

View as plain text