process_status.go 521 B

1234567891011121314151617181920212223
  1. /*
  2. * HCS API
  3. *
  4. * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
  5. *
  6. * API version: 2.1
  7. * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
  8. */
  9. package hcsschema
  10. // Status of a process running in a container
  11. type ProcessStatus struct {
  12. ProcessId int32 `json:"ProcessId,omitempty"`
  13. Exited bool `json:"Exited,omitempty"`
  14. ExitCode int32 `json:"ExitCode,omitempty"`
  15. LastWaitResult int32 `json:"LastWaitResult,omitempty"`
  16. }