ArrayTasksApi | R Documentation |
tiledbcloud.ArrayTasks
An R6Class
generator object
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 :
status code : 404 | array tasks not found
response headers :
status code : 0 | error response
return type : Error
response headers :
apiClient
Handles the client-server communication.
new()
ArrayTasksApi$new(apiClient)
GetArrayTasksSidebar()
ArrayTasksApi$GetArrayTasksSidebar(start = NULL, end = NULL, ...)
GetArrayTasksSidebarWithHttpInfo()
ArrayTasksApi$GetArrayTasksSidebarWithHttpInfo(start = NULL, end = NULL, ...)
clone()
The objects of this class are cloneable with this method.
ArrayTasksApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
## Not run: #################### 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) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.