Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/ActivityEventType.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,7 @@

* `READ_FRAGMENT_INFO` (value: `"read_fragment_info"`)

* `READ_ENUMERATIONS` (value: `"read_enumerations"`)



2,630 changes: 1,385 additions & 1,245 deletions docs/ArrayApi.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/ArrayConsolidationRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Request to consolidate an array
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] |
|**fragments** | **List<String>** | list of fragments in the array to consolidate | [optional] |



3 changes: 3 additions & 0 deletions docs/ArrayInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ metadata of an array
|**licenseText** | **String** | License text | [optional] |
|**readOnly** | **Boolean** | Suggests if the array is in read_only mode | [optional] |
|**isFavorite** | **Boolean** | Indicates whether the array is in user favorites | [optional] |
|**createdAt** | **OffsetDateTime** | Datetime array was registered with tiledb | [optional] |
|**createdBy** | **String** | The user who created the array, if known. | [optional] |
|**metadata** | [**List<MetadataStringifiedEntry>**](MetadataStringifiedEntry.md) | Contains the metadata of the array. **Note:** This property is included in the response only if the `with_metadata` query parameter is set to `true`. | [optional] |



2 changes: 2 additions & 0 deletions docs/ArrayTask.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ Synchronous Task to Run
|**resultFormat** | **ResultFormat** | | [optional] |
|**taskGraphUuid** | **String** | If set, the ID of the log for the task graph that this was part of. | [optional] |
|**clientNodeUuid** | **String** | If set, the client-defined ID of the node within this task's graph. | [optional] |
|**cloudProvider** | **String** | The name of the cloud provider where this task executed. | [optional] |
|**cloudRegion** | **String** | The region of the cloud provider where this task executed. | [optional] |



73 changes: 36 additions & 37 deletions docs/ArrayTasksApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,53 +7,52 @@ All URIs are relative to */v1*
| [**getArrayTasksSidebar**](ArrayTasksApi.md#getArrayTasksSidebar) | **GET** /tasks/sidebar | |


<a name="getArrayTasksSidebar"></a>
<a id="getArrayTasksSidebar"></a>
# **getArrayTasksSidebar**
> ArrayTaskBrowserSidebar getArrayTasksSidebar(start, end)



### Example

```java
// Import classes:

import ApiClient;
import ApiException;
import Configuration;
import io.tiledb.cloud.rest_api.models.*;
import ArrayTasksApi;
import org.openapitools.client.ApiClient;
import org.openapitools.client.ApiException;
import org.openapitools.client.Configuration;
import org.openapitools.client.auth.*;
import org.openapitools.client.models.*;
import org.openapitools.client.api.ArrayTasksApi;

public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("/v1");

// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");

// Configure HTTP basic authorization: BasicAuth
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
BasicAuth.setUsername("YOUR USERNAME");
BasicAuth.setPassword("YOUR PASSWORD");

ArrayTasksApi apiInstance = new ArrayTasksApi(defaultClient);
Integer start = 56; // Integer | Fetch tasks created after this time, unix epoch in seconds, default 7 days ago
Integer end = 56; // Integer | Fetch tasks created before this time, unix epoch in seconds, default now
try {
ArrayTaskBrowserSidebar result = apiInstance.getArrayTasksSidebar(start, end);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ArrayTasksApi#getArrayTasksSidebar");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("/v1");

// Configure HTTP basic authorization: BasicAuth
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
BasicAuth.setUsername("YOUR USERNAME");
BasicAuth.setPassword("YOUR PASSWORD");

// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");

ArrayTasksApi apiInstance = new ArrayTasksApi(defaultClient);
Integer start = 56; // Integer | Fetch tasks created after this time, unix epoch in seconds, default 7 days ago
Integer end = 56; // Integer | Fetch tasks created before this time, unix epoch in seconds, default now
try {
ArrayTaskBrowserSidebar result = apiInstance.getArrayTasksSidebar(start, end);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ArrayTasksApi#getArrayTasksSidebar");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
```

Expand All @@ -70,7 +69,7 @@ public class Example {

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [BasicAuth](../README.md#BasicAuth)
[BasicAuth](../README.md#BasicAuth), [ApiKeyAuth](../README.md#ApiKeyAuth)

### HTTP request headers

Expand Down
13 changes: 13 additions & 0 deletions docs/AssetBackingType.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


# AssetBackingType

## Enum


* `ARRAY` (value: `"array"`)

* `GROUP` (value: `"group"`)



23 changes: 23 additions & 0 deletions docs/AssetInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@


# AssetInfo

metadata of an asset

## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**uuid** | **String** | unique ID of a registered asset | [optional] |
|**assetType** | **AssetType** | | [optional] |
|**assetBackingType** | **AssetBackingType** | | [optional] |
|**assetOwnershipLevel** | **AssetOwnershipLevel** | | [optional] |
|**namespaceName** | **String** | namespace_name that the asset is registered to | [optional] |
|**namespaceUuid** | **String** | namespace_uuid that the asset is registered to | [optional] |
|**name** | **String** | name of asset | [optional] |
|**mimeType** | **String** | mime type of the asset | [optional] |
|**createdAt** | **OffsetDateTime** | Time when the asset was created (rfc3339) | [optional] [readonly] |
|**metadata** | [**MetadataStringified**](MetadataStringified.md) | | [optional] |



15 changes: 15 additions & 0 deletions docs/AssetListResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@


# AssetListResponse

Asset associated with a TileDB Cloud account

## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**data** | [**List&lt;AssetInfo&gt;**](AssetInfo.md) | asset information for each asset | [optional] |
|**paginationMetadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] |



13 changes: 13 additions & 0 deletions docs/AssetOwnershipLevel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


# AssetOwnershipLevel

## Enum


* `OWNED` (value: `"owned"`)

* `SHARED` (value: `"shared"`)



Loading
Loading