mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
22 lines
808 B
Go
22 lines
808 B
Go
package types // import "github.com/docker/docker/api/types"
|
|
|
|
// AuthConfig contains authorization information for connecting to a Registry
|
|
type AuthConfig struct {
|
|
Username string `json:"username,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
Auth string `json:"auth,omitempty"`
|
|
|
|
// Email is an optional value associated with the username.
|
|
// This field is deprecated and will be removed in a later
|
|
// version of docker.
|
|
Email string `json:"email,omitempty"`
|
|
|
|
ServerAddress string `json:"serveraddress,omitempty"`
|
|
|
|
// IdentityToken is used to authenticate the user and get
|
|
// an access token for the registry.
|
|
IdentityToken string `json:"identitytoken,omitempty"`
|
|
|
|
// RegistryToken is a bearer token to be sent to a registry
|
|
RegistryToken string `json:"registrytoken,omitempty"`
|
|
}
|