github.com/jaegerpicker/docker@v0.7.7-0.20150325003727-22dba32b4dab/api/types/types.go (about)

     1  package types
     2  
     3  // ContainerCreateResponse contains the information returned to a client on the
     4  // creation of a new container.
     5  type ContainerCreateResponse struct {
     6  	// ID is the ID of the created container.
     7  	ID string `json:"Id"`
     8  
     9  	// Warnings are any warnings encountered during the creation of the container.
    10  	Warnings []string `json:"Warnings"`
    11  }
    12  
    13  // POST /containers/{name:.*}/exec
    14  type ContainerExecCreateResponse struct {
    15  	// ID is the exec ID.
    16  	ID string `json:"Id"`
    17  
    18  	// Warnings are any warnings encountered during the execution of the command.
    19  	Warnings []string `json:"Warnings"`
    20  }
    21  
    22  // POST /auth
    23  type AuthResponse struct {
    24  	// Status is the authentication status
    25  	Status string `json:"Status"`
    26  }