10 See "REST methods for working with Arvados resources":{{site.baseurl}}/api/methods.html
12 API endpoint base: @https://{{ site.arvados_api_host }}/arvados/v1/groups@
14 Required arguments are displayed in %{background:#ccffcc}green%.
18 Each Group has, in addition to the usual "attributes of Arvados resources":{{site.baseurl}}/api/resources.html:
20 table(table table-bordered table-condensed).
21 |_. Attribute|_. Type|_. Description|_. Example|
23 |group_class|string|Type of group. This does not affect behavior, but determines how the group is presented in the user interface. For example, @project@ indicates that the group should be displayed by Workbench and arv-mount as a project for organizing and naming objects.|@"project"@
26 |writable_by|array|List of UUID strings identifying Users and other Groups that have write permission for this Group. Only users who are allowed to administer the Group will receive a full list. Other users will receive a partial list that includes the Group's owner_uuid and (if applicable) their own user UUID.||
32 Retrieve a list of items owned by the group.
36 table(table table-bordered table-condensed).
37 |_. Argument |_. Type |_. Description |_. Location |_. Example |
38 {background:#ccffcc}.|uuid|string|The UUID of the group in question.|path||
39 |limit|integer (default 100)|Maximum number of items to return.|query||
40 |order|string|Order in which to return matching items. Sort within a resource type by prefixing the attribute with the resource name and a dot.|query|@"collections.modified_at desc"@|
41 |filters|array|Conditions for filtering items.|query|@[["uuid", "is_a", "arvados#job"]]@|
43 Note: Because adding access tokens to manifests can be computationally expensive, the @manifest_text@ field is not included in listed collections. If you need it, request a "list of collections":{{site.baseurl}}/api/methods/collections.html with the filter @["owner_uuid", "=", GROUP_UUID]@, and @"manifest_text"@ listed in the select parameter.
45 Note: Use filters with the attribute format @<item type>.<field name>@ to filter items of a specific type. For example: @["pipeline_instances.state", "=", "Complete"]@ to filter @pipeline_instances@ where @state@ is @Complete@. All other types of items owned by this group will be unimpacted by this filter and will still be included.
53 table(table table-bordered table-condensed).
54 |_. Argument |_. Type |_. Description |_. Location |_. Example |
55 |group|object||query||
59 Delete an existing Group.
63 table(table table-bordered table-condensed).
64 |_. Argument |_. Type |_. Description |_. Location |_. Example |
65 {background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path||
69 Gets a Group's metadata by UUID.
73 table(table table-bordered table-condensed).
74 |_. Argument |_. Type |_. Description |_. Location |_. Example |
75 {background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path||
83 table(table table-bordered table-condensed).
84 |_. Argument |_. Type |_. Description |_. Location |_. Example |
85 |limit|integer (default 100)|Maximum number of groups to return.|query||
86 |order|string|Order in which to return matching groups.|query||
87 |filters|array|Conditions for filtering groups.|query||
95 table(table table-bordered table-condensed).
96 |_. Argument |_. Type |_. Description |_. Location |_. Example |
97 {background:#ccffcc}.|uuid|string||path||
101 Update attributes of an existing Group.
105 table(table table-bordered table-condensed).
106 |_. Argument |_. Type |_. Description |_. Location |_. Example |
107 {background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path||
108 |group|object||query||