apis/datacatalog/v1alpha1/zz_generated.deepcopy.go (2,383 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"
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 *BigQueryConnectionSpec) DeepCopyInto(out *BigQueryConnectionSpec) {
*out = *in
if in.ConnectionType != nil {
in, out := &in.ConnectionType, &out.ConnectionType
*out = new(string)
**out = **in
}
if in.CloudSQL != nil {
in, out := &in.CloudSQL, &out.CloudSQL
*out = new(CloudSQLBigQueryConnectionSpec)
(*in).DeepCopyInto(*out)
}
if in.HasCredential != nil {
in, out := &in.HasCredential, &out.HasCredential
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryConnectionSpec.
func (in *BigQueryConnectionSpec) DeepCopy() *BigQueryConnectionSpec {
if in == nil {
return nil
}
out := new(BigQueryConnectionSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BigQueryDateShardedSpec) DeepCopyInto(out *BigQueryDateShardedSpec) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDateShardedSpec.
func (in *BigQueryDateShardedSpec) DeepCopy() *BigQueryDateShardedSpec {
if in == nil {
return nil
}
out := new(BigQueryDateShardedSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BigQueryDateShardedSpecObservedState) DeepCopyInto(out *BigQueryDateShardedSpecObservedState) {
*out = *in
if in.Dataset != nil {
in, out := &in.Dataset, &out.Dataset
*out = new(string)
**out = **in
}
if in.TablePrefix != nil {
in, out := &in.TablePrefix, &out.TablePrefix
*out = new(string)
**out = **in
}
if in.ShardCount != nil {
in, out := &in.ShardCount, &out.ShardCount
*out = new(int64)
**out = **in
}
if in.LatestShardResource != nil {
in, out := &in.LatestShardResource, &out.LatestShardResource
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryDateShardedSpecObservedState.
func (in *BigQueryDateShardedSpecObservedState) DeepCopy() *BigQueryDateShardedSpecObservedState {
if in == nil {
return nil
}
out := new(BigQueryDateShardedSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BigQueryRoutineSpec) DeepCopyInto(out *BigQueryRoutineSpec) {
*out = *in
if in.ImportedLibraries != nil {
in, out := &in.ImportedLibraries, &out.ImportedLibraries
*out = make([]string, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryRoutineSpec.
func (in *BigQueryRoutineSpec) DeepCopy() *BigQueryRoutineSpec {
if in == nil {
return nil
}
out := new(BigQueryRoutineSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BigQueryTableSpec) DeepCopyInto(out *BigQueryTableSpec) {
*out = *in
if in.ViewSpec != nil {
in, out := &in.ViewSpec, &out.ViewSpec
*out = new(ViewSpec)
**out = **in
}
if in.TableSpec != nil {
in, out := &in.TableSpec, &out.TableSpec
*out = new(TableSpec)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryTableSpec.
func (in *BigQueryTableSpec) DeepCopy() *BigQueryTableSpec {
if in == nil {
return nil
}
out := new(BigQueryTableSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BigQueryTableSpecObservedState) DeepCopyInto(out *BigQueryTableSpecObservedState) {
*out = *in
if in.TableSourceType != nil {
in, out := &in.TableSourceType, &out.TableSourceType
*out = new(string)
**out = **in
}
if in.ViewSpec != nil {
in, out := &in.ViewSpec, &out.ViewSpec
*out = new(ViewSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.TableSpec != nil {
in, out := &in.TableSpec, &out.TableSpec
*out = new(TableSpecObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BigQueryTableSpecObservedState.
func (in *BigQueryTableSpecObservedState) DeepCopy() *BigQueryTableSpecObservedState {
if in == nil {
return nil
}
out := new(BigQueryTableSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *BusinessContext) DeepCopyInto(out *BusinessContext) {
*out = *in
if in.EntryOverview != nil {
in, out := &in.EntryOverview, &out.EntryOverview
*out = new(EntryOverview)
(*in).DeepCopyInto(*out)
}
if in.Contacts != nil {
in, out := &in.Contacts, &out.Contacts
*out = new(Contacts)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BusinessContext.
func (in *BusinessContext) DeepCopy() *BusinessContext {
if in == nil {
return nil
}
out := new(BusinessContext)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudBigtableInstanceSpec) DeepCopyInto(out *CloudBigtableInstanceSpec) {
*out = *in
if in.CloudBigtableClusterSpecs != nil {
in, out := &in.CloudBigtableClusterSpecs, &out.CloudBigtableClusterSpecs
*out = make([]CloudBigtableInstanceSpec_CloudBigtableClusterSpec, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudBigtableInstanceSpec.
func (in *CloudBigtableInstanceSpec) DeepCopy() *CloudBigtableInstanceSpec {
if in == nil {
return nil
}
out := new(CloudBigtableInstanceSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudBigtableInstanceSpec_CloudBigtableClusterSpec) DeepCopyInto(out *CloudBigtableInstanceSpec_CloudBigtableClusterSpec) {
*out = *in
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Location != nil {
in, out := &in.Location, &out.Location
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
if in.LinkedResource != nil {
in, out := &in.LinkedResource, &out.LinkedResource
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudBigtableInstanceSpec_CloudBigtableClusterSpec.
func (in *CloudBigtableInstanceSpec_CloudBigtableClusterSpec) DeepCopy() *CloudBigtableInstanceSpec_CloudBigtableClusterSpec {
if in == nil {
return nil
}
out := new(CloudBigtableInstanceSpec_CloudBigtableClusterSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudBigtableSystemSpec) DeepCopyInto(out *CloudBigtableSystemSpec) {
*out = *in
if in.InstanceDisplayName != nil {
in, out := &in.InstanceDisplayName, &out.InstanceDisplayName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudBigtableSystemSpec.
func (in *CloudBigtableSystemSpec) DeepCopy() *CloudBigtableSystemSpec {
if in == nil {
return nil
}
out := new(CloudBigtableSystemSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CloudSQLBigQueryConnectionSpec) DeepCopyInto(out *CloudSQLBigQueryConnectionSpec) {
*out = *in
if in.InstanceID != nil {
in, out := &in.InstanceID, &out.InstanceID
*out = new(string)
**out = **in
}
if in.Database != nil {
in, out := &in.Database, &out.Database
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudSQLBigQueryConnectionSpec.
func (in *CloudSQLBigQueryConnectionSpec) DeepCopy() *CloudSQLBigQueryConnectionSpec {
if in == nil {
return nil
}
out := new(CloudSQLBigQueryConnectionSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ColumnSchema) DeepCopyInto(out *ColumnSchema) {
*out = *in
if in.Column != nil {
in, out := &in.Column, &out.Column
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
if in.Description != nil {
in, out := &in.Description, &out.Description
*out = new(string)
**out = **in
}
if in.Mode != nil {
in, out := &in.Mode, &out.Mode
*out = new(string)
**out = **in
}
if in.DefaultValue != nil {
in, out := &in.DefaultValue, &out.DefaultValue
*out = new(string)
**out = **in
}
if in.OrdinalPosition != nil {
in, out := &in.OrdinalPosition, &out.OrdinalPosition
*out = new(int32)
**out = **in
}
if in.HighestIndexingType != nil {
in, out := &in.HighestIndexingType, &out.HighestIndexingType
*out = new(string)
**out = **in
}
if in.Subcolumns != nil {
in, out := &in.Subcolumns, &out.Subcolumns
*out = make([]ColumnSchema, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.LookerColumnSpec != nil {
in, out := &in.LookerColumnSpec, &out.LookerColumnSpec
*out = new(ColumnSchema_LookerColumnSpec)
(*in).DeepCopyInto(*out)
}
if in.RangeElementType != nil {
in, out := &in.RangeElementType, &out.RangeElementType
*out = new(ColumnSchema_FieldElementType)
(*in).DeepCopyInto(*out)
}
if in.GcRule != nil {
in, out := &in.GcRule, &out.GcRule
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColumnSchema.
func (in *ColumnSchema) DeepCopy() *ColumnSchema {
if in == nil {
return nil
}
out := new(ColumnSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ColumnSchema_FieldElementType) DeepCopyInto(out *ColumnSchema_FieldElementType) {
*out = *in
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColumnSchema_FieldElementType.
func (in *ColumnSchema_FieldElementType) DeepCopy() *ColumnSchema_FieldElementType {
if in == nil {
return nil
}
out := new(ColumnSchema_FieldElementType)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ColumnSchema_LookerColumnSpec) DeepCopyInto(out *ColumnSchema_LookerColumnSpec) {
*out = *in
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColumnSchema_LookerColumnSpec.
func (in *ColumnSchema_LookerColumnSpec) DeepCopy() *ColumnSchema_LookerColumnSpec {
if in == nil {
return nil
}
out := new(ColumnSchema_LookerColumnSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CommonUsageStats) DeepCopyInto(out *CommonUsageStats) {
*out = *in
if in.ViewCount != nil {
in, out := &in.ViewCount, &out.ViewCount
*out = new(int64)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonUsageStats.
func (in *CommonUsageStats) DeepCopy() *CommonUsageStats {
if in == nil {
return nil
}
out := new(CommonUsageStats)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Contacts) DeepCopyInto(out *Contacts) {
*out = *in
if in.People != nil {
in, out := &in.People, &out.People
*out = make([]Contacts_Person, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Contacts.
func (in *Contacts) DeepCopy() *Contacts {
if in == nil {
return nil
}
out := new(Contacts)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Contacts_Person) DeepCopyInto(out *Contacts_Person) {
*out = *in
if in.Designation != nil {
in, out := &in.Designation, &out.Designation
*out = new(string)
**out = **in
}
if in.Email != nil {
in, out := &in.Email, &out.Email
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Contacts_Person.
func (in *Contacts_Person) DeepCopy() *Contacts_Person {
if in == nil {
return nil
}
out := new(Contacts_Person)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntry) DeepCopyInto(out *DataCatalogEntry) {
*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 DataCatalogEntry.
func (in *DataCatalogEntry) DeepCopy() *DataCatalogEntry {
if in == nil {
return nil
}
out := new(DataCatalogEntry)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogEntry) 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 *DataCatalogEntryGroup) DeepCopyInto(out *DataCatalogEntryGroup) {
*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 DataCatalogEntryGroup.
func (in *DataCatalogEntryGroup) DeepCopy() *DataCatalogEntryGroup {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroup)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogEntryGroup) 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 *DataCatalogEntryGroupList) DeepCopyInto(out *DataCatalogEntryGroupList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DataCatalogEntryGroup, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryGroupList.
func (in *DataCatalogEntryGroupList) DeepCopy() *DataCatalogEntryGroupList {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroupList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogEntryGroupList) 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 *DataCatalogEntryGroupObservedState) DeepCopyInto(out *DataCatalogEntryGroupObservedState) {
*out = *in
if in.DataCatalogTimestamps != nil {
in, out := &in.DataCatalogTimestamps, &out.DataCatalogTimestamps
*out = new(SystemTimestamps)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryGroupObservedState.
func (in *DataCatalogEntryGroupObservedState) DeepCopy() *DataCatalogEntryGroupObservedState {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroupObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryGroupParent) DeepCopyInto(out *DataCatalogEntryGroupParent) {
*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 DataCatalogEntryGroupParent.
func (in *DataCatalogEntryGroupParent) DeepCopy() *DataCatalogEntryGroupParent {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroupParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryGroupSpec) DeepCopyInto(out *DataCatalogEntryGroupSpec) {
*out = *in
in.DataCatalogEntryGroupParent.DeepCopyInto(&out.DataCatalogEntryGroupParent)
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Description != nil {
in, out := &in.Description, &out.Description
*out = new(string)
**out = **in
}
if in.TransferredToDataplex != nil {
in, out := &in.TransferredToDataplex, &out.TransferredToDataplex
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryGroupSpec.
func (in *DataCatalogEntryGroupSpec) DeepCopy() *DataCatalogEntryGroupSpec {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroupSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryGroupStatus) DeepCopyInto(out *DataCatalogEntryGroupStatus) {
*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(DataCatalogEntryGroupObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryGroupStatus.
func (in *DataCatalogEntryGroupStatus) DeepCopy() *DataCatalogEntryGroupStatus {
if in == nil {
return nil
}
out := new(DataCatalogEntryGroupStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryList) DeepCopyInto(out *DataCatalogEntryList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DataCatalogEntry, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryList.
func (in *DataCatalogEntryList) DeepCopy() *DataCatalogEntryList {
if in == nil {
return nil
}
out := new(DataCatalogEntryList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogEntryList) 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 *DataCatalogEntryObservedState) DeepCopyInto(out *DataCatalogEntryObservedState) {
*out = *in
if in.LinkedResource != nil {
in, out := &in.LinkedResource, &out.LinkedResource
*out = new(string)
**out = **in
}
if in.IntegratedSystem != nil {
in, out := &in.IntegratedSystem, &out.IntegratedSystem
*out = new(string)
**out = **in
}
if in.GCSFilesetSpec != nil {
in, out := &in.GCSFilesetSpec, &out.GCSFilesetSpec
*out = new(GCSFilesetSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.BigqueryTableSpec != nil {
in, out := &in.BigqueryTableSpec, &out.BigqueryTableSpec
*out = new(BigQueryTableSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.BigqueryDateShardedSpec != nil {
in, out := &in.BigqueryDateShardedSpec, &out.BigqueryDateShardedSpec
*out = new(BigQueryDateShardedSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.DatabaseTableSpec != nil {
in, out := &in.DatabaseTableSpec, &out.DatabaseTableSpec
*out = new(DatabaseTableSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.FeatureOnlineStoreSpec != nil {
in, out := &in.FeatureOnlineStoreSpec, &out.FeatureOnlineStoreSpec
*out = new(FeatureOnlineStoreSpecObservedState)
(*in).DeepCopyInto(*out)
}
if in.UsageSignal != nil {
in, out := &in.UsageSignal, &out.UsageSignal
*out = new(UsageSignalObservedState)
**out = **in
}
if in.DataSource != nil {
in, out := &in.DataSource, &out.DataSource
*out = new(DataSourceObservedState)
(*in).DeepCopyInto(*out)
}
if in.PersonalDetails != nil {
in, out := &in.PersonalDetails, &out.PersonalDetails
*out = new(PersonalDetails)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryObservedState.
func (in *DataCatalogEntryObservedState) DeepCopy() *DataCatalogEntryObservedState {
if in == nil {
return nil
}
out := new(DataCatalogEntryObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryParent) DeepCopyInto(out *DataCatalogEntryParent) {
*out = *in
if in.EntryGroupRef != nil {
in, out := &in.EntryGroupRef, &out.EntryGroupRef
*out = new(EntryGroupRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryParent.
func (in *DataCatalogEntryParent) DeepCopy() *DataCatalogEntryParent {
if in == nil {
return nil
}
out := new(DataCatalogEntryParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntrySpec) DeepCopyInto(out *DataCatalogEntrySpec) {
*out = *in
in.DataCatalogEntryParent.DeepCopyInto(&out.DataCatalogEntryParent)
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
if in.UserSpecifiedType != nil {
in, out := &in.UserSpecifiedType, &out.UserSpecifiedType
*out = new(string)
**out = **in
}
if in.UserSpecifiedSystem != nil {
in, out := &in.UserSpecifiedSystem, &out.UserSpecifiedSystem
*out = new(string)
**out = **in
}
if in.SQLDatabaseSystemSpec != nil {
in, out := &in.SQLDatabaseSystemSpec, &out.SQLDatabaseSystemSpec
*out = new(SQLDatabaseSystemSpec)
(*in).DeepCopyInto(*out)
}
if in.LookerSystemSpec != nil {
in, out := &in.LookerSystemSpec, &out.LookerSystemSpec
*out = new(LookerSystemSpec)
(*in).DeepCopyInto(*out)
}
if in.CloudBigtableSystemSpec != nil {
in, out := &in.CloudBigtableSystemSpec, &out.CloudBigtableSystemSpec
*out = new(CloudBigtableSystemSpec)
(*in).DeepCopyInto(*out)
}
if in.GCSFilesetSpec != nil {
in, out := &in.GCSFilesetSpec, &out.GCSFilesetSpec
*out = new(GCSFilesetSpec)
(*in).DeepCopyInto(*out)
}
if in.DatabaseTableSpec != nil {
in, out := &in.DatabaseTableSpec, &out.DatabaseTableSpec
*out = new(DatabaseTableSpec)
(*in).DeepCopyInto(*out)
}
if in.DataSourceConnectionSpec != nil {
in, out := &in.DataSourceConnectionSpec, &out.DataSourceConnectionSpec
*out = new(DataSourceConnectionSpec)
(*in).DeepCopyInto(*out)
}
if in.RoutineSpec != nil {
in, out := &in.RoutineSpec, &out.RoutineSpec
*out = new(RoutineSpec)
(*in).DeepCopyInto(*out)
}
if in.DatasetSpec != nil {
in, out := &in.DatasetSpec, &out.DatasetSpec
*out = new(DatasetSpec)
(*in).DeepCopyInto(*out)
}
if in.FilesetSpec != nil {
in, out := &in.FilesetSpec, &out.FilesetSpec
*out = new(FilesetSpec)
(*in).DeepCopyInto(*out)
}
if in.ServiceSpec != nil {
in, out := &in.ServiceSpec, &out.ServiceSpec
*out = new(ServiceSpec)
(*in).DeepCopyInto(*out)
}
if in.ModelSpec != nil {
in, out := &in.ModelSpec, &out.ModelSpec
*out = new(ModelSpec)
(*in).DeepCopyInto(*out)
}
if in.FeatureOnlineStoreSpec != nil {
in, out := &in.FeatureOnlineStoreSpec, &out.FeatureOnlineStoreSpec
*out = new(FeatureOnlineStoreSpec)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Description != nil {
in, out := &in.Description, &out.Description
*out = new(string)
**out = **in
}
if in.BusinessContext != nil {
in, out := &in.BusinessContext, &out.BusinessContext
*out = new(BusinessContext)
(*in).DeepCopyInto(*out)
}
if in.Schema != nil {
in, out := &in.Schema, &out.Schema
*out = new(Schema)
(*in).DeepCopyInto(*out)
}
if in.SourceSystemTimestamps != nil {
in, out := &in.SourceSystemTimestamps, &out.SourceSystemTimestamps
*out = new(SystemTimestamps)
(*in).DeepCopyInto(*out)
}
if in.UsageSignal != nil {
in, out := &in.UsageSignal, &out.UsageSignal
*out = new(UsageSignal)
(*in).DeepCopyInto(*out)
}
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
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntrySpec.
func (in *DataCatalogEntrySpec) DeepCopy() *DataCatalogEntrySpec {
if in == nil {
return nil
}
out := new(DataCatalogEntrySpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogEntryStatus) DeepCopyInto(out *DataCatalogEntryStatus) {
*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(DataCatalogEntryObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogEntryStatus.
func (in *DataCatalogEntryStatus) DeepCopy() *DataCatalogEntryStatus {
if in == nil {
return nil
}
out := new(DataCatalogEntryStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTag) DeepCopyInto(out *DataCatalogTag) {
*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 DataCatalogTag.
func (in *DataCatalogTag) DeepCopy() *DataCatalogTag {
if in == nil {
return nil
}
out := new(DataCatalogTag)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogTag) 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 *DataCatalogTagList) DeepCopyInto(out *DataCatalogTagList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DataCatalogTag, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagList.
func (in *DataCatalogTagList) DeepCopy() *DataCatalogTagList {
if in == nil {
return nil
}
out := new(DataCatalogTagList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogTagList) 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 *DataCatalogTagObservedState) DeepCopyInto(out *DataCatalogTagObservedState) {
*out = *in
if in.TemplateDisplayName != nil {
in, out := &in.TemplateDisplayName, &out.TemplateDisplayName
*out = new(string)
**out = **in
}
if in.DataplexTransferStatus != nil {
in, out := &in.DataplexTransferStatus, &out.DataplexTransferStatus
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagObservedState.
func (in *DataCatalogTagObservedState) DeepCopy() *DataCatalogTagObservedState {
if in == nil {
return nil
}
out := new(DataCatalogTagObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagParent) DeepCopyInto(out *DataCatalogTagParent) {
*out = *in
if in.EntryRef != nil {
in, out := &in.EntryRef, &out.EntryRef
*out = new(EntryRef)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagParent.
func (in *DataCatalogTagParent) DeepCopy() *DataCatalogTagParent {
if in == nil {
return nil
}
out := new(DataCatalogTagParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagSpec) DeepCopyInto(out *DataCatalogTagSpec) {
*out = *in
in.DataCatalogTagParent.DeepCopyInto(&out.DataCatalogTagParent)
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
if in.TemplateRef != nil {
in, out := &in.TemplateRef, &out.TemplateRef
*out = new(TagTemplateRef)
**out = **in
}
if in.Column != nil {
in, out := &in.Column, &out.Column
*out = new(string)
**out = **in
}
if in.Fields != nil {
in, out := &in.Fields, &out.Fields
*out = make(map[string]TagField, len(*in))
for key, val := range *in {
(*out)[key] = *val.DeepCopy()
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagSpec.
func (in *DataCatalogTagSpec) DeepCopy() *DataCatalogTagSpec {
if in == nil {
return nil
}
out := new(DataCatalogTagSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagStatus) DeepCopyInto(out *DataCatalogTagStatus) {
*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(DataCatalogTagObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagStatus.
func (in *DataCatalogTagStatus) DeepCopy() *DataCatalogTagStatus {
if in == nil {
return nil
}
out := new(DataCatalogTagStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagTemplate) DeepCopyInto(out *DataCatalogTagTemplate) {
*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 DataCatalogTagTemplate.
func (in *DataCatalogTagTemplate) DeepCopy() *DataCatalogTagTemplate {
if in == nil {
return nil
}
out := new(DataCatalogTagTemplate)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogTagTemplate) 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 *DataCatalogTagTemplateList) DeepCopyInto(out *DataCatalogTagTemplateList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]DataCatalogTagTemplate, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagTemplateList.
func (in *DataCatalogTagTemplateList) DeepCopy() *DataCatalogTagTemplateList {
if in == nil {
return nil
}
out := new(DataCatalogTagTemplateList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DataCatalogTagTemplateList) 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 *DataCatalogTagTemplateObservedState) DeepCopyInto(out *DataCatalogTagTemplateObservedState) {
*out = *in
if in.DataplexTransferStatus != nil {
in, out := &in.DataplexTransferStatus, &out.DataplexTransferStatus
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagTemplateObservedState.
func (in *DataCatalogTagTemplateObservedState) DeepCopy() *DataCatalogTagTemplateObservedState {
if in == nil {
return nil
}
out := new(DataCatalogTagTemplateObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagTemplateSpec) DeepCopyInto(out *DataCatalogTagTemplateSpec) {
*out = *in
in.Parent.DeepCopyInto(&out.Parent)
if in.ResourceID != nil {
in, out := &in.ResourceID, &out.ResourceID
*out = new(string)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.IsPubliclyReadable != nil {
in, out := &in.IsPubliclyReadable, &out.IsPubliclyReadable
*out = new(bool)
**out = **in
}
if in.Fields != nil {
in, out := &in.Fields, &out.Fields
*out = make(map[string]TagTemplateField, len(*in))
for key, val := range *in {
(*out)[key] = *val.DeepCopy()
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagTemplateSpec.
func (in *DataCatalogTagTemplateSpec) DeepCopy() *DataCatalogTagTemplateSpec {
if in == nil {
return nil
}
out := new(DataCatalogTagTemplateSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataCatalogTagTemplateStatus) DeepCopyInto(out *DataCatalogTagTemplateStatus) {
*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(DataCatalogTagTemplateObservedState)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataCatalogTagTemplateStatus.
func (in *DataCatalogTagTemplateStatus) DeepCopy() *DataCatalogTagTemplateStatus {
if in == nil {
return nil
}
out := new(DataCatalogTagTemplateStatus)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataSource) DeepCopyInto(out *DataSource) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSource.
func (in *DataSource) DeepCopy() *DataSource {
if in == nil {
return nil
}
out := new(DataSource)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataSourceConnectionSpec) DeepCopyInto(out *DataSourceConnectionSpec) {
*out = *in
if in.BigqueryConnectionSpec != nil {
in, out := &in.BigqueryConnectionSpec, &out.BigqueryConnectionSpec
*out = new(BigQueryConnectionSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSourceConnectionSpec.
func (in *DataSourceConnectionSpec) DeepCopy() *DataSourceConnectionSpec {
if in == nil {
return nil
}
out := new(DataSourceConnectionSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataSourceObservedState) DeepCopyInto(out *DataSourceObservedState) {
*out = *in
if in.SourceEntry != nil {
in, out := &in.SourceEntry, &out.SourceEntry
*out = new(string)
**out = **in
}
if in.Service != nil {
in, out := &in.Service, &out.Service
*out = new(string)
**out = **in
}
if in.Resource != nil {
in, out := &in.Resource, &out.Resource
*out = new(string)
**out = **in
}
if in.StorageProperties != nil {
in, out := &in.StorageProperties, &out.StorageProperties
*out = new(StorageProperties)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSourceObservedState.
func (in *DataSourceObservedState) DeepCopy() *DataSourceObservedState {
if in == nil {
return nil
}
out := new(DataSourceObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatabaseTableSpec) DeepCopyInto(out *DatabaseTableSpec) {
*out = *in
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
if in.DatabaseViewSpec != nil {
in, out := &in.DatabaseViewSpec, &out.DatabaseViewSpec
*out = new(DatabaseTableSpec_DatabaseViewSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseTableSpec.
func (in *DatabaseTableSpec) DeepCopy() *DatabaseTableSpec {
if in == nil {
return nil
}
out := new(DatabaseTableSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatabaseTableSpecObservedState) DeepCopyInto(out *DatabaseTableSpecObservedState) {
*out = *in
if in.DataplexTable != nil {
in, out := &in.DataplexTable, &out.DataplexTable
*out = new(DataplexTableSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseTableSpecObservedState.
func (in *DatabaseTableSpecObservedState) DeepCopy() *DatabaseTableSpecObservedState {
if in == nil {
return nil
}
out := new(DatabaseTableSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatabaseTableSpec_DatabaseViewSpec) DeepCopyInto(out *DatabaseTableSpec_DatabaseViewSpec) {
*out = *in
if in.ViewType != nil {
in, out := &in.ViewType, &out.ViewType
*out = new(string)
**out = **in
}
if in.BaseTable != nil {
in, out := &in.BaseTable, &out.BaseTable
*out = new(string)
**out = **in
}
if in.SQLQuery != nil {
in, out := &in.SQLQuery, &out.SQLQuery
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseTableSpec_DatabaseViewSpec.
func (in *DatabaseTableSpec_DatabaseViewSpec) DeepCopy() *DatabaseTableSpec_DatabaseViewSpec {
if in == nil {
return nil
}
out := new(DatabaseTableSpec_DatabaseViewSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataplexExternalTable) DeepCopyInto(out *DataplexExternalTable) {
*out = *in
if in.System != nil {
in, out := &in.System, &out.System
*out = new(string)
**out = **in
}
if in.FullyQualifiedName != nil {
in, out := &in.FullyQualifiedName, &out.FullyQualifiedName
*out = new(string)
**out = **in
}
if in.GoogleCloudResource != nil {
in, out := &in.GoogleCloudResource, &out.GoogleCloudResource
*out = new(string)
**out = **in
}
if in.DataCatalogEntry != nil {
in, out := &in.DataCatalogEntry, &out.DataCatalogEntry
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataplexExternalTable.
func (in *DataplexExternalTable) DeepCopy() *DataplexExternalTable {
if in == nil {
return nil
}
out := new(DataplexExternalTable)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataplexFilesetSpec) DeepCopyInto(out *DataplexFilesetSpec) {
*out = *in
if in.DataplexSpec != nil {
in, out := &in.DataplexSpec, &out.DataplexSpec
*out = new(DataplexSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataplexFilesetSpec.
func (in *DataplexFilesetSpec) DeepCopy() *DataplexFilesetSpec {
if in == nil {
return nil
}
out := new(DataplexFilesetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataplexSpec) DeepCopyInto(out *DataplexSpec) {
*out = *in
if in.Asset != nil {
in, out := &in.Asset, &out.Asset
*out = new(string)
**out = **in
}
if in.DataFormat != nil {
in, out := &in.DataFormat, &out.DataFormat
*out = new(PhysicalSchema)
(*in).DeepCopyInto(*out)
}
if in.CompressionFormat != nil {
in, out := &in.CompressionFormat, &out.CompressionFormat
*out = new(string)
**out = **in
}
if in.ProjectID != nil {
in, out := &in.ProjectID, &out.ProjectID
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataplexSpec.
func (in *DataplexSpec) DeepCopy() *DataplexSpec {
if in == nil {
return nil
}
out := new(DataplexSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DataplexTableSpec) DeepCopyInto(out *DataplexTableSpec) {
*out = *in
if in.ExternalTables != nil {
in, out := &in.ExternalTables, &out.ExternalTables
*out = make([]DataplexExternalTable, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.DataplexSpec != nil {
in, out := &in.DataplexSpec, &out.DataplexSpec
*out = new(DataplexSpec)
(*in).DeepCopyInto(*out)
}
if in.UserManaged != nil {
in, out := &in.UserManaged, &out.UserManaged
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataplexTableSpec.
func (in *DataplexTableSpec) DeepCopy() *DataplexTableSpec {
if in == nil {
return nil
}
out := new(DataplexTableSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DatasetSpec) DeepCopyInto(out *DatasetSpec) {
*out = *in
if in.VertexDatasetSpec != nil {
in, out := &in.VertexDatasetSpec, &out.VertexDatasetSpec
*out = new(VertexDatasetSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetSpec.
func (in *DatasetSpec) DeepCopy() *DatasetSpec {
if in == nil {
return nil
}
out := new(DatasetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryGroupIdentity) DeepCopyInto(out *EntryGroupIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(EntryGroupParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryGroupIdentity.
func (in *EntryGroupIdentity) DeepCopy() *EntryGroupIdentity {
if in == nil {
return nil
}
out := new(EntryGroupIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryGroupParent) DeepCopyInto(out *EntryGroupParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryGroupParent.
func (in *EntryGroupParent) DeepCopy() *EntryGroupParent {
if in == nil {
return nil
}
out := new(EntryGroupParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryGroupRef) DeepCopyInto(out *EntryGroupRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryGroupRef.
func (in *EntryGroupRef) DeepCopy() *EntryGroupRef {
if in == nil {
return nil
}
out := new(EntryGroupRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryIdentity) DeepCopyInto(out *EntryIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(EntryParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryIdentity.
func (in *EntryIdentity) DeepCopy() *EntryIdentity {
if in == nil {
return nil
}
out := new(EntryIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryOverview) DeepCopyInto(out *EntryOverview) {
*out = *in
if in.Overview != nil {
in, out := &in.Overview, &out.Overview
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryOverview.
func (in *EntryOverview) DeepCopy() *EntryOverview {
if in == nil {
return nil
}
out := new(EntryOverview)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryParent) DeepCopyInto(out *EntryParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryParent.
func (in *EntryParent) DeepCopy() *EntryParent {
if in == nil {
return nil
}
out := new(EntryParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EntryRef) DeepCopyInto(out *EntryRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntryRef.
func (in *EntryRef) DeepCopy() *EntryRef {
if in == nil {
return nil
}
out := new(EntryRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FeatureOnlineStoreSpec) DeepCopyInto(out *FeatureOnlineStoreSpec) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FeatureOnlineStoreSpec.
func (in *FeatureOnlineStoreSpec) DeepCopy() *FeatureOnlineStoreSpec {
if in == nil {
return nil
}
out := new(FeatureOnlineStoreSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FeatureOnlineStoreSpecObservedState) DeepCopyInto(out *FeatureOnlineStoreSpecObservedState) {
*out = *in
if in.StorageType != nil {
in, out := &in.StorageType, &out.StorageType
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FeatureOnlineStoreSpecObservedState.
func (in *FeatureOnlineStoreSpecObservedState) DeepCopy() *FeatureOnlineStoreSpecObservedState {
if in == nil {
return nil
}
out := new(FeatureOnlineStoreSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FieldType) DeepCopyInto(out *FieldType) {
*out = *in
if in.PrimitiveType != nil {
in, out := &in.PrimitiveType, &out.PrimitiveType
*out = new(string)
**out = **in
}
if in.EnumType != nil {
in, out := &in.EnumType, &out.EnumType
*out = new(FieldType_EnumType)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldType.
func (in *FieldType) DeepCopy() *FieldType {
if in == nil {
return nil
}
out := new(FieldType)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FieldType_EnumType) DeepCopyInto(out *FieldType_EnumType) {
*out = *in
if in.AllowedValues != nil {
in, out := &in.AllowedValues, &out.AllowedValues
*out = make([]FieldType_EnumType_EnumValue, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldType_EnumType.
func (in *FieldType_EnumType) DeepCopy() *FieldType_EnumType {
if in == nil {
return nil
}
out := new(FieldType_EnumType)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FieldType_EnumType_EnumValue) DeepCopyInto(out *FieldType_EnumType_EnumValue) {
*out = *in
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldType_EnumType_EnumValue.
func (in *FieldType_EnumType_EnumValue) DeepCopy() *FieldType_EnumType_EnumValue {
if in == nil {
return nil
}
out := new(FieldType_EnumType_EnumValue)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *FilesetSpec) DeepCopyInto(out *FilesetSpec) {
*out = *in
if in.DataplexFileset != nil {
in, out := &in.DataplexFileset, &out.DataplexFileset
*out = new(DataplexFilesetSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FilesetSpec.
func (in *FilesetSpec) DeepCopy() *FilesetSpec {
if in == nil {
return nil
}
out := new(FilesetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GCSFileSpec) DeepCopyInto(out *GCSFileSpec) {
*out = *in
if in.FilePath != nil {
in, out := &in.FilePath, &out.FilePath
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSFileSpec.
func (in *GCSFileSpec) DeepCopy() *GCSFileSpec {
if in == nil {
return nil
}
out := new(GCSFileSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GCSFileSpecObservedState) DeepCopyInto(out *GCSFileSpecObservedState) {
*out = *in
if in.GCSTimestamps != nil {
in, out := &in.GCSTimestamps, &out.GCSTimestamps
*out = new(SystemTimestamps)
(*in).DeepCopyInto(*out)
}
if in.SizeBytes != nil {
in, out := &in.SizeBytes, &out.SizeBytes
*out = new(int64)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSFileSpecObservedState.
func (in *GCSFileSpecObservedState) DeepCopy() *GCSFileSpecObservedState {
if in == nil {
return nil
}
out := new(GCSFileSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GCSFilesetSpec) DeepCopyInto(out *GCSFilesetSpec) {
*out = *in
if in.FilePatterns != nil {
in, out := &in.FilePatterns, &out.FilePatterns
*out = make([]string, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSFilesetSpec.
func (in *GCSFilesetSpec) DeepCopy() *GCSFilesetSpec {
if in == nil {
return nil
}
out := new(GCSFilesetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GCSFilesetSpecObservedState) DeepCopyInto(out *GCSFilesetSpecObservedState) {
*out = *in
if in.SampleGCSFileSpecs != nil {
in, out := &in.SampleGCSFileSpecs, &out.SampleGCSFileSpecs
*out = make([]GCSFileSpec, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSFilesetSpecObservedState.
func (in *GCSFilesetSpecObservedState) DeepCopy() *GCSFilesetSpecObservedState {
if in == nil {
return nil
}
out := new(GCSFilesetSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *LookerSystemSpec) DeepCopyInto(out *LookerSystemSpec) {
*out = *in
if in.ParentInstanceID != nil {
in, out := &in.ParentInstanceID, &out.ParentInstanceID
*out = new(string)
**out = **in
}
if in.ParentInstanceDisplayName != nil {
in, out := &in.ParentInstanceDisplayName, &out.ParentInstanceDisplayName
*out = new(string)
**out = **in
}
if in.ParentModelID != nil {
in, out := &in.ParentModelID, &out.ParentModelID
*out = new(string)
**out = **in
}
if in.ParentModelDisplayName != nil {
in, out := &in.ParentModelDisplayName, &out.ParentModelDisplayName
*out = new(string)
**out = **in
}
if in.ParentViewID != nil {
in, out := &in.ParentViewID, &out.ParentViewID
*out = new(string)
**out = **in
}
if in.ParentViewDisplayName != nil {
in, out := &in.ParentViewDisplayName, &out.ParentViewDisplayName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LookerSystemSpec.
func (in *LookerSystemSpec) DeepCopy() *LookerSystemSpec {
if in == nil {
return nil
}
out := new(LookerSystemSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ModelSpec) DeepCopyInto(out *ModelSpec) {
*out = *in
if in.VertexModelSpec != nil {
in, out := &in.VertexModelSpec, &out.VertexModelSpec
*out = new(VertexModelSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelSpec.
func (in *ModelSpec) DeepCopy() *ModelSpec {
if in == nil {
return nil
}
out := new(ModelSpec)
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 *PersonalDetails) DeepCopyInto(out *PersonalDetails) {
*out = *in
if in.Starred != nil {
in, out := &in.Starred, &out.Starred
*out = new(bool)
**out = **in
}
if in.StarTime != nil {
in, out := &in.StarTime, &out.StarTime
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersonalDetails.
func (in *PersonalDetails) DeepCopy() *PersonalDetails {
if in == nil {
return nil
}
out := new(PersonalDetails)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema) DeepCopyInto(out *PhysicalSchema) {
*out = *in
if in.Avro != nil {
in, out := &in.Avro, &out.Avro
*out = new(PhysicalSchema_AvroSchema)
(*in).DeepCopyInto(*out)
}
if in.Thrift != nil {
in, out := &in.Thrift, &out.Thrift
*out = new(PhysicalSchema_ThriftSchema)
(*in).DeepCopyInto(*out)
}
if in.Protobuf != nil {
in, out := &in.Protobuf, &out.Protobuf
*out = new(PhysicalSchema_ProtobufSchema)
(*in).DeepCopyInto(*out)
}
if in.Parquet != nil {
in, out := &in.Parquet, &out.Parquet
*out = new(PhysicalSchema_ParquetSchema)
**out = **in
}
if in.Orc != nil {
in, out := &in.Orc, &out.Orc
*out = new(PhysicalSchema_OrcSchema)
**out = **in
}
if in.Csv != nil {
in, out := &in.Csv, &out.Csv
*out = new(PhysicalSchema_CsvSchema)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema.
func (in *PhysicalSchema) DeepCopy() *PhysicalSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_AvroSchema) DeepCopyInto(out *PhysicalSchema_AvroSchema) {
*out = *in
if in.Text != nil {
in, out := &in.Text, &out.Text
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_AvroSchema.
func (in *PhysicalSchema_AvroSchema) DeepCopy() *PhysicalSchema_AvroSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_AvroSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_CsvSchema) DeepCopyInto(out *PhysicalSchema_CsvSchema) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_CsvSchema.
func (in *PhysicalSchema_CsvSchema) DeepCopy() *PhysicalSchema_CsvSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_CsvSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_OrcSchema) DeepCopyInto(out *PhysicalSchema_OrcSchema) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_OrcSchema.
func (in *PhysicalSchema_OrcSchema) DeepCopy() *PhysicalSchema_OrcSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_OrcSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_ParquetSchema) DeepCopyInto(out *PhysicalSchema_ParquetSchema) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_ParquetSchema.
func (in *PhysicalSchema_ParquetSchema) DeepCopy() *PhysicalSchema_ParquetSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_ParquetSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_ProtobufSchema) DeepCopyInto(out *PhysicalSchema_ProtobufSchema) {
*out = *in
if in.Text != nil {
in, out := &in.Text, &out.Text
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_ProtobufSchema.
func (in *PhysicalSchema_ProtobufSchema) DeepCopy() *PhysicalSchema_ProtobufSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_ProtobufSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PhysicalSchema_ThriftSchema) DeepCopyInto(out *PhysicalSchema_ThriftSchema) {
*out = *in
if in.Text != nil {
in, out := &in.Text, &out.Text
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PhysicalSchema_ThriftSchema.
func (in *PhysicalSchema_ThriftSchema) DeepCopy() *PhysicalSchema_ThriftSchema {
if in == nil {
return nil
}
out := new(PhysicalSchema_ThriftSchema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RoutineSpec) DeepCopyInto(out *RoutineSpec) {
*out = *in
if in.RoutineType != nil {
in, out := &in.RoutineType, &out.RoutineType
*out = new(string)
**out = **in
}
if in.Language != nil {
in, out := &in.Language, &out.Language
*out = new(string)
**out = **in
}
if in.RoutineArguments != nil {
in, out := &in.RoutineArguments, &out.RoutineArguments
*out = make([]RoutineSpec_Argument, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.ReturnType != nil {
in, out := &in.ReturnType, &out.ReturnType
*out = new(string)
**out = **in
}
if in.DefinitionBody != nil {
in, out := &in.DefinitionBody, &out.DefinitionBody
*out = new(string)
**out = **in
}
if in.BigqueryRoutineSpec != nil {
in, out := &in.BigqueryRoutineSpec, &out.BigqueryRoutineSpec
*out = new(BigQueryRoutineSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutineSpec.
func (in *RoutineSpec) DeepCopy() *RoutineSpec {
if in == nil {
return nil
}
out := new(RoutineSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RoutineSpec_Argument) DeepCopyInto(out *RoutineSpec_Argument) {
*out = *in
if in.Name != nil {
in, out := &in.Name, &out.Name
*out = new(string)
**out = **in
}
if in.Mode != nil {
in, out := &in.Mode, &out.Mode
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutineSpec_Argument.
func (in *RoutineSpec_Argument) DeepCopy() *RoutineSpec_Argument {
if in == nil {
return nil
}
out := new(RoutineSpec_Argument)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SQLDatabaseSystemSpec) DeepCopyInto(out *SQLDatabaseSystemSpec) {
*out = *in
if in.SQLEngine != nil {
in, out := &in.SQLEngine, &out.SQLEngine
*out = new(string)
**out = **in
}
if in.DatabaseVersion != nil {
in, out := &in.DatabaseVersion, &out.DatabaseVersion
*out = new(string)
**out = **in
}
if in.InstanceHost != nil {
in, out := &in.InstanceHost, &out.InstanceHost
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SQLDatabaseSystemSpec.
func (in *SQLDatabaseSystemSpec) DeepCopy() *SQLDatabaseSystemSpec {
if in == nil {
return nil
}
out := new(SQLDatabaseSystemSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Schema) DeepCopyInto(out *Schema) {
*out = *in
if in.Columns != nil {
in, out := &in.Columns, &out.Columns
*out = make([]ColumnSchema, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Schema.
func (in *Schema) DeepCopy() *Schema {
if in == nil {
return nil
}
out := new(Schema)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ServiceSpec) DeepCopyInto(out *ServiceSpec) {
*out = *in
if in.CloudBigtableInstanceSpec != nil {
in, out := &in.CloudBigtableInstanceSpec, &out.CloudBigtableInstanceSpec
*out = new(CloudBigtableInstanceSpec)
(*in).DeepCopyInto(*out)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSpec.
func (in *ServiceSpec) DeepCopy() *ServiceSpec {
if in == nil {
return nil
}
out := new(ServiceSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *StorageProperties) DeepCopyInto(out *StorageProperties) {
*out = *in
if in.FilePattern != nil {
in, out := &in.FilePattern, &out.FilePattern
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.FileType != nil {
in, out := &in.FileType, &out.FileType
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageProperties.
func (in *StorageProperties) DeepCopy() *StorageProperties {
if in == nil {
return nil
}
out := new(StorageProperties)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SystemTimestamps) DeepCopyInto(out *SystemTimestamps) {
*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 SystemTimestamps.
func (in *SystemTimestamps) DeepCopy() *SystemTimestamps {
if in == nil {
return nil
}
out := new(SystemTimestamps)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SystemTimestampsObservedState) DeepCopyInto(out *SystemTimestampsObservedState) {
*out = *in
if in.ExpireTime != nil {
in, out := &in.ExpireTime, &out.ExpireTime
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemTimestampsObservedState.
func (in *SystemTimestampsObservedState) DeepCopy() *SystemTimestampsObservedState {
if in == nil {
return nil
}
out := new(SystemTimestampsObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TableSpec) DeepCopyInto(out *TableSpec) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpec.
func (in *TableSpec) DeepCopy() *TableSpec {
if in == nil {
return nil
}
out := new(TableSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TableSpecObservedState) DeepCopyInto(out *TableSpecObservedState) {
*out = *in
if in.GroupedEntry != nil {
in, out := &in.GroupedEntry, &out.GroupedEntry
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpecObservedState.
func (in *TableSpecObservedState) DeepCopy() *TableSpecObservedState {
if in == nil {
return nil
}
out := new(TableSpecObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagField) DeepCopyInto(out *TagField) {
*out = *in
if in.DoubleValue != nil {
in, out := &in.DoubleValue, &out.DoubleValue
*out = new(float64)
**out = **in
}
if in.StringValue != nil {
in, out := &in.StringValue, &out.StringValue
*out = new(string)
**out = **in
}
if in.BoolValue != nil {
in, out := &in.BoolValue, &out.BoolValue
*out = new(bool)
**out = **in
}
if in.TimestampValue != nil {
in, out := &in.TimestampValue, &out.TimestampValue
*out = new(string)
**out = **in
}
if in.EnumValue != nil {
in, out := &in.EnumValue, &out.EnumValue
*out = new(TagField_EnumValue)
(*in).DeepCopyInto(*out)
}
if in.RichtextValue != nil {
in, out := &in.RichtextValue, &out.RichtextValue
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagField.
func (in *TagField) DeepCopy() *TagField {
if in == nil {
return nil
}
out := new(TagField)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagField_EnumValue) DeepCopyInto(out *TagField_EnumValue) {
*out = *in
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagField_EnumValue.
func (in *TagField_EnumValue) DeepCopy() *TagField_EnumValue {
if in == nil {
return nil
}
out := new(TagField_EnumValue)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagIdentity) DeepCopyInto(out *TagIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(TagParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagIdentity.
func (in *TagIdentity) DeepCopy() *TagIdentity {
if in == nil {
return nil
}
out := new(TagIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagParent) DeepCopyInto(out *TagParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagParent.
func (in *TagParent) DeepCopy() *TagParent {
if in == nil {
return nil
}
out := new(TagParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagRef) DeepCopyInto(out *TagRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagRef.
func (in *TagRef) DeepCopy() *TagRef {
if in == nil {
return nil
}
out := new(TagRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagTemplateField) DeepCopyInto(out *TagTemplateField) {
*out = *in
if in.Name != nil {
in, out := &in.Name, &out.Name
*out = new(string)
**out = **in
}
if in.DisplayName != nil {
in, out := &in.DisplayName, &out.DisplayName
*out = new(string)
**out = **in
}
if in.Type != nil {
in, out := &in.Type, &out.Type
*out = new(FieldType)
(*in).DeepCopyInto(*out)
}
if in.IsRequired != nil {
in, out := &in.IsRequired, &out.IsRequired
*out = new(bool)
**out = **in
}
if in.Description != nil {
in, out := &in.Description, &out.Description
*out = new(string)
**out = **in
}
if in.Order != nil {
in, out := &in.Order, &out.Order
*out = new(int32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagTemplateField.
func (in *TagTemplateField) DeepCopy() *TagTemplateField {
if in == nil {
return nil
}
out := new(TagTemplateField)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagTemplateIdentity) DeepCopyInto(out *TagTemplateIdentity) {
*out = *in
if in.parent != nil {
in, out := &in.parent, &out.parent
*out = new(TagTemplateParent)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagTemplateIdentity.
func (in *TagTemplateIdentity) DeepCopy() *TagTemplateIdentity {
if in == nil {
return nil
}
out := new(TagTemplateIdentity)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagTemplateParent) DeepCopyInto(out *TagTemplateParent) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagTemplateParent.
func (in *TagTemplateParent) DeepCopy() *TagTemplateParent {
if in == nil {
return nil
}
out := new(TagTemplateParent)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TagTemplateRef) DeepCopyInto(out *TagTemplateRef) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagTemplateRef.
func (in *TagTemplateRef) DeepCopy() *TagTemplateRef {
if in == nil {
return nil
}
out := new(TagTemplateRef)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *UsageSignal) DeepCopyInto(out *UsageSignal) {
*out = *in
if in.UpdateTime != nil {
in, out := &in.UpdateTime, &out.UpdateTime
*out = new(string)
**out = **in
}
if in.FavoriteCount != nil {
in, out := &in.FavoriteCount, &out.FavoriteCount
*out = new(int64)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UsageSignal.
func (in *UsageSignal) DeepCopy() *UsageSignal {
if in == nil {
return nil
}
out := new(UsageSignal)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *UsageSignalObservedState) DeepCopyInto(out *UsageSignalObservedState) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UsageSignalObservedState.
func (in *UsageSignalObservedState) DeepCopy() *UsageSignalObservedState {
if in == nil {
return nil
}
out := new(UsageSignalObservedState)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *UsageStats) DeepCopyInto(out *UsageStats) {
*out = *in
if in.TotalCompletions != nil {
in, out := &in.TotalCompletions, &out.TotalCompletions
*out = new(float32)
**out = **in
}
if in.TotalFailures != nil {
in, out := &in.TotalFailures, &out.TotalFailures
*out = new(float32)
**out = **in
}
if in.TotalCancellations != nil {
in, out := &in.TotalCancellations, &out.TotalCancellations
*out = new(float32)
**out = **in
}
if in.TotalExecutionTimeForCompletionsMillis != nil {
in, out := &in.TotalExecutionTimeForCompletionsMillis, &out.TotalExecutionTimeForCompletionsMillis
*out = new(float32)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UsageStats.
func (in *UsageStats) DeepCopy() *UsageStats {
if in == nil {
return nil
}
out := new(UsageStats)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VertexDatasetSpec) DeepCopyInto(out *VertexDatasetSpec) {
*out = *in
if in.DataItemCount != nil {
in, out := &in.DataItemCount, &out.DataItemCount
*out = new(int64)
**out = **in
}
if in.DataType != nil {
in, out := &in.DataType, &out.DataType
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VertexDatasetSpec.
func (in *VertexDatasetSpec) DeepCopy() *VertexDatasetSpec {
if in == nil {
return nil
}
out := new(VertexDatasetSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VertexModelSourceInfo) DeepCopyInto(out *VertexModelSourceInfo) {
*out = *in
if in.SourceType != nil {
in, out := &in.SourceType, &out.SourceType
*out = new(string)
**out = **in
}
if in.Copy != nil {
in, out := &in.Copy, &out.Copy
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VertexModelSourceInfo.
func (in *VertexModelSourceInfo) DeepCopy() *VertexModelSourceInfo {
if in == nil {
return nil
}
out := new(VertexModelSourceInfo)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VertexModelSpec) DeepCopyInto(out *VertexModelSpec) {
*out = *in
if in.VersionID != nil {
in, out := &in.VersionID, &out.VersionID
*out = new(string)
**out = **in
}
if in.VersionAliases != nil {
in, out := &in.VersionAliases, &out.VersionAliases
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.VersionDescription != nil {
in, out := &in.VersionDescription, &out.VersionDescription
*out = new(string)
**out = **in
}
if in.VertexModelSourceInfo != nil {
in, out := &in.VertexModelSourceInfo, &out.VertexModelSourceInfo
*out = new(VertexModelSourceInfo)
(*in).DeepCopyInto(*out)
}
if in.ContainerImageURI != nil {
in, out := &in.ContainerImageURI, &out.ContainerImageURI
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VertexModelSpec.
func (in *VertexModelSpec) DeepCopy() *VertexModelSpec {
if in == nil {
return nil
}
out := new(VertexModelSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ViewSpec) DeepCopyInto(out *ViewSpec) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ViewSpec.
func (in *ViewSpec) DeepCopy() *ViewSpec {
if in == nil {
return nil
}
out := new(ViewSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ViewSpecObservedState) DeepCopyInto(out *ViewSpecObservedState) {
*out = *in
if in.ViewQuery != nil {
in, out := &in.ViewQuery, &out.ViewQuery
*out = new(string)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ViewSpecObservedState.
func (in *ViewSpecObservedState) DeepCopy() *ViewSpecObservedState {
if in == nil {
return nil
}
out := new(ViewSpecObservedState)
in.DeepCopyInto(out)
return out
}