mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1f8b1bb84e
Docker-DCO-1.1-Signed-off-by: Victor Vieux <victor.vieux@docker.com> (github: vieux)
43 lines
587 B
Go
43 lines
587 B
Go
package docker
|
|
|
|
type (
|
|
APITop struct {
|
|
Titles []string
|
|
Processes [][]string
|
|
}
|
|
|
|
APIRmi struct {
|
|
Deleted string `json:",omitempty"`
|
|
Untagged string `json:",omitempty"`
|
|
}
|
|
|
|
APIID struct {
|
|
ID string `json:"Id"`
|
|
}
|
|
|
|
APIRun struct {
|
|
ID string `json:"Id"`
|
|
Warnings []string `json:",omitempty"`
|
|
}
|
|
|
|
APIPort struct {
|
|
PrivatePort int64
|
|
PublicPort int64
|
|
Type string
|
|
IP string
|
|
}
|
|
|
|
APIWait struct {
|
|
StatusCode int
|
|
}
|
|
|
|
APIImageConfig struct {
|
|
ID string `json:"Id"`
|
|
*Config
|
|
}
|
|
|
|
APICopy struct {
|
|
Resource string
|
|
HostPath string
|
|
}
|
|
)
|