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