3 // Container is an arvados#container resource.
4 type Container struct {
5 UUID string `json:"uuid"`
6 Command []string `json:"command"`
7 ContainerImage string `json:"container_image"`
8 Cwd string `json:"cwd"`
9 Environment map[string]string `json:"environment"`
10 LockedByUUID string `json:"locked_by_uuid"`
11 Mounts map[string]Mount `json:"mounts"`
12 Output string `json:"output"`
13 OutputPath string `json:"output_path"`
14 Priority int `json:"priority"`
15 RuntimeConstraints RuntimeConstraints `json:"runtime_constraints"`
16 State ContainerState `json:"state"`
17 SchedulingParameters SchedulingParameters `json:"scheduling_parameters"`
20 // Mount is special behavior to attach to a filesystem path or device.
22 Kind string `json:"kind"`
23 Writable bool `json:"writable"`
24 PortableDataHash string `json:"portable_data_hash"`
25 UUID string `json:"uuid"`
26 DeviceType string `json:"device_type"`
27 Path string `json:"path"`
28 Content interface{} `json:"content"`
31 // RuntimeConstraints specify a container's compute resources (RAM,
32 // CPU) and network connectivity.
33 type RuntimeConstraints struct {
36 VCPUs int `json:"vcpus"`
37 KeepCacheRAM int `json:"keep_cache_ram"`
40 // SchedulingParameters specify a container's scheduling parameters
42 type SchedulingParameters struct {
43 Partitions []string `json:"partitions"`
46 // ContainerList is an arvados#containerList resource.
47 type ContainerList struct {
48 Items []Container `json:"items"`
49 ItemsAvailable int `json:"items_available"`
50 Offset int `json:"offset"`
51 Limit int `json:"limit"`
54 // ContainerState is a string corresponding to a valid Container state.
55 type ContainerState string
58 ContainerStateQueued = ContainerState("Queued")
59 ContainerStateLocked = ContainerState("Locked")
60 ContainerStateRunning = ContainerState("Running")
61 ContainerStateComplete = ContainerState("Complete")
62 ContainerStateCancelled = ContainerState("Cancelled")