X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5a420beeb6c64efc3ca0ef13d4ab9ac6c654c3ab..4f21d0e5c0d2dca218bc9a204d364c15ad7450b1:/sdk/go/arvados/container.go diff --git a/sdk/go/arvados/container.go b/sdk/go/arvados/container.go index 61c14ea0b6..7e588be17b 100644 --- a/sdk/go/arvados/container.go +++ b/sdk/go/arvados/container.go @@ -1,3 +1,7 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: Apache-2.0 + package arvados // Container is an arvados#container resource. @@ -19,13 +23,15 @@ type Container struct { // Mount is special behavior to attach to a filesystem path or device. type Mount struct { - Kind string `json:"kind"` - Writable bool `json:"writable"` - PortableDataHash string `json:"portable_data_hash"` - UUID string `json:"uuid"` - DeviceType string `json:"device_type"` - Path string `json:"path"` - Content interface{} `json:"content"` + Kind string `json:"kind"` + Writable bool `json:"writable"` + PortableDataHash string `json:"portable_data_hash"` + UUID string `json:"uuid"` + DeviceType string `json:"device_type"` + Path string `json:"path"` + Content interface{} `json:"content"` + ExcludeFromOutput bool `json:"exclude_from_output"` + Capacity int64 `json:"capacity"` } // RuntimeConstraints specify a container's compute resources (RAM,