mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 07:28:09 -05:00
1206 lines
37 KiB
Go
1206 lines
37 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2025.
|
|
|
|
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 v1alpha1
|
|
|
|
import (
|
|
"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 *AWSIamAuthDetails) DeepCopyInto(out *AWSIamAuthDetails) {
|
|
*out = *in
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSIamAuthDetails.
|
|
func (in *AWSIamAuthDetails) DeepCopy() *AWSIamAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AWSIamAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Authentication) DeepCopyInto(out *Authentication) {
|
|
*out = *in
|
|
out.ServiceAccount = in.ServiceAccount
|
|
out.ServiceToken = in.ServiceToken
|
|
out.UniversalAuth = in.UniversalAuth
|
|
in.KubernetesAuth.DeepCopyInto(&out.KubernetesAuth)
|
|
out.AwsIamAuth = in.AwsIamAuth
|
|
out.AzureAuth = in.AzureAuth
|
|
out.GcpIdTokenAuth = in.GcpIdTokenAuth
|
|
out.GcpIamAuth = in.GcpIamAuth
|
|
out.LdapAuth = in.LdapAuth
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Authentication.
|
|
func (in *Authentication) DeepCopy() *Authentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Authentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *AzureAuthDetails) DeepCopyInto(out *AzureAuthDetails) {
|
|
*out = *in
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAuthDetails.
|
|
func (in *AzureAuthDetails) DeepCopy() *AzureAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(AzureAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CaReference) DeepCopyInto(out *CaReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CaReference.
|
|
func (in *CaReference) DeepCopy() *CaReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CaReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ClusterGenerator) DeepCopyInto(out *ClusterGenerator) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGenerator.
|
|
func (in *ClusterGenerator) DeepCopy() *ClusterGenerator {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterGenerator)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ClusterGenerator) 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 *ClusterGeneratorList) DeepCopyInto(out *ClusterGeneratorList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]ClusterGenerator, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorList.
|
|
func (in *ClusterGeneratorList) DeepCopy() *ClusterGeneratorList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterGeneratorList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *ClusterGeneratorList) 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 *ClusterGeneratorSpec) DeepCopyInto(out *ClusterGeneratorSpec) {
|
|
*out = *in
|
|
in.Generator.DeepCopyInto(&out.Generator)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorSpec.
|
|
func (in *ClusterGeneratorSpec) DeepCopy() *ClusterGeneratorSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClusterGeneratorSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DynamicSecretDetails) DeepCopyInto(out *DynamicSecretDetails) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DynamicSecretDetails.
|
|
func (in *DynamicSecretDetails) DeepCopy() *DynamicSecretDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DynamicSecretDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GCPIdTokenAuthDetails) DeepCopyInto(out *GCPIdTokenAuthDetails) {
|
|
*out = *in
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPIdTokenAuthDetails.
|
|
func (in *GCPIdTokenAuthDetails) DeepCopy() *GCPIdTokenAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GCPIdTokenAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GcpIamAuthDetails) DeepCopyInto(out *GcpIamAuthDetails) {
|
|
*out = *in
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GcpIamAuthDetails.
|
|
func (in *GcpIamAuthDetails) DeepCopy() *GcpIamAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GcpIamAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GeneratorRef) DeepCopyInto(out *GeneratorRef) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorRef.
|
|
func (in *GeneratorRef) DeepCopy() *GeneratorRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GeneratorRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GeneratorSpec) DeepCopyInto(out *GeneratorSpec) {
|
|
*out = *in
|
|
if in.PasswordSpec != nil {
|
|
in, out := &in.PasswordSpec, &out.PasswordSpec
|
|
*out = new(PasswordSpec)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.UUIDSpec != nil {
|
|
in, out := &in.UUIDSpec, &out.UUIDSpec
|
|
*out = new(UUIDSpec)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorSpec.
|
|
func (in *GeneratorSpec) DeepCopy() *GeneratorSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GeneratorSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericAwsIamAuth) DeepCopyInto(out *GenericAwsIamAuth) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericAwsIamAuth.
|
|
func (in *GenericAwsIamAuth) DeepCopy() *GenericAwsIamAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericAwsIamAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericAzureAuth) DeepCopyInto(out *GenericAzureAuth) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericAzureAuth.
|
|
func (in *GenericAzureAuth) DeepCopy() *GenericAzureAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericAzureAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericGcpIamAuth) DeepCopyInto(out *GenericGcpIamAuth) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericGcpIamAuth.
|
|
func (in *GenericGcpIamAuth) DeepCopy() *GenericGcpIamAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericGcpIamAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericGcpIdTokenAuth) DeepCopyInto(out *GenericGcpIdTokenAuth) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericGcpIdTokenAuth.
|
|
func (in *GenericGcpIdTokenAuth) DeepCopy() *GenericGcpIdTokenAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericGcpIdTokenAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericInfisicalAuthentication) DeepCopyInto(out *GenericInfisicalAuthentication) {
|
|
*out = *in
|
|
out.UniversalAuth = in.UniversalAuth
|
|
in.KubernetesAuth.DeepCopyInto(&out.KubernetesAuth)
|
|
out.AwsIamAuth = in.AwsIamAuth
|
|
out.AzureAuth = in.AzureAuth
|
|
out.GcpIdTokenAuth = in.GcpIdTokenAuth
|
|
out.GcpIamAuth = in.GcpIamAuth
|
|
out.LdapAuth = in.LdapAuth
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfisicalAuthentication.
|
|
func (in *GenericInfisicalAuthentication) DeepCopy() *GenericInfisicalAuthentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericInfisicalAuthentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericKubernetesAuth) DeepCopyInto(out *GenericKubernetesAuth) {
|
|
*out = *in
|
|
out.ServiceAccountRef = in.ServiceAccountRef
|
|
if in.ServiceAccountTokenAudiences != nil {
|
|
in, out := &in.ServiceAccountTokenAudiences, &out.ServiceAccountTokenAudiences
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericKubernetesAuth.
|
|
func (in *GenericKubernetesAuth) DeepCopy() *GenericKubernetesAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericKubernetesAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericLdapAuth) DeepCopyInto(out *GenericLdapAuth) {
|
|
*out = *in
|
|
out.CredentialsRef = in.CredentialsRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericLdapAuth.
|
|
func (in *GenericLdapAuth) DeepCopy() *GenericLdapAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericLdapAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericUniversalAuth) DeepCopyInto(out *GenericUniversalAuth) {
|
|
*out = *in
|
|
out.CredentialsRef = in.CredentialsRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericUniversalAuth.
|
|
func (in *GenericUniversalAuth) DeepCopy() *GenericUniversalAuth {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericUniversalAuth)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalDynamicSecret) DeepCopyInto(out *InfisicalDynamicSecret) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalDynamicSecret.
|
|
func (in *InfisicalDynamicSecret) DeepCopy() *InfisicalDynamicSecret {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalDynamicSecret)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalDynamicSecret) 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 *InfisicalDynamicSecretLease) DeepCopyInto(out *InfisicalDynamicSecretLease) {
|
|
*out = *in
|
|
in.CreationTimestamp.DeepCopyInto(&out.CreationTimestamp)
|
|
in.ExpiresAt.DeepCopyInto(&out.ExpiresAt)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalDynamicSecretLease.
|
|
func (in *InfisicalDynamicSecretLease) DeepCopy() *InfisicalDynamicSecretLease {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalDynamicSecretLease)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalDynamicSecretList) DeepCopyInto(out *InfisicalDynamicSecretList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]InfisicalDynamicSecret, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalDynamicSecretList.
|
|
func (in *InfisicalDynamicSecretList) DeepCopy() *InfisicalDynamicSecretList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalDynamicSecretList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalDynamicSecretList) 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 *InfisicalDynamicSecretSpec) DeepCopyInto(out *InfisicalDynamicSecretSpec) {
|
|
*out = *in
|
|
in.ManagedSecretReference.DeepCopyInto(&out.ManagedSecretReference)
|
|
in.Authentication.DeepCopyInto(&out.Authentication)
|
|
out.DynamicSecret = in.DynamicSecret
|
|
out.TLS = in.TLS
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalDynamicSecretSpec.
|
|
func (in *InfisicalDynamicSecretSpec) DeepCopy() *InfisicalDynamicSecretSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalDynamicSecretSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalDynamicSecretStatus) DeepCopyInto(out *InfisicalDynamicSecretStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.Lease != nil {
|
|
in, out := &in.Lease, &out.Lease
|
|
*out = new(InfisicalDynamicSecretLease)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalDynamicSecretStatus.
|
|
func (in *InfisicalDynamicSecretStatus) DeepCopy() *InfisicalDynamicSecretStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalDynamicSecretStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalPushSecret) DeepCopyInto(out *InfisicalPushSecret) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecret.
|
|
func (in *InfisicalPushSecret) DeepCopy() *InfisicalPushSecret {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecret)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalPushSecret) 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 *InfisicalPushSecretDestination) DeepCopyInto(out *InfisicalPushSecretDestination) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretDestination.
|
|
func (in *InfisicalPushSecretDestination) DeepCopy() *InfisicalPushSecretDestination {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecretDestination)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalPushSecretList) DeepCopyInto(out *InfisicalPushSecretList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]InfisicalPushSecret, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretList.
|
|
func (in *InfisicalPushSecretList) DeepCopy() *InfisicalPushSecretList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecretList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalPushSecretList) 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 *InfisicalPushSecretSource) DeepCopyInto(out *InfisicalPushSecretSource) {
|
|
*out = *in
|
|
if in.Template != nil {
|
|
in, out := &in.Template, &out.Template
|
|
*out = new(SecretTemplate)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretSource.
|
|
func (in *InfisicalPushSecretSource) DeepCopy() *InfisicalPushSecretSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecretSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalPushSecretSpec) DeepCopyInto(out *InfisicalPushSecretSpec) {
|
|
*out = *in
|
|
out.Destination = in.Destination
|
|
in.Authentication.DeepCopyInto(&out.Authentication)
|
|
in.Push.DeepCopyInto(&out.Push)
|
|
if in.ResyncInterval != nil {
|
|
in, out := &in.ResyncInterval, &out.ResyncInterval
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
out.TLS = in.TLS
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretSpec.
|
|
func (in *InfisicalPushSecretSpec) DeepCopy() *InfisicalPushSecretSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecretSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalPushSecretStatus) DeepCopyInto(out *InfisicalPushSecretStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.ManagedSecrets != nil {
|
|
in, out := &in.ManagedSecrets, &out.ManagedSecrets
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretStatus.
|
|
func (in *InfisicalPushSecretStatus) DeepCopy() *InfisicalPushSecretStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalPushSecretStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalSecret) DeepCopyInto(out *InfisicalSecret) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalSecret.
|
|
func (in *InfisicalSecret) DeepCopy() *InfisicalSecret {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalSecret)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalSecret) 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 *InfisicalSecretList) DeepCopyInto(out *InfisicalSecretList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]InfisicalSecret, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalSecretList.
|
|
func (in *InfisicalSecretList) DeepCopy() *InfisicalSecretList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalSecretList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *InfisicalSecretList) 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 *InfisicalSecretSpec) DeepCopyInto(out *InfisicalSecretSpec) {
|
|
*out = *in
|
|
out.TokenSecretReference = in.TokenSecretReference
|
|
in.Authentication.DeepCopyInto(&out.Authentication)
|
|
in.ManagedSecretReference.DeepCopyInto(&out.ManagedSecretReference)
|
|
if in.ManagedKubeSecretReferences != nil {
|
|
in, out := &in.ManagedKubeSecretReferences, &out.ManagedKubeSecretReferences
|
|
*out = make([]ManagedKubeSecretConfig, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.ManagedKubeConfigMapReferences != nil {
|
|
in, out := &in.ManagedKubeConfigMapReferences, &out.ManagedKubeConfigMapReferences
|
|
*out = make([]ManagedKubeConfigMapConfig, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
out.TLS = in.TLS
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalSecretSpec.
|
|
func (in *InfisicalSecretSpec) DeepCopy() *InfisicalSecretSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalSecretSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *InfisicalSecretStatus) DeepCopyInto(out *InfisicalSecretStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]v1.Condition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalSecretStatus.
|
|
func (in *InfisicalSecretStatus) DeepCopy() *InfisicalSecretStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(InfisicalSecretStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeSecretReference) DeepCopyInto(out *KubeSecretReference) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSecretReference.
|
|
func (in *KubeSecretReference) DeepCopy() *KubeSecretReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeSecretReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubernetesAuthDetails) DeepCopyInto(out *KubernetesAuthDetails) {
|
|
*out = *in
|
|
out.ServiceAccountRef = in.ServiceAccountRef
|
|
out.SecretsScope = in.SecretsScope
|
|
if in.ServiceAccountTokenAudiences != nil {
|
|
in, out := &in.ServiceAccountTokenAudiences, &out.ServiceAccountTokenAudiences
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuthDetails.
|
|
func (in *KubernetesAuthDetails) DeepCopy() *KubernetesAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubernetesAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubernetesServiceAccountRef) DeepCopyInto(out *KubernetesServiceAccountRef) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesServiceAccountRef.
|
|
func (in *KubernetesServiceAccountRef) DeepCopy() *KubernetesServiceAccountRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubernetesServiceAccountRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *LdapAuthDetails) DeepCopyInto(out *LdapAuthDetails) {
|
|
*out = *in
|
|
out.CredentialsRef = in.CredentialsRef
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LdapAuthDetails.
|
|
func (in *LdapAuthDetails) DeepCopy() *LdapAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(LdapAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MachineIdentityScopeInWorkspace) DeepCopyInto(out *MachineIdentityScopeInWorkspace) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineIdentityScopeInWorkspace.
|
|
func (in *MachineIdentityScopeInWorkspace) DeepCopy() *MachineIdentityScopeInWorkspace {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MachineIdentityScopeInWorkspace)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ManagedKubeConfigMapConfig) DeepCopyInto(out *ManagedKubeConfigMapConfig) {
|
|
*out = *in
|
|
if in.Template != nil {
|
|
in, out := &in.Template, &out.Template
|
|
*out = new(SecretTemplate)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedKubeConfigMapConfig.
|
|
func (in *ManagedKubeConfigMapConfig) DeepCopy() *ManagedKubeConfigMapConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ManagedKubeConfigMapConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ManagedKubeSecretConfig) DeepCopyInto(out *ManagedKubeSecretConfig) {
|
|
*out = *in
|
|
if in.Template != nil {
|
|
in, out := &in.Template, &out.Template
|
|
*out = new(SecretTemplate)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedKubeSecretConfig.
|
|
func (in *ManagedKubeSecretConfig) DeepCopy() *ManagedKubeSecretConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ManagedKubeSecretConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Password) DeepCopyInto(out *Password) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Password.
|
|
func (in *Password) DeepCopy() *Password {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Password)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *Password) 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 *PasswordList) DeepCopyInto(out *PasswordList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]Password, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordList.
|
|
func (in *PasswordList) DeepCopy() *PasswordList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PasswordList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *PasswordList) 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 *PasswordSpec) DeepCopyInto(out *PasswordSpec) {
|
|
*out = *in
|
|
if in.Digits != nil {
|
|
in, out := &in.Digits, &out.Digits
|
|
*out = new(int)
|
|
**out = **in
|
|
}
|
|
if in.Symbols != nil {
|
|
in, out := &in.Symbols, &out.Symbols
|
|
*out = new(int)
|
|
**out = **in
|
|
}
|
|
if in.SymbolCharacters != nil {
|
|
in, out := &in.SymbolCharacters, &out.SymbolCharacters
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordSpec.
|
|
func (in *PasswordSpec) DeepCopy() *PasswordSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PasswordSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretPush) DeepCopyInto(out *SecretPush) {
|
|
*out = *in
|
|
if in.Secret != nil {
|
|
in, out := &in.Secret, &out.Secret
|
|
*out = new(InfisicalPushSecretSource)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Generators != nil {
|
|
in, out := &in.Generators, &out.Generators
|
|
*out = make([]SecretPushGenerator, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretPush.
|
|
func (in *SecretPush) DeepCopy() *SecretPush {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretPush)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretPushGenerator) DeepCopyInto(out *SecretPushGenerator) {
|
|
*out = *in
|
|
out.GeneratorRef = in.GeneratorRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretPushGenerator.
|
|
func (in *SecretPushGenerator) DeepCopy() *SecretPushGenerator {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretPushGenerator)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretScopeInWorkspace) DeepCopyInto(out *SecretScopeInWorkspace) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretScopeInWorkspace.
|
|
func (in *SecretScopeInWorkspace) DeepCopy() *SecretScopeInWorkspace {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretScopeInWorkspace)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SecretTemplate) DeepCopyInto(out *SecretTemplate) {
|
|
*out = *in
|
|
if in.Data != nil {
|
|
in, out := &in.Data, &out.Data
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretTemplate.
|
|
func (in *SecretTemplate) DeepCopy() *SecretTemplate {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SecretTemplate)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ServiceAccountDetails) DeepCopyInto(out *ServiceAccountDetails) {
|
|
*out = *in
|
|
out.ServiceAccountSecretReference = in.ServiceAccountSecretReference
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAccountDetails.
|
|
func (in *ServiceAccountDetails) DeepCopy() *ServiceAccountDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ServiceAccountDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ServiceTokenDetails) DeepCopyInto(out *ServiceTokenDetails) {
|
|
*out = *in
|
|
out.ServiceTokenSecretReference = in.ServiceTokenSecretReference
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceTokenDetails.
|
|
func (in *ServiceTokenDetails) DeepCopy() *ServiceTokenDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ServiceTokenDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TLSConfig) DeepCopyInto(out *TLSConfig) {
|
|
*out = *in
|
|
out.CaRef = in.CaRef
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSConfig.
|
|
func (in *TLSConfig) DeepCopy() *TLSConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TLSConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UUID) DeepCopyInto(out *UUID) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
out.Spec = in.Spec
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUID.
|
|
func (in *UUID) DeepCopy() *UUID {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UUID)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *UUID) 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 *UUIDList) DeepCopyInto(out *UUIDList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]UUID, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDList.
|
|
func (in *UUIDList) DeepCopy() *UUIDList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UUIDList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *UUIDList) 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 *UUIDSpec) DeepCopyInto(out *UUIDSpec) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDSpec.
|
|
func (in *UUIDSpec) DeepCopy() *UUIDSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UUIDSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UniversalAuthDetails) DeepCopyInto(out *UniversalAuthDetails) {
|
|
*out = *in
|
|
out.CredentialsRef = in.CredentialsRef
|
|
out.SecretsScope = in.SecretsScope
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UniversalAuthDetails.
|
|
func (in *UniversalAuthDetails) DeepCopy() *UniversalAuthDetails {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UniversalAuthDetails)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|