mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
12 lines
355 B
Go
12 lines
355 B
Go
package models
|
|
|
|
type DockerImage struct {
|
|
URL string `json:"url,omitempty" url:"url,omitempty"`
|
|
BasicAuth *BasicAuth `json:"basic_auth,omitempty" url:"basic_auth,omitempty"`
|
|
}
|
|
|
|
type BasicAuth struct {
|
|
Username string `json:"username,omitempty" url:"username,omitempty"`
|
|
Password string `json:"password,omitempty" url:"password,omitempty"`
|
|
}
|