142 lines
4.0 KiB
Go
142 lines
4.0 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2018 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 main. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
import (
|
|
v1 "k8s.io/api/core/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 *RDSInstance) DeepCopyInto(out *RDSInstance) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RDSInstance.
|
|
func (in *RDSInstance) DeepCopy() *RDSInstance {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RDSInstance)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *RDSInstance) 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 *RDSInstanceList) DeepCopyInto(out *RDSInstanceList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
out.ListMeta = in.ListMeta
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]RDSInstance, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RDSInstanceList.
|
|
func (in *RDSInstanceList) DeepCopy() *RDSInstanceList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RDSInstanceList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *RDSInstanceList) 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 *RDSInstanceSpec) DeepCopyInto(out *RDSInstanceSpec) {
|
|
*out = *in
|
|
if in.SecurityGroups != nil {
|
|
in, out := &in.SecurityGroups, &out.SecurityGroups
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.ClaimRef != nil {
|
|
in, out := &in.ClaimRef, &out.ClaimRef
|
|
*out = new(v1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
if in.ClassRef != nil {
|
|
in, out := &in.ClassRef, &out.ClassRef
|
|
*out = new(v1.ObjectReference)
|
|
**out = **in
|
|
}
|
|
if in.ConnectionSecretRef != nil {
|
|
in, out := &in.ConnectionSecretRef, &out.ConnectionSecretRef
|
|
*out = new(v1.LocalObjectReference)
|
|
**out = **in
|
|
}
|
|
out.ProviderRef = in.ProviderRef
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RDSInstanceSpec.
|
|
func (in *RDSInstanceSpec) DeepCopy() *RDSInstanceSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RDSInstanceSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *RDSInstanceStatus) DeepCopyInto(out *RDSInstanceStatus) {
|
|
*out = *in
|
|
in.DeprecatedConditionedStatus.DeepCopyInto(&out.DeprecatedConditionedStatus)
|
|
out.BindingStatusPhase = in.BindingStatusPhase
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RDSInstanceStatus.
|
|
func (in *RDSInstanceStatus) DeepCopy() *RDSInstanceStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RDSInstanceStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|