...

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

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/cloudtasks/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 *CloudTasksQueue) DeepCopyInto(out *CloudTasksQueue) {
    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 CloudTasksQueue.
    43  func (in *CloudTasksQueue) DeepCopy() *CloudTasksQueue {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(CloudTasksQueue)
    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 *CloudTasksQueue) 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 *CloudTasksQueueList) DeepCopyInto(out *CloudTasksQueueList) {
    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([]CloudTasksQueue, 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 CloudTasksQueueList.
    76  func (in *CloudTasksQueueList) DeepCopy() *CloudTasksQueueList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(CloudTasksQueueList)
    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 *CloudTasksQueueList) 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 *CloudTasksQueueSpec) DeepCopyInto(out *CloudTasksQueueSpec) {
    95  	*out = *in
    96  	if in.AppEngineRoutingOverride != nil {
    97  		in, out := &in.AppEngineRoutingOverride, &out.AppEngineRoutingOverride
    98  		*out = new(QueueAppEngineRoutingOverride)
    99  		(*in).DeepCopyInto(*out)
   100  	}
   101  	out.ProjectRef = in.ProjectRef
   102  	if in.RateLimits != nil {
   103  		in, out := &in.RateLimits, &out.RateLimits
   104  		*out = new(QueueRateLimits)
   105  		(*in).DeepCopyInto(*out)
   106  	}
   107  	if in.ResourceID != nil {
   108  		in, out := &in.ResourceID, &out.ResourceID
   109  		*out = new(string)
   110  		**out = **in
   111  	}
   112  	if in.RetryConfig != nil {
   113  		in, out := &in.RetryConfig, &out.RetryConfig
   114  		*out = new(QueueRetryConfig)
   115  		(*in).DeepCopyInto(*out)
   116  	}
   117  	if in.StackdriverLoggingConfig != nil {
   118  		in, out := &in.StackdriverLoggingConfig, &out.StackdriverLoggingConfig
   119  		*out = new(QueueStackdriverLoggingConfig)
   120  		**out = **in
   121  	}
   122  	return
   123  }
   124  
   125  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudTasksQueueSpec.
   126  func (in *CloudTasksQueueSpec) DeepCopy() *CloudTasksQueueSpec {
   127  	if in == nil {
   128  		return nil
   129  	}
   130  	out := new(CloudTasksQueueSpec)
   131  	in.DeepCopyInto(out)
   132  	return out
   133  }
   134  
   135  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   136  func (in *CloudTasksQueueStatus) DeepCopyInto(out *CloudTasksQueueStatus) {
   137  	*out = *in
   138  	if in.Conditions != nil {
   139  		in, out := &in.Conditions, &out.Conditions
   140  		*out = make([]k8sv1alpha1.Condition, len(*in))
   141  		copy(*out, *in)
   142  	}
   143  	if in.ObservedGeneration != nil {
   144  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   145  		*out = new(int)
   146  		**out = **in
   147  	}
   148  	return
   149  }
   150  
   151  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudTasksQueueStatus.
   152  func (in *CloudTasksQueueStatus) DeepCopy() *CloudTasksQueueStatus {
   153  	if in == nil {
   154  		return nil
   155  	}
   156  	out := new(CloudTasksQueueStatus)
   157  	in.DeepCopyInto(out)
   158  	return out
   159  }
   160  
   161  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   162  func (in *QueueAppEngineRoutingOverride) DeepCopyInto(out *QueueAppEngineRoutingOverride) {
   163  	*out = *in
   164  	if in.Host != nil {
   165  		in, out := &in.Host, &out.Host
   166  		*out = new(string)
   167  		**out = **in
   168  	}
   169  	if in.Instance != nil {
   170  		in, out := &in.Instance, &out.Instance
   171  		*out = new(string)
   172  		**out = **in
   173  	}
   174  	if in.Service != nil {
   175  		in, out := &in.Service, &out.Service
   176  		*out = new(string)
   177  		**out = **in
   178  	}
   179  	if in.Version != nil {
   180  		in, out := &in.Version, &out.Version
   181  		*out = new(string)
   182  		**out = **in
   183  	}
   184  	return
   185  }
   186  
   187  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueueAppEngineRoutingOverride.
   188  func (in *QueueAppEngineRoutingOverride) DeepCopy() *QueueAppEngineRoutingOverride {
   189  	if in == nil {
   190  		return nil
   191  	}
   192  	out := new(QueueAppEngineRoutingOverride)
   193  	in.DeepCopyInto(out)
   194  	return out
   195  }
   196  
   197  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   198  func (in *QueueRateLimits) DeepCopyInto(out *QueueRateLimits) {
   199  	*out = *in
   200  	if in.MaxBurstSize != nil {
   201  		in, out := &in.MaxBurstSize, &out.MaxBurstSize
   202  		*out = new(int)
   203  		**out = **in
   204  	}
   205  	if in.MaxConcurrentDispatches != nil {
   206  		in, out := &in.MaxConcurrentDispatches, &out.MaxConcurrentDispatches
   207  		*out = new(int)
   208  		**out = **in
   209  	}
   210  	if in.MaxDispatchesPerSecond != nil {
   211  		in, out := &in.MaxDispatchesPerSecond, &out.MaxDispatchesPerSecond
   212  		*out = new(float64)
   213  		**out = **in
   214  	}
   215  	return
   216  }
   217  
   218  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueueRateLimits.
   219  func (in *QueueRateLimits) DeepCopy() *QueueRateLimits {
   220  	if in == nil {
   221  		return nil
   222  	}
   223  	out := new(QueueRateLimits)
   224  	in.DeepCopyInto(out)
   225  	return out
   226  }
   227  
   228  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   229  func (in *QueueRetryConfig) DeepCopyInto(out *QueueRetryConfig) {
   230  	*out = *in
   231  	if in.MaxAttempts != nil {
   232  		in, out := &in.MaxAttempts, &out.MaxAttempts
   233  		*out = new(int)
   234  		**out = **in
   235  	}
   236  	if in.MaxBackoff != nil {
   237  		in, out := &in.MaxBackoff, &out.MaxBackoff
   238  		*out = new(string)
   239  		**out = **in
   240  	}
   241  	if in.MaxDoublings != nil {
   242  		in, out := &in.MaxDoublings, &out.MaxDoublings
   243  		*out = new(int)
   244  		**out = **in
   245  	}
   246  	if in.MaxRetryDuration != nil {
   247  		in, out := &in.MaxRetryDuration, &out.MaxRetryDuration
   248  		*out = new(string)
   249  		**out = **in
   250  	}
   251  	if in.MinBackoff != nil {
   252  		in, out := &in.MinBackoff, &out.MinBackoff
   253  		*out = new(string)
   254  		**out = **in
   255  	}
   256  	return
   257  }
   258  
   259  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueueRetryConfig.
   260  func (in *QueueRetryConfig) DeepCopy() *QueueRetryConfig {
   261  	if in == nil {
   262  		return nil
   263  	}
   264  	out := new(QueueRetryConfig)
   265  	in.DeepCopyInto(out)
   266  	return out
   267  }
   268  
   269  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   270  func (in *QueueStackdriverLoggingConfig) DeepCopyInto(out *QueueStackdriverLoggingConfig) {
   271  	*out = *in
   272  	return
   273  }
   274  
   275  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueueStackdriverLoggingConfig.
   276  func (in *QueueStackdriverLoggingConfig) DeepCopy() *QueueStackdriverLoggingConfig {
   277  	if in == nil {
   278  		return nil
   279  	}
   280  	out := new(QueueStackdriverLoggingConfig)
   281  	in.DeepCopyInto(out)
   282  	return out
   283  }
   284  

View as plain text