mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
adding deepcopy to root
This commit is contained in:
parent
e3bc21446b
commit
2bf6429fad
2
Makefile
2
Makefile
@ -1,2 +1,2 @@
|
||||
deepcopy:
|
||||
deepcopy-gen -i ./aws/models/,./azure/models/,./aws/,./azure/ -h ./hack/boilerplate.go.txt -v 3
|
||||
deepcopy-gen -i ./,./aws/...,./azure/... -h ./hack/boilerplate.go.txt -v 3
|
||||
28
deepcopy_generated.go
Normal file
28
deepcopy_generated.go
Normal file
@ -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
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user