17119: add missing fields to GroupContentsOptions.
authorWard Vandewege <ward@curii.com>
Mon, 22 Mar 2021 17:12:47 +0000 (13:12 -0400)
committerWard Vandewege <ward@curii.com>
Mon, 22 Mar 2021 17:21:32 +0000 (13:21 -0400)
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward@curii.com>

sdk/go/arvados/api.go

index 773ea1397bcf528269ec50ee1cba7a5e8b4f026f..bfae393f861ce9bc168519cf49581b711c8efb82 100644 (file)
@@ -142,8 +142,11 @@ type GroupContentsOptions struct {
        Limit              int64    `json:"limit"`
        Offset             int64    `json:"offset"`
        Order              []string `json:"order"`
+       Distinct           bool     `json:"distinct"`
+       Count              string   `json:"count"`
        Include            string   `json:"include"`
        Recursive          bool     `json:"recursive"`
+       IncludeTrash       bool     `json:"include_trash"`
        IncludeOldVersions bool     `json:"include_old_versions"`
        ExcludeHomeProject bool     `json:"exclude_home_project"`
 }