Advertise filters param in discovery doc.
[arvados.git] / doc / api / resources.html.textile.liquid
1 ---
2 layout: default
3 navsection: api
4 navmenu: Concepts
5 title: Resources
6
7 ...
8
9 h1. Resources
10
11 This page describes the common attributes of Arvados resources.
12
13 The list of resource types is on the "front page of the API Reference":./.
14
15 h2. Object IDs
16
17 Object IDs are alphanumeric strings, unique across all installations (each installation has a unique prefix to prevent collisions).
18
19 h2. Attributes of resources
20
21 table(table table-bordered table-condensed).
22 |*Attribute*|*Type*|*Description*|*Example*|
23 |uuid|string|universally unique object identifier|@mk2qn-4zz18-w3anr2hk2wgfpuo@|
24 |href|string|a URL that can be used to address this resource||
25 |kind|string|@arvados#{resource_type}@|@arvados#collection@|
26 |etag|string|The ETag[1] of the resource|@1xlmizzjq7wro3dlb2dirf505@|
27 |self_link|string|||
28 |owner_uuid|string|UUID of owner (typically User or Project)|@mk2qn-tpzed-a4lcehql0dv2u25@|
29 |created_at|datetime|When resource was created|@2013-01-21T22:17:39Z@|
30 |modified_by_client_uuid|string|API client software which most recently modified the resource|@mk2qn-ozdt8-vq8l5qkzj7pr7h7@|
31 |modified_by_user_uuid|string|Authenticated user, on whose behalf the client was acting when modifying the resource|@mk2qn-tpzed-a4lcehql0dv2u25@|
32 |modified_at|datetime|When resource was last modified|@2013-01-25T22:29:32Z@|
33
34 h2. Attributes of resource lists
35
36 table(table table-bordered table-condensed).
37 |*Attribute*|*Type*|*Description*|*Example*|
38 |kind|string|@arvados#{resource_type}List@|@arvados#projectList@|
39 |etag|string|The ETag[1] of the resource list|@cd3o1wi9sf934saajykawrz2e@|
40 |self_link|string|||
41 |next_page_token|string|||
42 |next_link|string|||
43 |items[]|list|List of resources||
44
45
46 h2. ETags
47
48 fn1. Each response includes an ETag, a string which changes when the resource changes.  Clients can use this to check whether a resource has changed since they last retrieved it.  If a previous ETag is provided along with a request, and the resource has not changed since, the server may return a "not modified" response.
49