tiledbcloud.ArrayTasks
Methods
-
GetArrayTasksSidebar
@param start integer
@param end integer
@returnType ArrayTaskBrowserSidebar
status code : 200 | sidebar metadata for task definitions for all arrays user has access to return type : ArrayTaskBrowserSidebar response headers :
Methods
Method new()
Usage
ArrayTasksApi$new(apiClient)
Examples
if (FALSE) { # \dontrun{
#################### GetArrayTasksSidebar ####################
library(tiledbcloud)
var.start <- 56 # integer | Fetch tasks created after this time, unix epoch in seconds, default 7 days ago
var.end <- 56 # integer | Fetch tasks created before this time, unix epoch in seconds, default now
api.instance <- ArrayTasksApi$new()
#Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
#Configure HTTP basic authorization: BasicAuth
# provide your username in the user-serial format
api.instance$apiClient$username <- '<user-serial>';
# provide your api key generated using the developer portal
api.instance$apiClient$password <- '<api_key>';
result <- api.instance$GetArrayTasksSidebar(start=var.start, end=var.end)
} # }