...

Source file src/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1/zz_generated.deepcopy.go

Documentation: k8s.io/client-go/pkg/apis/clientauthentication/v1beta1

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  /*
     5  Copyright The Kubernetes Authors.
     6  
     7  Licensed under the Apache License, Version 2.0 (the "License");
     8  you may not use this file except in compliance with the License.
     9  You may obtain a copy of the License at
    10  
    11      http://www.apache.org/licenses/LICENSE-2.0
    12  
    13  Unless required by applicable law or agreed to in writing, software
    14  distributed under the License is distributed on an "AS IS" BASIS,
    15  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    16  See the License for the specific language governing permissions and
    17  limitations under the License.
    18  */
    19  
    20  // Code generated by deepcopy-gen. DO NOT EDIT.
    21  
    22  package v1beta1
    23  
    24  import (
    25  	runtime "k8s.io/apimachinery/pkg/runtime"
    26  )
    27  
    28  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    29  func (in *Cluster) DeepCopyInto(out *Cluster) {
    30  	*out = *in
    31  	if in.CertificateAuthorityData != nil {
    32  		in, out := &in.CertificateAuthorityData, &out.CertificateAuthorityData
    33  		*out = make([]byte, len(*in))
    34  		copy(*out, *in)
    35  	}
    36  	in.Config.DeepCopyInto(&out.Config)
    37  	return
    38  }
    39  
    40  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.
    41  func (in *Cluster) DeepCopy() *Cluster {
    42  	if in == nil {
    43  		return nil
    44  	}
    45  	out := new(Cluster)
    46  	in.DeepCopyInto(out)
    47  	return out
    48  }
    49  
    50  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    51  func (in *ExecCredential) DeepCopyInto(out *ExecCredential) {
    52  	*out = *in
    53  	out.TypeMeta = in.TypeMeta
    54  	in.Spec.DeepCopyInto(&out.Spec)
    55  	if in.Status != nil {
    56  		in, out := &in.Status, &out.Status
    57  		*out = new(ExecCredentialStatus)
    58  		(*in).DeepCopyInto(*out)
    59  	}
    60  	return
    61  }
    62  
    63  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredential.
    64  func (in *ExecCredential) DeepCopy() *ExecCredential {
    65  	if in == nil {
    66  		return nil
    67  	}
    68  	out := new(ExecCredential)
    69  	in.DeepCopyInto(out)
    70  	return out
    71  }
    72  
    73  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    74  func (in *ExecCredential) DeepCopyObject() runtime.Object {
    75  	if c := in.DeepCopy(); c != nil {
    76  		return c
    77  	}
    78  	return nil
    79  }
    80  
    81  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    82  func (in *ExecCredentialSpec) DeepCopyInto(out *ExecCredentialSpec) {
    83  	*out = *in
    84  	if in.Cluster != nil {
    85  		in, out := &in.Cluster, &out.Cluster
    86  		*out = new(Cluster)
    87  		(*in).DeepCopyInto(*out)
    88  	}
    89  	return
    90  }
    91  
    92  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
    93  func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
    94  	if in == nil {
    95  		return nil
    96  	}
    97  	out := new(ExecCredentialSpec)
    98  	in.DeepCopyInto(out)
    99  	return out
   100  }
   101  
   102  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   103  func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
   104  	*out = *in
   105  	if in.ExpirationTimestamp != nil {
   106  		in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
   107  		*out = (*in).DeepCopy()
   108  	}
   109  	return
   110  }
   111  
   112  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
   113  func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
   114  	if in == nil {
   115  		return nil
   116  	}
   117  	out := new(ExecCredentialStatus)
   118  	in.DeepCopyInto(out)
   119  	return out
   120  }
   121  

View as plain text