# unitycatalog-client-preview
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 0.1
- Package version: 1.0.1
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
## Requirements.
Python 3.7+
## Installation & Usage
### pip install
If the python package is hosted on a repository, you can install directly using:
```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
Then import the package:
```python
import unitycatalog_client_preview
```
### Setuptools
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)
Then import the package:
```python
import unitycatalog_client_preview
```
### Tests
Execute `pytest` to run the tests.
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import time
import unitycatalog_client_preview
from unitycatalog_client_preview.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8080/api/2.1/unity-catalog
# See configuration.py for a list of all supported configuration parameters.
configuration = unitycatalog_client_preview.Configuration(
host = "http://localhost:8080/api/2.1/unity-catalog"
)
# Enter a context with an instance of the API client
with unitycatalog_client_preview.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = unitycatalog_client_preview.CatalogsApi(api_client)
create_catalog = unitycatalog_client_preview.CreateCatalog() # CreateCatalog | (optional)
try:
# Create a catalog
api_response = api_instance.create_catalog(create_catalog=create_catalog)
print("The response of CatalogsApi->create_catalog:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling CatalogsApi->create_catalog: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *http://localhost:8080/api/2.1/unity-catalog*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*CatalogsApi* | [**create_catalog**](docs/CatalogsApi.md#create_catalog) | **POST** /catalogs | Create a catalog
*CatalogsApi* | [**delete_catalog**](docs/CatalogsApi.md#delete_catalog) | **DELETE** /catalogs/{name} | Delete a catalog
*CatalogsApi* | [**get_catalog**](docs/CatalogsApi.md#get_catalog) | **GET** /catalogs/{name} | Get a catalog
*CatalogsApi* | [**list_catalogs**](docs/CatalogsApi.md#list_catalogs) | **GET** /catalogs | List catalogs
*CatalogsApi* | [**update_catalog**](docs/CatalogsApi.md#update_catalog) | **PATCH** /catalogs/{name} | Update a catalog
*FunctionsApi* | [**create_function**](docs/FunctionsApi.md#create_function) | **POST** /functions | Create a function. WARNING: This API is experimental and will change in future versions.
*FunctionsApi* | [**delete_function**](docs/FunctionsApi.md#delete_function) | **DELETE** /functions/{name} | Delete a function
*FunctionsApi* | [**get_function**](docs/FunctionsApi.md#get_function) | **GET** /functions/{name} | Get a function
*FunctionsApi* | [**list_functions**](docs/FunctionsApi.md#list_functions) | **GET** /functions | List functions
*GrantsApi* | [**get**](docs/GrantsApi.md#get) | **GET** /permissions/{securable_type}/{full_name} | Get permissions
*GrantsApi* | [**update**](docs/GrantsApi.md#update) | **PATCH** /permissions/{securable_type}/{full_name} | Update a permission
*MetastoresApi* | [**summary**](docs/MetastoresApi.md#summary) | **GET** /metastore_summary | Get metastore summary
*ModelVersionsApi* | [**create_model_version**](docs/ModelVersionsApi.md#create_model_version) | **POST** /models/versions | Create a model version.
*ModelVersionsApi* | [**delete_model_version**](docs/ModelVersionsApi.md#delete_model_version) | **DELETE** /models/{full_name}/versions/{version} | Delete a model version
*ModelVersionsApi* | [**finalize_model_version**](docs/ModelVersionsApi.md#finalize_model_version) | **PATCH** /models/{full_name}/versions/{version}/finalize | Finalize a model version
*ModelVersionsApi* | [**get_model_version**](docs/ModelVersionsApi.md#get_model_version) | **GET** /models/{full_name}/versions/{version} | Get a model version
*ModelVersionsApi* | [**list_model_versions**](docs/ModelVersionsApi.md#list_model_versions) | **GET** /models/{full_name}/versions | List model versions of the specified registered model.
*ModelVersionsApi* | [**update_model_version**](docs/ModelVersionsApi.md#update_model_version) | **PATCH** /models/{full_name}/versions/{version} | Update a model version
*RegisteredModelsApi* | [**create_registered_model**](docs/RegisteredModelsApi.md#create_registered_model) | **POST** /models | Create a model. WARNING: This API is experimental and will change in future versions.
*RegisteredModelsApi* | [**delete_registered_model**](docs/RegisteredModelsApi.md#delete_registered_model) | **DELETE** /models/{full_name} | Delete a specified registered model.
*RegisteredModelsApi* | [**get_registered_model**](docs/RegisteredModelsApi.md#get_registered_model) | **GET** /models/{full_name} | Get a specified registered model
*RegisteredModelsApi* | [**list_registered_models**](docs/RegisteredModelsApi.md#list_registered_models) | **GET** /models | List models
*RegisteredModelsApi* | [**update_registered_model**](docs/RegisteredModelsApi.md#update_registered_model) | **PATCH** /models/{full_name} | Update a registered model
*SchemasApi* | [**create_schema**](docs/SchemasApi.md#create_schema) | **POST** /schemas | Create a schema
*SchemasApi* | [**delete_schema**](docs/SchemasApi.md#delete_schema) | **DELETE** /schemas/{full_name} | Delete a schema
*SchemasApi* | [**get_schema**](docs/SchemasApi.md#get_schema) | **GET** /schemas/{full_name} | Get a schema
*SchemasApi* | [**list_schemas**](docs/SchemasApi.md#list_schemas) | **GET** /schemas | List schemas
*SchemasApi* | [**update_schema**](docs/SchemasApi.md#update_schema) | **PATCH** /schemas/{full_name} | Update a schema
*TablesApi* | [**create_table**](docs/TablesApi.md#create_table) | **POST** /tables | Create a table. Only external table creation is supported. WARNING: This API is experimental and will change in future versions.
*TablesApi* | [**delete_table**](docs/TablesApi.md#delete_table) | **DELETE** /tables/{full_name} | Delete a table
*TablesApi* | [**get_table**](docs/TablesApi.md#get_table) | **GET** /tables/{full_name} | Get a table
*TablesApi* | [**list_tables**](docs/TablesApi.md#list_tables) | **GET** /tables | List tables
*TablesApi* | [**update_table**](docs/TablesApi.md#update_table) | **PATCH** /tables/{full_name} | Update a table
*TemporaryCredentialsApi* | [**generate_temporary_model_version_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_model_version_credentials) | **POST** /temporary-model-version-credentials | Generate temporary model version credentials. These credentials are used by clients to write and retrieve model artifacts from the model versions external storage location.
*TemporaryCredentialsApi* | [**generate_temporary_path_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_path_credentials) | **POST** /temporary-path-credentials | Generate temporary path credentials.
*TemporaryCredentialsApi* | [**generate_temporary_table_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_table_credentials) | **POST** /temporary-table-credentials | Generate temporary table credentials.
*TemporaryCredentialsApi* | [**generate_temporary_volume_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_volume_credentials) | **POST** /temporary-volume-credentials | Generate temporary volume credentials.
*VolumesApi* | [**create_volume**](docs/VolumesApi.md#create_volume) | **POST** /volumes | Create a Volume
*VolumesApi* | [**delete_volume**](docs/VolumesApi.md#delete_volume) | **DELETE** /volumes/{name} | Delete a Volume
*VolumesApi* | [**get_volume**](docs/VolumesApi.md#get_volume) | **GET** /volumes/{name} | Get a Volume
*VolumesApi* | [**list_volumes**](docs/VolumesApi.md#list_volumes) | **GET** /volumes | List Volumes
*VolumesApi* | [**update_volume**](docs/VolumesApi.md#update_volume) | **PATCH** /volumes/{name} | Update a Volume
## Documentation For Models
- [AwsCredentials](docs/AwsCredentials.md)
- [AzureUserDelegationSAS](docs/AzureUserDelegationSAS.md)
- [CatalogInfo](docs/CatalogInfo.md)
- [ColumnInfo](docs/ColumnInfo.md)
- [ColumnTypeName](docs/ColumnTypeName.md)
- [CreateCatalog](docs/CreateCatalog.md)
- [CreateFunction](docs/CreateFunction.md)
- [CreateFunctionRequest](docs/CreateFunctionRequest.md)
- [CreateModelVersion](docs/CreateModelVersion.md)
- [CreateRegisteredModel](docs/CreateRegisteredModel.md)
- [CreateSchema](docs/CreateSchema.md)
- [CreateTable](docs/CreateTable.md)
- [CreateVolumeRequestContent](docs/CreateVolumeRequestContent.md)
- [DataSourceFormat](docs/DataSourceFormat.md)
- [Dependency](docs/Dependency.md)
- [DependencyList](docs/DependencyList.md)
- [FinalizeModelVersion](docs/FinalizeModelVersion.md)
- [FunctionDependency](docs/FunctionDependency.md)
- [FunctionInfo](docs/FunctionInfo.md)
- [FunctionParameterInfo](docs/FunctionParameterInfo.md)
- [FunctionParameterInfos](docs/FunctionParameterInfos.md)
- [FunctionParameterMode](docs/FunctionParameterMode.md)
- [FunctionParameterType](docs/FunctionParameterType.md)
- [GcpOauthToken](docs/GcpOauthToken.md)
- [GenerateTemporaryModelVersionCredential](docs/GenerateTemporaryModelVersionCredential.md)
- [GenerateTemporaryPathCredential](docs/GenerateTemporaryPathCredential.md)
- [GenerateTemporaryTableCredential](docs/GenerateTemporaryTableCredential.md)
- [GenerateTemporaryVolumeCredential](docs/GenerateTemporaryVolumeCredential.md)
- [GetMetastoreSummaryResponse](docs/GetMetastoreSummaryResponse.md)
- [ListCatalogsResponse](docs/ListCatalogsResponse.md)
- [ListFunctionsResponse](docs/ListFunctionsResponse.md)
- [ListModelVersionsResponse](docs/ListModelVersionsResponse.md)
- [ListRegisteredModelsResponse](docs/ListRegisteredModelsResponse.md)
- [ListSchemasResponse](docs/ListSchemasResponse.md)
- [ListTablesResponse](docs/ListTablesResponse.md)
- [ListVolumesResponseContent](docs/ListVolumesResponseContent.md)
- [ModelVersionInfo](docs/ModelVersionInfo.md)
- [ModelVersionOperation](docs/ModelVersionOperation.md)
- [ModelVersionStatus](docs/ModelVersionStatus.md)
- [PathOperation](docs/PathOperation.md)
- [PermissionsChange](docs/PermissionsChange.md)
- [PermissionsList](docs/PermissionsList.md)
- [PrincipalType](docs/PrincipalType.md)
- [Privilege](docs/Privilege.md)
- [PrivilegeAssignment](docs/PrivilegeAssignment.md)
- [RegisteredModelInfo](docs/RegisteredModelInfo.md)
- [SchemaInfo](docs/SchemaInfo.md)
- [SecurableType](docs/SecurableType.md)
- [TableDependency](docs/TableDependency.md)
- [TableInfo](docs/TableInfo.md)
- [TableOperation](docs/TableOperation.md)
- [TableType](docs/TableType.md)
- [TemporaryCredentials](docs/TemporaryCredentials.md)
- [UpdateCatalog](docs/UpdateCatalog.md)
- [UpdateModelVersion](docs/UpdateModelVersion.md)
- [UpdatePermissions](docs/UpdatePermissions.md)
- [UpdateRegisteredModel](docs/UpdateRegisteredModel.md)
- [UpdateSchema](docs/UpdateSchema.md)
- [UpdateTable](docs/UpdateTable.md)
- [UpdateVolumeRequestContent](docs/UpdateVolumeRequestContent.md)
- [VolumeInfo](docs/VolumeInfo.md)
- [VolumeOperation](docs/VolumeOperation.md)
- [VolumeType](docs/VolumeType.md)
<a id="documentation-for-authorization"></a>
## Documentation For Authorization
Endpoints do not require authorization.
## Author
Raw data
{
"_id": null,
"home_page": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
"name": "unitycatalog_client_preview",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.8",
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, Unity Catalog API",
"author": "OpenAPI Generator Community",
"author_email": "team@openapitools.org",
"download_url": "https://files.pythonhosted.org/packages/01/35/d371c1760a9635ffcf1534fb960108e58de8cf5b1fb4a1f4368ae98a8ea3/unitycatalog_client_preview-1.0.1.tar.gz",
"platform": null,
"description": "# unitycatalog-client-preview\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 0.1\n- Package version: 1.0.1\n- Generator version: 7.9.0\n- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport unitycatalog_client_preview\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport unitycatalog_client_preview\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nimport unitycatalog_client_preview\nfrom unitycatalog_client_preview.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost:8080/api/2.1/unity-catalog\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = unitycatalog_client_preview.Configuration(\n host = \"http://localhost:8080/api/2.1/unity-catalog\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith unitycatalog_client_preview.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = unitycatalog_client_preview.CatalogsApi(api_client)\n create_catalog = unitycatalog_client_preview.CreateCatalog() # CreateCatalog | (optional)\n\n try:\n # Create a catalog\n api_response = api_instance.create_catalog(create_catalog=create_catalog)\n print(\"The response of CatalogsApi->create_catalog:\\n\")\n pprint(api_response)\n except ApiException as e:\n print(\"Exception when calling CatalogsApi->create_catalog: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost:8080/api/2.1/unity-catalog*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CatalogsApi* | [**create_catalog**](docs/CatalogsApi.md#create_catalog) | **POST** /catalogs | Create a catalog\n*CatalogsApi* | [**delete_catalog**](docs/CatalogsApi.md#delete_catalog) | **DELETE** /catalogs/{name} | Delete a catalog\n*CatalogsApi* | [**get_catalog**](docs/CatalogsApi.md#get_catalog) | **GET** /catalogs/{name} | Get a catalog\n*CatalogsApi* | [**list_catalogs**](docs/CatalogsApi.md#list_catalogs) | **GET** /catalogs | List catalogs\n*CatalogsApi* | [**update_catalog**](docs/CatalogsApi.md#update_catalog) | **PATCH** /catalogs/{name} | Update a catalog\n*FunctionsApi* | [**create_function**](docs/FunctionsApi.md#create_function) | **POST** /functions | Create a function. WARNING: This API is experimental and will change in future versions. \n*FunctionsApi* | [**delete_function**](docs/FunctionsApi.md#delete_function) | **DELETE** /functions/{name} | Delete a function\n*FunctionsApi* | [**get_function**](docs/FunctionsApi.md#get_function) | **GET** /functions/{name} | Get a function\n*FunctionsApi* | [**list_functions**](docs/FunctionsApi.md#list_functions) | **GET** /functions | List functions\n*GrantsApi* | [**get**](docs/GrantsApi.md#get) | **GET** /permissions/{securable_type}/{full_name} | Get permissions\n*GrantsApi* | [**update**](docs/GrantsApi.md#update) | **PATCH** /permissions/{securable_type}/{full_name} | Update a permission\n*MetastoresApi* | [**summary**](docs/MetastoresApi.md#summary) | **GET** /metastore_summary | Get metastore summary\n*ModelVersionsApi* | [**create_model_version**](docs/ModelVersionsApi.md#create_model_version) | **POST** /models/versions | Create a model version. \n*ModelVersionsApi* | [**delete_model_version**](docs/ModelVersionsApi.md#delete_model_version) | **DELETE** /models/{full_name}/versions/{version} | Delete a model version\n*ModelVersionsApi* | [**finalize_model_version**](docs/ModelVersionsApi.md#finalize_model_version) | **PATCH** /models/{full_name}/versions/{version}/finalize | Finalize a model version\n*ModelVersionsApi* | [**get_model_version**](docs/ModelVersionsApi.md#get_model_version) | **GET** /models/{full_name}/versions/{version} | Get a model version\n*ModelVersionsApi* | [**list_model_versions**](docs/ModelVersionsApi.md#list_model_versions) | **GET** /models/{full_name}/versions | List model versions of the specified registered model.\n*ModelVersionsApi* | [**update_model_version**](docs/ModelVersionsApi.md#update_model_version) | **PATCH** /models/{full_name}/versions/{version} | Update a model version\n*RegisteredModelsApi* | [**create_registered_model**](docs/RegisteredModelsApi.md#create_registered_model) | **POST** /models | Create a model. WARNING: This API is experimental and will change in future versions. \n*RegisteredModelsApi* | [**delete_registered_model**](docs/RegisteredModelsApi.md#delete_registered_model) | **DELETE** /models/{full_name} | Delete a specified registered model.\n*RegisteredModelsApi* | [**get_registered_model**](docs/RegisteredModelsApi.md#get_registered_model) | **GET** /models/{full_name} | Get a specified registered model\n*RegisteredModelsApi* | [**list_registered_models**](docs/RegisteredModelsApi.md#list_registered_models) | **GET** /models | List models\n*RegisteredModelsApi* | [**update_registered_model**](docs/RegisteredModelsApi.md#update_registered_model) | **PATCH** /models/{full_name} | Update a registered model\n*SchemasApi* | [**create_schema**](docs/SchemasApi.md#create_schema) | **POST** /schemas | Create a schema\n*SchemasApi* | [**delete_schema**](docs/SchemasApi.md#delete_schema) | **DELETE** /schemas/{full_name} | Delete a schema\n*SchemasApi* | [**get_schema**](docs/SchemasApi.md#get_schema) | **GET** /schemas/{full_name} | Get a schema\n*SchemasApi* | [**list_schemas**](docs/SchemasApi.md#list_schemas) | **GET** /schemas | List schemas\n*SchemasApi* | [**update_schema**](docs/SchemasApi.md#update_schema) | **PATCH** /schemas/{full_name} | Update a schema\n*TablesApi* | [**create_table**](docs/TablesApi.md#create_table) | **POST** /tables | Create a table. Only external table creation is supported. WARNING: This API is experimental and will change in future versions. \n*TablesApi* | [**delete_table**](docs/TablesApi.md#delete_table) | **DELETE** /tables/{full_name} | Delete a table\n*TablesApi* | [**get_table**](docs/TablesApi.md#get_table) | **GET** /tables/{full_name} | Get a table\n*TablesApi* | [**list_tables**](docs/TablesApi.md#list_tables) | **GET** /tables | List tables\n*TablesApi* | [**update_table**](docs/TablesApi.md#update_table) | **PATCH** /tables/{full_name} | Update a table\n*TemporaryCredentialsApi* | [**generate_temporary_model_version_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_model_version_credentials) | **POST** /temporary-model-version-credentials | Generate temporary model version credentials. These credentials are used by clients to write and retrieve model artifacts from the model versions external storage location.\n*TemporaryCredentialsApi* | [**generate_temporary_path_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_path_credentials) | **POST** /temporary-path-credentials | Generate temporary path credentials.\n*TemporaryCredentialsApi* | [**generate_temporary_table_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_table_credentials) | **POST** /temporary-table-credentials | Generate temporary table credentials.\n*TemporaryCredentialsApi* | [**generate_temporary_volume_credentials**](docs/TemporaryCredentialsApi.md#generate_temporary_volume_credentials) | **POST** /temporary-volume-credentials | Generate temporary volume credentials.\n*VolumesApi* | [**create_volume**](docs/VolumesApi.md#create_volume) | **POST** /volumes | Create a Volume\n*VolumesApi* | [**delete_volume**](docs/VolumesApi.md#delete_volume) | **DELETE** /volumes/{name} | Delete a Volume\n*VolumesApi* | [**get_volume**](docs/VolumesApi.md#get_volume) | **GET** /volumes/{name} | Get a Volume\n*VolumesApi* | [**list_volumes**](docs/VolumesApi.md#list_volumes) | **GET** /volumes | List Volumes\n*VolumesApi* | [**update_volume**](docs/VolumesApi.md#update_volume) | **PATCH** /volumes/{name} | Update a Volume\n\n\n## Documentation For Models\n\n - [AwsCredentials](docs/AwsCredentials.md)\n - [AzureUserDelegationSAS](docs/AzureUserDelegationSAS.md)\n - [CatalogInfo](docs/CatalogInfo.md)\n - [ColumnInfo](docs/ColumnInfo.md)\n - [ColumnTypeName](docs/ColumnTypeName.md)\n - [CreateCatalog](docs/CreateCatalog.md)\n - [CreateFunction](docs/CreateFunction.md)\n - [CreateFunctionRequest](docs/CreateFunctionRequest.md)\n - [CreateModelVersion](docs/CreateModelVersion.md)\n - [CreateRegisteredModel](docs/CreateRegisteredModel.md)\n - [CreateSchema](docs/CreateSchema.md)\n - [CreateTable](docs/CreateTable.md)\n - [CreateVolumeRequestContent](docs/CreateVolumeRequestContent.md)\n - [DataSourceFormat](docs/DataSourceFormat.md)\n - [Dependency](docs/Dependency.md)\n - [DependencyList](docs/DependencyList.md)\n - [FinalizeModelVersion](docs/FinalizeModelVersion.md)\n - [FunctionDependency](docs/FunctionDependency.md)\n - [FunctionInfo](docs/FunctionInfo.md)\n - [FunctionParameterInfo](docs/FunctionParameterInfo.md)\n - [FunctionParameterInfos](docs/FunctionParameterInfos.md)\n - [FunctionParameterMode](docs/FunctionParameterMode.md)\n - [FunctionParameterType](docs/FunctionParameterType.md)\n - [GcpOauthToken](docs/GcpOauthToken.md)\n - [GenerateTemporaryModelVersionCredential](docs/GenerateTemporaryModelVersionCredential.md)\n - [GenerateTemporaryPathCredential](docs/GenerateTemporaryPathCredential.md)\n - [GenerateTemporaryTableCredential](docs/GenerateTemporaryTableCredential.md)\n - [GenerateTemporaryVolumeCredential](docs/GenerateTemporaryVolumeCredential.md)\n - [GetMetastoreSummaryResponse](docs/GetMetastoreSummaryResponse.md)\n - [ListCatalogsResponse](docs/ListCatalogsResponse.md)\n - [ListFunctionsResponse](docs/ListFunctionsResponse.md)\n - [ListModelVersionsResponse](docs/ListModelVersionsResponse.md)\n - [ListRegisteredModelsResponse](docs/ListRegisteredModelsResponse.md)\n - [ListSchemasResponse](docs/ListSchemasResponse.md)\n - [ListTablesResponse](docs/ListTablesResponse.md)\n - [ListVolumesResponseContent](docs/ListVolumesResponseContent.md)\n - [ModelVersionInfo](docs/ModelVersionInfo.md)\n - [ModelVersionOperation](docs/ModelVersionOperation.md)\n - [ModelVersionStatus](docs/ModelVersionStatus.md)\n - [PathOperation](docs/PathOperation.md)\n - [PermissionsChange](docs/PermissionsChange.md)\n - [PermissionsList](docs/PermissionsList.md)\n - [PrincipalType](docs/PrincipalType.md)\n - [Privilege](docs/Privilege.md)\n - [PrivilegeAssignment](docs/PrivilegeAssignment.md)\n - [RegisteredModelInfo](docs/RegisteredModelInfo.md)\n - [SchemaInfo](docs/SchemaInfo.md)\n - [SecurableType](docs/SecurableType.md)\n - [TableDependency](docs/TableDependency.md)\n - [TableInfo](docs/TableInfo.md)\n - [TableOperation](docs/TableOperation.md)\n - [TableType](docs/TableType.md)\n - [TemporaryCredentials](docs/TemporaryCredentials.md)\n - [UpdateCatalog](docs/UpdateCatalog.md)\n - [UpdateModelVersion](docs/UpdateModelVersion.md)\n - [UpdatePermissions](docs/UpdatePermissions.md)\n - [UpdateRegisteredModel](docs/UpdateRegisteredModel.md)\n - [UpdateSchema](docs/UpdateSchema.md)\n - [UpdateTable](docs/UpdateTable.md)\n - [UpdateVolumeRequestContent](docs/UpdateVolumeRequestContent.md)\n - [VolumeInfo](docs/VolumeInfo.md)\n - [VolumeOperation](docs/VolumeOperation.md)\n - [VolumeType](docs/VolumeType.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n",
"bugtrack_url": null,
"license": "NoLicense",
"summary": "Unity Catalog API",
"version": "1.0.1",
"project_urls": {
"Homepage": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
"Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
},
"split_keywords": [
"openapi",
" openapi-generator",
" unity catalog api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3b22302b4b1c435b91234e271485f0decdddf0cc3f20670dd4167e327fbb489c",
"md5": "5c13a1608052106938bf8993b3513a6a",
"sha256": "5391a4a4c829eec8d9947dc0d63de33a91d547318d3ff23db855fc99a3a4797b"
},
"downloads": -1,
"filename": "unitycatalog_client_preview-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c13a1608052106938bf8993b3513a6a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.8",
"size": 127140,
"upload_time": "2024-12-03T14:07:17",
"upload_time_iso_8601": "2024-12-03T14:07:17.354979Z",
"url": "https://files.pythonhosted.org/packages/3b/22/302b4b1c435b91234e271485f0decdddf0cc3f20670dd4167e327fbb489c/unitycatalog_client_preview-1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0135d371c1760a9635ffcf1534fb960108e58de8cf5b1fb4a1f4368ae98a8ea3",
"md5": "eb2829693f3c4339591506df5344308e",
"sha256": "ea6ca8eb138efee246e47b1ea4c4eaa79ceac52037140307991bea3da06099a8"
},
"downloads": -1,
"filename": "unitycatalog_client_preview-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "eb2829693f3c4339591506df5344308e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.8",
"size": 53877,
"upload_time": "2024-12-03T14:07:19",
"upload_time_iso_8601": "2024-12-03T14:07:19.007180Z",
"url": "https://files.pythonhosted.org/packages/01/35/d371c1760a9635ffcf1534fb960108e58de8cf5b1fb4a1f4368ae98a8ea3/unitycatalog_client_preview-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-03 14:07:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "GIT_USER_ID",
"github_project": "GIT_REPO_ID",
"github_not_found": true,
"lcname": "unitycatalog_client_preview"
}