56 lines
1.7 KiB
Go
56 lines
1.7 KiB
Go
//go:build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2025 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 v2
|
|
|
|
import (
|
|
"github.com/crossplane/crossplane-runtime/apis/common"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ManagedResourceSpec) DeepCopyInto(out *ManagedResourceSpec) {
|
|
*out = *in
|
|
if in.WriteConnectionSecretToReference != nil {
|
|
in, out := &in.WriteConnectionSecretToReference, &out.WriteConnectionSecretToReference
|
|
*out = new(common.LocalSecretReference)
|
|
**out = **in
|
|
}
|
|
if in.ProviderConfigReference != nil {
|
|
in, out := &in.ProviderConfigReference, &out.ProviderConfigReference
|
|
*out = new(common.ProviderConfigReference)
|
|
**out = **in
|
|
}
|
|
if in.ManagementPolicies != nil {
|
|
in, out := &in.ManagementPolicies, &out.ManagementPolicies
|
|
*out = make(common.ManagementPolicies, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedResourceSpec.
|
|
func (in *ManagedResourceSpec) DeepCopy() *ManagedResourceSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ManagedResourceSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|