368 lines
11 KiB
Go
368 lines
11 KiB
Go
// +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 v1alpha1
|
|
|
|
import (
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *BindingStatus) DeepCopyInto(out *BindingStatus) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BindingStatus.
|
|
func (in *BindingStatus) DeepCopy() *BindingStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(BindingStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ClassSpecTemplate) DeepCopyInto(out *ClassSpecTemplate) {
|
|
*out = *in
|
|
if in.ProviderReference != nil {
|
|
in, out := &in.ProviderReference, &out.ProviderReference
|
|
*out = new(corev1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClassSpecTemplate.
|
|
func (in *ClassSpecTemplate) DeepCopy() *ClassSpecTemplate {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClassSpecTemplate)
|
|
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 *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 *ProviderSpec) DeepCopyInto(out *ProviderSpec) {
|
|
*out = *in
|
|
if in.CredentialsSecretRef != nil {
|
|
in, out := &in.CredentialsSecretRef, &out.CredentialsSecretRef
|
|
*out = new(SecretKeySelector)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderSpec.
|
|
func (in *ProviderSpec) DeepCopy() *ProviderSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ProviderSpec)
|
|
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
|
|
}
|
|
|
|
// 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 *ResourceClaimSpec) DeepCopyInto(out *ResourceClaimSpec) {
|
|
*out = *in
|
|
if in.WriteConnectionSecretToReference != nil {
|
|
in, out := &in.WriteConnectionSecretToReference, &out.WriteConnectionSecretToReference
|
|
*out = new(LocalSecretReference)
|
|
**out = **in
|
|
}
|
|
if in.ClassSelector != nil {
|
|
in, out := &in.ClassSelector, &out.ClassSelector
|
|
*out = new(v1.LabelSelector)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.ClassReference != nil {
|
|
in, out := &in.ClassReference, &out.ClassReference
|
|
*out = new(corev1.ObjectReference)
|
|
**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 ResourceClaimSpec.
|
|
func (in *ResourceClaimSpec) DeepCopy() *ResourceClaimSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceClaimSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResourceClaimStatus) DeepCopyInto(out *ResourceClaimStatus) {
|
|
*out = *in
|
|
in.ConditionedStatus.DeepCopyInto(&out.ConditionedStatus)
|
|
out.BindingStatus = in.BindingStatus
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceClaimStatus.
|
|
func (in *ResourceClaimStatus) DeepCopy() *ResourceClaimStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceClaimStatus)
|
|
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.ClaimReference != nil {
|
|
in, out := &in.ClaimReference, &out.ClaimReference
|
|
*out = new(corev1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
if in.ClassReference != nil {
|
|
in, out := &in.ClassReference, &out.ClassReference
|
|
*out = new(corev1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
if in.ProviderReference != nil {
|
|
in, out := &in.ProviderReference, &out.ProviderReference
|
|
*out = new(corev1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
}
|
|
|
|
// 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)
|
|
out.BindingStatus = in.BindingStatus
|
|
}
|
|
|
|
// 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 *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
|
|
}
|