deprecated.go 514 B

12345678910111213141516
  1. package container // import "github.com/docker/docker/api/types/container"
  2. // ContainerCreateCreatedBody OK response to ContainerCreate operation
  3. //
  4. // Deprecated: use CreateResponse
  5. type ContainerCreateCreatedBody = CreateResponse
  6. // ContainerWaitOKBody OK response to ContainerWait operation
  7. //
  8. // Deprecated: use WaitResponse
  9. type ContainerWaitOKBody = WaitResponse
  10. // ContainerWaitOKBodyError container waiting error, if any
  11. //
  12. // Deprecated: use WaitExitError
  13. type ContainerWaitOKBodyError = WaitExitError