Project

General

Profile

Feature #8128

Updated by Tom Clegg about 8 years ago

See [[Container dispatch#Arvados-API-support]] ("Arvados API support") 

 Some of the required APIs don't exist yet: 
 * "Locked" state 
 * Filter containers list by API token (not necessarily fully generalized, but we need some way to do "list containers belonging to me that are either Running or Locked") 
 * Create a new API token to pass to crunch-run 

 We do have: 
 * Filter containers list by API token: @containers.list?filters=[[locked_by_uuid,=,my_token_uuid],[state,in,[Running,Locked]]]@ 
 * Get list of queued containers: @containers.list?filters=[[state,=,Queued]]@ containers (for now, this is equivalent to @list?filters=[state,=,Queued]@) 

Back