├── .github ├── scripts │ └── retry └── workflows │ ├── codeql-analysis.yml │ ├── publish_docs.yaml │ └── tiledb-cloud-py.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── ci ├── requirements-geospatial-py3.9.txt └── requirements.txt ├── docs ├── .gitignore ├── TileDB_logo_primary.png ├── _quarto.yaml ├── get_started.qmd ├── index.qmd └── t_favicon.png ├── generator ├── openapi_overrides │ ├── api_client.py │ ├── configuration.py │ ├── exceptions.py │ └── rest.py └── rewrite_urls.py ├── pyproject.toml ├── setup.py ├── src └── tiledb │ └── cloud │ ├── __init__.py │ ├── _common │ ├── __init__.py │ ├── _array_backed.py │ ├── api_v2 │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ └── VERSION │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── array_api.py │ │ │ ├── files_api.py │ │ │ ├── groups_api.py │ │ │ ├── notebooks_api.py │ │ │ ├── organization_api.py │ │ │ ├── query_api.py │ │ │ └── user_api.py │ │ ├── api_client.py │ │ ├── configuration.py │ │ ├── docs │ │ │ ├── AWSCredential.md │ │ │ ├── AWSRole.md │ │ │ ├── AccessCredential.md │ │ │ ├── AccessCredentialCredential.md │ │ │ ├── AccessCredentialRole.md │ │ │ ├── AccessCredentialToken.md │ │ │ ├── AccessCredentialType.md │ │ │ ├── AccessCredentialsData.md │ │ │ ├── ActivityEventType.md │ │ │ ├── Array.md │ │ │ ├── ArrayActivityLog.md │ │ │ ├── ArrayActivityLogData.md │ │ │ ├── ArrayApi.md │ │ │ ├── ArrayDirectory.md │ │ │ ├── ArrayFetch.md │ │ │ ├── ArrayMetadata.md │ │ │ ├── ArrayMetadataEntry.md │ │ │ ├── ArraySchema.md │ │ │ ├── ArraySchemaEntry.md │ │ │ ├── ArraySchemaMap.md │ │ │ ├── ArrayType.md │ │ │ ├── AssetActivityLog.md │ │ │ ├── AssetActivityLogAsset.md │ │ │ ├── AssetType.md │ │ │ ├── Attribute.md │ │ │ ├── AttributeBufferHeader.md │ │ │ ├── AttributeBufferSize.md │ │ │ ├── AzureCredential.md │ │ │ ├── AzureToken.md │ │ │ ├── CloudProvider.md │ │ │ ├── Datatype.md │ │ │ ├── DeleteAndUpdateTileLocation.md │ │ │ ├── Dimension.md │ │ │ ├── DimensionTileExtent.md │ │ │ ├── Domain.md │ │ │ ├── DomainArray.md │ │ │ ├── Error.md │ │ │ ├── FileUploaded.md │ │ │ ├── FilesApi.md │ │ │ ├── Filter.md │ │ │ ├── FilterData.md │ │ │ ├── FilterPipeline.md │ │ │ ├── FilterType.md │ │ │ ├── FloatScaleConfig.md │ │ │ ├── FragmentMetadata.md │ │ │ ├── GCPInteroperabilityCredential.md │ │ │ ├── GCPServiceAccountKey.md │ │ │ ├── GenericTileOffsets.md │ │ │ ├── GroupActivityEventType.md │ │ │ ├── GroupActivityResponse.md │ │ │ ├── GroupContentActivity.md │ │ │ ├── GroupContentActivityResponse.md │ │ │ ├── GroupContentsChangesRequest.md │ │ │ ├── GroupContentsChangesRequestGroupChanges.md │ │ │ ├── GroupContentsRetrievalRequest.md │ │ │ ├── GroupContentsRetrievalResponse.md │ │ │ ├── GroupCreationRequest.md │ │ │ ├── GroupCreationRequestGroupDetails.md │ │ │ ├── GroupCreationResponse.md │ │ │ ├── GroupMember.md │ │ │ ├── GroupMemberAssetType.md │ │ │ ├── GroupMemberType.md │ │ │ ├── GroupMetadataRetrievalRequest.md │ │ │ ├── GroupMetadataUpdateRequest.md │ │ │ ├── GroupRegistrationRequest.md │ │ │ ├── GroupRegistrationRequestGroupDetails.md │ │ │ ├── GroupsApi.md │ │ │ ├── Layout.md │ │ │ ├── Metadata.md │ │ │ ├── MetadataEntry.md │ │ │ ├── NonEmptyDomain.md │ │ │ ├── NonEmptyDomainList.md │ │ │ ├── NotebookUploaded.md │ │ │ ├── NotebooksApi.md │ │ │ ├── OrganizationApi.md │ │ │ ├── PaginationMetadata.md │ │ │ ├── Query.md │ │ │ ├── QueryApi.md │ │ │ ├── QueryReader.md │ │ │ ├── Querystatus.md │ │ │ ├── Querytype.md │ │ │ ├── ReadState.md │ │ │ ├── Subarray.md │ │ │ ├── SubarrayPartitioner.md │ │ │ ├── SubarrayPartitionerCurrent.md │ │ │ ├── SubarrayPartitionerState.md │ │ │ ├── SubarrayRanges.md │ │ │ ├── TileDBConfig.md │ │ │ ├── TileDBConfigEntries.md │ │ │ ├── TimestampedURI.md │ │ │ ├── UserApi.md │ │ │ └── Writer.md │ │ ├── exceptions.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── access_credential.py │ │ │ ├── access_credential_credential.py │ │ │ ├── access_credential_role.py │ │ │ ├── access_credential_token.py │ │ │ ├── access_credential_type.py │ │ │ ├── access_credentials_data.py │ │ │ ├── activity_event_type.py │ │ │ ├── array.py │ │ │ ├── array_activity_log.py │ │ │ ├── array_activity_log_data.py │ │ │ ├── array_directory.py │ │ │ ├── array_fetch.py │ │ │ ├── array_metadata.py │ │ │ ├── array_metadata_entry.py │ │ │ ├── array_schema.py │ │ │ ├── array_schema_entry.py │ │ │ ├── array_schema_map.py │ │ │ ├── array_type.py │ │ │ ├── asset_activity_log.py │ │ │ ├── asset_activity_log_asset.py │ │ │ ├── asset_type.py │ │ │ ├── attribute.py │ │ │ ├── attribute_buffer_header.py │ │ │ ├── attribute_buffer_size.py │ │ │ ├── aws_credential.py │ │ │ ├── aws_role.py │ │ │ ├── azure_credential.py │ │ │ ├── azure_token.py │ │ │ ├── cloud_provider.py │ │ │ ├── datatype.py │ │ │ ├── delete_and_update_tile_location.py │ │ │ ├── dimension.py │ │ │ ├── dimension_tile_extent.py │ │ │ ├── domain.py │ │ │ ├── domain_array.py │ │ │ ├── error.py │ │ │ ├── file_uploaded.py │ │ │ ├── filter.py │ │ │ ├── filter_data.py │ │ │ ├── filter_pipeline.py │ │ │ ├── filter_type.py │ │ │ ├── float_scale_config.py │ │ │ ├── fragment_metadata.py │ │ │ ├── gcp_interoperability_credential.py │ │ │ ├── gcp_service_account_key.py │ │ │ ├── generic_tile_offsets.py │ │ │ ├── group_activity_event_type.py │ │ │ ├── group_activity_response.py │ │ │ ├── group_content_activity.py │ │ │ ├── group_content_activity_response.py │ │ │ ├── group_contents_changes_request.py │ │ │ ├── group_contents_changes_request_group_changes.py │ │ │ ├── group_contents_retrieval_request.py │ │ │ ├── group_contents_retrieval_response.py │ │ │ ├── group_creation_request.py │ │ │ ├── group_creation_request_group_details.py │ │ │ ├── group_creation_response.py │ │ │ ├── group_member.py │ │ │ ├── group_member_asset_type.py │ │ │ ├── group_member_type.py │ │ │ ├── group_metadata_retrieval_request.py │ │ │ ├── group_metadata_update_request.py │ │ │ ├── group_registration_request.py │ │ │ ├── group_registration_request_group_details.py │ │ │ ├── layout.py │ │ │ ├── metadata.py │ │ │ ├── metadata_entry.py │ │ │ ├── non_empty_domain.py │ │ │ ├── non_empty_domain_list.py │ │ │ ├── notebook_uploaded.py │ │ │ ├── pagination_metadata.py │ │ │ ├── query.py │ │ │ ├── query_reader.py │ │ │ ├── querystatus.py │ │ │ ├── querytype.py │ │ │ ├── read_state.py │ │ │ ├── subarray.py │ │ │ ├── subarray_partitioner.py │ │ │ ├── subarray_partitioner_current.py │ │ │ ├── subarray_partitioner_state.py │ │ │ ├── subarray_ranges.py │ │ │ ├── tile_db_config.py │ │ │ ├── tile_db_config_entries.py │ │ │ ├── timestamped_uri.py │ │ │ └── writer.py │ │ ├── openapi_config-api │ │ └── rest.py │ ├── functions.py │ ├── futures.py │ ├── json_safe.py │ ├── ordered.py │ ├── pickle_compat.py │ ├── testonly.py │ ├── trampoline.py │ ├── utils.py │ └── visitor.py │ ├── _results │ ├── __init__.py │ ├── codecs.py │ ├── decoders.py │ ├── results.py │ ├── sender.py │ ├── stored_params.py │ ├── tiledb_json.py │ └── types.py │ ├── _vendor │ ├── __init__.py │ └── cloudpickle │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cloudpickle.py │ │ ├── cloudpickle_fast.py │ │ ├── compat.py │ │ └── tests │ │ ├── __init__.py │ │ ├── cloudpickle_file_test.py │ │ ├── cloudpickle_test.py │ │ ├── cloudpickle_testpkg │ │ ├── _cloudpickle_testpkg │ │ │ ├── __init__.py │ │ │ └── mod.py │ │ └── setup.py │ │ ├── generate_old_pickles.py │ │ ├── mock_local_folder │ │ ├── mod.py │ │ └── subfolder │ │ │ └── submod.py │ │ ├── old_pickles │ │ ├── cpython_36 │ │ │ ├── class_with_type_hints.pkl │ │ │ ├── function_with_type_hints.pkl │ │ │ ├── nested_function.pkl │ │ │ ├── simple_class.pkl │ │ │ ├── simple_enum.pkl │ │ │ ├── simple_func.pkl │ │ │ └── simple_module.pkl │ │ ├── cpython_37 │ │ │ ├── class_with_type_hints.pkl │ │ │ ├── function_with_type_hints.pkl │ │ │ ├── nested_function.pkl │ │ │ ├── simple_class.pkl │ │ │ ├── simple_enum.pkl │ │ │ ├── simple_func.pkl │ │ │ └── simple_module.pkl │ │ ├── cpython_38 │ │ │ ├── class_with_type_hints.pkl │ │ │ ├── function_with_type_hints.pkl │ │ │ ├── nested_function.pkl │ │ │ ├── simple_class.pkl │ │ │ ├── simple_enum.pkl │ │ │ ├── simple_func.pkl │ │ │ └── simple_module.pkl │ │ └── pypy_36 │ │ │ ├── class_with_type_hints.pkl │ │ │ ├── function_with_type_hints.pkl │ │ │ ├── simple_class.pkl │ │ │ ├── simple_enum.pkl │ │ │ ├── simple_func.pkl │ │ │ └── simple_module.pkl │ │ ├── test_backward_compat.py │ │ └── testutils.py │ ├── array.py │ ├── asset.py │ ├── bioimg │ ├── __init__.py │ ├── exportation.py │ ├── helpers.py │ └── ingestion.py │ ├── client.py │ ├── cloudarray.py │ ├── compute │ ├── __init__.py │ └── delayed.py │ ├── config.py │ ├── dag │ ├── __init__.py │ ├── dag.py │ ├── mode.py │ ├── status.py │ └── visualization.py │ ├── dashboard.py │ ├── files │ ├── __init__.py │ ├── indexing.py │ ├── ingestion.py │ ├── udfs.py │ └── utils.py │ ├── geospatial │ ├── __init__.py │ └── ingestion.py │ ├── groups.py │ ├── invites.py │ ├── notebook.py │ ├── pool_manager_wrapper.py │ ├── region │ └── __init__.py │ ├── rest_api │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ └── VERSION │ ├── README.md │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── array_api.py │ │ ├── array_tasks_api.py │ │ ├── assets_api.py │ │ ├── favorites_api.py │ │ ├── files_api.py │ │ ├── groups_api.py │ │ ├── invitation_api.py │ │ ├── notebook_api.py │ │ ├── notebooks_api.py │ │ ├── organization_api.py │ │ ├── query_api.py │ │ ├── registered_task_graphs_api.py │ │ ├── sql_api.py │ │ ├── stats_api.py │ │ ├── task_graph_logs_api.py │ │ ├── task_graphs_api.py │ │ ├── tasks_api.py │ │ ├── udf_api.py │ │ └── user_api.py │ ├── api_client.py │ ├── configuration.py │ ├── docs │ │ ├── AWSAccessCredentials.md │ │ ├── ActivityEventType.md │ │ ├── Array.md │ │ ├── ArrayActions.md │ │ ├── ArrayActivityLog.md │ │ ├── ArrayApi.md │ │ ├── ArrayBrowserData.md │ │ ├── ArrayBrowserSidebar.md │ │ ├── ArrayConsolidationRequest.md │ │ ├── ArrayEndTimestampData.md │ │ ├── ArrayFavorite.md │ │ ├── ArrayFavoritesData.md │ │ ├── ArrayInfo.md │ │ ├── ArrayInfoUpdate.md │ │ ├── ArrayMetadata.md │ │ ├── ArrayMetadataEntry.md │ │ ├── ArraySample.md │ │ ├── ArraySchema.md │ │ ├── ArraySharing.md │ │ ├── ArrayTask.md │ │ ├── ArrayTaskBrowserSidebar.md │ │ ├── ArrayTaskData.md │ │ ├── ArrayTaskLog.md │ │ ├── ArrayTaskStatus.md │ │ ├── ArrayTaskType.md │ │ ├── ArrayTasksApi.md │ │ ├── ArrayType.md │ │ ├── ArrayVacuumRequest.md │ │ ├── AssetBackingType.md │ │ ├── AssetInfo.md │ │ ├── AssetListResponse.md │ │ ├── AssetLocations.md │ │ ├── AssetOwnershipLevel.md │ │ ├── AssetType.md │ │ ├── AssetsApi.md │ │ ├── Attribute.md │ │ ├── AttributeBufferHeader.md │ │ ├── AttributeBufferSize.md │ │ ├── Backoff.md │ │ ├── Datatype.md │ │ ├── Dimension.md │ │ ├── DimensionCoordinate.md │ │ ├── DimensionTileExtent.md │ │ ├── Domain.md │ │ ├── DomainArray.md │ │ ├── DomainCheckResult.md │ │ ├── DomainCheckStatus.md │ │ ├── DomainVerificationStatus.md │ │ ├── Enumeration.md │ │ ├── Error.md │ │ ├── FavoritesApi.md │ │ ├── FileCreate.md │ │ ├── FileCreated.md │ │ ├── FileExport.md │ │ ├── FileExported.md │ │ ├── FilePropertyName.md │ │ ├── FileType.md │ │ ├── FileUploaded.md │ │ ├── FilesApi.md │ │ ├── Filter.md │ │ ├── FilterData.md │ │ ├── FilterOption.md │ │ ├── FilterPipeline.md │ │ ├── FilterType.md │ │ ├── FragmentInfo.md │ │ ├── FragmentInfoRequest.md │ │ ├── FragmentMetadata.md │ │ ├── GenericUDF.md │ │ ├── GroupActions.md │ │ ├── GroupBrowserData.md │ │ ├── GroupBrowserFilterData.md │ │ ├── GroupChanges.md │ │ ├── GroupContentActivity.md │ │ ├── GroupContentActivityAsset.md │ │ ├── GroupContentActivityResponse.md │ │ ├── GroupContents.md │ │ ├── GroupContentsFilterData.md │ │ ├── GroupCreate.md │ │ ├── GroupEntry.md │ │ ├── GroupInfo.md │ │ ├── GroupMember.md │ │ ├── GroupMemberAssetType.md │ │ ├── GroupMemberType.md │ │ ├── GroupRegister.md │ │ ├── GroupSharing.md │ │ ├── GroupSharingRequest.md │ │ ├── GroupType.md │ │ ├── GroupTypeMetadataKey.md │ │ ├── GroupUpdate.md │ │ ├── GroupsApi.md │ │ ├── InlineObject.md │ │ ├── InlineObject1.md │ │ ├── InlineResponse200.md │ │ ├── Invitation.md │ │ ├── InvitationApi.md │ │ ├── InvitationArrayShareEmail.md │ │ ├── InvitationData.md │ │ ├── InvitationFailedRecipients.md │ │ ├── InvitationGroupShareEmail.md │ │ ├── InvitationOrganizationJoinEmail.md │ │ ├── InvitationStatus.md │ │ ├── InvitationType.md │ │ ├── LastAccessedArray.md │ │ ├── Layout.md │ │ ├── LoadArraySchemaRequest.md │ │ ├── LoadArraySchemaResponse.md │ │ ├── LoadEnumerationsRequest.md │ │ ├── LoadEnumerationsResponse.md │ │ ├── MLModelFavorite.md │ │ ├── MLModelFavoritesData.md │ │ ├── MaxBufferSizes.md │ │ ├── MetadataStringified.md │ │ ├── MetadataStringifiedEntry.md │ │ ├── MultiArrayUDF.md │ │ ├── NamespaceActions.md │ │ ├── NonEmptyDomain.md │ │ ├── NotebookApi.md │ │ ├── NotebookCopied.md │ │ ├── NotebookCopy.md │ │ ├── NotebookFavorite.md │ │ ├── NotebookFavoritesData.md │ │ ├── NotebookStatus.md │ │ ├── NotebooksApi.md │ │ ├── Organization.md │ │ ├── OrganizationApi.md │ │ ├── OrganizationRoles.md │ │ ├── OrganizationUpdate.md │ │ ├── OrganizationUser.md │ │ ├── PaginationMetadata.md │ │ ├── PodStatus.md │ │ ├── Pricing.md │ │ ├── PricingAggregateUsage.md │ │ ├── PricingCurrency.md │ │ ├── PricingInterval.md │ │ ├── PricingType.md │ │ ├── PricingUnitLabel.md │ │ ├── PublicShareFilter.md │ │ ├── Query.md │ │ ├── QueryApi.md │ │ ├── QueryJson.md │ │ ├── QueryRanges.md │ │ ├── QueryReader.md │ │ ├── Querystatus.md │ │ ├── Querytype.md │ │ ├── ReadState.md │ │ ├── RegisteredTaskGraph.md │ │ ├── RegisteredTaskGraphsApi.md │ │ ├── ResultFormat.md │ │ ├── RetryPolicy.md │ │ ├── RetryStrategy.md │ │ ├── SQLParameters.md │ │ ├── SSODomainConfig.md │ │ ├── SSODomainConfigResponse.md │ │ ├── SSODomainSetup.md │ │ ├── SSOProvider.md │ │ ├── SingleFragmentInfo.md │ │ ├── SqlApi.md │ │ ├── StatsApi.md │ │ ├── StorageLocation.md │ │ ├── Subarray.md │ │ ├── SubarrayPartitioner.md │ │ ├── SubarrayPartitionerCurrent.md │ │ ├── SubarrayPartitionerState.md │ │ ├── SubarrayRanges.md │ │ ├── Subscription.md │ │ ├── TGArrayNodeData.md │ │ ├── TGInputNodeData.md │ │ ├── TGQueryRanges.md │ │ ├── TGSQLNodeData.md │ │ ├── TGUDFArgument.md │ │ ├── TGUDFEnvironment.md │ │ ├── TGUDFEnvironmentResources.md │ │ ├── TGUDFNodeData.md │ │ ├── TaskGraph.md │ │ ├── TaskGraphActions.md │ │ ├── TaskGraphClientNodeStatus.md │ │ ├── TaskGraphLog.md │ │ ├── TaskGraphLogRunLocation.md │ │ ├── TaskGraphLogStatus.md │ │ ├── TaskGraphLogsApi.md │ │ ├── TaskGraphLogsData.md │ │ ├── TaskGraphNode.md │ │ ├── TaskGraphNodeMetadata.md │ │ ├── TaskGraphSharing.md │ │ ├── TaskGraphType.md │ │ ├── TaskGraphs.md │ │ ├── TaskGraphsApi.md │ │ ├── TasksApi.md │ │ ├── TileDBConfig.md │ │ ├── TileDBConfigEntries.md │ │ ├── Token.md │ │ ├── TokenRequest.md │ │ ├── TokenScope.md │ │ ├── UDFActions.md │ │ ├── UDFArrayDetails.md │ │ ├── UDFCopied.md │ │ ├── UDFCopy.md │ │ ├── UDFFavorite.md │ │ ├── UDFFavoritesData.md │ │ ├── UDFImage.md │ │ ├── UDFImageVersion.md │ │ ├── UDFInfo.md │ │ ├── UDFInfoUpdate.md │ │ ├── UDFLanguage.md │ │ ├── UDFSharing.md │ │ ├── UDFSubarray.md │ │ ├── UDFSubarrayRange.md │ │ ├── UDFType.md │ │ ├── UdfApi.md │ │ ├── User.md │ │ ├── UserApi.md │ │ └── Writer.md │ ├── exceptions.py │ ├── models │ │ ├── __init__.py │ │ ├── activity_event_type.py │ │ ├── array.py │ │ ├── array_actions.py │ │ ├── array_activity_log.py │ │ ├── array_browser_data.py │ │ ├── array_browser_sidebar.py │ │ ├── array_consolidation_request.py │ │ ├── array_end_timestamp_data.py │ │ ├── array_favorite.py │ │ ├── array_favorites_data.py │ │ ├── array_info.py │ │ ├── array_info_update.py │ │ ├── array_metadata.py │ │ ├── array_metadata_entry.py │ │ ├── array_sample.py │ │ ├── array_schema.py │ │ ├── array_sharing.py │ │ ├── array_task.py │ │ ├── array_task_browser_sidebar.py │ │ ├── array_task_data.py │ │ ├── array_task_log.py │ │ ├── array_task_status.py │ │ ├── array_task_type.py │ │ ├── array_type.py │ │ ├── array_vacuum_request.py │ │ ├── asset_backing_type.py │ │ ├── asset_info.py │ │ ├── asset_list_response.py │ │ ├── asset_locations.py │ │ ├── asset_ownership_level.py │ │ ├── asset_type.py │ │ ├── attribute.py │ │ ├── attribute_buffer_header.py │ │ ├── attribute_buffer_size.py │ │ ├── aws_access_credentials.py │ │ ├── backoff.py │ │ ├── datatype.py │ │ ├── dimension.py │ │ ├── dimension_coordinate.py │ │ ├── dimension_tile_extent.py │ │ ├── domain.py │ │ ├── domain_array.py │ │ ├── domain_check_result.py │ │ ├── domain_check_status.py │ │ ├── domain_verification_status.py │ │ ├── enumeration.py │ │ ├── error.py │ │ ├── file_create.py │ │ ├── file_created.py │ │ ├── file_export.py │ │ ├── file_exported.py │ │ ├── file_property_name.py │ │ ├── file_type.py │ │ ├── file_uploaded.py │ │ ├── filter.py │ │ ├── filter_data.py │ │ ├── filter_option.py │ │ ├── filter_pipeline.py │ │ ├── filter_type.py │ │ ├── fragment_info.py │ │ ├── fragment_info_request.py │ │ ├── fragment_metadata.py │ │ ├── generic_udf.py │ │ ├── group_actions.py │ │ ├── group_browser_data.py │ │ ├── group_browser_filter_data.py │ │ ├── group_changes.py │ │ ├── group_content_activity.py │ │ ├── group_content_activity_asset.py │ │ ├── group_content_activity_response.py │ │ ├── group_contents.py │ │ ├── group_contents_filter_data.py │ │ ├── group_create.py │ │ ├── group_entry.py │ │ ├── group_info.py │ │ ├── group_member.py │ │ ├── group_member_asset_type.py │ │ ├── group_member_type.py │ │ ├── group_register.py │ │ ├── group_sharing.py │ │ ├── group_sharing_request.py │ │ ├── group_type.py │ │ ├── group_type_metadata_key.py │ │ ├── group_update.py │ │ ├── inline_object.py │ │ ├── inline_object1.py │ │ ├── inline_response200.py │ │ ├── invitation.py │ │ ├── invitation_array_share_email.py │ │ ├── invitation_data.py │ │ ├── invitation_failed_recipients.py │ │ ├── invitation_group_share_email.py │ │ ├── invitation_organization_join_email.py │ │ ├── invitation_status.py │ │ ├── invitation_type.py │ │ ├── last_accessed_array.py │ │ ├── layout.py │ │ ├── load_array_schema_request.py │ │ ├── load_array_schema_response.py │ │ ├── load_enumerations_request.py │ │ ├── load_enumerations_response.py │ │ ├── max_buffer_sizes.py │ │ ├── metadata_stringified.py │ │ ├── metadata_stringified_entry.py │ │ ├── ml_model_favorite.py │ │ ├── ml_model_favorites_data.py │ │ ├── multi_array_udf.py │ │ ├── namespace_actions.py │ │ ├── non_empty_domain.py │ │ ├── notebook_copied.py │ │ ├── notebook_copy.py │ │ ├── notebook_favorite.py │ │ ├── notebook_favorites_data.py │ │ ├── notebook_status.py │ │ ├── organization.py │ │ ├── organization_roles.py │ │ ├── organization_update.py │ │ ├── organization_user.py │ │ ├── pagination_metadata.py │ │ ├── pod_status.py │ │ ├── pricing.py │ │ ├── pricing_aggregate_usage.py │ │ ├── pricing_currency.py │ │ ├── pricing_interval.py │ │ ├── pricing_type.py │ │ ├── pricing_unit_label.py │ │ ├── public_share_filter.py │ │ ├── query.py │ │ ├── query_json.py │ │ ├── query_ranges.py │ │ ├── query_reader.py │ │ ├── querystatus.py │ │ ├── querytype.py │ │ ├── read_state.py │ │ ├── registered_task_graph.py │ │ ├── result_format.py │ │ ├── retry_policy.py │ │ ├── retry_strategy.py │ │ ├── single_fragment_info.py │ │ ├── sql_parameters.py │ │ ├── sso_domain_config.py │ │ ├── sso_domain_config_response.py │ │ ├── sso_domain_setup.py │ │ ├── sso_provider.py │ │ ├── storage_location.py │ │ ├── subarray.py │ │ ├── subarray_partitioner.py │ │ ├── subarray_partitioner_current.py │ │ ├── subarray_partitioner_state.py │ │ ├── subarray_ranges.py │ │ ├── subscription.py │ │ ├── task_graph.py │ │ ├── task_graph_actions.py │ │ ├── task_graph_client_node_status.py │ │ ├── task_graph_log.py │ │ ├── task_graph_log_run_location.py │ │ ├── task_graph_log_status.py │ │ ├── task_graph_logs_data.py │ │ ├── task_graph_node.py │ │ ├── task_graph_node_metadata.py │ │ ├── task_graph_sharing.py │ │ ├── task_graph_type.py │ │ ├── task_graphs.py │ │ ├── tg_array_node_data.py │ │ ├── tg_input_node_data.py │ │ ├── tg_query_ranges.py │ │ ├── tgsql_node_data.py │ │ ├── tgudf_argument.py │ │ ├── tgudf_environment.py │ │ ├── tgudf_environment_resources.py │ │ ├── tgudf_node_data.py │ │ ├── tile_db_config.py │ │ ├── tile_db_config_entries.py │ │ ├── token.py │ │ ├── token_request.py │ │ ├── token_scope.py │ │ ├── udf_actions.py │ │ ├── udf_array_details.py │ │ ├── udf_copied.py │ │ ├── udf_copy.py │ │ ├── udf_favorite.py │ │ ├── udf_favorites_data.py │ │ ├── udf_image.py │ │ ├── udf_image_version.py │ │ ├── udf_info.py │ │ ├── udf_info_update.py │ │ ├── udf_language.py │ │ ├── udf_sharing.py │ │ ├── udf_subarray.py │ │ ├── udf_subarray_range.py │ │ ├── udf_type.py │ │ ├── user.py │ │ └── writer.py │ ├── openapi_config-api │ └── rest.py │ ├── soma │ ├── __init__.py │ ├── ingest.py │ └── mapper.py │ ├── sql │ ├── README.md │ ├── __init__.py │ ├── _execution.py │ ├── db_api_exceptions.py │ ├── tiledb_connection.py │ └── tiledb_cursor.py │ ├── taskgraphs │ ├── __init__.py │ ├── _codec.py │ ├── _results.py │ ├── builder.py │ ├── client_executor │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _replacers.py │ │ ├── array_node.py │ │ ├── impl.py │ │ ├── input_node.py │ │ ├── sql_node.py │ │ └── udf_node.py │ ├── delayed │ │ ├── __init__.py │ │ ├── _graph.py │ │ └── _udf.py │ ├── depgraph.py │ ├── executor.py │ ├── registration.py │ ├── server_executor │ │ ├── __init__.py │ │ └── impl.py │ ├── types.py │ └── visualization.py │ ├── tasks.py │ ├── tiledb_cloud_error.py │ ├── udf.py │ ├── utilities │ ├── __init__.py │ ├── _common.py │ ├── consolidate.py │ ├── logging.py │ ├── profiler.py │ └── wheel.py │ ├── utils.py │ ├── vcf │ ├── __init__.py │ ├── allele_frequency.py │ ├── ingestion.py │ ├── query.py │ ├── split.py │ ├── utils.py │ └── vcf_toolbox │ │ ├── __init__.py │ │ ├── annotate.py │ │ └── transform.py │ └── workflows │ ├── __init__.py │ ├── common.py │ ├── nextflow │ ├── __init__.py │ ├── history.py │ ├── manifest.py │ ├── register.py │ └── run.py │ └── workflow.py ├── tests ├── __init__.py ├── common │ ├── test_functions.py │ ├── test_ordered.py │ ├── test_pickle_compat.py │ ├── test_trampoline.py │ ├── test_utils.py │ ├── testdata │ │ └── pickles │ │ │ ├── functions │ │ │ ├── func-py3.7-cloudpickle1.4.1.pickle │ │ │ ├── func-py3.7-cloudpickle1.5.0.pickle │ │ │ ├── func-py3.7-cloudpickle2.1.0.pickle │ │ │ ├── func-py3.9-cloudpickle1.4.1.pickle │ │ │ ├── func-py3.9-cloudpickle1.5.0.pickle │ │ │ └── func-py3.9-cloudpickle2.1.0.pickle │ │ │ └── pandas │ │ │ ├── ndarray_backed_df-pd1.2.4.pickle │ │ │ ├── ndarray_backed_df-pd1.5.3.pickle │ │ │ ├── simple_df-pd1.2.4.pickle │ │ │ ├── simple_df-pd1.5.3.pickle │ │ │ ├── xarray-pd1.2.4.pickle │ │ │ └── xarray-pd1.5.3.pickle │ ├── write_function_pickles.py │ └── write_pandas_pickles.py ├── data │ ├── geospatial │ │ ├── 1.las │ │ ├── 10.las │ │ ├── 11.las │ │ ├── 2.las │ │ ├── 3.las │ │ ├── 4.las │ │ ├── 5.las │ │ ├── 6.las │ │ ├── 7.las │ │ ├── 8.las │ │ ├── 9.las │ │ └── README.txt │ └── simple_files │ │ ├── contains_word_1.txt │ │ ├── contains_word_2.txt │ │ ├── no_txt.csv │ │ ├── start_with_1.txt │ │ ├── start_with_2.txt │ │ └── start_with_3.txt ├── db_connector │ └── test_connector.py ├── taskgraphs │ ├── delayed │ │ ├── test_build.py │ │ └── test_delayed_funcs.py │ ├── test_builder.py │ ├── test_client_executor.py │ ├── test_codec.py │ ├── test_depgraph.py │ ├── test_registration.py │ ├── test_replacers.py │ ├── test_retries.py │ ├── test_server_side.py │ ├── test_taskgraphs.py │ └── test_types.py ├── test_asset.py ├── test_basic.py ├── test_bioimg.py ├── test_config.py ├── test_dag.py ├── test_delayed.py ├── test_file.py ├── test_generic_udf.py ├── test_geospatial.py ├── test_groups.py ├── test_invites.py ├── test_soma.py ├── test_sql.py ├── test_threaded_import.py ├── testdata │ └── pandas-arrow │ │ ├── demo-dataframe-py3.10-pd2.0.arrow │ │ ├── demo-dataframe-py3.8-pd1.4.arrow │ │ └── sample-dataframe.py ├── utilities │ ├── __init__.py │ ├── data │ │ └── fake_unittest_wheel-0.1.0-py3-none-any.whl │ └── test_wheel.py ├── vcf │ ├── __init__.py │ ├── test_split.py │ └── test_vcf.py └── workflows │ ├── __init__.py │ ├── common.py │ ├── test_nextflow_manifest.py │ ├── test_nextflow_register.py │ └── test_nextflow_run.py ├── update_generated.sh └── update_requirements.sh /.github/scripts/retry: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Retries the given command up to N times. 4 | # Usage: 5 | # retry 5 do-some-command param1 param2 6 | 7 | ATTEMPTS="$1" 8 | shift 9 | 10 | while (( ATTEMPTS-- )); do 11 | if "$@"; then 12 | exit 0 13 | fi 14 | done 15 | 16 | exit 1 17 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # See https://pre-commit.com for more information 2 | # See https://pre-commit.com/hooks.html for more hooks 3 | repos: 4 | - repo: https://github.com/pre-commit/pre-commit-hooks 5 | rev: v3.2.0 6 | hooks: 7 | - id: trailing-whitespace 8 | - id: end-of-file-fixer 9 | - id: check-yaml 10 | - id: check-added-large-files 11 | 12 | - repo: https://github.com/pre-commit/mirrors-prettier 13 | rev: v2.7.1 14 | hooks: 15 | - id: prettier 16 | 17 | - repo: https://github.com/charliermarsh/ruff-pre-commit 18 | rev: "v0.0.265" 19 | hooks: 20 | - id: ruff 21 | args: [--fix, --exit-non-zero-on-fix] 22 | 23 | - repo: https://github.com/psf/black 24 | rev: "23.3.0" 25 | hooks: 26 | - id: black 27 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | # Don't build any extra formats 2 | formats: [] 3 | 4 | # Use RTD config version 2 5 | # https://docs.readthedocs.io/en/stable/config-file/v2.html 6 | version: 2 7 | 8 | sphinx: 9 | configuration: docs/source/conf.py 10 | 11 | python: 12 | version: 3.9 13 | install: 14 | - requirements: docs/requirements.txt 15 | - method: setuptools 16 | path: . 17 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | # Changes 2 | 3 | ## Next (2024-09-23) 4 | 5 | --- 6 | 7 | New features: 8 | 9 | - Assets of a namespace can be listed in a paged fashion (gh-642). 10 | 11 | ## Next (YYYY-MM-DD) 12 | 13 | New features: 14 | 15 | - Add a tiledb.cloud.asset module with functions that allow management of 16 | assets of any type. This module is exported from tiledb.cloud (gh-566, 17 | gh-577). 18 | 19 | Bug fixes: 20 | 21 | - Enable ingestion of multi-band geospatial raster data (gh-609). 22 | - Ensure that boolean recursive parameters in tiledb.cloud.asset and 23 | tiledb.cloud.groups are converted to "true" or "false" before server requests 24 | are made (gh-605). 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-2020 TileDB Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | # Because `setuptools-scm` tries to include every single file known to Git, 2 | # we trim that down to include only the Python files themselves and manadatory 3 | # package metadata. 4 | 5 | global-exclude * 6 | include pyproject.toml 7 | include MANIFEST.in 8 | recursive-include src *.py 9 | recursive-exclude src/tiledb/cloud/_common/api_v2/test * 10 | recursive-exclude src/tiledb/cloud/rest_api/test * 11 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | VERSION ?= 3.18.2 2 | 3 | dockertest-geospatial-amd64: 4 | docker run --platform=linux/amd64 -it -v $(shell pwd):/app -v /tmp:/tmp --entrypoint=/bin/bash tiledbenterprise/notebook-python-r-julia-tilevcf-geo:$(VERSION) -c 'cd /app && python -m pip install --editable .[dev,tests] && python -m pytest $(OPTS)' 5 | -------------------------------------------------------------------------------- /ci/requirements-geospatial-py3.9.txt: -------------------------------------------------------------------------------- 1 | attrs==23.1.0 2 | certifi==2023.7.22 3 | importlib-metadata==6.8.0 4 | fiona==1.10b1 5 | numpy==1.26.1 6 | packaging==23.2 7 | pandas==2.1.1 8 | pyarrow==14.0.1 9 | python-dateutil==2.8.2 10 | pytz==2023.3.post1 11 | rasterio==1.4a3 12 | pdal==3.3.0 13 | rtree=1.2.0 14 | shapely==2.0.2 15 | six==1.16.0 16 | tblib==1.7.0 17 | tiledb==0.23.1 18 | tiledb-cloud==0.11.5 19 | typing_extensions==4.8.0 20 | tzdata==2023.3 21 | urllib3==2.0.7 22 | xarray==2023.9.0 23 | zipp==3.17.0 24 | -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- 1 | attrs==23.2.0 2 | certifi==2024.2.2 3 | cloudpickle 4 | importlib-metadata==7.0.1 5 | numpy==1.26.4 6 | packaging==23.2 7 | pandas==2.2.0 8 | pyarrow==15.0.0 9 | python-dateutil==2.8.2 10 | pytz==2024.1 11 | six==1.16.0 12 | tblib==1.7.0 13 | typing_extensions==4.9.0 14 | tzdata==2023.4 15 | urllib3==2.2.0 16 | xarray==2024.1.1 17 | zipp==3.17.0 18 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | _build 3 | reference 4 | 5 | # interlinks 6 | objects.json 7 | _sidebar.yml 8 | -------------------------------------------------------------------------------- /docs/TileDB_logo_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/docs/TileDB_logo_primary.png -------------------------------------------------------------------------------- /docs/get_started.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: Get started with TileDB Cloud for Python 3 | --- 4 | 5 | This is a starting guide for the TileDB-Cloud-Py client.
6 | 7 | # Login 8 | 9 | To login programmatically you will need either 10 | 11 | - Username and Password [of your TileDB account](https://cloud.tiledb.com/). 12 | - Or an API Token [generated from your TileDB account](https://docs.tiledb.com/cloud/how-to/account/create-api-tokens). 13 | 14 | ## Username and Password method 15 | 16 | ```python 17 | import tiledb.cloud 18 | 19 | tiledb.cloud.login( 20 | host=, 21 | username=, 22 | password= 23 | ) 24 | ``` 25 | 26 | ## Token method 27 | 28 | ```python 29 | import tiledb.cloud 30 | 31 | tiledb.cloud.login( 32 | host=, 33 | token= 34 | ) 35 | ``` 36 | -------------------------------------------------------------------------------- /docs/index.qmd: -------------------------------------------------------------------------------- 1 | # Cloud-Py 2 | 3 | Welcome to TileDB's Cloud [Python client](https://github.com/TileDB-Inc/TileDB-Cloud-Py/).
4 | This client offers programmatic access to [TileDB Cloud](https://docs.tiledb.com/cloud). 5 | 6 | # Installation 7 | 8 | You can install the Cloud-Py SDK client as follows: 9 | 10 | ```python 11 | pip install tiledb-cloud 12 | ``` 13 | 14 | While the preferred method of running code samples and notebooks in this section is directly within TileDB Cloud (as all dependencies are installed for you), you can run most of the code samples and notebooks in this section locally. To run these code samples and notebooks locally, install the following dependencies: 15 | 16 | ```python 17 | pip install ipykernel jupyterlab graphviz 18 | pip install tiledb-cloud[all] 19 | ``` 20 | 21 | For Life Science capabilities: 22 | 23 | ```python 24 | pip install tiledb-cloud[life-sciences] 25 | ``` 26 | -------------------------------------------------------------------------------- /docs/t_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/docs/t_favicon.png -------------------------------------------------------------------------------- /generator/openapi_overrides/api_client.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``api_client`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.api_client import * # noqa: F401,F403 4 | 5 | _ApiClientCls = ApiClient # noqa: F405 6 | 7 | 8 | def ApiClient(*args, **kwargs) -> _ApiClientCls: 9 | """Returns an ``ApiClient`` suitable for the v2 API models.""" 10 | from . import models 11 | 12 | return _ApiClientCls(*args, **kwargs, _tdb_models_module=models) 13 | -------------------------------------------------------------------------------- /generator/openapi_overrides/configuration.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``configuration`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.configuration import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /generator/openapi_overrides/exceptions.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``exceptions`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.exceptions import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /generator/openapi_overrides/rest.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``rest`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.rest import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | # Minimal setup.py to enable editable install (pip install -e .). 2 | 3 | import setuptools 4 | 5 | setuptools.setup() 6 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/__init__.py: -------------------------------------------------------------------------------- 1 | """Common utility modules used across multiple parts of TileDB Cloud. 2 | 3 | This is intended for internal consumption only. 4 | """ 5 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/_array_backed.py: -------------------------------------------------------------------------------- 1 | """Minimal replacement for ``pandas._libs.arrays``.""" 2 | 3 | from pandas.core.arrays import _mixins 4 | 5 | NDArrayBacked = _mixins.NDArrayBackedExtensionArray 6 | 7 | 8 | # Based on generated Cython code. 9 | # https://github.com/cython/cython/blob/0.29.33/Cython/Compiler/ParseTreeTransforms.py#L1713-L1722 10 | def __pyx_unpickle_NDArrayBacked(typ, checksum, state): 11 | if checksum not in (0xD555CB8, 0x4F1061F, 0xB63B53E): 12 | raise ValueError( 13 | f"unknown NDArrayBacked pickle checksum {checksum:08x};" 14 | " this version of TileDB Cloud is not compatible" 15 | " with this Pandas pickle data" 16 | ) 17 | result = NDArrayBacked.__new__(typ) # type: ignore[var-annotated] 18 | if state is not None: 19 | # This is equivalent to the Cython code that was originally generated. 20 | result.__setstate__(state) 21 | return result 22 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/.openapi-generator-ignore: -------------------------------------------------------------------------------- 1 | 2 | docs/* 3 | test/ 4 | test/* 5 | git_push.sh 6 | tox.ini 7 | test-requirements.txt 8 | setup.py 9 | .gitignore 10 | .travis.yml 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 2 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/api/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # flake8: noqa 4 | 5 | # import apis into api package 6 | from tiledb.cloud._common.api_v2.api.array_api import ArrayApi 7 | from tiledb.cloud._common.api_v2.api.files_api import FilesApi 8 | from tiledb.cloud._common.api_v2.api.groups_api import GroupsApi 9 | from tiledb.cloud._common.api_v2.api.notebooks_api import NotebooksApi 10 | from tiledb.cloud._common.api_v2.api.organization_api import OrganizationApi 11 | from tiledb.cloud._common.api_v2.api.query_api import QueryApi 12 | from tiledb.cloud._common.api_v2.api.user_api import UserApi 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/api_client.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``api_client`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.api_client import * # noqa: F401,F403 4 | 5 | _ApiClientCls = ApiClient # noqa: F405 6 | 7 | 8 | def ApiClient(*args, **kwargs) -> _ApiClientCls: 9 | """Returns an ``ApiClient`` suitable for the v2 API models.""" 10 | from . import models 11 | 12 | return _ApiClientCls(*args, **kwargs, _tdb_models_module=models) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/configuration.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``configuration`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.configuration import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AWSCredential.md: -------------------------------------------------------------------------------- 1 | # AWSCredential 2 | 3 | Credential information to access Amazon Web Services 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | ------- | --------------------------------------------------------- | ---------- | 9 | | **access_key_id** | **str** | The ID of the access key | [optional] | 10 | | **secret_access_key** | **str** | The access key's secret. Never returned in responses. | [optional] | 11 | | **endpoint** | **str** | The endpoint used for this credential | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AWSRole.md: -------------------------------------------------------------------------------- 1 | # AWSRole 2 | 3 | Role information to access Amazon Web Services 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------- | ------- | ----------------------------------- | ---------- | 9 | | **role_arn** | **str** | The role arn used to access | [optional] | 10 | | **external_id** | **str** | The role external id used to access | [optional] | 11 | | **endpoint** | **str** | The endpoint used for this role | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AccessCredentialCredential.md: -------------------------------------------------------------------------------- 1 | # AccessCredentialCredential 2 | 3 | The credential information itself. Exactly one sub-field may be set. The names match those in the CloudProvider enum. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------- | --------------------------------------------------------------------- | ----------- | ---------- | 9 | | **aws** | [**AWSCredential**](AWSCredential.md) | | [optional] | 10 | | **azure** | [**AzureCredential**](AzureCredential.md) | | [optional] | 11 | | **gcp** | [**GCPInteroperabilityCredential**](GCPInteroperabilityCredential.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AccessCredentialRole.md: -------------------------------------------------------------------------------- 1 | # AccessCredentialRole 2 | 3 | The role information itself. Exactly one sub-field may be set. The names match those in the CloudProvider enum. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------- | ------------------------- | ----------- | ---------- | 9 | | **aws** | [**AWSRole**](AWSRole.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AccessCredentialToken.md: -------------------------------------------------------------------------------- 1 | # AccessCredentialToken 2 | 3 | The token information itself. Exactly one sub-field may be set. The names match those in the CloudProvider enum. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------- | --------------------------------------------------- | ----------- | ---------- | 9 | | **azure** | [**AzureToken**](AzureToken.md) | | [optional] | 10 | | **gcp** | [**GCPServiceAccountKey**](GCPServiceAccountKey.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AccessCredentialType.md: -------------------------------------------------------------------------------- 1 | # AccessCredentialType 2 | 3 | The types of an access credential 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AccessCredentialsData.md: -------------------------------------------------------------------------------- 1 | # AccessCredentialsData 2 | 3 | Object including credentials and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ------------------------------------------------- | ------------------- | ---------- | 9 | | **credentials** | [**list[AccessCredential]**](AccessCredential.md) | List of credentials | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ActivityEventType.md: -------------------------------------------------------------------------------- 1 | # ActivityEventType 2 | 3 | Type of activity logged 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArrayActivityLogData.md: -------------------------------------------------------------------------------- 1 | # ArrayActivityLogData 2 | 3 | Object including array tasks and metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ------------------------------------------------- | ---------------------- | ---------- | 9 | | **activitylogs** | [**list[ArrayActivityLog]**](ArrayActivityLog.md) | Array ArrayActivityLog | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArrayFetch.md: -------------------------------------------------------------------------------- 1 | # ArrayFetch 2 | 3 | Model for opening an array v2 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **query_type** | [**Querytype**](Querytype.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArrayMetadata.md: -------------------------------------------------------------------------------- 1 | # ArrayMetadata 2 | 3 | user's TileDB array metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ----------------------------------------------------- | ------------------------ | ---------- | 9 | | **entries** | [**list[ArrayMetadataEntry]**](ArrayMetadataEntry.md) | List of metadata entries | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArrayMetadataEntry.md: -------------------------------------------------------------------------------- 1 | # ArrayMetadataEntry 2 | 3 | key/value pair representing an array metadata map entry 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ------------- | ----------- | ---------- | 9 | | **key** | **str** | | [optional] | 10 | | **type** | **str** | | [optional] | 11 | | **value_num** | **int** | | [optional] | 12 | | **value** | **list[int]** | | [optional] | 13 | | **\_del** | **bool** | | [optional] | 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArraySchemaEntry.md: -------------------------------------------------------------------------------- 1 | # ArraySchemaEntry 2 | 3 | key/value pair representing an array schema map entry 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------- | --------------------------------- | ----------- | ---------- | 9 | | **key** | **str** | | [optional] | 10 | | **value** | [**ArraySchema**](ArraySchema.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArraySchemaMap.md: -------------------------------------------------------------------------------- 1 | # ArraySchemaMap 2 | 3 | array's schemas 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------------------------------------------------- | ----------------------------- | ---------- | 9 | | **entries** | [**list[ArraySchemaEntry]**](ArraySchemaEntry.md) | List of array schemas entries | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/ArrayType.md: -------------------------------------------------------------------------------- 1 | # ArrayType 2 | 3 | TileDB array type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AssetActivityLogAsset.md: -------------------------------------------------------------------------------- 1 | # AssetActivityLogAsset 2 | 3 | The asset details 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------- | --------------------------------------- | ---------- | 9 | | **id** | **str** | The asset ID | [optional] | 10 | | **name** | **str** | The asset name | [optional] | 11 | | **namespace** | **str** | The namespace that the asset belongs to | [optional] | 12 | | **asset_type** | [**AssetType**](AssetType.md) | | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AssetType.md: -------------------------------------------------------------------------------- 1 | # AssetType 2 | 3 | Asset types represented as TileDB arrays 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AttributeBufferSize.md: -------------------------------------------------------------------------------- 1 | # AttributeBufferSize 2 | 3 | object representing buffer size of an attribute 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------- | --------------------------------------- | ----- | 9 | | **attribute** | **str** | name of attribute | 10 | | **offset_bytes** | **int** | buffer size (in bytes) of offset buffer | 11 | | **data_bytes** | **int** | buffer size (in bytes) of data buffer | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AzureCredential.md: -------------------------------------------------------------------------------- 1 | # AzureCredential 2 | 3 | Credential information to access Microsoft Azure. Each supported property is the snake_case version of its name in an Azure Storage connection string. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------- | -------------------------------------------- | ---------- | 9 | | **account_name** | **str** | The name of the Azure account to access | [optional] | 10 | | **account_key** | **str** | The secret key. Never returned in responses. | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/AzureToken.md: -------------------------------------------------------------------------------- 1 | # AzureToken 2 | 3 | Token information to access Azure services 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------- | ------------------------------------- | ---------- | 9 | | **account_name** | **str** | The account name of the configuration | [optional] | 10 | | **sas_token** | **str** | The token to use for this account | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/CloudProvider.md: -------------------------------------------------------------------------------- 1 | # CloudProvider 2 | 3 | A service where data is stored or computations take place. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Datatype.md: -------------------------------------------------------------------------------- 1 | # Datatype 2 | 3 | TileDB data type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/DeleteAndUpdateTileLocation.md: -------------------------------------------------------------------------------- 1 | # DeleteAndUpdateTileLocation 2 | 3 | the location of delete tiles 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | --------- | ----------- | ---------- | 9 | | **uri** | **str** | the uri | [optional] | 10 | | **condition_marker** | **str** | | [optional] | 11 | | **offset** | **float** | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/DimensionTileExtent.md: -------------------------------------------------------------------------------- 1 | # DimensionTileExtent 2 | 3 | Extent of tile 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------- | ----------- | ---------- | 9 | | **int8** | **int** | | [optional] | 10 | | **uint8** | **int** | | [optional] | 11 | | **int16** | **int** | | [optional] | 12 | | **uint16** | **int** | | [optional] | 13 | | **int32** | **int** | | [optional] | 14 | | **uint32** | **int** | | [optional] | 15 | | **int64** | **int** | | [optional] | 16 | | **uint64** | **int** | | [optional] | 17 | | **float32** | **int** | | [optional] | 18 | | **float64** | **int** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Domain.md: -------------------------------------------------------------------------------- 1 | # Domain 2 | 3 | Domain of array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------------- | ------------------- | ----- | 9 | | **type** | [**Datatype**](Datatype.md) | | 10 | | **tile_order** | [**Layout**](Layout.md) | | 11 | | **cell_order** | [**Layout**](Layout.md) | | 12 | | **dimensions** | [**list[Dimension]**](Dimension.md) | Array of dimensions | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/DomainArray.md: -------------------------------------------------------------------------------- 1 | # DomainArray 2 | 3 | Domain object for an array of each type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | --------------- | ----------- | ---------- | 9 | | **int8** | **list[int]** | | [optional] | 10 | | **uint8** | **list[int]** | | [optional] | 11 | | **int16** | **list[int]** | | [optional] | 12 | | **uint16** | **list[int]** | | [optional] | 13 | | **int32** | **list[int]** | | [optional] | 14 | | **uint32** | **list[int]** | | [optional] | 15 | | **int64** | **list[int]** | | [optional] | 16 | | **uint64** | **list[int]** | | [optional] | 17 | | **float32** | **list[float]** | | [optional] | 18 | | **float64** | **list[float]** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Error.md: -------------------------------------------------------------------------------- 1 | # Error 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | -------------- | ------- | ----------- | ---------- | 7 | | **code** | **int** | | [optional] | 8 | | **message** | **str** | | [optional] | 9 | | **request_id** | **str** | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/FileUploaded.md: -------------------------------------------------------------------------------- 1 | # FileUploaded 2 | 3 | Uploaded file name and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ---------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | | **file_name** | **str** | name of the file uploaded | [optional] | 11 | | **id** | **str** | unique ID of the uploaded file | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Filter.md: -------------------------------------------------------------------------------- 1 | # Filter 2 | 3 | Filter 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------------- | ------------------------------------------- | ----------- | ---------- | 9 | | **type** | [**FilterType**](FilterType.md) | | 10 | | **float_scale_config** | [**FloatScaleConfig**](FloatScaleConfig.md) | | [optional] | 11 | | **data** | [**FilterData**](FilterData.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/FilterData.md: -------------------------------------------------------------------------------- 1 | # FilterData 2 | 3 | Filter data 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------------- | ----------- | ---------- | 9 | | **text** | **str** | | [optional] | 10 | | **bytes** | **list[int]** | | [optional] | 11 | | **int8** | **int** | | [optional] | 12 | | **uint8** | **int** | | [optional] | 13 | | **int16** | **int** | | [optional] | 14 | | **uint16** | **int** | | [optional] | 15 | | **int32** | **int** | | [optional] | 16 | | **uint32** | **int** | | [optional] | 17 | | **int64** | **int** | | [optional] | 18 | | **uint64** | **int** | | [optional] | 19 | | **float32** | **int** | | [optional] | 20 | | **float64** | **int** | | [optional] | 21 | 22 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 23 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/FilterPipeline.md: -------------------------------------------------------------------------------- 1 | # FilterPipeline 2 | 3 | One or more filters to apply 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ----------------------------- | ----------- | ---------- | 9 | | **filters** | [**list[Filter]**](Filter.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/FilterType.md: -------------------------------------------------------------------------------- 1 | # FilterType 2 | 3 | TileDB filter types 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/FloatScaleConfig.md: -------------------------------------------------------------------------------- 1 | # FloatScaleConfig 2 | 3 | FloatScaleConfig 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ----------- | ---------- | 9 | | **scale** | **int** | | [optional] | 10 | | **offset** | **int** | | [optional] | 11 | | **byte_width** | **int** | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GCPInteroperabilityCredential.md: -------------------------------------------------------------------------------- 1 | # GCPInteroperabilityCredential 2 | 3 | Credential information to access Google Cloud. using well knows key/secret pair to access storage. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | ------- | --------------------------------------------------------- | ---------- | 9 | | **access_key_id** | **str** | The ID of the access key | [optional] | 10 | | **secret_access_key** | **str** | The access key's secret. Never returned in responses. | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupActivityEventType.md: -------------------------------------------------------------------------------- 1 | # GroupActivityEventType 2 | 3 | Event type of Group activity 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupActivityResponse.md: -------------------------------------------------------------------------------- 1 | # GroupActivityResponse 2 | 3 | Object containing activity logs of a group and its content (arrays and subgroups) along with pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ------------------------------------------------- | ----------------------------------------------------------------- | ---------- | 9 | | **activity_logs** | [**list[AssetActivityLog]**](AssetActivityLog.md) | Array of activity logs, including both group and array activities | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentActivity.md: -------------------------------------------------------------------------------- 1 | # GroupContentActivity 2 | 3 | Object containing activity of an asset of a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ----------------------------------------------------- | ----------- | ---------- | 9 | | **asset** | [**AssetActivityLogAsset**](AssetActivityLogAsset.md) | | [optional] | 10 | | **activity_log** | [**ArrayActivityLog**](ArrayActivityLog.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentActivityResponse.md: -------------------------------------------------------------------------------- 1 | # GroupContentActivityResponse 2 | 3 | Object containing activity logs of group content along with the pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | --------------------------------------------------------- | --------------------------------- | ---------- | 9 | | **activity** | [**list[GroupContentActivity]**](GroupContentActivity.md) | Activity of a group's content | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentsChangesRequest.md: -------------------------------------------------------------------------------- 1 | # GroupContentsChangesRequest 2 | 3 | Updates the contents group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ----------------------------------------------------------------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **group_changes** | [**GroupContentsChangesRequestGroupChanges**](GroupContentsChangesRequestGroupChanges.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentsChangesRequestGroupChanges.md: -------------------------------------------------------------------------------- 1 | # GroupContentsChangesRequestGroupChanges 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------------------- | --------------------------------------- | ------------------------------------ | ---------- | 7 | | **members_to_remove** | **list[str]** | optional series of members to remove | [optional] | 8 | | **members_to_add** | [**list[GroupMember]**](GroupMember.md) | optional series of members to add | [optional] | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentsRetrievalRequest.md: -------------------------------------------------------------------------------- 1 | # GroupContentsRetrievalRequest 2 | 3 | Request the contents of a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupContentsRetrievalResponse.md: -------------------------------------------------------------------------------- 1 | # GroupContentsRetrievalResponse 2 | 3 | Object including a page of members of a group and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------ | --------------------------------------- | -------------- | ---------- | 9 | | **members** | [**list[GroupMember]**](GroupMember.md) | Groups members | [optional] | 10 | | **metadata** | [**Metadata**](Metadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupCreationRequest.md: -------------------------------------------------------------------------------- 1 | # GroupCreationRequest 2 | 3 | information for creating a new group with the passed configuration 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | --------------------------------------------------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **group_details** | [**GroupCreationRequestGroupDetails**](GroupCreationRequestGroupDetails.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupCreationResponse.md: -------------------------------------------------------------------------------- 1 | # GroupCreationResponse 2 | 3 | Information of the created group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ----------------------------- | ---------- | 9 | | **id** | **str** | The UUID of the created Group | [optional] | 10 | | **name** | **str** | The name of the created Group | [optional] | 11 | | **tiledb_uri** | **str** | TileDB URI for access | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupMember.md: -------------------------------------------------------------------------------- 1 | # GroupMember 2 | 3 | A groups member, array or another groups, to add or remove from an existing group. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------- | ----------------------------------------- | ---------------------- | ---------- | 9 | | **name** | **str** | The name of the member | [optional] | 10 | | **uri** | **str** | The uri of the member | [optional] | 11 | | **type** | [**GroupMemberType**](GroupMemberType.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupMemberAssetType.md: -------------------------------------------------------------------------------- 1 | # GroupMemberAssetType 2 | 3 | Specific file types of group members 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupMemberType.md: -------------------------------------------------------------------------------- 1 | # GroupMemberType 2 | 3 | File types that can be included in groups 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupMetadataRetrievalRequest.md: -------------------------------------------------------------------------------- 1 | # GroupMetadataRetrievalRequest 2 | 3 | Retrieves the metadata of a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupMetadataUpdateRequest.md: -------------------------------------------------------------------------------- 1 | # GroupMetadataUpdateRequest 2 | 3 | Updates the metadata of a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------ | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **metadata** | [**Metadata**](Metadata.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/GroupRegistrationRequest.md: -------------------------------------------------------------------------------- 1 | # GroupRegistrationRequest 2 | 3 | information for creating a new group with the passed configuration 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ----------------------------------------------------------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **group_details** | [**GroupRegistrationRequestGroupDetails**](GroupRegistrationRequestGroupDetails.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Layout.md: -------------------------------------------------------------------------------- 1 | # Layout 2 | 3 | Layout of array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Metadata.md: -------------------------------------------------------------------------------- 1 | # Metadata 2 | 3 | user's TileDB metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------------------------------------------- | ------------------------ | ---------- | 9 | | **entries** | [**list[MetadataEntry]**](MetadataEntry.md) | List of metadata entries | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/MetadataEntry.md: -------------------------------------------------------------------------------- 1 | # MetadataEntry 2 | 3 | key/value pair representing a group metadata map entry 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ----------------- | ----------- | ---------- | 9 | | **key** | **str** | | [optional] | 10 | | **type** | **str** | | [optional] | 11 | | **value_num** | **int** | | [optional] | 12 | | **value** | [**object**](.md) | | [optional] | 13 | | **\_del** | **bool** | | [optional] | 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/NonEmptyDomain.md: -------------------------------------------------------------------------------- 1 | # NonEmptyDomain 2 | 3 | object representing a non-empty domain 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | --------------------------------- | ------------------------------------------------ | ---------- | 9 | | **non_empty_domain** | [**DomainArray**](DomainArray.md) | | 10 | | **is_empty** | **bool** | Is non-empty domain really empty? | 11 | | **sizes** | **list[int]** | Number of elements in DomainArray for var length | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/NonEmptyDomainList.md: -------------------------------------------------------------------------------- 1 | # NonEmptyDomainList 2 | 3 | object containing non empty domains 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | --------------------------------------------- | ---------------------------- | ---------- | 9 | | **non_empty_domains** | [**list[NonEmptyDomain]**](NonEmptyDomain.md) | Array's non empty domain | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/NotebookUploaded.md: -------------------------------------------------------------------------------- 1 | # NotebookUploaded 2 | 3 | Uploaded notebook name and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | -------------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB Notebook | [optional] | 10 | | **name** | **str** | name of the notebook uploaded | [optional] | 11 | | **id** | **str** | unique ID of the uploaded notebook | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/PaginationMetadata.md: -------------------------------------------------------------------------------- 1 | # PaginationMetadata 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------------- | --------- | -------------------------------------------------------------------------- | ---------- | 7 | | **page** | **float** | pagination offset. Use it to skip the first ((page - 1) \* per_page) items | [optional] | 8 | | **per_page** | **float** | pagination limit (page size) | [optional] | 9 | | **total_pages** | **float** | number of total pages with current limit | [optional] | 10 | | **total_items** | **float** | number of total available items | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/QueryReader.md: -------------------------------------------------------------------------------- 1 | # QueryReader 2 | 3 | Read struct (can't be called reader due to class name conflict) 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------- | ----------- | ---------- | 9 | | **layout** | [**Layout**](Layout.md) | | [optional] | 10 | | **subarray** | [**Subarray**](Subarray.md) | | [optional] | 11 | | **read_state** | [**ReadState**](ReadState.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Querystatus.md: -------------------------------------------------------------------------------- 1 | # Querystatus 2 | 3 | Status of query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Querytype.md: -------------------------------------------------------------------------------- 1 | # Querytype 2 | 3 | Type of query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Subarray.md: -------------------------------------------------------------------------------- 1 | # Subarray 2 | 3 | A Subarray 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | --------------------------------------------- | ------------------------------------ | ---------- | 9 | | **layout** | [**Layout**](Layout.md) | | [optional] | 10 | | **ranges** | [**list[SubarrayRanges]**](SubarrayRanges.md) | List of 1D ranges, one per dimension | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/SubarrayPartitionerCurrent.md: -------------------------------------------------------------------------------- 1 | # SubarrayPartitionerCurrent 2 | 3 | The current partition info 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | --------------------------- | ----------------------------- | ---------- | 9 | | **subarray** | [**Subarray**](Subarray.md) | | [optional] | 10 | | **start** | **int** | PartitionInfo start | [optional] | 11 | | **end** | **int** | PartitionInfo end | [optional] | 12 | | **split_multi_range** | **bool** | PartitionInfo splitMultiRange | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/SubarrayPartitionerState.md: -------------------------------------------------------------------------------- 1 | # SubarrayPartitionerState 2 | 3 | The state information for the remaining partitions to be produced 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | --------------------------------- | ----------------- | ---------- | 9 | | **start** | **int** | State start | [optional] | 10 | | **end** | **int** | State end | [optional] | 11 | | **single_range** | [**list[Subarray]**](Subarray.md) | State singleRange | [optional] | 12 | | **multi_range** | [**list[Subarray]**](Subarray.md) | State multiRange | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/SubarrayRanges.md: -------------------------------------------------------------------------------- 1 | # SubarrayRanges 2 | 3 | A set of 1D ranges for a subarray 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------------- | --------------------------- | -------------------------------------- | ---------- | 9 | | **type** | [**Datatype**](Datatype.md) | | [optional] | 10 | | **has_default_range** | **bool** | True if the range is the default range | [optional] | 11 | | **buffer** | **list[int]** | The bytes of the ranges | [optional] | 12 | | **buffer_sizes** | **list[int]** | The list of sizes per range | [optional] | 13 | | **buffer_start_sizes** | **list[int]** | The list of start sizes per range | [optional] | 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/TileDBConfig.md: -------------------------------------------------------------------------------- 1 | # TileDBConfig 2 | 3 | TileDB config used for interaction with the embedded library 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------------------------------------------------------- | ----------- | ---------- | 9 | | **entries** | [**list[TileDBConfigEntries]**](TileDBConfigEntries.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/TileDBConfigEntries.md: -------------------------------------------------------------------------------- 1 | # TileDBConfigEntries 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------- | ------- | ----------- | ---------- | 7 | | **key** | **str** | | [optional] | 8 | | **value** | **str** | | [optional] | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/TimestampedURI.md: -------------------------------------------------------------------------------- 1 | # TimestampedURI 2 | 3 | the timestamped filtered array metadata URIs, after removing the ones that need to be vacuumed and those that do not fall within 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------- | --------- | ------------------ | ---------- | 9 | | **uri** | **str** | the uri | [optional] | 10 | | **timestamp_start** | **float** | start of timestamp | [optional] | 11 | | **timestamp_end** | **float** | end of timestamp | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/docs/Writer.md: -------------------------------------------------------------------------------- 1 | # Writer 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | -------------------- | --------------------------------- | ----------- | ---------- | 7 | | **check_coord_dups** | **bool** | | [optional] | 8 | | **check_coord_oob** | **bool** | | [optional] | 9 | | **dedup_coords** | **bool** | | [optional] | 10 | | **subarray_ranges** | [**Subarray**](Subarray.md) | | [optional] | 11 | | **subarray** | [**DomainArray**](DomainArray.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/exceptions.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``exceptions`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.exceptions import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/openapi_config-api: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "projectName": "tiledb-cloud", 4 | "packageName": "_common.api_v2", 5 | "documentationPage": false, 6 | "generateSourceCodeOnly": true 7 | } 8 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/api_v2/rest.py: -------------------------------------------------------------------------------- 1 | """Re-exporting the ``rest`` namespace.""" 2 | 3 | from tiledb.cloud.rest_api.rest import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_common/json_safe.py: -------------------------------------------------------------------------------- 1 | from typing import Generic, TypeVar 2 | 3 | import attrs 4 | 5 | _T_co = TypeVar("_T_co", covariant=True) 6 | 7 | 8 | # This really should be a `slots` class, but setting `slots=True` breaks things 9 | # in python 3.6. 10 | @attrs.define(frozen=True, slots=False) 11 | class Value(Generic[_T_co]): 12 | """Sentinel for a value that is known to be JSON-serializable. 13 | 14 | In cases where you know we're generating JSON-safe values where the 15 | generated API client does not need to recurse into this to look for more 16 | values that need to be converted into JSON, you can wrap the variable 17 | you're generating into this. 18 | """ 19 | 20 | value: _T_co 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_results/__init__.py: -------------------------------------------------------------------------------- 1 | """Things that deal with UDF results that do not depend on the rest of DAGs. 2 | 3 | Clients should almost never have to deal with anything in this module or its 4 | submodules. 5 | """ 6 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/__init__.py -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/__init__.py: -------------------------------------------------------------------------------- 1 | from .cloudpickle import * # noqa 2 | from .cloudpickle_fast import CloudPickler, dumps, dump # noqa 3 | 4 | # Conform to the convention used by python serialization libraries, which 5 | # expose their Pickler subclass at top-level under the "Pickler" name. 6 | Pickler = CloudPickler 7 | 8 | __version__ = '2.2.1' 9 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/compat.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | 4 | if sys.version_info < (3, 8): 5 | try: 6 | import pickle5 as pickle # noqa: F401 7 | from pickle5 import Pickler # noqa: F401 8 | except ImportError: 9 | import pickle # noqa: F401 10 | 11 | # Use the Python pickler for old CPython versions 12 | from pickle import _Pickler as Pickler # noqa: F401 13 | else: 14 | import pickle # noqa: F401 15 | 16 | # Pickler will the C implementation in CPython and the Python 17 | # implementation in PyPy 18 | from pickle import Pickler # noqa: F401 19 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/__init__.py -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/cloudpickle_testpkg/setup.py: -------------------------------------------------------------------------------- 1 | from distutils.core import setup 2 | 3 | 4 | dist = setup( 5 | name='cloudpickle_testpkg', 6 | version='0.0.0', 7 | description='Package used only for cloudpickle testing purposes', 8 | author='Cloudpipe', 9 | author_email='cloudpipe@googlegroups.com', 10 | license='BSD 3-Clause License', 11 | packages=['_cloudpickle_testpkg'], 12 | python_requires='>=3.5', 13 | ) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/mock_local_folder/mod.py: -------------------------------------------------------------------------------- 1 | """ 2 | In the distributed computing setting, this file plays the role of a "local 3 | development" file, e.g. a file that is importable locally, but unimportable in 4 | remote workers. Constructs defined in this file and usually pickled by 5 | reference should instead flagged to cloudpickle for pickling by value: this is 6 | done using the register_pickle_by_value api exposed by cloudpickle. 7 | """ 8 | import typing 9 | 10 | 11 | def local_function(): 12 | return "hello from a function importable locally!" 13 | 14 | 15 | class LocalClass: 16 | def method(self): 17 | return "hello from a class importable locally" 18 | 19 | 20 | LocalT = typing.TypeVar("LocalT") 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/mock_local_folder/subfolder/submod.py: -------------------------------------------------------------------------------- 1 | import typing 2 | 3 | 4 | def local_submod_function(): 5 | return "hello from a file located in a locally-importable subfolder!" 6 | 7 | 8 | class LocalSubmodClass: 9 | def method(self): 10 | return "hello from a class located in a locally-importable subfolder!" 11 | 12 | 13 | LocalSubmodT = typing.TypeVar("LocalSubmodT") 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/class_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/class_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/function_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/function_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/nested_function.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/nested_function.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_class.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_class.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_enum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_enum.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_func.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_func.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_module.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_36/simple_module.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/class_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/class_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/function_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/function_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/nested_function.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/nested_function.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_class.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_class.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_enum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_enum.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_func.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_func.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_module.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_37/simple_module.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/class_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/class_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/function_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/function_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/nested_function.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/nested_function.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_class.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_class.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_enum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_enum.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_func.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_func.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_module.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/cpython_38/simple_module.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/class_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/class_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/function_with_type_hints.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/function_with_type_hints.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_class.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_class.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_enum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_enum.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_func.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_func.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_module.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/_vendor/cloudpickle/tests/old_pickles/pypy_36/simple_module.pkl -------------------------------------------------------------------------------- /src/tiledb/cloud/bioimg/__init__.py: -------------------------------------------------------------------------------- 1 | from tiledb.cloud.bioimg.exportation import export 2 | from tiledb.cloud.bioimg.ingestion import ingest 3 | 4 | __all__ = ("ingest", "export") 5 | -------------------------------------------------------------------------------- /src/tiledb/cloud/compute/__init__.py: -------------------------------------------------------------------------------- 1 | from tiledb.cloud.compute.delayed import Delayed 2 | from tiledb.cloud.compute.delayed import DelayedArrayUDF 3 | from tiledb.cloud.compute.delayed import DelayedMultiArrayUDF 4 | from tiledb.cloud.compute.delayed import DelayedSQL 5 | from tiledb.cloud.dag import Status 6 | 7 | __all__ = ( 8 | "Delayed", 9 | "DelayedArrayUDF", 10 | "DelayedMultiArrayUDF", 11 | "DelayedSQL", 12 | "Status", 13 | ) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/dag/__init__.py: -------------------------------------------------------------------------------- 1 | from types import MappingProxyType 2 | 3 | from tiledb.cloud.dag import dag 4 | from tiledb.cloud.dag import mode 5 | from tiledb.cloud.dag import status 6 | 7 | # Globals 8 | MIN_BATCH_RESOURCES = MappingProxyType({"cpu": "1", "memory": "2Gi"}) 9 | 10 | # Re-exports. 11 | Mode = mode.Mode 12 | DAG = dag.DAG 13 | Node = dag.Node 14 | Status = status.Status 15 | list_logs = dag.list_logs 16 | server_logs = dag.server_logs 17 | 18 | 19 | __all__ = ( 20 | "DAG", 21 | "MIN_BATCH_RESOURCES", 22 | "Mode", 23 | "Node", 24 | "Status", 25 | "list_logs", 26 | "server_logs", 27 | ) 28 | -------------------------------------------------------------------------------- /src/tiledb/cloud/dag/mode.py: -------------------------------------------------------------------------------- 1 | import enum 2 | 3 | 4 | class Mode(enum.Enum): 5 | """Mode to run a DAG in""" 6 | 7 | LOCAL = enum.auto() 8 | """Run on local machine (testing purposes)""" 9 | 10 | REALTIME = enum.auto() 11 | """Designed to return results directly to the client (default). 12 | Realtime task graphs are scheduled and executed immediately 13 | and are well suited for fast distributed workloads. 14 | """ 15 | 16 | BATCH = enum.auto() 17 | """ 18 | Designed for large, resource intensive asynchronous workloads. 19 | Batch task graphs are defined, uploaded, and scheduled for execution 20 | and are well suited for ingestion-style workloads. 21 | """ 22 | 23 | def __str__(self): 24 | return self.name.replace("_", " ").title() 25 | -------------------------------------------------------------------------------- /src/tiledb/cloud/dag/status.py: -------------------------------------------------------------------------------- 1 | import enum 2 | 3 | 4 | class Status(enum.Enum): 5 | NOT_STARTED = 1 6 | RUNNING = 2 7 | COMPLETED = 3 8 | FAILED = 4 9 | CANCELLED = 5 10 | PARENT_FAILED = 6 11 | 12 | def __str__(self): 13 | return self.name.replace("_", " ").title() 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/files/__init__.py: -------------------------------------------------------------------------------- 1 | from . import indexing 2 | from . import ingestion 3 | from . import udfs 4 | from . import utils 5 | 6 | upload = utils.upload_file 7 | 8 | __all__ = ( 9 | "indexing", 10 | "ingestion", 11 | "udfs", 12 | "upload", 13 | "utils", 14 | ) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/region/__init__.py: -------------------------------------------------------------------------------- 1 | class AWS: 2 | """ 3 | The AWS cloud regions that are currently supported. 4 | 5 | US_EAST_1 = North America, United States (Virginia) 6 | 7 | US_WEST_2 = North America, United States (Oregon) 8 | 9 | EU_WEST_1 = Europe, Ireland 10 | 11 | EU_WEST_2 = Europe, London 12 | 13 | AP_SOUTHEAST_1 = Asia, Singapore 14 | """ 15 | 16 | US_EAST_1 = "https://us-east-1.aws.api.tiledb.com" 17 | US_WEST_2 = "https://us-west-2.aws.api.tiledb.com" 18 | EU_WEST_1 = "https://eu-west-1.aws.api.tiledb.com" 19 | EU_WEST_2 = "https://eu-west-2.aws.api.tiledb.com" 20 | AP_SOUTHEAST_1 = "https://ap-southeast-1.aws.api.tiledb.com" 21 | 22 | 23 | __all__ = ("AWS",) 24 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/.openapi-generator-ignore: -------------------------------------------------------------------------------- 1 | 2 | docs/* 3 | test/ 4 | test/* 5 | git_push.sh 6 | tox.ini 7 | test-requirements.txt 8 | setup.py 9 | .gitignore 10 | .travis.yml 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 2 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ActivityEventType.md: -------------------------------------------------------------------------------- 1 | # ActivityEventType 2 | 3 | Type of activity logged 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Array.md: -------------------------------------------------------------------------------- 1 | # Array 2 | 3 | Represents an open array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------- | ------------------------------------------------- | ----- | 9 | | **timestamp** | **float** | timestamp (epoch milliseconds) array is opened at | 10 | | **query_type** | [**Querytype**](Querytype.md) | | 11 | | **uri** | **str** | Array uri | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayActions.md: -------------------------------------------------------------------------------- 1 | # ArrayActions 2 | 3 | actions a user can take on an array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayBrowserData.md: -------------------------------------------------------------------------------- 1 | # ArrayBrowserData 2 | 3 | Object including array info and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ----------- | ---------- | 9 | | **arrays** | [**list[ArrayInfo]**](ArrayInfo.md) | Array Info | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayBrowserSidebar.md: -------------------------------------------------------------------------------- 1 | # ArrayBrowserSidebar 2 | 3 | Object for ui array tasks browser page 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------------- | ----------------- | ------------------------------------------------- | ---------- | 9 | | **namespaces** | **list[str]** | list of all unique namespaces to display | [optional] | 10 | | **result_count_for_all** | **int** | A count of \"all\" of category | [optional] | 11 | | **result_count_by_namespace** | [**object**](.md) | A map that includes the result count by namespace | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayConsolidationRequest.md: -------------------------------------------------------------------------------- 1 | # ArrayConsolidationRequest 2 | 3 | Request to consolidate an array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ----------------------------------- | --------------------------------------------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **fragments** | **list[str]** | list of fragments in the array to consolidate | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayEndTimestampData.md: -------------------------------------------------------------------------------- 1 | # ArrayEndTimestampData 2 | 3 | Object including array end_timestamps (list of Unix epoch timestamps in milliseconds) and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ------------------------------------------------------------- | ---------- | 9 | | **end_timestamps** | **list[int]** | List of timestamps expressed in milliseconds since Unix epoch | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayFavorite.md: -------------------------------------------------------------------------------- 1 | # ArrayFavorite 2 | 3 | A user-favorite array item 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | -------------------------- | ---------- | 9 | | **array_uuid** | **str** | unique UUID of the array | [optional] | 10 | | **namespace** | **str** | the namespace of the array | [optional] | 11 | | **name** | **str** | the name of the array | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayFavoritesData.md: -------------------------------------------------------------------------------- 1 | # ArrayFavoritesData 2 | 3 | Object including array favorites and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ------------------- | ---------- | 9 | | **arrays** | [**list[ArrayInfo]**](ArrayInfo.md) | List of array infos | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayMetadata.md: -------------------------------------------------------------------------------- 1 | # ArrayMetadata 2 | 3 | user's TileDB array metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ----------------------------------------------------- | ------------------------ | ---------- | 9 | | **entries** | [**list[ArrayMetadataEntry]**](ArrayMetadataEntry.md) | List of metadata entries | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayMetadataEntry.md: -------------------------------------------------------------------------------- 1 | # ArrayMetadataEntry 2 | 3 | key/value pair representing an array metadata map entry 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ------------- | ----------- | ---------- | 9 | | **key** | **str** | | [optional] | 10 | | **type** | **str** | | [optional] | 11 | | **value_num** | **int** | | [optional] | 12 | | **value** | **list[int]** | | [optional] | 13 | | **\_del** | **bool** | | [optional] | 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArraySample.md: -------------------------------------------------------------------------------- 1 | # ArraySample 2 | 3 | Sample data from array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------- | ----------------- | ----------- | ---------- | 9 | | **data** | [**object**](.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArraySharing.md: -------------------------------------------------------------------------------- 1 | # ArraySharing 2 | 3 | details for sharing a given array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------ | ----------------------------------------- | ------------------------------------------------------------------ | ---------- | 9 | | **actions** | [**list[ArrayActions]**](ArrayActions.md) | List of permitted actions | [optional] | 10 | | **namespace** | **str** | namespace being granted array access can be a user or organization | [optional] | 11 | | **namespace_type** | **str** | details on if the namespace is a organization or user | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayTaskBrowserSidebar.md: -------------------------------------------------------------------------------- 1 | # ArrayTaskBrowserSidebar 2 | 3 | Object for ui array tasks browser page 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------------- | ----------------- | -------------------------------------------------------------------------- | ---------- | 9 | | **organizations** | **list[str]** | list of all unique organizations the user is part of that have array tasks | [optional] | 10 | | **result_count_for_all** | **int** | A count of \"all\" | [optional] | 11 | | **result_count_by_namespace** | [**object**](.md) | A map that includes the result count by namespace | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayTaskData.md: -------------------------------------------------------------------------------- 1 | # ArrayTaskData 2 | 3 | Object including array tasks and metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ----------- | ---------- | 9 | | **array_tasks** | [**list[ArrayTask]**](ArrayTask.md) | Array Tasks | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayTaskLog.md: -------------------------------------------------------------------------------- 1 | # ArrayTaskLog 2 | 3 | Array task stderr/stdout logs 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ------- | --------------------- | ---------- | 9 | | **array_task_id** | **str** | ID of associated task | [optional] | 10 | | **logs** | **str** | logs from array task | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayTaskStatus.md: -------------------------------------------------------------------------------- 1 | # ArrayTaskStatus 2 | 3 | Status of array task 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayTaskType.md: -------------------------------------------------------------------------------- 1 | # ArrayTaskType 2 | 3 | Synchronous Task Type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayType.md: -------------------------------------------------------------------------------- 1 | # ArrayType 2 | 3 | TileDB array type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ArrayVacuumRequest.md: -------------------------------------------------------------------------------- 1 | # ArrayVacuumRequest 2 | 3 | Request to consolidate an array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AssetBackingType.md: -------------------------------------------------------------------------------- 1 | # AssetBackingType 2 | 3 | The technology that an asset is backed by 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AssetListResponse.md: -------------------------------------------------------------------------------- 1 | # AssetListResponse 2 | 3 | Asset associated with a TileDB Cloud account 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | -------------------------------- | ---------- | 9 | | **data** | [**list[AssetInfo]**](AssetInfo.md) | asset information for each asset | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AssetOwnershipLevel.md: -------------------------------------------------------------------------------- 1 | # AssetOwnershipLevel 2 | 3 | The ownership level of the asset 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AssetType.md: -------------------------------------------------------------------------------- 1 | # AssetType 2 | 3 | Asset types represented as TileDB arrays 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AttributeBufferHeader.md: -------------------------------------------------------------------------------- 1 | # AttributeBufferHeader 2 | 3 | Represents an attribute buffer header information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------------------------- | ------- | ------------------------------------------------------------------------------------------ | ----- | 9 | | **name** | **str** | Attribute name | 10 | | **fixed_len_buffer_size_in_bytes** | **int** | Number of bytes in the fixed-length attribute data buffer (offsets for var-len attributes) | 11 | | **var_len_buffer_size_in_bytes** | **int** | Number of bytes in the var-length attribute data buffer | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/AttributeBufferSize.md: -------------------------------------------------------------------------------- 1 | # AttributeBufferSize 2 | 3 | object representing buffer size of an attribute 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------- | --------------------------------------- | ----- | 9 | | **attribute** | **str** | name of attribute | 10 | | **offset_bytes** | **int** | buffer size (in bytes) of offset buffer | 11 | | **data_bytes** | **int** | buffer size (in bytes) of data buffer | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Datatype.md: -------------------------------------------------------------------------------- 1 | # Datatype 2 | 3 | TileDB data type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Dimension.md: -------------------------------------------------------------------------------- 1 | # Dimension 2 | 3 | Dimension of array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | ------------------------------------------------- | ------------------- | ---------- | 9 | | **name** | **str** | Dimension name | [optional] | 10 | | **type** | [**Datatype**](Datatype.md) | | 11 | | **domain** | [**DomainArray**](DomainArray.md) | | 12 | | **null_tile_extent** | **bool** | Is tile extent null | 13 | | **tile_extent** | [**DimensionTileExtent**](DimensionTileExtent.md) | | [optional] | 14 | | **filter_pipeline** | [**FilterPipeline**](FilterPipeline.md) | | [optional] | 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DimensionCoordinate.md: -------------------------------------------------------------------------------- 1 | # DimensionCoordinate 2 | 3 | A single, typed coordinate for a dimension 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | --------- | ----------- | ---------- | 9 | | **int8** | **int** | | [optional] | 10 | | **uint8** | **int** | | [optional] | 11 | | **int16** | **int** | | [optional] | 12 | | **uint16** | **int** | | [optional] | 13 | | **int32** | **int** | | [optional] | 14 | | **uint32** | **int** | | [optional] | 15 | | **int64** | **int** | | [optional] | 16 | | **uint64** | **int** | | [optional] | 17 | | **float32** | **float** | | [optional] | 18 | | **float64** | **float** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DimensionTileExtent.md: -------------------------------------------------------------------------------- 1 | # DimensionTileExtent 2 | 3 | Extent of tile 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------- | ----------- | ---------- | 9 | | **int8** | **int** | | [optional] | 10 | | **uint8** | **int** | | [optional] | 11 | | **int16** | **int** | | [optional] | 12 | | **uint16** | **int** | | [optional] | 13 | | **int32** | **int** | | [optional] | 14 | | **uint32** | **int** | | [optional] | 15 | | **int64** | **int** | | [optional] | 16 | | **uint64** | **int** | | [optional] | 17 | | **float32** | **int** | | [optional] | 18 | | **float64** | **int** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Domain.md: -------------------------------------------------------------------------------- 1 | # Domain 2 | 3 | Domain of array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------------- | ------------------- | ----- | 9 | | **type** | [**Datatype**](Datatype.md) | | 10 | | **tile_order** | [**Layout**](Layout.md) | | 11 | | **cell_order** | [**Layout**](Layout.md) | | 12 | | **dimensions** | [**list[Dimension]**](Dimension.md) | Array of dimensions | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DomainArray.md: -------------------------------------------------------------------------------- 1 | # DomainArray 2 | 3 | Domain object for an array of each type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | --------------- | ----------- | ---------- | 9 | | **int8** | **list[int]** | | [optional] | 10 | | **uint8** | **list[int]** | | [optional] | 11 | | **int16** | **list[int]** | | [optional] | 12 | | **uint16** | **list[int]** | | [optional] | 13 | | **int32** | **list[int]** | | [optional] | 14 | | **uint32** | **list[int]** | | [optional] | 15 | | **int64** | **list[int]** | | [optional] | 16 | | **uint64** | **list[int]** | | [optional] | 17 | | **float32** | **list[float]** | | [optional] | 18 | | **float64** | **list[float]** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DomainCheckResult.md: -------------------------------------------------------------------------------- 1 | # DomainCheckResult 2 | 3 | The record of a check of a single domain's status. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | --------------------------------------------- | ------------------------------------------- | ---------- | 9 | | **time** | **datetime** | The timestamp when the check was performed. | [optional] | 10 | | **status** | [**DomainCheckStatus**](DomainCheckStatus.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DomainCheckStatus.md: -------------------------------------------------------------------------------- 1 | # DomainCheckStatus 2 | 3 | The status of a single check on a domain's status. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/DomainVerificationStatus.md: -------------------------------------------------------------------------------- 1 | # DomainVerificationStatus 2 | 3 | The current status of the claim on the domain. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Enumeration.md: -------------------------------------------------------------------------------- 1 | # Enumeration 2 | 3 | The enumerations of a single attribute 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------------- | ----------- | ---------- | 9 | | **name** | **str** | | [optional] | 10 | | **path_name** | **str** | | [optional] | 11 | | **type** | **str** | | [optional] | 12 | | **cell_val_num** | **int** | | [optional] | 13 | | **ordered** | **bool** | | [optional] | 14 | | **data** | **list[int]** | | [optional] | 15 | | **offsets** | **list[int]** | | [optional] | 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Error.md: -------------------------------------------------------------------------------- 1 | # Error 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | -------------- | ------- | ----------- | ---------- | 7 | | **code** | **int** | | [optional] | 8 | | **message** | **str** | | [optional] | 9 | | **request_id** | **str** | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileCreate.md: -------------------------------------------------------------------------------- 1 | # FileCreate 2 | 3 | Input/Output information required to create a new file 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ---------------------------------- | ---------- | 9 | | **input_uri** | **str** | storage URI of the input file | [optional] | 10 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 11 | | **name** | **str** | name to set for registered file | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileCreated.md: -------------------------------------------------------------------------------- 1 | # FileCreated 2 | 3 | Created file name and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ---------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | | **file_name** | **str** | name of the file created | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileExport.md: -------------------------------------------------------------------------------- 1 | # FileExport 2 | 3 | Output information required to export a file 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ---------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileExported.md: -------------------------------------------------------------------------------- 1 | # FileExported 2 | 3 | Output uri of the exported file 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ------------------------------------ | ---------- | 9 | | **output_uri** | **str** | output location of the exported file | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FilePropertyName.md: -------------------------------------------------------------------------------- 1 | # FilePropertyName 2 | 3 | File property assigned to a specific file (array) 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileType.md: -------------------------------------------------------------------------------- 1 | # FileType 2 | 3 | File types represented as TileDB arrays 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FileUploaded.md: -------------------------------------------------------------------------------- 1 | # FileUploaded 2 | 3 | Uploaded file name and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ---------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | | **file_name** | **str** | name of the file uploaded | [optional] | 11 | | **id** | **str** | unique ID of the uploaded file | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Filter.md: -------------------------------------------------------------------------------- 1 | # Filter 2 | 3 | Filter 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------- | ------------------------------- | ----------- | ---------- | 9 | | **type** | [**FilterType**](FilterType.md) | | 10 | | **data** | [**FilterData**](FilterData.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FilterData.md: -------------------------------------------------------------------------------- 1 | # FilterData 2 | 3 | Filter data 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------- | ----------- | ---------- | 9 | | **int8** | **int** | | [optional] | 10 | | **uint8** | **int** | | [optional] | 11 | | **int16** | **int** | | [optional] | 12 | | **uint16** | **int** | | [optional] | 13 | | **int32** | **int** | | [optional] | 14 | | **uint32** | **int** | | [optional] | 15 | | **int64** | **int** | | [optional] | 16 | | **uint64** | **int** | | [optional] | 17 | | **float32** | **int** | | [optional] | 18 | | **float64** | **int** | | [optional] | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FilterOption.md: -------------------------------------------------------------------------------- 1 | # FilterOption 2 | 3 | TileDB filter option 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FilterPipeline.md: -------------------------------------------------------------------------------- 1 | # FilterPipeline 2 | 3 | One or more filters to apply 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ----------------------------- | ----------- | ---------- | 9 | | **filters** | [**list[Filter]**](Filter.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FilterType.md: -------------------------------------------------------------------------------- 1 | # FilterType 2 | 3 | TileDB filter types 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FragmentInfo.md: -------------------------------------------------------------------------------- 1 | # FragmentInfo 2 | 3 | Fragment info of an array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | ----------------------------------------------------- | ---------------------------------------- | ---------- | 9 | | **array_schema_all** | [**dict(str, ArraySchema)**](ArraySchema.md) | map of all array schemas | [optional] | 10 | | **fragment_info** | [**list[SingleFragmentInfo]**](SingleFragmentInfo.md) | information about fragments in the array | [optional] | 11 | | **to_vacuum** | **list[str]** | the URIs of the fragments to vacuum | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/FragmentInfoRequest.md: -------------------------------------------------------------------------------- 1 | # FragmentInfoRequest 2 | 3 | Fragment info request 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupActions.md: -------------------------------------------------------------------------------- 1 | # GroupActions 2 | 3 | actions a user can take on a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupBrowserData.md: -------------------------------------------------------------------------------- 1 | # GroupBrowserData 2 | 3 | Object including group info and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ----------- | ---------- | 9 | | **groups** | [**list[GroupInfo]**](GroupInfo.md) | Groups Info | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupBrowserFilterData.md: -------------------------------------------------------------------------------- 1 | # GroupBrowserFilterData 2 | 3 | Object with data to fill browser filter 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------- | ----------------------------------- | -------------------------------------------- | ---------- | 9 | | **namespaces** | **list[str]** | list of all unique namespaces to display | [optional] | 10 | | **group_types** | [**list[GroupType]**](GroupType.md) | list of all available group types to display | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupChanges.md: -------------------------------------------------------------------------------- 1 | # GroupChanges 2 | 3 | A request to change the members of a group. Contains assets to add or remove. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | --------------------------------------- | ------------------------------------------------------- | ---------- | 9 | | **add** | [**list[GroupMember]**](GroupMember.md) | the assets, arrays or groups, to add to the group. | [optional] | 10 | | **remove** | [**list[GroupMember]**](GroupMember.md) | the assets, arrays or groups, to remove from the group. | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupContentActivity.md: -------------------------------------------------------------------------------- 1 | # GroupContentActivity 2 | 3 | Object containing activity of an asset of a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------------------------------------------------------------- | ----------- | ---------- | 9 | | **asset** | [**GroupContentActivityAsset**](GroupContentActivityAsset.md) | | [optional] | 10 | | **activity_log** | [**ArrayActivityLog**](ArrayActivityLog.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupContentActivityAsset.md: -------------------------------------------------------------------------------- 1 | # GroupContentActivityAsset 2 | 3 | The asset details 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ----------------------------- | --------------------------------------- | ---------- | 9 | | **id** | **str** | The asset ID | [optional] | 10 | | **name** | **str** | The asset name | [optional] | 11 | | **namespace** | **str** | The namespace that the asset belongs to | [optional] | 12 | | **asset_type** | [**AssetType**](AssetType.md) | | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupContentActivityResponse.md: -------------------------------------------------------------------------------- 1 | # GroupContentActivityResponse 2 | 3 | Object containing activity logs of group content along with the pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | --------------------------------------------------------- | --------------------------------- | ---------- | 9 | | **activity** | [**list[GroupContentActivity]**](GroupContentActivity.md) | Activity of a group's content | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupContents.md: -------------------------------------------------------------------------------- 1 | # GroupContents 2 | 3 | Object including a page of members of a group and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | -------------- | ---------- | 9 | | **entries** | [**list[GroupEntry]**](GroupEntry.md) | Groups members | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupContentsFilterData.md: -------------------------------------------------------------------------------- 1 | # GroupContentsFilterData 2 | 3 | Object with data to fill contents filter 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------------- | ---------------------------------------- | ---------- | 9 | | **namespaces** | **list[str]** | list of all unique namespaces to display | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupEntry.md: -------------------------------------------------------------------------------- 1 | # GroupEntry 2 | 3 | Object describing a single member of a group, which can be an array or a group 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ----------------------------- | ---------------------------------- | --------------------- | 9 | | **member_id** | **str** | The unique member id for the entry | [optional] [readonly] | 10 | | **group** | [**GroupInfo**](GroupInfo.md) | | [optional] | 11 | | **array** | [**ArrayInfo**](ArrayInfo.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupMember.md: -------------------------------------------------------------------------------- 1 | # GroupMember 2 | 3 | A groups member, array or another groups, to add or remove from an existing group. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------- | ----------------------------------------- | ---------------------------- | ---------- | 9 | | **namespace** | **str** | The namespace of the asset. | [optional] | 10 | | **name** | **str** | The name or id of the asset. | [optional] | 11 | | **member_type** | [**GroupMemberType**](GroupMemberType.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupMemberAssetType.md: -------------------------------------------------------------------------------- 1 | # GroupMemberAssetType 2 | 3 | Specific file types of group members 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupMemberType.md: -------------------------------------------------------------------------------- 1 | # GroupMemberType 2 | 3 | File types that can be included in groups 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupSharingRequest.md: -------------------------------------------------------------------------------- 1 | # GroupSharingRequest 2 | 3 | a request to share a group and all the contents with a namespace 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ----------------------------------------- | ------------------------------------------------------------------ | ---------- | 9 | | **group_actions** | [**list[GroupActions]**](GroupActions.md) | List of permitted actions for the group and all subgroups | [optional] | 10 | | **array_actions** | [**list[ArrayActions]**](ArrayActions.md) | List of permitted actions for all the subarrays of the group | [optional] | 11 | | **namespace** | **str** | namespace being granted group access can be a user or organization | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupType.md: -------------------------------------------------------------------------------- 1 | # GroupType 2 | 3 | Group type is a hint for the groups contents and TileDB Cloud may use a specialized viewer for each type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/GroupTypeMetadataKey.md: -------------------------------------------------------------------------------- 1 | # GroupTypeMetadataKey 2 | 3 | A group type is stored in the group metadata using this key 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InlineObject.md: -------------------------------------------------------------------------------- 1 | # InlineObject 2 | 3 | Password to update 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------ | ------- | ----------- | ---------- | 9 | | **password** | **str** | password | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InlineObject1.md: -------------------------------------------------------------------------------- 1 | # InlineObject1 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | -------------- | ------------- | ----------- | ---------- | 7 | | **namespaces** | **list[str]** | | [optional] | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InlineResponse200.md: -------------------------------------------------------------------------------- 1 | # InlineResponse200 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------- | ------- | --------------------------- | ---------- | 7 | | **stats** | **str** | string of stats from tiledb | [optional] | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationArrayShareEmail.md: -------------------------------------------------------------------------------- 1 | # InvitationArrayShareEmail 2 | 3 | Encapsulates information regarding inviting people using email to share array, same permissions for all invitees 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ----------------------------------------- | ------------------------- | ----- | 9 | | **actions** | [**list[ArrayActions]**](ArrayActions.md) | List of permitted actions | 10 | | **invitee_email** | **list[str]** | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationData.md: -------------------------------------------------------------------------------- 1 | # InvitationData 2 | 3 | Object including invitations and metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ------------------- | ---------- | 9 | | **invitations** | [**list[Invitation]**](Invitation.md) | List of invitations | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationFailedRecipients.md: -------------------------------------------------------------------------------- 1 | # InvitationFailedRecipients 2 | 3 | Encapsulates information regarding the failed invitation recipients 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | ------------- | ----------- | ----- | 9 | | **failed_recipients** | **list[str]** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationGroupShareEmail.md: -------------------------------------------------------------------------------- 1 | # InvitationGroupShareEmail 2 | 3 | Encapsulates information regarding inviting people using email to share group, same permissions for all invitees 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------------- | ----------------------------------------- | ------------------------------- | ----- | 9 | | **array_actions** | [**list[ArrayActions]**](ArrayActions.md) | List of permitted array actions | 10 | | **group_actions** | [**list[GroupActions]**](GroupActions.md) | List of permitted group actions | 11 | | **invitee_email_or_name** | **list[str]** | | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationOrganizationJoinEmail.md: -------------------------------------------------------------------------------- 1 | # InvitationOrganizationJoinEmail 2 | 3 | Encapsulates information regarding inviting people using email to join organization, same permissions for all invitees 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | ------------------------------------------------- | ------------------------- | ---------- | 9 | | **actions** | [**list[NamespaceActions]**](NamespaceActions.md) | List of permitted actions | [optional] | 10 | | **organization_role** | [**OrganizationRoles**](OrganizationRoles.md) | | 11 | | **invitee_email** | **list[str]** | | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationStatus.md: -------------------------------------------------------------------------------- 1 | # InvitationStatus 2 | 3 | List of values that InvitationStatus can take 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/InvitationType.md: -------------------------------------------------------------------------------- 1 | # InvitationType 2 | 3 | List of values that InvitationType can take 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Layout.md: -------------------------------------------------------------------------------- 1 | # Layout 2 | 3 | Layout of array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/LoadArraySchemaRequest.md: -------------------------------------------------------------------------------- 1 | # LoadArraySchemaRequest 2 | 3 | Request to load an array schema 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/LoadArraySchemaResponse.md: -------------------------------------------------------------------------------- 1 | # LoadArraySchemaResponse 2 | 3 | Contains the latest schema and all schemas for the opened array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | -------------------------------------------- | ------------------------ | ---------- | 9 | | **latest_array_schema** | [**ArraySchema**](ArraySchema.md) | | [optional] | 10 | | **all_array_schemas** | [**dict(str, ArraySchema)**](ArraySchema.md) | map of all array schemas | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/LoadEnumerationsRequest.md: -------------------------------------------------------------------------------- 1 | # LoadEnumerationsRequest 2 | 3 | Request to return enumerations for attributes 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ----------------------------------- | ----------- | ---------- | 9 | | **config** | [**TileDBConfig**](TileDBConfig.md) | | [optional] | 10 | | **enumerations** | **list[str]** | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/LoadEnumerationsResponse.md: -------------------------------------------------------------------------------- 1 | # LoadEnumerationsResponse 2 | 3 | Contains the enumerations of the array's attributes 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | --------------------------------------- | ----------- | ---------- | 9 | | **enumerations** | [**list[Enumeration]**](Enumeration.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/MLModelFavorite.md: -------------------------------------------------------------------------------- 1 | # MLModelFavorite 2 | 3 | A user-favorite MLModel item 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------- | ---------------------------- | ---------- | 9 | | **mlmodel_uuid** | **str** | unique UUID of the MLModel | [optional] | 10 | | **namespace** | **str** | the namespace of the MLModel | [optional] | 11 | | **name** | **str** | the name of the MLModel | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/MLModelFavoritesData.md: -------------------------------------------------------------------------------- 1 | # MLModelFavoritesData 2 | 3 | Object including MLModel favorites and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | --------------------- | ---------- | 9 | | **mlmodels** | [**list[ArrayInfo]**](ArrayInfo.md) | List of MLModel infos | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/MaxBufferSizes.md: -------------------------------------------------------------------------------- 1 | # MaxBufferSizes 2 | 3 | a list of max buffer sizes, one per attribute 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | ------------------------------------------------------- | ----------- | ---------- | 9 | | **max_buffer_sizes** | [**list[AttributeBufferSize]**](AttributeBufferSize.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/MetadataStringified.md: -------------------------------------------------------------------------------- 1 | # MetadataStringified 2 | 3 | The user's TileDB metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ----------------------------------------------------------------- | ------------------------ | ---------- | 9 | | **entries** | [**list[MetadataStringifiedEntry]**](MetadataStringifiedEntry.md) | List of metadata entries | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/MetadataStringifiedEntry.md: -------------------------------------------------------------------------------- 1 | # MetadataStringifiedEntry 2 | 3 | key/value pair representing an asset metadata map entry 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------- | ------- | ------------------ | ---------- | 9 | | **key** | **str** | The metadata key | [optional] | 10 | | **value** | **str** | The metadata value | [optional] | 11 | | **type** | **str** | The metadata type | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NamespaceActions.md: -------------------------------------------------------------------------------- 1 | # NamespaceActions 2 | 3 | actions a user can take on an organization 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NonEmptyDomain.md: -------------------------------------------------------------------------------- 1 | # NonEmptyDomain 2 | 3 | object representing a non-empty domain 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | --------------------------------- | --------------------------------- | ----- | 9 | | **non_empty_domain** | [**DomainArray**](DomainArray.md) | | 10 | | **is_empty** | **bool** | Is non-empty domain really empty? | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NotebookCopied.md: -------------------------------------------------------------------------------- 1 | # NotebookCopied 2 | 3 | Copied notebook uri and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | -------------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB Notebook | [optional] | 10 | | **name** | **str** | name of the notebook created | [optional] | 11 | | **namespace** | **str** | namespace copied to | [optional] | 12 | | **id** | **str** | unique ID of the copied notebook | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NotebookCopy.md: -------------------------------------------------------------------------------- 1 | # NotebookCopy 2 | 3 | Output information required to copy a notebook 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ----------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | | **name** | **str** | name to set for registered notebook | [optional] | 11 | | **namespace** | **str** | namespace to copy to | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NotebookFavorite.md: -------------------------------------------------------------------------------- 1 | # NotebookFavorite 2 | 3 | A user-favorite notebook item 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------- | ------- | ----------------------------- | ---------- | 9 | | **notebook_uuid** | **str** | unique UUID of the notebook | [optional] | 10 | | **namespace** | **str** | the namespace of the notebook | [optional] | 11 | | **name** | **str** | the name of the notebook | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/NotebookFavoritesData.md: -------------------------------------------------------------------------------- 1 | # NotebookFavoritesData 2 | 3 | Object including notebook favorites and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ---------------------- | ---------- | 9 | | **notebooks** | [**list[ArrayInfo]**](ArrayInfo.md) | List of notebook infos | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/OrganizationRoles.md: -------------------------------------------------------------------------------- 1 | # OrganizationRoles 2 | 3 | role user has in organization 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PaginationMetadata.md: -------------------------------------------------------------------------------- 1 | # PaginationMetadata 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------------- | --------- | -------------------------------------------------------------------------- | ---------- | 7 | | **page** | **float** | pagination offset. Use it to skip the first ((page - 1) \* per_page) items | [optional] | 8 | | **per_page** | **float** | pagination limit (page size) | [optional] | 9 | | **total_pages** | **float** | number of total pages with current limit | [optional] | 10 | | **total_items** | **float** | number of total available items | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PodStatus.md: -------------------------------------------------------------------------------- 1 | # PodStatus 2 | 3 | List of all available pod statuses 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PricingAggregateUsage.md: -------------------------------------------------------------------------------- 1 | # PricingAggregateUsage 2 | 3 | Specifies a usage aggregation strategy for pricings of usage_type=metered 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PricingCurrency.md: -------------------------------------------------------------------------------- 1 | # PricingCurrency 2 | 3 | Currency of pricing 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PricingInterval.md: -------------------------------------------------------------------------------- 1 | # PricingInterval 2 | 3 | Interval for pricing 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PricingType.md: -------------------------------------------------------------------------------- 1 | # PricingType 2 | 3 | Pricing types 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PricingUnitLabel.md: -------------------------------------------------------------------------------- 1 | # PricingUnitLabel 2 | 3 | Unit label 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/PublicShareFilter.md: -------------------------------------------------------------------------------- 1 | # PublicShareFilter 2 | 3 | Query parameter to get array metadatas 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/QueryJson.md: -------------------------------------------------------------------------------- 1 | # QueryJson 2 | 3 | Query returning results as JSON 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | --------------------------------- | -------------------------------------------------------------------------- | ---------- | 9 | | **query_ranges** | [**QueryRanges**](QueryRanges.md) | | [optional] | 10 | | **fields** | **list[str]** | List of fields to return data from, empty means return data for all fields | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/QueryRanges.md: -------------------------------------------------------------------------------- 1 | # QueryRanges 2 | 3 | Subarray bounds to query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------- | --------------- | ---------- | 9 | | **layout** | [**Layout**](Layout.md) | | [optional] | 10 | | **ranges** | **list[list[float]]** | List of ranges, | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Querystatus.md: -------------------------------------------------------------------------------- 1 | # Querystatus 2 | 3 | Status of query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Querytype.md: -------------------------------------------------------------------------------- 1 | # Querytype 2 | 3 | Type of query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/ResultFormat.md: -------------------------------------------------------------------------------- 1 | # ResultFormat 2 | 3 | Data format of a result 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/RetryPolicy.md: -------------------------------------------------------------------------------- 1 | # RetryPolicy 2 | 3 | RetryPolicy is a policy of node statuses that will be retried 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SSODomainConfigResponse.md: -------------------------------------------------------------------------------- 1 | # SSODomainConfigResponse 2 | 3 | The response to a request for the list of domain claims associated with a particular organization. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------ | ----------------------------------------------- | ----------- | ---------- | 9 | | **domain_configs** | [**list[SSODomainConfig]**](SSODomainConfig.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SSODomainSetup.md: -------------------------------------------------------------------------------- 1 | # SSODomainSetup 2 | 3 | Configuration settings to verify ownership of a given domain. At least one of these must be completed enable user login from the domain. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ------- | ----------------------------------------------- | ---------- | 9 | | **txt** | **str** | a DNS TXT record to set on the domain to claim. | [optional] | 10 | | **cname_src** | **str** | a DNS name to set a CNAME record on | [optional] | 11 | | **cname_dst** | **str** | the CNAME target of `cname_src`. | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SSOProvider.md: -------------------------------------------------------------------------------- 1 | # SSOProvider 2 | 3 | Single sign on provider 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SingleFragmentInfo.md: -------------------------------------------------------------------------------- 1 | # SingleFragmentInfo 2 | 3 | Single Fragment info of an array 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | ------------------------------------------- | ----------------- | ---------- | 9 | | **array_schema_name** | **str** | array schema name | [optional] | 10 | | **meta** | [**FragmentMetadata**](FragmentMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Subarray.md: -------------------------------------------------------------------------------- 1 | # Subarray 2 | 3 | A Subarray 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | --------------------------------------------- | ------------------------------------ | ---------- | 9 | | **layout** | [**Layout**](Layout.md) | | [optional] | 10 | | **ranges** | [**list[SubarrayRanges]**](SubarrayRanges.md) | List of 1D ranges, one per dimension | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SubarrayPartitionerCurrent.md: -------------------------------------------------------------------------------- 1 | # SubarrayPartitionerCurrent 2 | 3 | The current partition info 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | --------------------------- | ----------------------------- | ---------- | 9 | | **subarray** | [**Subarray**](Subarray.md) | | [optional] | 10 | | **start** | **int** | PartitionInfo start | [optional] | 11 | | **end** | **int** | PartitionInfo end | [optional] | 12 | | **split_multi_range** | **bool** | PartitionInfo splitMultiRange | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SubarrayPartitionerState.md: -------------------------------------------------------------------------------- 1 | # SubarrayPartitionerState 2 | 3 | The state information for the remaining partitions to be produced 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | --------------------------------- | ----------------- | ---------- | 9 | | **start** | **int** | State start | [optional] | 10 | | **end** | **int** | State end | [optional] | 11 | | **single_range** | [**list[Subarray]**](Subarray.md) | State singleRange | [optional] | 12 | | **multi_range** | [**list[Subarray]**](Subarray.md) | State multiRange | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/SubarrayRanges.md: -------------------------------------------------------------------------------- 1 | # SubarrayRanges 2 | 3 | A set of 1D ranges for a subarray 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------- | --------------------------- | -------------------------------------- | ---------- | 9 | | **type** | [**Datatype**](Datatype.md) | | [optional] | 10 | | **has_default_range** | **bool** | True if the range is the default range | [optional] | 11 | | **buffer** | **list[int]** | The bytes of the ranges | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Subscription.md: -------------------------------------------------------------------------------- 1 | # Subscription 2 | 3 | Subscription of a user (customer) to another user's arrays 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | --------------------------- | ------------------------------- | ------------------------------------------------ | ---------- | 9 | | **id** | **str** | Unique ID of subscription as defined by Stripe | [optional] | 10 | | **owner_namespace_uuid** | **str** | Unique ID of the array (product) owner | [optional] | 11 | | **customer_namespace_uuid** | **str** | Unique ID of the array (product) user (customer) | [optional] | 12 | | **pricing** | [**list[Pricing]**](Pricing.md) | list of pricing used by this subscription | [optional] | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TGUDFEnvironmentResources.md: -------------------------------------------------------------------------------- 1 | # TGUDFEnvironmentResources 2 | 3 | The resources requested for this particular node. If resources are not specified resource_class is used, if it is not set the standard resource // defaults are used 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ------- | ----------- | ---------- | 9 | | **cpu** | **str** | | [optional] | 10 | | **memory** | **str** | | [optional] | 11 | | **gpu** | **int** | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphActions.md: -------------------------------------------------------------------------------- 1 | # TaskGraphActions 2 | 3 | actions a user can take on a UDF 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphClientNodeStatus.md: -------------------------------------------------------------------------------- 1 | # TaskGraphClientNodeStatus 2 | 3 | A report of the execution status of a node that ran on the client side. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------------- | ----------------------------------------- | ----------- | ---------- | 9 | | **client_node_uuid** | **str** | | [optional] | 10 | | **status** | [**ArrayTaskStatus**](ArrayTaskStatus.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphLogRunLocation.md: -------------------------------------------------------------------------------- 1 | # TaskGraphLogRunLocation 2 | 3 | The location where an individual node of a task graph is executed. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphLogStatus.md: -------------------------------------------------------------------------------- 1 | # TaskGraphLogStatus 2 | 3 | The status of a given task graph execution. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphLogsData.md: -------------------------------------------------------------------------------- 1 | # TaskGraphLogsData 2 | 3 | Response data for a task graph list, including pagination metadata. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ------------------------------ | ---------- | 9 | | **task_graph_logs** | [**list[TaskGraphLog]**](TaskGraphLog.md) | The requested task graph logs. | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphSharing.md: -------------------------------------------------------------------------------- 1 | # TaskGraphSharing 2 | 3 | details for sharing a given registered task graph 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------ | ------------------------------------------------- | ------------------------------------------------------------------ | ---------- | 9 | | **actions** | [**list[TaskGraphActions]**](TaskGraphActions.md) | List of permitted actions | [optional] | 10 | | **namespace** | **str** | namespace being granted array access can be a user or organization | [optional] | 11 | | **namespace_type** | **str** | details on if the namespace is a organization or user | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphType.md: -------------------------------------------------------------------------------- 1 | # TaskGraphType 2 | 3 | The type of a task graph. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TaskGraphs.md: -------------------------------------------------------------------------------- 1 | # TaskGraphs 2 | 3 | Information about a series of task graphs. 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ----------------------------------- | --------------------- | ---------- | 9 | | **graphs** | [**list[TaskGraph]**](TaskGraph.md) | The series of graphs. | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TileDBConfig.md: -------------------------------------------------------------------------------- 1 | # TileDBConfig 2 | 3 | TileDB config used for interaction with the embedded library 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------- | ------------------------------------------------------- | ----------- | ---------- | 9 | | **entries** | [**list[TileDBConfigEntries]**](TileDBConfigEntries.md) | | [optional] | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TileDBConfigEntries.md: -------------------------------------------------------------------------------- 1 | # TileDBConfigEntries 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | --------- | ------- | ----------- | ---------- | 7 | | **key** | **str** | | [optional] | 8 | | **value** | **str** | | [optional] | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/TokenScope.md: -------------------------------------------------------------------------------- 1 | # TokenScope 2 | 3 | An api token scope available for creation 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFActions.md: -------------------------------------------------------------------------------- 1 | # UDFActions 2 | 3 | actions a user can take on a UDF 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFCopied.md: -------------------------------------------------------------------------------- 1 | # UDFCopied 2 | 3 | Copied udf uri and information 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | --------------------------------- | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB udf | [optional] | 10 | | **namespace** | **str** | namespace of the copied udf | [optional] | 11 | | **name** | **str** | name of the copied udf | [optional] | 12 | | **id** | **str** | unique ID of the copied udf | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFCopy.md: -------------------------------------------------------------------------------- 1 | # UDFCopy 2 | 3 | information required to copy a udf 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | -------------- | ------- | ------------------------------------------------------------------------------------------------------------ | ---------- | 9 | | **output_uri** | **str** | output location of the TileDB File | [optional] | 10 | | **namespace** | **str** | namespace to register the copy. If empty use the namespace of the request user | [optional] | 11 | | **name** | **str** | name to set for the copy. If empty use the name as the original udf, if it not already used in the namespace | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFFavorite.md: -------------------------------------------------------------------------------- 1 | # UDFFavorite 2 | 3 | A user-favorite UDF item 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------- | ------- | ------------------------ | ---------- | 9 | | **udf_uuid** | **str** | unique UUID of the UDF | [optional] | 10 | | **namespace** | **str** | the namespace of the UDF | [optional] | 11 | | **name** | **str** | the name of the UDF | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFFavoritesData.md: -------------------------------------------------------------------------------- 1 | # UDFFavoritesData 2 | 3 | Object including UDF favorites and pagination metadata 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ----------------------- | ----------------------------------------------- | ----------------- | ---------- | 9 | | **udfs** | [**list[ArrayInfo]**](ArrayInfo.md) | List of UDF infos | [optional] | 10 | | **pagination_metadata** | [**PaginationMetadata**](PaginationMetadata.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFImage.md: -------------------------------------------------------------------------------- 1 | # UDFImage 2 | 3 | Defines a set of images related to a specific name 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------ | --------------------------------- | -------------------------- | ---------- | 9 | | **id** | **str** | Unique ID of set of images | [optional] | 10 | | **name** | **str** | name of UDF | [optional] | 11 | | **language** | [**UDFLanguage**](UDFLanguage.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFLanguage.md: -------------------------------------------------------------------------------- 1 | # UDFLanguage 2 | 3 | UDF Type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFSharing.md: -------------------------------------------------------------------------------- 1 | # UDFSharing 2 | 3 | details for sharing a given UDF 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ------------------ | ------------------------------------- | ------------------------------------------------------------------ | ---------- | 9 | | **actions** | [**list[UDFActions]**](UDFActions.md) | List of permitted actions | [optional] | 10 | | **namespace** | **str** | namespace being granted array access can be a user or organization | [optional] | 11 | | **namespace_type** | **str** | details on if the namespace is a organization or user | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFSubarray.md: -------------------------------------------------------------------------------- 1 | # UDFSubarray 2 | 3 | Subarray bounds to query for a UDF to operate on 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------- | ------------------------------------------------- | --------------- | ---------- | 9 | | **layout** | [**Layout**](Layout.md) | | [optional] | 10 | | **ranges** | [**list[UDFSubarrayRange]**](UDFSubarrayRange.md) | List of ranges, | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFSubarrayRange.md: -------------------------------------------------------------------------------- 1 | # UDFSubarrayRange 2 | 3 | A dimension range to query 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---------------- | ------------------------------------------------- | ------------------- | ---------- | 9 | | **dimension_id** | **int** | The dimension index | [optional] | 10 | | **range_start** | [**DimensionCoordinate**](DimensionCoordinate.md) | | [optional] | 11 | | **range_end** | [**DimensionCoordinate**](DimensionCoordinate.md) | | [optional] | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/UDFType.md: -------------------------------------------------------------------------------- 1 | # UDFType 2 | 3 | UDF Type 4 | 5 | ## Properties 6 | 7 | | Name | Type | Description | Notes | 8 | | ---- | ---- | ----------- | ----- | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/docs/Writer.md: -------------------------------------------------------------------------------- 1 | # Writer 2 | 3 | ## Properties 4 | 5 | | Name | Type | Description | Notes | 6 | | -------------------- | --------------------------------- | ----------- | ---------- | 7 | | **check_coord_dups** | **bool** | | [optional] | 8 | | **check_coord_oob** | **bool** | | [optional] | 9 | | **dedup_coords** | **bool** | | [optional] | 10 | | **subarray** | [**DomainArray**](DomainArray.md) | | [optional] | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | -------------------------------------------------------------------------------- /src/tiledb/cloud/rest_api/openapi_config-api: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "projectName": "tiledb-cloud", 4 | "packageName": "rest_api", 5 | "documentationPage": false, 6 | "generateSourceCodeOnly": true 7 | } 8 | -------------------------------------------------------------------------------- /src/tiledb/cloud/soma/__init__.py: -------------------------------------------------------------------------------- 1 | from .ingest import ingest 2 | from .ingest import ingest_h5ad 3 | from .ingest import run_ingest_workflow 4 | from .mapper import build_collection_mapper_workflow_graph 5 | from .mapper import run_collection_mapper_workflow 6 | 7 | __all__ = [ 8 | "ingest", 9 | "ingest_h5ad", 10 | "run_ingest_workflow", 11 | "build_collection_mapper_workflow_graph", 12 | "run_collection_mapper_workflow", 13 | ] 14 | -------------------------------------------------------------------------------- /src/tiledb/cloud/sql/README.md: -------------------------------------------------------------------------------- 1 | # DB API 2.0 Connector 2 | 3 | This package features the TileDB-Cloud-PythonDB connector, which aligns with the Python DB API 2.0 specification. It offers a convenient way for Python developers to connect to TileDB-Cloud and perform all necessary operations. 4 | This can also be seen as an alternative to a JDBC or ODBC driver. 5 | 6 | ## Usage 7 | 8 | ```python 9 | from tiledb.cloud.sql.tiledb_connection import TileDBConnection 10 | 11 | connection = TileDBConnection() 12 | cursor = connection.cursor() 13 | cursor.execute("SELECT * from `tiledb://TileDB-Inc/quickstart_dense`") 14 | 15 | row = cursor.fetchone() 16 | while row: 17 | print(row) 18 | row = cursor.fetchone() 19 | 20 | print(cursor.description()) 21 | 22 | ``` 23 | -------------------------------------------------------------------------------- /src/tiledb/cloud/sql/tiledb_connection.py: -------------------------------------------------------------------------------- 1 | from tiledb.cloud.sql.tiledb_cursor import Cursor 2 | 3 | 4 | class TileDBConnection: 5 | def cursor(self): 6 | return Cursor() 7 | 8 | def commit(self): 9 | # Commit must work, even if it doesn't do anything 10 | # No rollback method due to no transaction support 11 | pass 12 | 13 | def close(self): 14 | pass 15 | 16 | def __enter__(self): 17 | return self 18 | 19 | def __exit__(self, type, value, traceback): 20 | pass 21 | -------------------------------------------------------------------------------- /src/tiledb/cloud/taskgraphs/_codec.py: -------------------------------------------------------------------------------- 1 | # This file is only here for testing compatibility purposes. 2 | # Nothing in it should be used outside of tests. 3 | import base64 4 | 5 | 6 | def b64_str(val: bytes) -> str: 7 | return base64.b64encode(val).decode("ascii") 8 | -------------------------------------------------------------------------------- /src/tiledb/cloud/taskgraphs/client_executor/__init__.py: -------------------------------------------------------------------------------- 1 | """A client-side implementation of a task graph Executor. 2 | 3 | This module implements a task graph Executor that coordinates the execution of 4 | graph nodes on the client side. 5 | """ 6 | 7 | # This file collects all the names into one re-exportable namespace. 8 | 9 | from tiledb.cloud.taskgraphs import executor 10 | from tiledb.cloud.taskgraphs.client_executor import array_node 11 | from tiledb.cloud.taskgraphs.client_executor import impl 12 | from tiledb.cloud.taskgraphs.client_executor import input_node 13 | from tiledb.cloud.taskgraphs.client_executor import sql_node 14 | from tiledb.cloud.taskgraphs.client_executor import udf_node 15 | 16 | Status = executor.Status 17 | InvalidStateError = impl.InvalidStateError 18 | LocalExecutor = impl.LocalExecutor 19 | 20 | ArrayNode = array_node.ArrayNode 21 | InputNode = input_node.InputNode 22 | SQLNode = sql_node.SQLNode 23 | UDFNode = udf_node.UDFNode 24 | 25 | 26 | __all__ = ( 27 | "Status", 28 | "InvalidStateError", 29 | "LocalExecutor", 30 | "ArrayNode", 31 | "InputNode", 32 | "SQLNode", 33 | "UDFNode", 34 | ) 35 | -------------------------------------------------------------------------------- /src/tiledb/cloud/taskgraphs/delayed/__init__.py: -------------------------------------------------------------------------------- 1 | """``delayed``, a simplified interface for task graphs. 2 | 3 | This can be imported either as a namespace, or with ``import *``:: 4 | 5 | from ... import delayed 6 | d_func = delayed.udf(some_func)(...) 7 | d_sql = delayed.sql(...) 8 | 9 | or:: 10 | 11 | from ....delayed import * 12 | d_func = Delayed(some_func)(...) 13 | d_sql = DelayedSQL(...) 14 | """ 15 | 16 | from tiledb.cloud.taskgraphs.delayed import _udf 17 | 18 | udf = _udf.DelayedFunction.create 19 | Delayed = udf 20 | 21 | __all__ = ("Delayed",) 22 | -------------------------------------------------------------------------------- /src/tiledb/cloud/taskgraphs/server_executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/src/tiledb/cloud/taskgraphs/server_executor/__init__.py -------------------------------------------------------------------------------- /src/tiledb/cloud/utils.py: -------------------------------------------------------------------------------- 1 | """General utilities that don't fit anywhere else.""" 2 | 3 | # This currently only exports split_uri, which was the only externally-usable 4 | # code from the previous utils module. 5 | 6 | from tiledb.cloud._common.utils import split_uri 7 | 8 | __all__ = ("split_uri",) 9 | -------------------------------------------------------------------------------- /src/tiledb/cloud/vcf/vcf_toolbox/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | from tiledb.cloud._vendor import cloudpickle 4 | 5 | from .annotate import annotate 6 | from .transform import df_transform 7 | 8 | __all__ = [ 9 | "annotate", 10 | "df_transform", 11 | ] 12 | 13 | # Register the module to be pickled by value, so we can use this version of the 14 | # module in a UDF. Otherwise, the module would be pickled by reference, and we 15 | # would use the version of module installed in the UDF docker image. 16 | # This approach enables testing changes to the module before the changes are 17 | # available in the UDF docker image. 18 | cloudpickle.register_pickle_by_value(sys.modules[__name__]) 19 | -------------------------------------------------------------------------------- /src/tiledb/cloud/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | from .common import get_workflows_uri 2 | 3 | __all__ = [ 4 | "get_workflows_uri", 5 | ] 6 | -------------------------------------------------------------------------------- /src/tiledb/cloud/workflows/nextflow/__init__.py: -------------------------------------------------------------------------------- 1 | from .history import consolidate_history 2 | from .history import get_history 3 | from .history import get_log 4 | from .history import update_history 5 | from .manifest import consolidate_manifests 6 | from .manifest import create_manifest 7 | from .manifest import get_manifests 8 | from .manifest import save_manifest 9 | from .manifest import validate_manifest 10 | from .register import register 11 | from .run import resume 12 | from .run import run 13 | 14 | __all__ = [ 15 | "consolidate_history", 16 | "get_history", 17 | "get_log", 18 | "update_history", 19 | "consolidate_manifests", 20 | "create_manifest", 21 | "get_manifests", 22 | "save_manifest", 23 | "validate_manifest", 24 | "register", 25 | "run", 26 | "resume", 27 | ] 28 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/__init__.py -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.7-cloudpickle1.4.1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.7-cloudpickle1.4.1.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.7-cloudpickle1.5.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.7-cloudpickle1.5.0.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.7-cloudpickle2.1.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.7-cloudpickle2.1.0.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.9-cloudpickle1.4.1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.9-cloudpickle1.4.1.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.9-cloudpickle1.5.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.9-cloudpickle1.5.0.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/functions/func-py3.9-cloudpickle2.1.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/functions/func-py3.9-cloudpickle2.1.0.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/ndarray_backed_df-pd1.2.4.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/ndarray_backed_df-pd1.2.4.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/ndarray_backed_df-pd1.5.3.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/ndarray_backed_df-pd1.5.3.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/simple_df-pd1.2.4.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/simple_df-pd1.2.4.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/simple_df-pd1.5.3.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/simple_df-pd1.5.3.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/xarray-pd1.2.4.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/xarray-pd1.2.4.pickle -------------------------------------------------------------------------------- /tests/common/testdata/pickles/pandas/xarray-pd1.5.3.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/common/testdata/pickles/pandas/xarray-pd1.5.3.pickle -------------------------------------------------------------------------------- /tests/common/write_function_pickles.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import datetime 4 | import pathlib 5 | import sys 6 | from typing import Callable 7 | 8 | from tiledb.cloud._vendor import cloudpickle 9 | 10 | 11 | def outer() -> Callable[[], Callable[[], str]]: 12 | the_date = datetime.datetime(2023, 5, 5, 7, tzinfo=datetime.timezone.utc) 13 | 14 | def inner() -> str: 15 | import builtins 16 | 17 | return builtins.str.format("the date is {:%Y-%m-%d %H:%M}", the_date) 18 | 19 | return inner 20 | 21 | 22 | PY_VER = ".".join(str(v) for v in sys.version_info[:2]) 23 | CP_VER = cloudpickle.__version__ 24 | 25 | 26 | def main() -> None: 27 | import argparse 28 | 29 | p = argparse.ArgumentParser() 30 | p.add_argument("out_dir") 31 | args = p.parse_args() 32 | 33 | out_dir_path = pathlib.Path(args.out_dir) 34 | 35 | out_file = out_dir_path / f"func-py{PY_VER}-cloudpickle{CP_VER}.pickle" 36 | with out_file.open("wb") as out_stream: 37 | cloudpickle.dump(outer(), out_stream) 38 | 39 | 40 | if __name__ == "__main__": 41 | main() 42 | -------------------------------------------------------------------------------- /tests/common/write_pandas_pickles.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import pathlib 4 | import pickle 5 | 6 | import pandas as pd 7 | 8 | from . import test_pickle_compat 9 | 10 | PICKLEABLES = test_pickle_compat.RESULTS 11 | 12 | 13 | def main() -> None: 14 | import argparse 15 | 16 | p = argparse.ArgumentParser() 17 | p.add_argument("out-dir", required=True) 18 | args = p.parse_args() 19 | 20 | out_dir_path = pathlib.Path(args.out_dir) 21 | 22 | for name in PICKLEABLES: 23 | out_file = out_dir_path / f"{name}-pd{pd.__version__}.pickle" 24 | with out_file.open("wb") as out_stream: 25 | pickle.dump(PICKLEABLES[name], out_stream) 26 | 27 | 28 | if __name__ == "__main__": 29 | main() 30 | -------------------------------------------------------------------------------- /tests/data/geospatial/1.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/1.las -------------------------------------------------------------------------------- /tests/data/geospatial/10.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/10.las -------------------------------------------------------------------------------- /tests/data/geospatial/11.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/11.las -------------------------------------------------------------------------------- /tests/data/geospatial/2.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/2.las -------------------------------------------------------------------------------- /tests/data/geospatial/3.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/3.las -------------------------------------------------------------------------------- /tests/data/geospatial/4.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/4.las -------------------------------------------------------------------------------- /tests/data/geospatial/5.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/5.las -------------------------------------------------------------------------------- /tests/data/geospatial/6.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/6.las -------------------------------------------------------------------------------- /tests/data/geospatial/7.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/7.las -------------------------------------------------------------------------------- /tests/data/geospatial/8.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/8.las -------------------------------------------------------------------------------- /tests/data/geospatial/9.las: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/geospatial/9.las -------------------------------------------------------------------------------- /tests/data/geospatial/README.txt: -------------------------------------------------------------------------------- 1 | Data from https://github.com/laspy/laspy/blob/740153c7b75abbea240d0b18a07f03038469f1fd/tests/data/simple.las 2 | 3 | Data chipped into chips with a capacity of 100 4 | -------------------------------------------------------------------------------- /tests/data/simple_files/contains_word_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/contains_word_1.txt -------------------------------------------------------------------------------- /tests/data/simple_files/contains_word_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/contains_word_2.txt -------------------------------------------------------------------------------- /tests/data/simple_files/no_txt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/no_txt.csv -------------------------------------------------------------------------------- /tests/data/simple_files/start_with_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/start_with_1.txt -------------------------------------------------------------------------------- /tests/data/simple_files/start_with_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/start_with_2.txt -------------------------------------------------------------------------------- /tests/data/simple_files/start_with_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/data/simple_files/start_with_3.txt -------------------------------------------------------------------------------- /tests/taskgraphs/test_types.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | 3 | from tiledb.cloud.taskgraphs import types 4 | 5 | 6 | class TestTypes(unittest.TestCase): 7 | def test_args(self): 8 | args = types.args(1, "A", b=frozenset(), c=b"d") 9 | self.assertEqual( 10 | args, 11 | types.Arguments((1, "A"), {"b": frozenset(), "c": b"d"}), 12 | ) 13 | self.assertEqual("args(1, 'A', b=frozenset(), c=b'd')", repr(args)) 14 | -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- 1 | """Tests of configuration and login.""" 2 | 3 | import tiledb.cloud 4 | import tiledb.cloud.config 5 | 6 | 7 | def test_login_bare_host(monkeypatch, tmp_path): 8 | """Accept a bare host, store it with https scheme.""" 9 | monkeypatch.setattr( 10 | tiledb.cloud.client.config, 11 | "default_config_file", 12 | tmp_path.joinpath("cloud.json"), 13 | ) 14 | monkeypatch.setattr( 15 | tiledb.cloud.client.config, 16 | "_config", 17 | tiledb.cloud.config.configuration.Configuration(), 18 | ) 19 | monkeypatch.setattr(tiledb.cloud.client.config, "logged_in", False) 20 | monkeypatch.setattr(tiledb.cloud.client, "client", tiledb.cloud.client.Client()) 21 | tiledb.cloud.login(token="foo", host="bar") 22 | assert tiledb.cloud.config.config.host == "https://bar" 23 | 24 | 25 | def test_login_bare_host_bis(): 26 | """Check on the first.""" 27 | assert tiledb.cloud.config.config.host != "https://bar" 28 | -------------------------------------------------------------------------------- /tests/test_invites.py: -------------------------------------------------------------------------------- 1 | """Test of invites.""" 2 | 3 | import unittest.mock 4 | 5 | from tiledb.cloud import invites 6 | 7 | 8 | @unittest.mock.patch("tiledb.cloud.invites.client") 9 | def test_invite_to_organization(client): 10 | """Function is properly wired to low-level generated API.""" 11 | # This call used to raise a ValueError. 12 | invites.invite_to_organization( 13 | "test_org", recipients=["user1@example.com"], role="read_only" 14 | ) 15 | -------------------------------------------------------------------------------- /tests/testdata/pandas-arrow/demo-dataframe-py3.10-pd2.0.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/testdata/pandas-arrow/demo-dataframe-py3.10-pd2.0.arrow -------------------------------------------------------------------------------- /tests/testdata/pandas-arrow/demo-dataframe-py3.8-pd1.4.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/testdata/pandas-arrow/demo-dataframe-py3.8-pd1.4.arrow -------------------------------------------------------------------------------- /tests/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/utilities/__init__.py -------------------------------------------------------------------------------- /tests/utilities/data/fake_unittest_wheel-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/utilities/data/fake_unittest_wheel-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /tests/vcf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/vcf/__init__.py -------------------------------------------------------------------------------- /tests/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Cloud-Py/371a58b1b9021daef487a0f08879ee376962c5d1/tests/workflows/__init__.py -------------------------------------------------------------------------------- /update_requirements.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euxo pipefail 4 | 5 | write-requirements() { 6 | VERSION="$1" 7 | SCRATCH="$(mktemp -d --tmpdir "gen-reqs-$VERSION-XXXXXXXXX")" 8 | trap 'rm -r "$SCRATCH"' RETURN 9 | conda create -y -p "$SCRATCH/conda" "python=$VERSION" 10 | "$SCRATCH/conda/bin/python" -m venv "$SCRATCH/venv" 11 | "$SCRATCH/venv/bin/pip" install --upgrade pip wheel 12 | # xarray is a test-only direct dependency for us. 13 | # It is normally just a transitive optional dependency of Pandas. 14 | "$SCRATCH/venv/bin/pip" install . xarray 15 | "$SCRATCH/venv/bin/pip" freeze --exclude tiledb-cloud >"requirements-py$VERSION.txt" 16 | } 17 | 18 | for VER in 3.9; do 19 | write-requirements "$VER" 20 | done 21 | --------------------------------------------------------------------------------