13493: Proxy requests to remote clusters.
[arvados.git] / sdk / go / arvados / container.go
index e0e8c773b9463392eb51557d4fe82e749501e6f8..5398d9d74128cd1d941194d37b3ba10eb71a5942 100644 (file)
@@ -16,7 +16,6 @@ type Container struct {
        Environment          map[string]string    `json:"environment"`
        LockedByUUID         string               `json:"locked_by_uuid"`
        Mounts               map[string]Mount     `json:"mounts"`
-       SecretMounts         map[string]Mount     `json:"secret_mounts"`
        Output               string               `json:"output"`
        OutputPath           string               `json:"output_path"`
        Priority             int                  `json:"priority"`
@@ -53,7 +52,8 @@ type RuntimeConstraints struct {
 // SchedulingParameters specify a container's scheduling parameters
 // such as Partitions
 type SchedulingParameters struct {
-       Partitions []string `json:"partitions"`
+       Partitions  []string `json:"partitions"`
+       Preemptible bool     `json:"preemptible"`
 }
 
 // ContainerList is an arvados#containerList resource.