apis/datastream/v1alpha1/zz_generated.deepcopy.go (1,054 lines of code) (raw):
//go:build !ignore_autogenerated
// Copyright 2020 Google LLC
//
// 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 (
"github.com/GoogleCloudPlatform/k8s-config-connector/apis/refs/v1beta1"
"github.com/GoogleCloudPlatform/k8s-config-connector/apis/refs/v1beta1/secret"
k8sv1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/apis/k8s/v1alpha1"
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 *BigQueryProfile) DeepCopyInto(out *BigQueryProfile) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryProfile.
func (in *BigQueryProfile) DeepCopy() *BigQueryProfile {
if in == nil {
return nil
}
out := new(BigQueryProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ConnectionProfileIdentity) DeepCopyInto(out *ConnectionProfileIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(ConnectionProfileParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionProfileIdentity.
func (in *ConnectionProfileIdentity) DeepCopy() *ConnectionProfileIdentity {
if in == nil {
return nil
}
out := new(ConnectionProfileIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ConnectionProfileParent) DeepCopyInto(out *ConnectionProfileParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionProfileParent.
func (in *ConnectionProfileParent) DeepCopy() *ConnectionProfileParent {
if in == nil {
return nil
}
out := new(ConnectionProfileParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ConnectionProfileRef) DeepCopyInto(out *ConnectionProfileRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionProfileRef.
func (in *ConnectionProfileRef) DeepCopy() *ConnectionProfileRef {
if in == nil {
return nil
}
out := new(ConnectionProfileRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamConnectionProfile) DeepCopyInto(out *DatastreamConnectionProfile) {
*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 DatastreamConnectionProfile.
func (in *DatastreamConnectionProfile) DeepCopy() *DatastreamConnectionProfile {
if in == nil {
return nil
}
out := new(DatastreamConnectionProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamConnectionProfile) 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 *DatastreamConnectionProfileList) DeepCopyInto(out *DatastreamConnectionProfileList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DatastreamConnectionProfile, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamConnectionProfileList.
func (in *DatastreamConnectionProfileList) DeepCopy() *DatastreamConnectionProfileList {
if in == nil {
return nil
}
out := new(DatastreamConnectionProfileList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamConnectionProfileList) 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 *DatastreamConnectionProfileObservedState) DeepCopyInto(out *DatastreamConnectionProfileObservedState) {
*out = *in
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.OracleProfile != nil {
in, out := &in.OracleProfile, &out.OracleProfile
*out = new(OracleProfileObservedState)
(*in).DeepCopyInto(*out)
}
if in.MySQLProfile != nil {
in, out := &in.MySQLProfile, &out.MySQLProfile
*out = new(MysqlProfileObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamConnectionProfileObservedState.
func (in *DatastreamConnectionProfileObservedState) DeepCopy() *DatastreamConnectionProfileObservedState {
if in == nil {
return nil
}
out := new(DatastreamConnectionProfileObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamConnectionProfileSpec) DeepCopyInto(out *DatastreamConnectionProfileSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
in.Parent.DeepCopyInto(&out.Parent)
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.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.OracleProfile != nil {
in, out := &in.OracleProfile, &out.OracleProfile
*out = new(OracleProfile)
(*in).DeepCopyInto(*out)
}
if in.GCSProfile != nil {
in, out := &in.GCSProfile, &out.GCSProfile
*out = new(GCSProfile)
(*in).DeepCopyInto(*out)
}
if in.MySQLProfile != nil {
in, out := &in.MySQLProfile, &out.MySQLProfile
*out = new(MysqlProfile)
(*in).DeepCopyInto(*out)
}
if in.BigQueryProfile != nil {
in, out := &in.BigQueryProfile, &out.BigQueryProfile
*out = new(BigQueryProfile)
**out = **in
}
if in.SQLServerProfile != nil {
in, out := &in.SQLServerProfile, &out.SQLServerProfile
*out = new(SQLServerProfile)
(*in).DeepCopyInto(*out)
}
if in.StaticServiceIPConnectivity != nil {
in, out := &in.StaticServiceIPConnectivity, &out.StaticServiceIPConnectivity
*out = new(StaticServiceIPConnectivity)
**out = **in
}
if in.ForwardSSHConnectivity != nil {
in, out := &in.ForwardSSHConnectivity, &out.ForwardSSHConnectivity
*out = new(ForwardSSHTunnelConnectivity)
(*in).DeepCopyInto(*out)
}
if in.PrivateConnectivity != nil {
in, out := &in.PrivateConnectivity, &out.PrivateConnectivity
*out = new(PrivateConnectivity)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamConnectionProfileSpec.
func (in *DatastreamConnectionProfileSpec) DeepCopy() *DatastreamConnectionProfileSpec {
if in == nil {
return nil
}
out := new(DatastreamConnectionProfileSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamConnectionProfileStatus) DeepCopyInto(out *DatastreamConnectionProfileStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(DatastreamConnectionProfileObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamConnectionProfileStatus.
func (in *DatastreamConnectionProfileStatus) DeepCopy() *DatastreamConnectionProfileStatus {
if in == nil {
return nil
}
out := new(DatastreamConnectionProfileStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamPrivateConnection) DeepCopyInto(out *DatastreamPrivateConnection) {
*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 DatastreamPrivateConnection.
func (in *DatastreamPrivateConnection) DeepCopy() *DatastreamPrivateConnection {
if in == nil {
return nil
}
out := new(DatastreamPrivateConnection)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamPrivateConnection) 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 *DatastreamPrivateConnectionList) DeepCopyInto(out *DatastreamPrivateConnectionList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DatastreamPrivateConnection, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamPrivateConnectionList.
func (in *DatastreamPrivateConnectionList) DeepCopy() *DatastreamPrivateConnectionList {
if in == nil {
return nil
}
out := new(DatastreamPrivateConnectionList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamPrivateConnectionList) 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 *DatastreamPrivateConnectionObservedState) DeepCopyInto(out *DatastreamPrivateConnectionObservedState) {
*out = *in
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.State != nil {
in, out := &in.State, &out.State
*out = new(string)
**out = **in
}
if in.Error != nil {
in, out := &in.Error, &out.Error
*out = new(Error)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamPrivateConnectionObservedState.
func (in *DatastreamPrivateConnectionObservedState) DeepCopy() *DatastreamPrivateConnectionObservedState {
if in == nil {
return nil
}
out := new(DatastreamPrivateConnectionObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamPrivateConnectionSpec) DeepCopyInto(out *DatastreamPrivateConnectionSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
in.Parent.DeepCopyInto(&out.Parent)
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.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.VPCPeeringConfig != nil {
in, out := &in.VPCPeeringConfig, &out.VPCPeeringConfig
*out = new(VpcPeeringConfig)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamPrivateConnectionSpec.
func (in *DatastreamPrivateConnectionSpec) DeepCopy() *DatastreamPrivateConnectionSpec {
if in == nil {
return nil
}
out := new(DatastreamPrivateConnectionSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamPrivateConnectionStatus) DeepCopyInto(out *DatastreamPrivateConnectionStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(DatastreamPrivateConnectionObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamPrivateConnectionStatus.
func (in *DatastreamPrivateConnectionStatus) DeepCopy() *DatastreamPrivateConnectionStatus {
if in == nil {
return nil
}
out := new(DatastreamPrivateConnectionStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamRoute) DeepCopyInto(out *DatastreamRoute) {
*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 DatastreamRoute.
func (in *DatastreamRoute) DeepCopy() *DatastreamRoute {
if in == nil {
return nil
}
out := new(DatastreamRoute)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamRoute) 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 *DatastreamRouteList) DeepCopyInto(out *DatastreamRouteList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DatastreamRoute, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamRouteList.
func (in *DatastreamRouteList) DeepCopy() *DatastreamRouteList {
if in == nil {
return nil
}
out := new(DatastreamRouteList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DatastreamRouteList) 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 *DatastreamRouteObservedState) DeepCopyInto(out *DatastreamRouteObservedState) {
*out = *in
if in.CreateTime != nil {
in, out := &in.CreateTime, &out.CreateTime
*out = new(string)
**out = **in
}
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamRouteObservedState.
func (in *DatastreamRouteObservedState) DeepCopy() *DatastreamRouteObservedState {
if in == nil {
return nil
}
out := new(DatastreamRouteObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamRouteSpec) DeepCopyInto(out *DatastreamRouteSpec) {
*out = *in
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
if in.PrivateConnectionRef != nil {
in, out := &in.PrivateConnectionRef, &out.PrivateConnectionRef
*out = new(PrivateConnectionRef)
**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.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.DestinationAddress != nil {
in, out := &in.DestinationAddress, &out.DestinationAddress
*out = new(string)
**out = **in
}
if in.DestinationPort != nil {
in, out := &in.DestinationPort, &out.DestinationPort
*out = new(int32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamRouteSpec.
func (in *DatastreamRouteSpec) DeepCopy() *DatastreamRouteSpec {
if in == nil {
return nil
}
out := new(DatastreamRouteSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatastreamRouteStatus) DeepCopyInto(out *DatastreamRouteStatus) {
*out = *in
if in.Conditions != nil {
in, out := &in.Conditions, &out.Conditions
*out = make([]k8sv1alpha1.Condition, len(*in))
copy(*out, *in)
}
if in.ObservedGeneration != nil {
in, out := &in.ObservedGeneration, &out.ObservedGeneration
*out = new(int64)
**out = **in
}
if in.ExternalRef != nil {
in, out := &in.ExternalRef, &out.ExternalRef
*out = new(string)
**out = **in
}
if in.ObservedState != nil {
in, out := &in.ObservedState, &out.ObservedState
*out = new(DatastreamRouteObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatastreamRouteStatus.
func (in *DatastreamRouteStatus) DeepCopy() *DatastreamRouteStatus {
if in == nil {
return nil
}
out := new(DatastreamRouteStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Error) DeepCopyInto(out *Error) {
*out = *in
if in.Reason != nil {
in, out := &in.Reason, &out.Reason
*out = new(string)
**out = **in
}
if in.ErrorUUID != nil {
in, out := &in.ErrorUUID, &out.ErrorUUID
*out = new(string)
**out = **in
}
if in.Message != nil {
in, out := &in.Message, &out.Message
*out = new(string)
**out = **in
}
if in.ErrorTime != nil {
in, out := &in.ErrorTime, &out.ErrorTime
*out = new(string)
**out = **in
}
if in.Details != nil {
in, out := &in.Details, &out.Details
*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 Error.
func (in *Error) DeepCopy() *Error {
if in == nil {
return nil
}
out := new(Error)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ForwardSSHTunnelConnectivity) DeepCopyInto(out *ForwardSSHTunnelConnectivity) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.PrivateKey != nil {
in, out := &in.PrivateKey, &out.PrivateKey
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForwardSSHTunnelConnectivity.
func (in *ForwardSSHTunnelConnectivity) DeepCopy() *ForwardSSHTunnelConnectivity {
if in == nil {
return nil
}
out := new(ForwardSSHTunnelConnectivity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GCSProfile) DeepCopyInto(out *GCSProfile) {
*out = *in
if in.Bucket != nil {
in, out := &in.Bucket, &out.Bucket
*out = new(string)
**out = **in
}
if in.RootPath != nil {
in, out := &in.RootPath, &out.RootPath
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSProfile.
func (in *GCSProfile) DeepCopy() *GCSProfile {
if in == nil {
return nil
}
out := new(GCSProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MysqlProfile) DeepCopyInto(out *MysqlProfile) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.SSLConfig != nil {
in, out := &in.SSLConfig, &out.SSLConfig
*out = new(MysqlSSLConfig)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MysqlProfile.
func (in *MysqlProfile) DeepCopy() *MysqlProfile {
if in == nil {
return nil
}
out := new(MysqlProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MysqlProfileObservedState) DeepCopyInto(out *MysqlProfileObservedState) {
*out = *in
if in.SSLConfig != nil {
in, out := &in.SSLConfig, &out.SSLConfig
*out = new(MysqlSSLConfigObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MysqlProfileObservedState.
func (in *MysqlProfileObservedState) DeepCopy() *MysqlProfileObservedState {
if in == nil {
return nil
}
out := new(MysqlProfileObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MysqlSSLConfig) DeepCopyInto(out *MysqlSSLConfig) {
*out = *in
if in.ClientKey != nil {
in, out := &in.ClientKey, &out.ClientKey
*out = new(string)
**out = **in
}
if in.ClientCertificate != nil {
in, out := &in.ClientCertificate, &out.ClientCertificate
*out = new(string)
**out = **in
}
if in.CACertificate != nil {
in, out := &in.CACertificate, &out.CACertificate
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MysqlSSLConfig.
func (in *MysqlSSLConfig) DeepCopy() *MysqlSSLConfig {
if in == nil {
return nil
}
out := new(MysqlSSLConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MysqlSSLConfigObservedState) DeepCopyInto(out *MysqlSSLConfigObservedState) {
*out = *in
if in.ClientKeySet != nil {
in, out := &in.ClientKeySet, &out.ClientKeySet
*out = new(bool)
**out = **in
}
if in.ClientCertificateSet != nil {
in, out := &in.ClientCertificateSet, &out.ClientCertificateSet
*out = new(bool)
**out = **in
}
if in.CACertificateSet != nil {
in, out := &in.CACertificateSet, &out.CACertificateSet
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MysqlSSLConfigObservedState.
func (in *MysqlSSLConfigObservedState) DeepCopy() *MysqlSSLConfigObservedState {
if in == nil {
return nil
}
out := new(MysqlSSLConfigObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OracleAsmConfig) DeepCopyInto(out *OracleAsmConfig) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.ASMService != nil {
in, out := &in.ASMService, &out.ASMService
*out = new(string)
**out = **in
}
if in.ConnectionAttributes != nil {
in, out := &in.ConnectionAttributes, &out.ConnectionAttributes
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.OracleSSLConfig != nil {
in, out := &in.OracleSSLConfig, &out.OracleSSLConfig
*out = new(OracleSSLConfig)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAsmConfig.
func (in *OracleAsmConfig) DeepCopy() *OracleAsmConfig {
if in == nil {
return nil
}
out := new(OracleAsmConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OracleProfile) DeepCopyInto(out *OracleProfile) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.DatabaseService != nil {
in, out := &in.DatabaseService, &out.DatabaseService
*out = new(string)
**out = **in
}
if in.ConnectionAttributes != nil {
in, out := &in.ConnectionAttributes, &out.ConnectionAttributes
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.OracleSSLConfig != nil {
in, out := &in.OracleSSLConfig, &out.OracleSSLConfig
*out = new(OracleSSLConfig)
(*in).DeepCopyInto(*out)
}
if in.OracleASMConfig != nil {
in, out := &in.OracleASMConfig, &out.OracleASMConfig
*out = new(OracleAsmConfig)
(*in).DeepCopyInto(*out)
}
if in.SecreteManagerSecretRef != nil {
in, out := &in.SecreteManagerSecretRef, &out.SecreteManagerSecretRef
*out = new(v1beta1.SecretManagerSecretRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProfile.
func (in *OracleProfile) DeepCopy() *OracleProfile {
if in == nil {
return nil
}
out := new(OracleProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OracleProfileObservedState) DeepCopyInto(out *OracleProfileObservedState) {
*out = *in
if in.OracleSSLConfig != nil {
in, out := &in.OracleSSLConfig, &out.OracleSSLConfig
*out = new(OracleSSLConfigObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProfileObservedState.
func (in *OracleProfileObservedState) DeepCopy() *OracleProfileObservedState {
if in == nil {
return nil
}
out := new(OracleProfileObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OracleSSLConfig) DeepCopyInto(out *OracleSSLConfig) {
*out = *in
if in.CACertificate != nil {
in, out := &in.CACertificate, &out.CACertificate
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSSLConfig.
func (in *OracleSSLConfig) DeepCopy() *OracleSSLConfig {
if in == nil {
return nil
}
out := new(OracleSSLConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OracleSSLConfigObservedState) DeepCopyInto(out *OracleSSLConfigObservedState) {
*out = *in
if in.CACertificateSet != nil {
in, out := &in.CACertificateSet, &out.CACertificateSet
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSSLConfigObservedState.
func (in *OracleSSLConfigObservedState) DeepCopy() *OracleSSLConfigObservedState {
if in == nil {
return nil
}
out := new(OracleSSLConfigObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Parent) DeepCopyInto(out *Parent) {
*out = *in
if in.ProjectRef != nil {
in, out := &in.ProjectRef, &out.ProjectRef
*out = new(v1beta1.ProjectRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Parent.
func (in *Parent) DeepCopy() *Parent {
if in == nil {
return nil
}
out := new(Parent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PostgresqlProfile) DeepCopyInto(out *PostgresqlProfile) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.Database != nil {
in, out := &in.Database, &out.Database
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresqlProfile.
func (in *PostgresqlProfile) DeepCopy() *PostgresqlProfile {
if in == nil {
return nil
}
out := new(PostgresqlProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PrivateConnectionIdentity) DeepCopyInto(out *PrivateConnectionIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(PrivateConnectionParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateConnectionIdentity.
func (in *PrivateConnectionIdentity) DeepCopy() *PrivateConnectionIdentity {
if in == nil {
return nil
}
out := new(PrivateConnectionIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PrivateConnectionParent) DeepCopyInto(out *PrivateConnectionParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateConnectionParent.
func (in *PrivateConnectionParent) DeepCopy() *PrivateConnectionParent {
if in == nil {
return nil
}
out := new(PrivateConnectionParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PrivateConnectionRef) DeepCopyInto(out *PrivateConnectionRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateConnectionRef.
func (in *PrivateConnectionRef) DeepCopy() *PrivateConnectionRef {
if in == nil {
return nil
}
out := new(PrivateConnectionRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PrivateConnectivity) DeepCopyInto(out *PrivateConnectivity) {
*out = *in
if in.PrivateConnectionRef != nil {
in, out := &in.PrivateConnectionRef, &out.PrivateConnectionRef
*out = new(PrivateConnectionRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateConnectivity.
func (in *PrivateConnectivity) DeepCopy() *PrivateConnectivity {
if in == nil {
return nil
}
out := new(PrivateConnectivity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouteIdentity) DeepCopyInto(out *RouteIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(RouteParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteIdentity.
func (in *RouteIdentity) DeepCopy() *RouteIdentity {
if in == nil {
return nil
}
out := new(RouteIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouteParent) DeepCopyInto(out *RouteParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteParent.
func (in *RouteParent) DeepCopy() *RouteParent {
if in == nil {
return nil
}
out := new(RouteParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouteRef) DeepCopyInto(out *RouteRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteRef.
func (in *RouteRef) DeepCopy() *RouteRef {
if in == nil {
return nil
}
out := new(RouteRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SQLServerProfile) DeepCopyInto(out *SQLServerProfile) {
*out = *in
if in.Hostname != nil {
in, out := &in.Hostname, &out.Hostname
*out = new(string)
**out = **in
}
if in.Port != nil {
in, out := &in.Port, &out.Port
*out = new(int32)
**out = **in
}
if in.SecretRef != nil {
in, out := &in.SecretRef, &out.SecretRef
*out = new(secret.BasicAuthSecretRef)
**out = **in
}
if in.Database != nil {
in, out := &in.Database, &out.Database
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SQLServerProfile.
func (in *SQLServerProfile) DeepCopy() *SQLServerProfile {
if in == nil {
return nil
}
out := new(SQLServerProfile)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *StaticServiceIPConnectivity) DeepCopyInto(out *StaticServiceIPConnectivity) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticServiceIPConnectivity.
func (in *StaticServiceIPConnectivity) DeepCopy() *StaticServiceIPConnectivity {
if in == nil {
return nil
}
out := new(StaticServiceIPConnectivity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VpcPeeringConfig) DeepCopyInto(out *VpcPeeringConfig) {
*out = *in
if in.NetworkRef != nil {
in, out := &in.NetworkRef, &out.NetworkRef
*out = new(v1beta1.ComputeNetworkRef)
**out = **in
}
if in.Subnet != nil {
in, out := &in.Subnet, &out.Subnet
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VpcPeeringConfig.
func (in *VpcPeeringConfig) DeepCopy() *VpcPeeringConfig {
if in == nil {
return nil
}
out := new(VpcPeeringConfig)
in.DeepCopyInto(out)
return out
}