mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
29 lines
804 B
Go
29 lines
804 B
Go
|
|
// +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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//in.client.DeepCopyInto(&out.client)
|
||
|
|
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
|
||
|
|
}
|