-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
512 changed files
with
45,662 additions
and
19,325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.1.0 | ||
7.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,5 +35,7 @@ | |
|
||
* `READ_FRAGMENT_INFO` (value: `"read_fragment_info"`) | ||
|
||
* `READ_ENUMERATIONS` (value: `"read_enumerations"`) | ||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
# AssetBackingType | ||
|
||
## Enum | ||
|
||
|
||
* `ARRAY` (value: `"array"`) | ||
|
||
* `GROUP` (value: `"group"`) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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<AssetInfo>**](AssetInfo.md) | asset information for each asset | [optional] | | ||
|**paginationMetadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
# AssetOwnershipLevel | ||
|
||
## Enum | ||
|
||
|
||
* `OWNED` (value: `"owned"`) | ||
|
||
* `SHARED` (value: `"shared"`) | ||
|
||
|
||
|
Oops, something went wrong.