Skip to contents

tiledbcloud.Stats

Format

An R6Class generator object

Methods

GetTiledbStats Fetch libtiledb stat @returnType InlineResponse200
status code : 200 | stats return type : InlineResponse200 response headers :
status code : 0 | error response return type : Error response headers :

Public fields

apiClient

Handles the client-server communication.

Methods


Method new()

Usage

StatsApi$new(apiClient)


Method GetTiledbStats()

Usage

StatsApi$GetTiledbStats(...)


Method GetTiledbStatsWithHttpInfo()

Usage

StatsApi$GetTiledbStatsWithHttpInfo(...)


Method clone()

The objects of this class are cloneable with this method.

Usage

StatsApi$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (FALSE) { # \dontrun{
####################  GetTiledbStats  ####################

library(tiledbcloud)

api.instance <- StatsApi$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$GetTiledbStats()


} # }