add support for unsigned manifests to SizedDigests() in Go SDK
[arvados.git] / sdk / go / arvados / container.go
index bb36b17324ce06c808e25dd5fe83901f094dae1d..e5050cb79c944673343878d559b75fd3e97807ae 100644 (file)
@@ -30,9 +30,10 @@ type Mount struct {
 // RuntimeConstraints specify a container's compute resources (RAM,
 // CPU) and network connectivity.
 type RuntimeConstraints struct {
-       API   *bool
-       RAM   int `json:"ram"`
-       VCPUs int `json:"vcpus"`
+       API       *bool
+       RAM       int      `json:"ram"`
+       VCPUs     int      `json:"vcpus"`
+       Partition []string `json:"partition"`
 }
 
 // ContainerList is an arvados#containerList resource.