582 lines
17 KiB
Go
582 lines
17 KiB
Go
//go:build !ignore_autogenerated
|
|
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2019 The Crossplane 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 controller-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
corev1 "k8s.io/api/core/v1"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CommonCredentialSelectors) DeepCopyInto(out *CommonCredentialSelectors) {
|
|
*out = *in
|
|
if in.Fs != nil {
|
|
in, out := &in.Fs, &out.Fs
|
|
*out = new(FsSelector)
|
|
**out = **in
|
|
}
|
|
if in.Env != nil {
|
|
in, out := &in.Env, &out.Env
|
|
*out = new(EnvSelector)
|
|
**out = **in
|
|
}
|
|
if in.SecretRef != nil {
|
|
in, out := &in.SecretRef, &out.SecretRef
|
|
*out = new(SecretKeySelector)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonCredentialSelectors.
|
|
func (in *CommonCredentialSelectors) DeepCopy() *CommonCredentialSelectors {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CommonCredentialSelectors)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Condition) DeepCopyInto(out *Condition) {
|
|
*out = *in
|
|
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Condition.
|
|
func (in *Condition) DeepCopy() *Condition {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Condition)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ConditionedStatus) DeepCopyInto(out *ConditionedStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConditionedStatus.
|
|
func (in *ConditionedStatus) DeepCopy() *ConditionedStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConditionedStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ConnectionSecretMetadata) DeepCopyInto(out *ConnectionSecretMetadata) {
|
|
*out = *in
|
|
if in.Labels != nil {
|
|
in, out := &in.Labels, &out.Labels
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.Annotations != nil {
|
|
in, out := &in.Annotations, &out.Annotations
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.Type != nil {
|
|
in, out := &in.Type, &out.Type
|
|
*out = new(corev1.SecretType)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionSecretMetadata.
|
|
func (in *ConnectionSecretMetadata) DeepCopy() *ConnectionSecretMetadata {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ConnectionSecretMetadata)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *EnvSelector) DeepCopyInto(out *EnvSelector) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvSelector.
|
|
func (in *EnvSelector) DeepCopy() *EnvSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(EnvSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FsSelector) DeepCopyInto(out *FsSelector) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FsSelector.
|
|
func (in *FsSelector) DeepCopy() *FsSelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FsSelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubernetesAuthConfig) DeepCopyInto(out *KubernetesAuthConfig) {
|
|
*out = *in
|
|
in.CommonCredentialSelectors.DeepCopyInto(&out.CommonCredentialSelectors)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuthConfig.
|
|
func (in *KubernetesAuthConfig) DeepCopy() *KubernetesAuthConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubernetesAuthConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubernetesSecretStoreConfig) DeepCopyInto(out *KubernetesSecretStoreConfig) {
|
|
*out = *in
|
|
in.Auth.DeepCopyInto(&out.Auth)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesSecretStoreConfig.
|
|
func (in *KubernetesSecretStoreConfig) DeepCopy() *KubernetesSecretStoreConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubernetesSecretStoreConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *LocalSecretReference) DeepCopyInto(out *LocalSecretReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalSecretReference.
|
|
func (in *LocalSecretReference) DeepCopy() *LocalSecretReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(LocalSecretReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MergeOptions) DeepCopyInto(out *MergeOptions) {
|
|
*out = *in
|
|
if in.KeepMapValues != nil {
|
|
in, out := &in.KeepMapValues, &out.KeepMapValues
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.AppendSlice != nil {
|
|
in, out := &in.AppendSlice, &out.AppendSlice
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MergeOptions.
|
|
func (in *MergeOptions) DeepCopy() *MergeOptions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MergeOptions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProviderConfigStatus) DeepCopyInto(out *ProviderConfigStatus) {
|
|
*out = *in
|
|
in.ConditionedStatus.DeepCopyInto(&out.ConditionedStatus)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderConfigStatus.
|
|
func (in *ProviderConfigStatus) DeepCopy() *ProviderConfigStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProviderConfigStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ProviderConfigUsage) DeepCopyInto(out *ProviderConfigUsage) {
|
|
*out = *in
|
|
in.ProviderConfigReference.DeepCopyInto(&out.ProviderConfigReference)
|
|
out.ResourceReference = in.ResourceReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderConfigUsage.
|
|
func (in *ProviderConfigUsage) DeepCopy() *ProviderConfigUsage {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProviderConfigUsage)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PublishConnectionDetailsTo) DeepCopyInto(out *PublishConnectionDetailsTo) {
|
|
*out = *in
|
|
if in.Metadata != nil {
|
|
in, out := &in.Metadata, &out.Metadata
|
|
*out = new(ConnectionSecretMetadata)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.SecretStoreConfigRef != nil {
|
|
in, out := &in.SecretStoreConfigRef, &out.SecretStoreConfigRef
|
|
*out = new(Reference)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublishConnectionDetailsTo.
|
|
func (in *PublishConnectionDetailsTo) DeepCopy() *PublishConnectionDetailsTo {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PublishConnectionDetailsTo)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Reference) DeepCopyInto(out *Reference) {
|
|
*out = *in
|
|
if in.Policies != nil {
|
|
in, out := &in.Policies, &out.Policies
|
|
*out = make([]ReferenceResolutionPolicy, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Reference.
|
|
func (in *Reference) DeepCopy() *Reference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Reference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResourceSpec) DeepCopyInto(out *ResourceSpec) {
|
|
*out = *in
|
|
if in.WriteConnectionSecretToReference != nil {
|
|
in, out := &in.WriteConnectionSecretToReference, &out.WriteConnectionSecretToReference
|
|
*out = new(SecretReference)
|
|
**out = **in
|
|
}
|
|
if in.PublishConnectionDetailsTo != nil {
|
|
in, out := &in.PublishConnectionDetailsTo, &out.PublishConnectionDetailsTo
|
|
*out = new(PublishConnectionDetailsTo)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.ProviderConfigReference != nil {
|
|
in, out := &in.ProviderConfigReference, &out.ProviderConfigReference
|
|
*out = new(Reference)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.ProviderReference != nil {
|
|
in, out := &in.ProviderReference, &out.ProviderReference
|
|
*out = new(Reference)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSpec.
|
|
func (in *ResourceSpec) DeepCopy() *ResourceSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResourceStatus) DeepCopyInto(out *ResourceStatus) {
|
|
*out = *in
|
|
in.ConditionedStatus.DeepCopyInto(&out.ConditionedStatus)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceStatus.
|
|
func (in *ResourceStatus) DeepCopy() *ResourceStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
|
|
*out = *in
|
|
out.SecretReference = in.SecretReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
|
|
func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretKeySelector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretReference) DeepCopyInto(out *SecretReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretReference.
|
|
func (in *SecretReference) DeepCopy() *SecretReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretStoreConfig) DeepCopyInto(out *SecretStoreConfig) {
|
|
*out = *in
|
|
if in.Type != nil {
|
|
in, out := &in.Type, &out.Type
|
|
*out = new(SecretStoreType)
|
|
**out = **in
|
|
}
|
|
if in.Kubernetes != nil {
|
|
in, out := &in.Kubernetes, &out.Kubernetes
|
|
*out = new(KubernetesSecretStoreConfig)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Vault != nil {
|
|
in, out := &in.Vault, &out.Vault
|
|
*out = new(VaultSecretStoreConfig)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreConfig.
|
|
func (in *SecretStoreConfig) DeepCopy() *SecretStoreConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretStoreConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Selector) DeepCopyInto(out *Selector) {
|
|
*out = *in
|
|
if in.MatchLabels != nil {
|
|
in, out := &in.MatchLabels, &out.MatchLabels
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.MatchControllerRef != nil {
|
|
in, out := &in.MatchControllerRef, &out.MatchControllerRef
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Selector.
|
|
func (in *Selector) DeepCopy() *Selector {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Selector)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TargetSpec) DeepCopyInto(out *TargetSpec) {
|
|
*out = *in
|
|
if in.WriteConnectionSecretToReference != nil {
|
|
in, out := &in.WriteConnectionSecretToReference, &out.WriteConnectionSecretToReference
|
|
*out = new(LocalSecretReference)
|
|
**out = **in
|
|
}
|
|
if in.ResourceReference != nil {
|
|
in, out := &in.ResourceReference, &out.ResourceReference
|
|
*out = new(corev1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetSpec.
|
|
func (in *TargetSpec) DeepCopy() *TargetSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TargetSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TargetStatus) DeepCopyInto(out *TargetStatus) {
|
|
*out = *in
|
|
in.ConditionedStatus.DeepCopyInto(&out.ConditionedStatus)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetStatus.
|
|
func (in *TargetStatus) DeepCopy() *TargetStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TargetStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TypedReference) DeepCopyInto(out *TypedReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TypedReference.
|
|
func (in *TypedReference) DeepCopy() *TypedReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TypedReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VaultAuthConfig) DeepCopyInto(out *VaultAuthConfig) {
|
|
*out = *in
|
|
if in.Token != nil {
|
|
in, out := &in.Token, &out.Token
|
|
*out = new(VaultAuthTokenConfig)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuthConfig.
|
|
func (in *VaultAuthConfig) DeepCopy() *VaultAuthConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VaultAuthConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VaultAuthTokenConfig) DeepCopyInto(out *VaultAuthTokenConfig) {
|
|
*out = *in
|
|
in.CommonCredentialSelectors.DeepCopyInto(&out.CommonCredentialSelectors)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuthTokenConfig.
|
|
func (in *VaultAuthTokenConfig) DeepCopy() *VaultAuthTokenConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VaultAuthTokenConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VaultCABundleConfig) DeepCopyInto(out *VaultCABundleConfig) {
|
|
*out = *in
|
|
in.CommonCredentialSelectors.DeepCopyInto(&out.CommonCredentialSelectors)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCABundleConfig.
|
|
func (in *VaultCABundleConfig) DeepCopy() *VaultCABundleConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VaultCABundleConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VaultSecretStoreConfig) DeepCopyInto(out *VaultSecretStoreConfig) {
|
|
*out = *in
|
|
if in.Version != nil {
|
|
in, out := &in.Version, &out.Version
|
|
*out = new(VaultKVVersion)
|
|
**out = **in
|
|
}
|
|
if in.CABundle != nil {
|
|
in, out := &in.CABundle, &out.CABundle
|
|
*out = new(VaultCABundleConfig)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
in.Auth.DeepCopyInto(&out.Auth)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultSecretStoreConfig.
|
|
func (in *VaultSecretStoreConfig) DeepCopy() *VaultSecretStoreConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VaultSecretStoreConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|