diff --git a/Makefile b/Makefile index 1196d53..118dab4 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ deepcopy: - deepcopy-gen -i ./aws/models/,./azure/models/,./aws/,./azure/ -h ./hack/boilerplate.go.txt -v 3 \ No newline at end of file + deepcopy-gen -i ./,./aws/...,./azure/... -h ./hack/boilerplate.go.txt -v 3 \ No newline at end of file diff --git a/deepcopy_generated.go b/deepcopy_generated.go new file mode 100644 index 0000000..6850e0a --- /dev/null +++ b/deepcopy_generated.go @@ -0,0 +1,28 @@ +// +build !ignore_autogenerated + +// Code generated by deepcopy-gen. DO NOT EDIT. + +package databricks + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *DBClientOption) DeepCopyInto(out *DBClientOption) { + *out = *in + if in.DefaultHeaders != nil { + in, out := &in.DefaultHeaders, &out.DefaultHeaders + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DBClientOption. +func (in *DBClientOption) DeepCopy() *DBClientOption { + if in == nil { + return nil + } + out := new(DBClientOption) + in.DeepCopyInto(out) + return out +} diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..97348b4 --- /dev/null +++ b/doc.go @@ -0,0 +1,2 @@ +// +k8s:deepcopy-gen=package +package databricks