5 title: "container_requests"
9 See "REST methods for working with Arvados resources":{{site.baseurl}}/api/methods.html
11 API endpoint base: @https://{{ site.arvados_api_host }}/arvados/v1/container_requests@
13 Required arguments are displayed in %{background:#ccffcc}green%.
17 Create a new ContainerRequest.
21 table(table table-bordered table-condensed).
22 |_. Argument |_. Type |_. Description |_. Location |_. Example |
23 {background:#ccffcc}.|container_request|object|See "ContainerRequest resource":{{site.baseurl}}/api/schema/ContainerRequest.html|request body||
25 The request body must include the required attributes command, container_image, cwd, and output_path. It can also inlcude other attributes such as environment, mounts, and runtime_constraints.
29 Delete an existing ContainerRequest.
33 table(table table-bordered table-condensed).
34 |_. Argument |_. Type |_. Description |_. Location |_. Example |
35 {background:#ccffcc}.|uuid|string|The UUID of the ContainerRequest in question.|path||
39 Get a ContainerRequest's metadata by UUID.
43 table(table table-bordered table-condensed).
44 |_. Argument |_. Type |_. Description |_. Location |_. Example |
45 {background:#ccffcc}.|uuid|string|The UUID of the ContainerRequest in question.|path||
49 List container_requests.
53 table(table table-bordered table-condensed).
54 |_. Argument |_. Type |_. Description |_. Location |_. Example |
55 |limit|integer (default 100)|Maximum number of container_requests to return.|query||
56 |order|string|Order in which to return matching container_requests.|query||
57 |filters|array|Conditions for filtering container_requests.|query||
59 See the create method documentation for more information about ContainerRequest-specific filters.
63 Update attributes of an existing ContainerRequest.
67 table(table table-bordered table-condensed).
68 |_. Argument |_. Type |_. Description |_. Location |_. Example |
69 {background:#ccffcc}.|uuid|string|The UUID of the ContainerRequest in question.|path||
70 |container_request|object||query||
72 {% include 'notebox_begin' %}
73 Setting the priority of a committed container_request to 0 may cancel a running container assigned for it.
74 See "Canceling a ContainerRequest":{{site.baseurl}}/api/schema/ContainerRequest.html#cancel_container for further details.
75 {% include 'notebox_end' %}