X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ffb304afad93f50fd6ee43ecda6584dd0ac000c4..5c4d9d38dcee73a7ffb6221c80f707c3924da64f:/sdk/go/arvados/container.go diff --git a/sdk/go/arvados/container.go b/sdk/go/arvados/container.go index d59a57c25c..210ed9981c 100644 --- a/sdk/go/arvados/container.go +++ b/sdk/go/arvados/container.go @@ -1,8 +1,15 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: Apache-2.0 + package arvados +import "time" + // Container is an arvados#container resource. type Container struct { UUID string `json:"uuid"` + CreatedAt time.Time `json:"created_at"` Command []string `json:"command"` ContainerImage string `json:"container_image"` Cwd string `json:"cwd"` @@ -27,22 +34,27 @@ type Mount struct { Path string `json:"path"` Content interface{} `json:"content"` ExcludeFromOutput bool `json:"exclude_from_output"` - Capacity int64 `json:capacity` + Capacity int64 `json:"capacity"` + Commit string `json:"commit"` // only if kind=="git_tree" + RepositoryName string `json:"repository_name"` // only if kind=="git_tree" + GitURL string `json:"git_url"` // only if kind=="git_tree" } // 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"` - KeepCacheRAM int `json:"keep_cache_ram"` + RAM int64 `json:"ram"` + VCPUs int `json:"vcpus"` + KeepCacheRAM int64 `json:"keep_cache_ram"` } // 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"` + MaxRunTime int `json:"max_run_time"` } // ContainerList is an arvados#containerList resource.