X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d6399c117f03f45e83648dca6e23dd7174793253..54ee2b06add844efae0b0fcb97606102232974e6:/doc/api/methods/groups.html.textile.liquid?ds=sidebyside diff --git a/doc/api/methods/groups.html.textile.liquid b/doc/api/methods/groups.html.textile.liquid index 7f52bc7a53..2716056caa 100644 --- a/doc/api/methods/groups.html.textile.liquid +++ b/doc/api/methods/groups.html.textile.liquid @@ -3,47 +3,73 @@ layout: default navsection: api navmenu: API Methods title: "groups" - ... +{% comment %} +Copyright (C) The Arvados Authors. All rights reserved. +SPDX-License-Identifier: CC-BY-SA-3.0 +{% endcomment %} +API endpoint base: @https://{{ site.arvados_api_host }}/arvados/v1/groups@ -Required arguments are displayed in %{background:#ccffcc}green%. +Object type: @j7d0g@ +Example UUID: @zzzzz-j7d0g-0123456789abcde@ -h2. create +h2. Resource -Create a new Group. +Groups provides a way to apply the same permissions to a set of Arvados objects. See "permission model":{{site.baseurl}}/api/permission-model.html for details. -Arguments: +Each Group has, in addition to the "Common resource fields":{{site.baseurl}}/api/resources.html: table(table table-bordered table-condensed). -|_. Argument |_. Type |_. Description |_. Location |_. Example | -|group|object||query|| +|_. Attribute|_. Type|_. Description|_. Example| +|name|string||| +|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"@ +null| +|description|text||| +|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.|| +|trash_at|datetime|If @trash_at@ is non-null and in the past, this group and all objects directly or indirectly owned by the group will be hidden from API calls. May be untrashed.|| +|delete_at|datetime|If @delete_at@ is non-null and in the past, the group and all objects directly or indirectly owned by the group may be permanently deleted.|| +|is_trashed|datetime|True if @trash_at@ is in the past, false if not.|| + +h2. Methods + +See "Common resource methods":{{site.baseurl}}/api/methods.html for more information about @create@, @delete@, @get@, @list@, and @update@. + +Required arguments are displayed in %{background:#ccffcc}green%. -h2. delete +h3. contents -Delete an existing Group. +Retrieve a list of items owned by the group. Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -{background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path|| +{background:#ccffcc}.|uuid|string|The UUID of the group in question.|path|| +|limit|integer (default 100)|Maximum number of items to return.|query|| +|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"@| +|filters|array|Conditions for filtering items.|query|@[["uuid", "is_a", "arvados#job"]]@| +|recursive|boolean (default false)|Include items owned by subprojects.|query|@true@| -h2. destroy +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. -destroy groups +Note: Use filters with the attribute format @.@ 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. + +h3. create + +Create a new Group. Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -{background:#ccffcc}.|uuid|string||path|| +|group|object||query|| -h2. get +h3. delete -Gets a Group's metadata by UUID. +Put a Group in the trash. This sets the @trash_at@ field to @now@ and @delete_at@ field to @now@ + token TTL. A trashed group is invisible to most API calls unless the @include_trash@ parameter is true. All objects directly or indirectly owned by the Group are considered trashed as well. Arguments: @@ -51,60 +77,50 @@ table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | {background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path|| -h2. index +h3. get -index groups +Gets a Group's metadata by UUID. Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -|order|string||query|| -|where|object||query|| +{background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path|| -h2. list +h3. list List groups. -Arguments: +See "common resource list method.":{{site.baseurl}}/api/methods.html#index -table(table table-bordered table-condensed). -|_. Argument |_. Type |_. Description |_. Location |_. Example | -|limit|integer (default 100)|Maximum number of groups to return.|query|| -|order|string|Order in which to return matching groups.|query|| -|pageToken|string|Page token.|query|| -|q|string|Query string for searching groups.|query|| -|where|object|Conditions for filtering groups.|query|| +h3. show -h2. owned_items - -Retrieve a list of items which are owned by the given group. +show groups Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -{background:#ccffcc}.|uuid|string|The UUID of the group in question.|path|| -|include_linked|boolean|If true, results will also include items on which the given group has _can_manage_ permission, even if they are owned by different users/groups.|path|{white-space:nowrap}. @false@ (default) -@true@| +{background:#ccffcc}.|uuid|string||path|| -h2. show +h3. update -show groups +Update attributes of an existing Group. Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -{background:#ccffcc}.|uuid|string||path|| +{background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path|| +|group|object||query|| -h2. update +h3. untrash -Update attributes of an existing Group. +Remove a Group from the trash. This sets the @trash_at@ and @delete_at@ fields to @null@. Arguments: table(table table-bordered table-condensed). |_. Argument |_. Type |_. Description |_. Location |_. Example | -{background:#ccffcc}.|uuid|string|The UUID of the Group in question.|path|| -|group|object||query|| +{background:#ccffcc}.|uuid|string|The UUID of the Group to untrash.|path|| +|ensure_unique_name|boolean (default false)|Rename project uniquely if untrashing it would fail with a unique name conflict.|query||