mirror of https://github.com/k3s-io/k3s
105 lines
3.0 KiB
Go
105 lines
3.0 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package credentialprovider
|
|
|
|
import (
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *AuthConfig) DeepCopyInto(out *AuthConfig) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthConfig.
|
|
func (in *AuthConfig) DeepCopy() *AuthConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AuthConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CredentialProviderRequest) DeepCopyInto(out *CredentialProviderRequest) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderRequest.
|
|
func (in *CredentialProviderRequest) DeepCopy() *CredentialProviderRequest {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CredentialProviderRequest)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *CredentialProviderRequest) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CredentialProviderResponse) DeepCopyInto(out *CredentialProviderResponse) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.CacheDuration != nil {
|
|
in, out := &in.CacheDuration, &out.CacheDuration
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.Auth != nil {
|
|
in, out := &in.Auth, &out.Auth
|
|
*out = make(map[string]AuthConfig, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderResponse.
|
|
func (in *CredentialProviderResponse) DeepCopy() *CredentialProviderResponse {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CredentialProviderResponse)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *CredentialProviderResponse) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|