14287: Propagate include_trash flag.
authorTom Clegg <tclegg@veritasgenetics.com>
Thu, 16 May 2019 20:04:30 +0000 (16:04 -0400)
committerTom Clegg <tclegg@veritasgenetics.com>
Mon, 17 Jun 2019 13:54:39 +0000 (09:54 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg@veritasgenetics.com>

sdk/go/arvados/api.go

index 00d93367ac1e352bdfd6131aed7f8c920993fa19..ebf44a82221045c163e78233af650fe43285d048 100644 (file)
@@ -40,14 +40,16 @@ type GetOptions struct {
 }
 
 type ListOptions struct {
-       Select   []string               `json:"select"`
-       Filters  []Filter               `json:"filters"`
-       Where    map[string]interface{} `json:"where"`
-       Limit    int                    `json:"limit"`
-       Offset   int                    `json:"offset"`
-       Order    []string               `json:"order"`
-       Distinct bool                   `json:"distinct"`
-       Count    string                 `json:"count"`
+       Select             []string               `json:"select"`
+       Filters            []Filter               `json:"filters"`
+       Where              map[string]interface{} `json:"where"`
+       Limit              int                    `json:"limit"`
+       Offset             int                    `json:"offset"`
+       Order              []string               `json:"order"`
+       Distinct           bool                   `json:"distinct"`
+       Count              string                 `json:"count"`
+       IncludeTrash       bool                   `json:"include_trash"`
+       IncludeOldVersions bool                   `json:"include_old_versions"`
 }
 
 type CreateOptions struct {