collibra-catalog-database-registration-140


Namecollibra-catalog-database-registration-140 JSON
Version 1.4.0 PyPI version JSON
download
home_pageNone
SummaryCollibra Catalog Database Registration API
upload_time2024-06-24 17:54:20
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords swagger collibra catalog database registration api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # collibra-catalog_database_registration_140
This API allows you to manage the **metadata ingestion**, **profiling**, and **classification** of databases via Edge.  It provides the following functionalities: - Query and synchronize the database and schema connections. - Register the databases to be ingested, profiled and classified. - Configure and trigger the metadata ingestion of databases. - Configure and trigger the profiling and classification of databases. 

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 1.4.0
- Package version: 1.4.0
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install

If the python package is hosted on Github, you can install directly from Github

```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 collibra_catalog_database_registration 
```

### 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 collibra_catalog_database_registration
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import collibra_catalog_database_registration
from collibra_catalog_database_registration.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_database_registration.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))
body = collibra_catalog_database_registration.AddDatabaseRequest() # AddDatabaseRequest |  (optional)

try:
    # Create a Database asset
    api_response = api_instance.add_database(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DatabaseApi->add_database: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_database_registration.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))
database_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Database asset.
body = collibra_catalog_database_registration.ChangeDatabaseRequest() # ChangeDatabaseRequest |  (optional)

try:
    # Change a Database asset
    api_response = api_instance.change_database(database_id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DatabaseApi->change_database: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_database_registration.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))
parent_system_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the parent *System* asset. (optional)
edge_connection_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Edge connection. (optional)
database_connection_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the database connection (optional)
offset = 0 # int | The index of the first result to retrieve.  If not set (offset = <code>0</code>), results will be retrieved starting from row <code>0</code>.  (optional) (default to 0)
limit = 0 # int | The maximum number of results to retrieve.  If not set, the default limit  (limit = <code>0</code>) will be used. The maximum value for this parameter is <code>500<code>.  (optional) (default to 0)

try:
    # Find Database assets
    api_response = api_instance.find_databases(parent_system_id=parent_system_id, edge_connection_id=edge_connection_id, database_connection_id=database_connection_id, offset=offset, limit=limit)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DatabaseApi->find_databases: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_database_registration.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))
database_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Database asset.

try:
    # Get a Database asset
    api_response = api_instance.get_database(database_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DatabaseApi->get_database: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */rest/catalogDatabase/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DatabaseApi* | [**add_database**](docs/DatabaseApi.md#add_database) | **POST** /databases | Create a Database asset
*DatabaseApi* | [**change_database**](docs/DatabaseApi.md#change_database) | **PATCH** /databases/{databaseId} | Change a Database asset
*DatabaseApi* | [**find_databases**](docs/DatabaseApi.md#find_databases) | **GET** /databases | Find Database assets
*DatabaseApi* | [**get_database**](docs/DatabaseApi.md#get_database) | **GET** /databases/{databaseId} | Get a Database asset
*DatabaseConnectionApi* | [**find_database_connections**](docs/DatabaseConnectionApi.md#find_database_connections) | **GET** /databaseConnections | List database connections
*DatabaseConnectionApi* | [**get_database_connection**](docs/DatabaseConnectionApi.md#get_database_connection) | **GET** /databaseConnections/{databaseConnectionId} | Retrieve a database connection
*DatabaseConnectionApi* | [**refresh_database_connections**](docs/DatabaseConnectionApi.md#refresh_database_connections) | **POST** /databaseConnections/refresh | Refresh database connections from the data source
*MetadataApi* | [**add_multiple_schema_metadata_configurations**](docs/MetadataApi.md#add_multiple_schema_metadata_configurations) | **POST** /schemaMetadataConfigurations/batch | Add multiple schema metadata synchronization configurations
*MetadataApi* | [**add_schema_metadata_configuration**](docs/MetadataApi.md#add_schema_metadata_configuration) | **POST** /schemaMetadataConfigurations | Add a schema metadata synchronization configuration
*MetadataApi* | [**change_schema_metadata_configuration**](docs/MetadataApi.md#change_schema_metadata_configuration) | **PUT** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Update schema metadata synchronization configuration
*MetadataApi* | [**delete_schema_metadata_configuration**](docs/MetadataApi.md#delete_schema_metadata_configuration) | **DELETE** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Delete schema metadata synchronization configuration
*MetadataApi* | [**find_schema_metadata_configurations**](docs/MetadataApi.md#find_schema_metadata_configurations) | **GET** /schemaMetadataConfigurations | List schema metadata synchronization configurations
*MetadataApi* | [**get_schema_metadata_configuration**](docs/MetadataApi.md#get_schema_metadata_configuration) | **GET** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Retrieve a schema metadata synchronization configuration
*MetadataApi* | [**synchronize_database_metadata**](docs/MetadataApi.md#synchronize_database_metadata) | **POST** /databases/{databaseId}/synchronizeMetadata | Synchronize metadata for a Database asset
*ProfilingApi* | [**add_multiple_schema_profiling_configurations**](docs/ProfilingApi.md#add_multiple_schema_profiling_configurations) | **POST** /schemaProfilingConfigurations/batch | Add multiple schema profiling configurations
*ProfilingApi* | [**add_profiling_configuration**](docs/ProfilingApi.md#add_profiling_configuration) | **POST** /profilingConfigurations | Add profiling and classification configuration
*ProfilingApi* | [**add_schema_profiling_configuration**](docs/ProfilingApi.md#add_schema_profiling_configuration) | **POST** /schemaProfilingConfigurations | Add schema profiling and classification configuration
*ProfilingApi* | [**change_schema_profiling_configuration**](docs/ProfilingApi.md#change_schema_profiling_configuration) | **PATCH** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Update schema profiling and classification configuration
*ProfilingApi* | [**delete_profiling_configuration**](docs/ProfilingApi.md#delete_profiling_configuration) | **DELETE** /profilingConfigurations/{profilingConfigurationId} | Delete profiling and classification configuration
*ProfilingApi* | [**delete_schema_profiling_configuration**](docs/ProfilingApi.md#delete_schema_profiling_configuration) | **DELETE** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Delete schema profiling and classification configuration
*ProfilingApi* | [**find_profiling_configurations**](docs/ProfilingApi.md#find_profiling_configurations) | **GET** /profilingConfigurations | List profiling and classification configurations
*ProfilingApi* | [**find_schema_profiling_configurations**](docs/ProfilingApi.md#find_schema_profiling_configurations) | **GET** /schemaProfilingConfigurations | List schema profiling and classification configurations
*ProfilingApi* | [**get_profiling_configuration**](docs/ProfilingApi.md#get_profiling_configuration) | **GET** /profilingConfigurations/{profilingConfigurationId} | Retrieve a profiling and classification configuration
*ProfilingApi* | [**get_schema_profiling_configuration**](docs/ProfilingApi.md#get_schema_profiling_configuration) | **GET** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Retrieve schema profiling and classification configuration
*ProfilingApi* | [**profile_database**](docs/ProfilingApi.md#profile_database) | **POST** /databases/{databaseId}/profile | Profile and classify a Database asset
*ProfilingApi* | [**update_profiling_configuration**](docs/ProfilingApi.md#update_profiling_configuration) | **PATCH** /profilingConfigurations/{profilingConfigurationId} | Update profiling and classification configuration
*SchemaConnectionApi* | [**find_schema_connections**](docs/SchemaConnectionApi.md#find_schema_connections) | **GET** /schemaConnections | List schema connections
*SchemaConnectionApi* | [**get_schema_connection**](docs/SchemaConnectionApi.md#get_schema_connection) | **GET** /schemaConnections/{schemaConnectionId} | Retrieve a schema connection
*SchemaConnectionApi* | [**refresh_schema_connections**](docs/SchemaConnectionApi.md#refresh_schema_connections) | **POST** /schemaConnections/refresh | Refresh schema connections from the data source

## Documentation For Models

 - [AddDatabaseRequest](docs/AddDatabaseRequest.md)
 - [AddProfilingConfigurationRequest](docs/AddProfilingConfigurationRequest.md)
 - [AddSchemaMetadataConfigurationBatchRequest](docs/AddSchemaMetadataConfigurationBatchRequest.md)
 - [AddSchemaMetadataConfigurationRequest](docs/AddSchemaMetadataConfigurationRequest.md)
 - [AddSchemaProfilingConfigurationBatchRequest](docs/AddSchemaProfilingConfigurationBatchRequest.md)
 - [AddSchemaProfilingConfigurationRequest](docs/AddSchemaProfilingConfigurationRequest.md)
 - [ChangeDatabaseRequest](docs/ChangeDatabaseRequest.md)
 - [ChangeProfilingConfigurationRequest](docs/ChangeProfilingConfigurationRequest.md)
 - [ChangeSchemaMetadataConfigurationRequest](docs/ChangeSchemaMetadataConfigurationRequest.md)
 - [ChangeSchemaProfilingConfigurationRequest](docs/ChangeSchemaProfilingConfigurationRequest.md)
 - [Database](docs/Database.md)
 - [DatabaseConnection](docs/DatabaseConnection.md)
 - [DatabaseConnectionPagedResponse](docs/DatabaseConnectionPagedResponse.md)
 - [DatabaseMetadataSynchronizationRequest](docs/DatabaseMetadataSynchronizationRequest.md)
 - [DatabasePagedResponse](docs/DatabasePagedResponse.md)
 - [ExcludeTypes](docs/ExcludeTypes.md)
 - [Job](docs/Job.md)
 - [MetadataSynchronizationRule](docs/MetadataSynchronizationRule.md)
 - [MetadataSynchronizationRules](docs/MetadataSynchronizationRules.md)
 - [ProfilingConfiguration](docs/ProfilingConfiguration.md)
 - [ProfilingConfigurationPagedResponse](docs/ProfilingConfigurationPagedResponse.md)
 - [SampleSize](docs/SampleSize.md)
 - [SchemaConnection](docs/SchemaConnection.md)
 - [SchemaConnectionPagedResponse](docs/SchemaConnectionPagedResponse.md)
 - [SchemaMetadataConfiguration](docs/SchemaMetadataConfiguration.md)
 - [SchemaMetadataConfigurationPagedResponse](docs/SchemaMetadataConfigurationPagedResponse.md)
 - [SchemaMetadataConfigurations](docs/SchemaMetadataConfigurations.md)
 - [SchemaProfilingConfiguration](docs/SchemaProfilingConfiguration.md)
 - [SchemaProfilingConfigurationPagedResponse](docs/SchemaProfilingConfigurationPagedResponse.md)
 - [SchemaProfilingConfigurations](docs/SchemaProfilingConfigurations.md)
 - [SchemaProfilingRule](docs/SchemaProfilingRule.md)
 - [SchemaProfilingRules](docs/SchemaProfilingRules.md)
 - [StandardErrorResponse](docs/StandardErrorResponse.md)

## Documentation For Authorization


## basicAuth

- **Type**: HTTP basic authentication


## Author



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "collibra-catalog-database-registration-140",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Swagger, Collibra Catalog Database Registration API",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/5f/a3/a015d7ef8b591453dbe878a1f73cb62ab8484afd0b270721bfc2a5b6700c/collibra-catalog_database_registration_140-1.4.0.tar.gz",
    "platform": null,
    "description": "# collibra-catalog_database_registration_140\nThis API allows you to manage the **metadata ingestion**, **profiling**, and **classification** of databases via Edge.  It provides the following functionalities: - Query and synchronize the database and schema connections. - Register the databases to be ingested, profiled and classified. - Configure and trigger the metadata ingestion of databases. - Configure and trigger the profiling and classification of databases. \n\nThis Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:\n\n- API version: 1.4.0\n- Package version: 1.4.0\n- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen\n\n## Requirements.\n\nPython 2.7 and 3.4+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on Github, you can install directly from Github\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 collibra_catalog_database_registration \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 collibra_catalog_database_registration\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\nimport time\nimport collibra_catalog_database_registration\nfrom collibra_catalog_database_registration.rest import ApiException\nfrom pprint import pprint\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_database_registration.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))\nbody = collibra_catalog_database_registration.AddDatabaseRequest() # AddDatabaseRequest |  (optional)\n\ntry:\n    # Create a Database asset\n    api_response = api_instance.add_database(body=body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling DatabaseApi->add_database: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_database_registration.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))\ndatabase_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Database asset.\nbody = collibra_catalog_database_registration.ChangeDatabaseRequest() # ChangeDatabaseRequest |  (optional)\n\ntry:\n    # Change a Database asset\n    api_response = api_instance.change_database(database_id, body=body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling DatabaseApi->change_database: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_database_registration.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))\nparent_system_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the parent *System* asset. (optional)\nedge_connection_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Edge connection. (optional)\ndatabase_connection_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the database connection (optional)\noffset = 0 # int | The index of the first result to retrieve.  If not set (offset = <code>0</code>), results will be retrieved starting from row <code>0</code>.  (optional) (default to 0)\nlimit = 0 # int | The maximum number of results to retrieve.  If not set, the default limit  (limit = <code>0</code>) will be used. The maximum value for this parameter is <code>500<code>.  (optional) (default to 0)\n\ntry:\n    # Find Database assets\n    api_response = api_instance.find_databases(parent_system_id=parent_system_id, edge_connection_id=edge_connection_id, database_connection_id=database_connection_id, offset=offset, limit=limit)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling DatabaseApi->find_databases: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_database_registration.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_database_registration.DatabaseApi(collibra_catalog_database_registration.ApiClient(configuration))\ndatabase_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | The ID of the Database asset.\n\ntry:\n    # Get a Database asset\n    api_response = api_instance.get_database(database_id)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling DatabaseApi->get_database: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to */rest/catalogDatabase/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DatabaseApi* | [**add_database**](docs/DatabaseApi.md#add_database) | **POST** /databases | Create a Database asset\n*DatabaseApi* | [**change_database**](docs/DatabaseApi.md#change_database) | **PATCH** /databases/{databaseId} | Change a Database asset\n*DatabaseApi* | [**find_databases**](docs/DatabaseApi.md#find_databases) | **GET** /databases | Find Database assets\n*DatabaseApi* | [**get_database**](docs/DatabaseApi.md#get_database) | **GET** /databases/{databaseId} | Get a Database asset\n*DatabaseConnectionApi* | [**find_database_connections**](docs/DatabaseConnectionApi.md#find_database_connections) | **GET** /databaseConnections | List database connections\n*DatabaseConnectionApi* | [**get_database_connection**](docs/DatabaseConnectionApi.md#get_database_connection) | **GET** /databaseConnections/{databaseConnectionId} | Retrieve a database connection\n*DatabaseConnectionApi* | [**refresh_database_connections**](docs/DatabaseConnectionApi.md#refresh_database_connections) | **POST** /databaseConnections/refresh | Refresh database connections from the data source\n*MetadataApi* | [**add_multiple_schema_metadata_configurations**](docs/MetadataApi.md#add_multiple_schema_metadata_configurations) | **POST** /schemaMetadataConfigurations/batch | Add multiple schema metadata synchronization configurations\n*MetadataApi* | [**add_schema_metadata_configuration**](docs/MetadataApi.md#add_schema_metadata_configuration) | **POST** /schemaMetadataConfigurations | Add a schema metadata synchronization configuration\n*MetadataApi* | [**change_schema_metadata_configuration**](docs/MetadataApi.md#change_schema_metadata_configuration) | **PUT** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Update schema metadata synchronization configuration\n*MetadataApi* | [**delete_schema_metadata_configuration**](docs/MetadataApi.md#delete_schema_metadata_configuration) | **DELETE** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Delete schema metadata synchronization configuration\n*MetadataApi* | [**find_schema_metadata_configurations**](docs/MetadataApi.md#find_schema_metadata_configurations) | **GET** /schemaMetadataConfigurations | List schema metadata synchronization configurations\n*MetadataApi* | [**get_schema_metadata_configuration**](docs/MetadataApi.md#get_schema_metadata_configuration) | **GET** /schemaMetadataConfigurations/{schemaMetadataConfigurationId} | Retrieve a schema metadata synchronization configuration\n*MetadataApi* | [**synchronize_database_metadata**](docs/MetadataApi.md#synchronize_database_metadata) | **POST** /databases/{databaseId}/synchronizeMetadata | Synchronize metadata for a Database asset\n*ProfilingApi* | [**add_multiple_schema_profiling_configurations**](docs/ProfilingApi.md#add_multiple_schema_profiling_configurations) | **POST** /schemaProfilingConfigurations/batch | Add multiple schema profiling configurations\n*ProfilingApi* | [**add_profiling_configuration**](docs/ProfilingApi.md#add_profiling_configuration) | **POST** /profilingConfigurations | Add profiling and classification configuration\n*ProfilingApi* | [**add_schema_profiling_configuration**](docs/ProfilingApi.md#add_schema_profiling_configuration) | **POST** /schemaProfilingConfigurations | Add schema profiling and classification configuration\n*ProfilingApi* | [**change_schema_profiling_configuration**](docs/ProfilingApi.md#change_schema_profiling_configuration) | **PATCH** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Update schema profiling and classification configuration\n*ProfilingApi* | [**delete_profiling_configuration**](docs/ProfilingApi.md#delete_profiling_configuration) | **DELETE** /profilingConfigurations/{profilingConfigurationId} | Delete profiling and classification configuration\n*ProfilingApi* | [**delete_schema_profiling_configuration**](docs/ProfilingApi.md#delete_schema_profiling_configuration) | **DELETE** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Delete schema profiling and classification configuration\n*ProfilingApi* | [**find_profiling_configurations**](docs/ProfilingApi.md#find_profiling_configurations) | **GET** /profilingConfigurations | List profiling and classification configurations\n*ProfilingApi* | [**find_schema_profiling_configurations**](docs/ProfilingApi.md#find_schema_profiling_configurations) | **GET** /schemaProfilingConfigurations | List schema profiling and classification configurations\n*ProfilingApi* | [**get_profiling_configuration**](docs/ProfilingApi.md#get_profiling_configuration) | **GET** /profilingConfigurations/{profilingConfigurationId} | Retrieve a profiling and classification configuration\n*ProfilingApi* | [**get_schema_profiling_configuration**](docs/ProfilingApi.md#get_schema_profiling_configuration) | **GET** /schemaProfilingConfigurations/{schemaProfilingConfigurationId} | Retrieve schema profiling and classification configuration\n*ProfilingApi* | [**profile_database**](docs/ProfilingApi.md#profile_database) | **POST** /databases/{databaseId}/profile | Profile and classify a Database asset\n*ProfilingApi* | [**update_profiling_configuration**](docs/ProfilingApi.md#update_profiling_configuration) | **PATCH** /profilingConfigurations/{profilingConfigurationId} | Update profiling and classification configuration\n*SchemaConnectionApi* | [**find_schema_connections**](docs/SchemaConnectionApi.md#find_schema_connections) | **GET** /schemaConnections | List schema connections\n*SchemaConnectionApi* | [**get_schema_connection**](docs/SchemaConnectionApi.md#get_schema_connection) | **GET** /schemaConnections/{schemaConnectionId} | Retrieve a schema connection\n*SchemaConnectionApi* | [**refresh_schema_connections**](docs/SchemaConnectionApi.md#refresh_schema_connections) | **POST** /schemaConnections/refresh | Refresh schema connections from the data source\n\n## Documentation For Models\n\n - [AddDatabaseRequest](docs/AddDatabaseRequest.md)\n - [AddProfilingConfigurationRequest](docs/AddProfilingConfigurationRequest.md)\n - [AddSchemaMetadataConfigurationBatchRequest](docs/AddSchemaMetadataConfigurationBatchRequest.md)\n - [AddSchemaMetadataConfigurationRequest](docs/AddSchemaMetadataConfigurationRequest.md)\n - [AddSchemaProfilingConfigurationBatchRequest](docs/AddSchemaProfilingConfigurationBatchRequest.md)\n - [AddSchemaProfilingConfigurationRequest](docs/AddSchemaProfilingConfigurationRequest.md)\n - [ChangeDatabaseRequest](docs/ChangeDatabaseRequest.md)\n - [ChangeProfilingConfigurationRequest](docs/ChangeProfilingConfigurationRequest.md)\n - [ChangeSchemaMetadataConfigurationRequest](docs/ChangeSchemaMetadataConfigurationRequest.md)\n - [ChangeSchemaProfilingConfigurationRequest](docs/ChangeSchemaProfilingConfigurationRequest.md)\n - [Database](docs/Database.md)\n - [DatabaseConnection](docs/DatabaseConnection.md)\n - [DatabaseConnectionPagedResponse](docs/DatabaseConnectionPagedResponse.md)\n - [DatabaseMetadataSynchronizationRequest](docs/DatabaseMetadataSynchronizationRequest.md)\n - [DatabasePagedResponse](docs/DatabasePagedResponse.md)\n - [ExcludeTypes](docs/ExcludeTypes.md)\n - [Job](docs/Job.md)\n - [MetadataSynchronizationRule](docs/MetadataSynchronizationRule.md)\n - [MetadataSynchronizationRules](docs/MetadataSynchronizationRules.md)\n - [ProfilingConfiguration](docs/ProfilingConfiguration.md)\n - [ProfilingConfigurationPagedResponse](docs/ProfilingConfigurationPagedResponse.md)\n - [SampleSize](docs/SampleSize.md)\n - [SchemaConnection](docs/SchemaConnection.md)\n - [SchemaConnectionPagedResponse](docs/SchemaConnectionPagedResponse.md)\n - [SchemaMetadataConfiguration](docs/SchemaMetadataConfiguration.md)\n - [SchemaMetadataConfigurationPagedResponse](docs/SchemaMetadataConfigurationPagedResponse.md)\n - [SchemaMetadataConfigurations](docs/SchemaMetadataConfigurations.md)\n - [SchemaProfilingConfiguration](docs/SchemaProfilingConfiguration.md)\n - [SchemaProfilingConfigurationPagedResponse](docs/SchemaProfilingConfigurationPagedResponse.md)\n - [SchemaProfilingConfigurations](docs/SchemaProfilingConfigurations.md)\n - [SchemaProfilingRule](docs/SchemaProfilingRule.md)\n - [SchemaProfilingRules](docs/SchemaProfilingRules.md)\n - [StandardErrorResponse](docs/StandardErrorResponse.md)\n\n## Documentation For Authorization\n\n\n## basicAuth\n\n- **Type**: HTTP basic authentication\n\n\n## Author\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Collibra Catalog Database Registration API",
    "version": "1.4.0",
    "project_urls": null,
    "split_keywords": [
        "swagger",
        " collibra catalog database registration api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0467e8a63d14cd69077c5bc2a79494db953c9a0f06c9fd48285335a38780d55b",
                "md5": "daa3378cec5a0bb1cac5b815dcfc492e",
                "sha256": "dc8ffb84a705ea57fb6d65d53d3e537b05dce2c7232d6f2a62455b4e1668c698"
            },
            "downloads": -1,
            "filename": "collibra_catalog_database_registration_140-1.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "daa3378cec5a0bb1cac5b815dcfc492e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 119316,
            "upload_time": "2024-06-24T17:54:19",
            "upload_time_iso_8601": "2024-06-24T17:54:19.199819Z",
            "url": "https://files.pythonhosted.org/packages/04/67/e8a63d14cd69077c5bc2a79494db953c9a0f06c9fd48285335a38780d55b/collibra_catalog_database_registration_140-1.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fa3a015d7ef8b591453dbe878a1f73cb62ab8484afd0b270721bfc2a5b6700c",
                "md5": "33cafdd801dc318ae77256f1a9beb01a",
                "sha256": "eb9cada174a9cf28dc81d7b1df2788023046ee4265a7c27d1ff6d0f9256962c5"
            },
            "downloads": -1,
            "filename": "collibra-catalog_database_registration_140-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "33cafdd801dc318ae77256f1a9beb01a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 42447,
            "upload_time": "2024-06-24T17:54:20",
            "upload_time_iso_8601": "2024-06-24T17:54:20.746054Z",
            "url": "https://files.pythonhosted.org/packages/5f/a3/a015d7ef8b591453dbe878a1f73cb62ab8484afd0b270721bfc2a5b6700c/collibra-catalog_database_registration_140-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-24 17:54:20",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "collibra-catalog-database-registration-140"
}
        
Elapsed time: 0.30256s