...

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

Documentation: github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/iap/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 *IAPBrand) DeepCopyInto(out *IAPBrand) {
    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 IAPBrand.
    43  func (in *IAPBrand) DeepCopy() *IAPBrand {
    44  	if in == nil {
    45  		return nil
    46  	}
    47  	out := new(IAPBrand)
    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 *IAPBrand) 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 *IAPBrandList) DeepCopyInto(out *IAPBrandList) {
    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([]IAPBrand, 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 IAPBrandList.
    76  func (in *IAPBrandList) DeepCopy() *IAPBrandList {
    77  	if in == nil {
    78  		return nil
    79  	}
    80  	out := new(IAPBrandList)
    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 *IAPBrandList) 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 *IAPBrandSpec) DeepCopyInto(out *IAPBrandSpec) {
    95  	*out = *in
    96  	if in.ApplicationTitle != nil {
    97  		in, out := &in.ApplicationTitle, &out.ApplicationTitle
    98  		*out = new(string)
    99  		**out = **in
   100  	}
   101  	if in.ResourceID != nil {
   102  		in, out := &in.ResourceID, &out.ResourceID
   103  		*out = new(string)
   104  		**out = **in
   105  	}
   106  	if in.SupportEmail != nil {
   107  		in, out := &in.SupportEmail, &out.SupportEmail
   108  		*out = new(string)
   109  		**out = **in
   110  	}
   111  	return
   112  }
   113  
   114  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPBrandSpec.
   115  func (in *IAPBrandSpec) DeepCopy() *IAPBrandSpec {
   116  	if in == nil {
   117  		return nil
   118  	}
   119  	out := new(IAPBrandSpec)
   120  	in.DeepCopyInto(out)
   121  	return out
   122  }
   123  
   124  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   125  func (in *IAPBrandStatus) DeepCopyInto(out *IAPBrandStatus) {
   126  	*out = *in
   127  	if in.Conditions != nil {
   128  		in, out := &in.Conditions, &out.Conditions
   129  		*out = make([]v1alpha1.Condition, len(*in))
   130  		copy(*out, *in)
   131  	}
   132  	if in.ObservedGeneration != nil {
   133  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   134  		*out = new(int)
   135  		**out = **in
   136  	}
   137  	if in.OrgInternalOnly != nil {
   138  		in, out := &in.OrgInternalOnly, &out.OrgInternalOnly
   139  		*out = new(bool)
   140  		**out = **in
   141  	}
   142  	return
   143  }
   144  
   145  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPBrandStatus.
   146  func (in *IAPBrandStatus) DeepCopy() *IAPBrandStatus {
   147  	if in == nil {
   148  		return nil
   149  	}
   150  	out := new(IAPBrandStatus)
   151  	in.DeepCopyInto(out)
   152  	return out
   153  }
   154  
   155  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   156  func (in *IAPIdentityAwareProxyClient) DeepCopyInto(out *IAPIdentityAwareProxyClient) {
   157  	*out = *in
   158  	out.TypeMeta = in.TypeMeta
   159  	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
   160  	in.Spec.DeepCopyInto(&out.Spec)
   161  	in.Status.DeepCopyInto(&out.Status)
   162  	return
   163  }
   164  
   165  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPIdentityAwareProxyClient.
   166  func (in *IAPIdentityAwareProxyClient) DeepCopy() *IAPIdentityAwareProxyClient {
   167  	if in == nil {
   168  		return nil
   169  	}
   170  	out := new(IAPIdentityAwareProxyClient)
   171  	in.DeepCopyInto(out)
   172  	return out
   173  }
   174  
   175  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   176  func (in *IAPIdentityAwareProxyClient) DeepCopyObject() runtime.Object {
   177  	if c := in.DeepCopy(); c != nil {
   178  		return c
   179  	}
   180  	return nil
   181  }
   182  
   183  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   184  func (in *IAPIdentityAwareProxyClientList) DeepCopyInto(out *IAPIdentityAwareProxyClientList) {
   185  	*out = *in
   186  	out.TypeMeta = in.TypeMeta
   187  	in.ListMeta.DeepCopyInto(&out.ListMeta)
   188  	if in.Items != nil {
   189  		in, out := &in.Items, &out.Items
   190  		*out = make([]IAPIdentityAwareProxyClient, len(*in))
   191  		for i := range *in {
   192  			(*in)[i].DeepCopyInto(&(*out)[i])
   193  		}
   194  	}
   195  	return
   196  }
   197  
   198  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPIdentityAwareProxyClientList.
   199  func (in *IAPIdentityAwareProxyClientList) DeepCopy() *IAPIdentityAwareProxyClientList {
   200  	if in == nil {
   201  		return nil
   202  	}
   203  	out := new(IAPIdentityAwareProxyClientList)
   204  	in.DeepCopyInto(out)
   205  	return out
   206  }
   207  
   208  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
   209  func (in *IAPIdentityAwareProxyClientList) DeepCopyObject() runtime.Object {
   210  	if c := in.DeepCopy(); c != nil {
   211  		return c
   212  	}
   213  	return nil
   214  }
   215  
   216  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   217  func (in *IAPIdentityAwareProxyClientSpec) DeepCopyInto(out *IAPIdentityAwareProxyClientSpec) {
   218  	*out = *in
   219  	out.BrandRef = in.BrandRef
   220  	if in.DisplayName != nil {
   221  		in, out := &in.DisplayName, &out.DisplayName
   222  		*out = new(string)
   223  		**out = **in
   224  	}
   225  	if in.ResourceID != nil {
   226  		in, out := &in.ResourceID, &out.ResourceID
   227  		*out = new(string)
   228  		**out = **in
   229  	}
   230  	return
   231  }
   232  
   233  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPIdentityAwareProxyClientSpec.
   234  func (in *IAPIdentityAwareProxyClientSpec) DeepCopy() *IAPIdentityAwareProxyClientSpec {
   235  	if in == nil {
   236  		return nil
   237  	}
   238  	out := new(IAPIdentityAwareProxyClientSpec)
   239  	in.DeepCopyInto(out)
   240  	return out
   241  }
   242  
   243  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   244  func (in *IAPIdentityAwareProxyClientStatus) DeepCopyInto(out *IAPIdentityAwareProxyClientStatus) {
   245  	*out = *in
   246  	if in.Conditions != nil {
   247  		in, out := &in.Conditions, &out.Conditions
   248  		*out = make([]v1alpha1.Condition, len(*in))
   249  		copy(*out, *in)
   250  	}
   251  	if in.ObservedGeneration != nil {
   252  		in, out := &in.ObservedGeneration, &out.ObservedGeneration
   253  		*out = new(int)
   254  		**out = **in
   255  	}
   256  	if in.Secret != nil {
   257  		in, out := &in.Secret, &out.Secret
   258  		*out = new(string)
   259  		**out = **in
   260  	}
   261  	return
   262  }
   263  
   264  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IAPIdentityAwareProxyClientStatus.
   265  func (in *IAPIdentityAwareProxyClientStatus) DeepCopy() *IAPIdentityAwareProxyClientStatus {
   266  	if in == nil {
   267  		return nil
   268  	}
   269  	out := new(IAPIdentityAwareProxyClientStatus)
   270  	in.DeepCopyInto(out)
   271  	return out
   272  }
   273  

View as plain text