2015-02-24 11:12:47 -08:00
|
|
|
package types
|
|
|
|
|
|
|
|
// ContainerCreateResponse contains the information returned to a client on the
|
|
|
|
// creation of a new container.
|
|
|
|
type ContainerCreateResponse struct {
|
|
|
|
// ID is the ID of the created container.
|
|
|
|
ID string `json:"Id"`
|
|
|
|
|
|
|
|
// Warnings are any warnings encountered during the creation of the container.
|
|
|
|
Warnings []string `json:"Warnings"`
|
|
|
|
}
|
2015-03-23 22:03:54 +01:00
|
|
|
|
|
|
|
// POST /containers/{name:.*}/exec
|
|
|
|
type ContainerExecCreateResponse struct {
|
|
|
|
// ID is the exec ID.
|
|
|
|
ID string `json:"Id"`
|
|
|
|
|
|
|
|
// Warnings are any warnings encountered during the execution of the command.
|
|
|
|
Warnings []string `json:"Warnings"`
|
|
|
|
}
|
2015-03-23 23:32:50 +01:00
|
|
|
|
|
|
|
// POST /auth
|
|
|
|
type AuthResponse struct {
|
|
|
|
// Status is the authentication status
|
|
|
|
Status string `json:"Status"`
|
|
|
|
}
|
2015-03-25 21:01:14 -06:00
|
|
|
|
2015-03-25 22:22:45 -06:00
|
|
|
// POST "/containers/"+containerID+"/wait"
|
2015-03-25 21:01:14 -06:00
|
|
|
type ContainerWaitResponse struct {
|
|
|
|
// StatusCode is the status code of the wait job
|
|
|
|
StatusCode int `json:"StatusCode"`
|
|
|
|
}
|
2015-03-28 17:39:24 +01:00
|
|
|
|
|
|
|
// POST "/commit?container="+containerID
|
|
|
|
type ContainerCommitResponse struct {
|
|
|
|
ID string `json:"Id"`
|
|
|
|
}
|
2015-04-02 15:52:34 -07:00
|
|
|
|
|
|
|
// GET "/containers/{name:.*}/changes"
|
|
|
|
type ContainerChange struct {
|
|
|
|
Kind int
|
|
|
|
Path string
|
|
|
|
}
|
2015-04-03 08:31:30 -07:00
|
|
|
|
|
|
|
// GET "/images/{name:.*}/history"
|
|
|
|
type ImageHistory struct {
|
|
|
|
ID string `json:"Id"`
|
|
|
|
Created int64
|
|
|
|
CreatedBy string
|
|
|
|
Tags []string
|
|
|
|
Size int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// DELETE "/images/{name:.*}"
|
|
|
|
type ImageDelete struct {
|
|
|
|
Untagged string `json:",omitempty"`
|
|
|
|
Deleted string `json:",omitempty"`
|
|
|
|
}
|