2016-03-18 11:53:27 -07:00
|
|
|
package libcontainerd
|
|
|
|
|
2016-08-17 15:46:28 -07:00
|
|
|
import (
|
|
|
|
"github.com/Microsoft/hcsshim"
|
2017-08-08 14:21:56 -07:00
|
|
|
opengcs "github.com/Microsoft/opengcs/client"
|
2016-09-27 10:26:59 -07:00
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
2016-08-17 15:46:28 -07:00
|
|
|
)
|
2016-03-18 11:53:27 -07:00
|
|
|
|
|
|
|
// Process contains information to start a specific application inside the container.
|
2016-09-27 10:26:59 -07:00
|
|
|
type Process specs.Process
|
2016-03-18 11:53:27 -07:00
|
|
|
|
2016-08-17 15:46:28 -07:00
|
|
|
// Summary contains a ProcessList item from HCS to support `top`
|
|
|
|
type Summary hcsshim.ProcessListItem
|
2016-03-20 15:58:23 -07:00
|
|
|
|
2016-04-01 17:02:38 -07:00
|
|
|
// StateInfo contains description about the new state container has entered.
|
|
|
|
type StateInfo struct {
|
|
|
|
CommonStateInfo
|
|
|
|
|
|
|
|
// Platform specific StateInfo
|
2016-04-13 13:34:07 -07:00
|
|
|
UpdatePending bool // Indicates that there are some update operations pending that should be completed by a servicing container.
|
2016-04-01 17:02:38 -07:00
|
|
|
}
|
|
|
|
|
2016-12-14 15:50:25 +08:00
|
|
|
// Stats contains statistics from HCS
|
2016-09-07 16:08:51 -07:00
|
|
|
type Stats hcsshim.Statistics
|
2016-03-18 11:53:27 -07:00
|
|
|
|
|
|
|
// Resources defines updatable container resource values.
|
|
|
|
type Resources struct{}
|
2016-04-13 13:34:07 -07:00
|
|
|
|
2017-08-01 11:57:50 -07:00
|
|
|
// LCOWOption is a CreateOption required for LCOW configuration
|
|
|
|
type LCOWOption struct {
|
|
|
|
Config *opengcs.Config
|
|
|
|
}
|
|
|
|
|
2016-05-12 10:52:00 -04:00
|
|
|
// Checkpoint holds the details of a checkpoint (not supported in windows)
|
|
|
|
type Checkpoint struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checkpoints contains the details of a checkpoint
|
|
|
|
type Checkpoints struct {
|
|
|
|
Checkpoints []*Checkpoint
|
|
|
|
}
|