moby--moby/api_params.go

76 lines
1.2 KiB
Go
Raw Normal View History

package docker
2013-06-04 14:00:22 -04:00
type APIHistory struct {
ID string `json:"Id"`
Created int64
CreatedBy string `json:",omitempty"`
}
2013-06-04 14:00:22 -04:00
type APIImages struct {
2013-04-18 12:56:22 -04:00
Repository string `json:",omitempty"`
Tag string `json:",omitempty"`
2013-06-04 14:00:22 -04:00
ID string `json:"Id"`
Created int64
2013-04-18 12:56:22 -04:00
}
2013-06-04 14:00:22 -04:00
type APIInfo struct {
Debug bool
Containers int
Images int
NFd int `json:",omitempty"`
NGoroutines int `json:",omitempty"`
MemoryLimit bool `json:",omitempty"`
SwapLimit bool `json:",omitempty"`
}
2013-06-10 17:05:54 -04:00
type APIRmi struct {
Deleted string `json:",omitempty"`
Untagged string `json:",omitempty"`
}
2013-06-04 14:00:22 -04:00
type APIContainers struct {
ID string `json:"Id"`
Image string
Command string
Created int64
Status string
Ports string
}
2013-06-04 14:00:22 -04:00
type APISearch struct {
2013-05-07 14:59:04 -04:00
Name string
2013-05-07 14:37:35 -04:00
Description string
}
2013-06-04 14:00:22 -04:00
type APIID struct {
ID string `json:"Id"`
2013-04-24 10:06:03 -04:00
}
2013-06-04 14:00:22 -04:00
type APIRun struct {
ID string `json:"Id"`
Warnings []string `json:",omitempty"`
2013-05-02 12:36:23 -04:00
}
2013-06-04 14:00:22 -04:00
type APIPort struct {
Port string
}
2013-06-04 14:00:22 -04:00
type APIVersion struct {
Version string
GitCommit string `json:",omitempty"`
GoVersion string `json:",omitempty"`
}
2013-06-04 14:00:22 -04:00
type APIWait struct {
StatusCode int
}
2013-05-06 07:34:31 -04:00
2013-06-04 14:00:22 -04:00
type APIAuth struct {
2013-05-06 07:34:31 -04:00
Status string
}
2013-05-19 13:46:24 -04:00
2013-06-04 14:00:22 -04:00
type APIImageConfig struct {
ID string `json:"Id"`
2013-05-19 13:46:24 -04:00
*Config
}