k8s.io/client-go@v0.22.2/pkg/apis/clientauthentication/v1alpha1/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 v1alpha1
    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 *ExecCredential) DeepCopyInto(out *ExecCredential) {
    29  	*out = *in
    30  	out.TypeMeta = in.TypeMeta
    31  	in.Spec.DeepCopyInto(&out.Spec)
    32  	if in.Status != nil {
    33  		in, out := &in.Status, &out.Status
    34  		*out = new(ExecCredentialStatus)
    35  		(*in).DeepCopyInto(*out)
    36  	}
    37  	return
    38  }
    39  
    40  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredential.
    41  func (in *ExecCredential) DeepCopy() *ExecCredential {
    42  	if in == nil {
    43  		return nil
    44  	}
    45  	out := new(ExecCredential)
    46  	in.DeepCopyInto(out)
    47  	return out
    48  }
    49  
    50  // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    51  func (in *ExecCredential) DeepCopyObject() runtime.Object {
    52  	if c := in.DeepCopy(); c != nil {
    53  		return c
    54  	}
    55  	return nil
    56  }
    57  
    58  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    59  func (in *ExecCredentialSpec) DeepCopyInto(out *ExecCredentialSpec) {
    60  	*out = *in
    61  	if in.Response != nil {
    62  		in, out := &in.Response, &out.Response
    63  		*out = new(Response)
    64  		(*in).DeepCopyInto(*out)
    65  	}
    66  	return
    67  }
    68  
    69  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
    70  func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
    71  	if in == nil {
    72  		return nil
    73  	}
    74  	out := new(ExecCredentialSpec)
    75  	in.DeepCopyInto(out)
    76  	return out
    77  }
    78  
    79  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    80  func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
    81  	*out = *in
    82  	if in.ExpirationTimestamp != nil {
    83  		in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
    84  		*out = (*in).DeepCopy()
    85  	}
    86  	return
    87  }
    88  
    89  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
    90  func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
    91  	if in == nil {
    92  		return nil
    93  	}
    94  	out := new(ExecCredentialStatus)
    95  	in.DeepCopyInto(out)
    96  	return out
    97  }
    98  
    99  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
   100  func (in *Response) DeepCopyInto(out *Response) {
   101  	*out = *in
   102  	if in.Header != nil {
   103  		in, out := &in.Header, &out.Header
   104  		*out = make(map[string][]string, len(*in))
   105  		for key, val := range *in {
   106  			var outVal []string
   107  			if val == nil {
   108  				(*out)[key] = nil
   109  			} else {
   110  				in, out := &val, &outVal
   111  				*out = make([]string, len(*in))
   112  				copy(*out, *in)
   113  			}
   114  			(*out)[key] = outVal
   115  		}
   116  	}
   117  	return
   118  }
   119  
   120  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Response.
   121  func (in *Response) DeepCopy() *Response {
   122  	if in == nil {
   123  		return nil
   124  	}
   125  	out := new(Response)
   126  	in.DeepCopyInto(out)
   127  	return out
   128  }