k8s.io/client-go@v0.22.2/pkg/apis/clientauthentication/v1/zz_generated.deepcopy.go (about)

     1  // +build !ignore_autogenerated
     2  
     3  /*
     4  Copyright The Kubernetes Authors.
     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  
    19  // Code generated by deepcopy-gen. DO NOT EDIT.
    20  
    21  package v1
    22  
    23  import (
    24  	runtime "k8s.io/apimachinery/pkg/runtime"
    25  )
    26  
    27  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    28  func (in *Cluster) DeepCopyInto(out *Cluster) {
    29  	*out = *in
    30  	if in.CertificateAuthorityData != nil {
    31  		in, out := &in.CertificateAuthorityData, &out.CertificateAuthorityData
    32  		*out = make([]byte, len(*in))
    33  		copy(*out, *in)
    34  	}
    35  	in.Config.DeepCopyInto(&out.Config)
    36  	return
    37  }
    38  
    39  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.
    40  func (in *Cluster) DeepCopy() *Cluster {
    41  	if in == nil {
    42  		return nil
    43  	}
    44  	out := new(Cluster)
    45  	in.DeepCopyInto(out)
    46  	return out
    47  }
    48  
    49  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    50  func (in *ExecCredential) DeepCopyInto(out *ExecCredential) {
    51  	*out = *in
    52  	out.TypeMeta = in.TypeMeta
    53  	in.Spec.DeepCopyInto(&out.Spec)
    54  	if in.Status != nil {
    55  		in, out := &in.Status, &out.Status
    56  		*out = new(ExecCredentialStatus)
    57  		(*in).DeepCopyInto(*out)
    58  	}
    59  	return
    60  }
    61  
    62  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredential.
    63  func (in *ExecCredential) DeepCopy() *ExecCredential {
    64  	if in == nil {
    65  		return nil
    66  	}
    67  	out := new(ExecCredential)
    68  	in.DeepCopyInto(out)
    69  	return out
    70  }
    71  
    72  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    73  func (in *ExecCredential) DeepCopyObject() runtime.Object {
    74  	if c := in.DeepCopy(); c != nil {
    75  		return c
    76  	}
    77  	return nil
    78  }
    79  
    80  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    81  func (in *ExecCredentialSpec) DeepCopyInto(out *ExecCredentialSpec) {
    82  	*out = *in
    83  	if in.Cluster != nil {
    84  		in, out := &in.Cluster, &out.Cluster
    85  		*out = new(Cluster)
    86  		(*in).DeepCopyInto(*out)
    87  	}
    88  	return
    89  }
    90  
    91  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
    92  func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
    93  	if in == nil {
    94  		return nil
    95  	}
    96  	out := new(ExecCredentialSpec)
    97  	in.DeepCopyInto(out)
    98  	return out
    99  }
   100  
   101  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   102  func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
   103  	*out = *in
   104  	if in.ExpirationTimestamp != nil {
   105  		in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
   106  		*out = (*in).DeepCopy()
   107  	}
   108  	return
   109  }
   110  
   111  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
   112  func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
   113  	if in == nil {
   114  		return nil
   115  	}
   116  	out := new(ExecCredentialStatus)
   117  	in.DeepCopyInto(out)
   118  	return out
   119  }