# collibra-catalog_cloud_ingestions_100
<p>The Catalog Cloud Ingestions API offers functionality related to the catalog product.<br/> It is mainly focused on facilitating the ingestion of information into Catalog. The API enables users to more easily connect Catalog to sources that are not necessarily natively supported in the product. </p>
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
- API version: 1.0
- Package version: 1.0.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_cloud_ingestions
```
### 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_cloud_ingestions
```
## 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_cloud_ingestions
from collibra_catalog_cloud_ingestions.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = collibra_catalog_cloud_ingestions.AddCrawlerRequest() # AddCrawlerRequest | (optional)
try:
# Add a crawler
api_response = api_instance.add_crawler(file_system_type, asset_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->add_crawler: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = collibra_catalog_cloud_ingestions.AddFileSystemScheduleRequest() # AddFileSystemScheduleRequest | (optional)
try:
# Add a synchronization schedule
api_response = api_instance.add_schedule(file_system_type, asset_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->add_schedule: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = 'body_example' # str | (optional)
try:
# Add a capability
api_instance.attach_capability(file_system_type, asset_id, body=body)
except ApiException as e:
print("Exception when calling ADLSApi->attach_capability: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Schedule canceling of cloud synchronization
api_instance.cancel(file_system_type, asset_id)
except ApiException as e:
print("Exception when calling ADLSApi->cancel: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = collibra_catalog_cloud_ingestions.RemoveCrawlerRequest() # RemoveCrawlerRequest | (optional)
try:
# Delete a crawler
api_instance.delete_crawler(file_system_type, asset_id, body=body)
except ApiException as e:
print("Exception when calling ADLSApi->delete_crawler: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Delete a synchronization schedule
api_instance.delete_schedule(file_system_type, asset_id)
except ApiException as e:
print("Exception when calling ADLSApi->delete_schedule: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Remove a capability
api_instance.detach_capability(file_system_type, asset_id)
except ApiException as e:
print("Exception when calling ADLSApi->detach_capability: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
capability_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | (optional)
try:
# Find filesystem assets that have the given Edge capability attached
api_response = api_instance.find_filesystem_asset_ids_for_capability(capability_id=capability_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->find_filesystem_asset_ids_for_capability: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Retrieve a capability
api_response = api_instance.get_attached_capability_id(file_system_type, asset_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->get_attached_capability_id: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# List crawlers
api_response = api_instance.get_crawlers(file_system_type, asset_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->get_crawlers: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Retrieve a synchronization schedule
api_response = api_instance.get_schedule(file_system_type, asset_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->get_schedule: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
try:
# Synchronize a file system
api_response = api_instance.synchronize_file_system(file_system_type, asset_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->synchronize_file_system: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = collibra_catalog_cloud_ingestions.UpdateCrawlerRequest() # UpdateCrawlerRequest | (optional)
try:
# Update a crawler
api_response = api_instance.update_crawler(file_system_type, asset_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->update_crawler: %s\n" % e)
# Configure HTTP basic authorization: basicAuth
configuration = collibra_catalog_cloud_ingestions.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))
file_system_type = 'file_system_type_example' # str |
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |
body = collibra_catalog_cloud_ingestions.ChangeFileSystemScheduleRequest() # ChangeFileSystemScheduleRequest | (optional)
try:
# Update a synchronization schedule
api_response = api_instance.update_schedule(file_system_type, asset_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ADLSApi->update_schedule: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to */rest/catalog/1.0*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ADLSApi* | [**add_crawler**](docs/ADLSApi.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler
*ADLSApi* | [**add_schedule**](docs/ADLSApi.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule
*ADLSApi* | [**attach_capability**](docs/ADLSApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability
*ADLSApi* | [**cancel**](docs/ADLSApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization
*ADLSApi* | [**delete_crawler**](docs/ADLSApi.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler
*ADLSApi* | [**delete_schedule**](docs/ADLSApi.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule
*ADLSApi* | [**detach_capability**](docs/ADLSApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability
*ADLSApi* | [**find_filesystem_asset_ids_for_capability**](docs/ADLSApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached
*ADLSApi* | [**get_attached_capability_id**](docs/ADLSApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability
*ADLSApi* | [**get_crawlers**](docs/ADLSApi.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers
*ADLSApi* | [**get_schedule**](docs/ADLSApi.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule
*ADLSApi* | [**synchronize_file_system**](docs/ADLSApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system
*ADLSApi* | [**update_crawler**](docs/ADLSApi.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler
*ADLSApi* | [**update_schedule**](docs/ADLSApi.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule
*GCSApi* | [**add_crawler**](docs/GCSApi.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler
*GCSApi* | [**add_schedule**](docs/GCSApi.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule
*GCSApi* | [**attach_capability**](docs/GCSApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability
*GCSApi* | [**cancel**](docs/GCSApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization
*GCSApi* | [**delete_crawler**](docs/GCSApi.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler
*GCSApi* | [**delete_schedule**](docs/GCSApi.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule
*GCSApi* | [**detach_capability**](docs/GCSApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability
*GCSApi* | [**find_filesystem_asset_ids_for_capability**](docs/GCSApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached
*GCSApi* | [**get_attached_capability_id**](docs/GCSApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability
*GCSApi* | [**get_crawlers**](docs/GCSApi.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers
*GCSApi* | [**get_schedule**](docs/GCSApi.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule
*GCSApi* | [**synchronize_file_system**](docs/GCSApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system
*GCSApi* | [**update_crawler**](docs/GCSApi.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler
*GCSApi* | [**update_schedule**](docs/GCSApi.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule
*GENERICApi* | [**add_generic_schedule**](docs/GENERICApi.md#add_generic_schedule) | **POST** /genericIntegration/{ingestibleId}/schedule | Add a schedule
*GENERICApi* | [**cancel_capability_job**](docs/GENERICApi.md#cancel_capability_job) | **DELETE** /genericIntegration/{ingestibleId}/cancel | Cancel a synchronization
*GENERICApi* | [**delete_config**](docs/GENERICApi.md#delete_config) | **DELETE** /genericIntegration/{ingestibleId}/configuration | Delete a generic configuration
*GENERICApi* | [**delete_generic_schedule**](docs/GENERICApi.md#delete_generic_schedule) | **DELETE** /genericIntegration/{ingestibleId}/schedule | Delete a schedule
*GENERICApi* | [**get_config**](docs/GENERICApi.md#get_config) | **GET** /genericIntegration/{ingestibleId}/configuration | Retrieve a generic configuration
*GENERICApi* | [**get_generic_schedule**](docs/GENERICApi.md#get_generic_schedule) | **GET** /genericIntegration/{ingestibleId}/schedule | Retrieve a schedule
*GENERICApi* | [**get_schema**](docs/GENERICApi.md#get_schema) | **GET** /genericIntegration/{ingestibleId}/configuration/schema | Retrieve data schema as part of generic configuration
*GENERICApi* | [**save_config**](docs/GENERICApi.md#save_config) | **PUT** /genericIntegration/{ingestibleId}/configuration | Create or update a generic configuration
*GENERICApi* | [**start_capability_job**](docs/GENERICApi.md#start_capability_job) | **POST** /genericIntegration/{ingestibleId}/run | Starts capability on Edge.
*GENERICApi* | [**update_generic_schedule**](docs/GENERICApi.md#update_generic_schedule) | **PUT** /genericIntegration/{ingestibleId}/schedule | Update a schedule
*POWERBIApi* | [**cancel**](docs/POWERBIApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization
*POWERBIApi* | [**synchronize_file_system**](docs/POWERBIApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system
*S3Api* | [**add_crawler**](docs/S3Api.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler
*S3Api* | [**add_schedule**](docs/S3Api.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule
*S3Api* | [**attach_capability**](docs/S3Api.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability
*S3Api* | [**cancel**](docs/S3Api.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization
*S3Api* | [**change_crawler_custom_classifiers**](docs/S3Api.md#change_crawler_custom_classifiers) | **PATCH** /filesystem/s3/{assetId}/crawlers/{crawlerId} | Set the custom classifiers.
*S3Api* | [**delete_crawler**](docs/S3Api.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler
*S3Api* | [**delete_schedule**](docs/S3Api.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule
*S3Api* | [**detach_capability**](docs/S3Api.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability
*S3Api* | [**find_filesystem_asset_ids_for_capability**](docs/S3Api.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached
*S3Api* | [**get_attached_capability_id**](docs/S3Api.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability
*S3Api* | [**get_crawler_custom_classifiers**](docs/S3Api.md#get_crawler_custom_classifiers) | **GET** /filesystem/s3/{assetId}/crawlers/{crawlerId} | Get the custom classifiers.
*S3Api* | [**get_crawlers**](docs/S3Api.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers
*S3Api* | [**get_schedule**](docs/S3Api.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule
*S3Api* | [**synchronize_file_system**](docs/S3Api.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system
*S3Api* | [**synchronize_s3_file_system**](docs/S3Api.md#synchronize_s3_file_system) | **POST** /filesystem/s3/{assetId}/synchronize/jobserver | Asynchronously synchronizes an S3 File System.
*S3Api* | [**update_crawler**](docs/S3Api.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler
*S3Api* | [**update_schedule**](docs/S3Api.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule
*TABLEAUApi* | [**attach_capability**](docs/TABLEAUApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability
*TABLEAUApi* | [**cancel**](docs/TABLEAUApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization
*TABLEAUApi* | [**detach_capability**](docs/TABLEAUApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability
*TABLEAUApi* | [**find_filesystem_asset_ids_for_capability**](docs/TABLEAUApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached
*TABLEAUApi* | [**get_attached_capability_id**](docs/TABLEAUApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability
*TABLEAUApi* | [**synchronize_file_system**](docs/TABLEAUApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system
## Documentation For Models
- [AddCrawlerRequest](docs/AddCrawlerRequest.md)
- [AddFileSystemScheduleRequest](docs/AddFileSystemScheduleRequest.md)
- [AddGenericScheduleRequest](docs/AddGenericScheduleRequest.md)
- [ChangeFileSystemScheduleRequest](docs/ChangeFileSystemScheduleRequest.md)
- [ChangeGenericScheduleRequest](docs/ChangeGenericScheduleRequest.md)
- [Crawler](docs/Crawler.md)
- [CrawlerIncludePath](docs/CrawlerIncludePath.md)
- [CrawlerIncludePathRequest](docs/CrawlerIncludePathRequest.md)
- [GenericConfiguration](docs/GenericConfiguration.md)
- [Job](docs/Job.md)
- [RemoveCrawlerRequest](docs/RemoveCrawlerRequest.md)
- [SaveGenericConfigRequest](docs/SaveGenericConfigRequest.md)
- [Schedule](docs/Schedule.md)
- [UpdateCrawlerCustomClassifiersRequest](docs/UpdateCrawlerCustomClassifiersRequest.md)
- [UpdateCrawlerRequest](docs/UpdateCrawlerRequest.md)
## Documentation For Authorization
## basicAuth
- **Type**: HTTP basic authentication
## Author
Raw data
{
"_id": null,
"home_page": null,
"name": "collibra-catalog-cloud-ingestions-100",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "Swagger, Collibra Catalog Cloud Ingestions API",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/50/1c/c65a6cc3194ffa677f32e2c7e119c46e55f5cc5d7574cb450f96a40b8001/collibra-catalog_cloud_ingestions_100-1.0.0.tar.gz",
"platform": null,
"description": "# collibra-catalog_cloud_ingestions_100\n<p>The Catalog Cloud Ingestions API offers functionality related to the catalog product.<br/> It is mainly focused on facilitating the ingestion of information into Catalog. The API enables users to more easily connect Catalog to sources that are not necessarily natively supported in the product. </p>\n\nThis Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:\n\n- API version: 1.0\n- Package version: 1.0.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_cloud_ingestions \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_cloud_ingestions\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_cloud_ingestions\nfrom collibra_catalog_cloud_ingestions.rest import ApiException\nfrom pprint import pprint\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog_cloud_ingestions.AddCrawlerRequest() # AddCrawlerRequest | (optional)\n\ntry:\n # Add a crawler\n api_response = api_instance.add_crawler(file_system_type, asset_id, body=body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->add_crawler: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog_cloud_ingestions.AddFileSystemScheduleRequest() # AddFileSystemScheduleRequest | (optional)\n\ntry:\n # Add a synchronization schedule\n api_response = api_instance.add_schedule(file_system_type, asset_id, body=body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->add_schedule: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = 'body_example' # str | (optional)\n\ntry:\n # Add a capability\n api_instance.attach_capability(file_system_type, asset_id, body=body)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->attach_capability: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Schedule canceling of cloud synchronization\n api_instance.cancel(file_system_type, asset_id)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->cancel: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog_cloud_ingestions.RemoveCrawlerRequest() # RemoveCrawlerRequest | (optional)\n\ntry:\n # Delete a crawler\n api_instance.delete_crawler(file_system_type, asset_id, body=body)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->delete_crawler: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Delete a synchronization schedule\n api_instance.delete_schedule(file_system_type, asset_id)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->delete_schedule: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Remove a capability\n api_instance.detach_capability(file_system_type, asset_id)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->detach_capability: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\ncapability_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | (optional)\n\ntry:\n # Find filesystem assets that have the given Edge capability attached\n api_response = api_instance.find_filesystem_asset_ids_for_capability(capability_id=capability_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->find_filesystem_asset_ids_for_capability: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Retrieve a capability\n api_response = api_instance.get_attached_capability_id(file_system_type, asset_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->get_attached_capability_id: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # List crawlers\n api_response = api_instance.get_crawlers(file_system_type, asset_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->get_crawlers: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Retrieve a synchronization schedule\n api_response = api_instance.get_schedule(file_system_type, asset_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->get_schedule: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \n\ntry:\n # Synchronize a file system\n api_response = api_instance.synchronize_file_system(file_system_type, asset_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->synchronize_file_system: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog_cloud_ingestions.UpdateCrawlerRequest() # UpdateCrawlerRequest | (optional)\n\ntry:\n # Update a crawler\n api_response = api_instance.update_crawler(file_system_type, asset_id, body=body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->update_crawler: %s\\n\" % e)\n# Configure HTTP basic authorization: basicAuth\nconfiguration = collibra_catalog_cloud_ingestions.Configuration()\nconfiguration.username = 'YOUR_USERNAME'\nconfiguration.password = 'YOUR_PASSWORD'\n\n# create an instance of the API class\napi_instance = collibra_catalog_cloud_ingestions.ADLSApi(collibra_catalog_cloud_ingestions.ApiClient(configuration))\nfile_system_type = 'file_system_type_example' # str | \nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog_cloud_ingestions.ChangeFileSystemScheduleRequest() # ChangeFileSystemScheduleRequest | (optional)\n\ntry:\n # Update a synchronization schedule\n api_response = api_instance.update_schedule(file_system_type, asset_id, body=body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling ADLSApi->update_schedule: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to */rest/catalog/1.0*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ADLSApi* | [**add_crawler**](docs/ADLSApi.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler\n*ADLSApi* | [**add_schedule**](docs/ADLSApi.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule\n*ADLSApi* | [**attach_capability**](docs/ADLSApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability\n*ADLSApi* | [**cancel**](docs/ADLSApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization\n*ADLSApi* | [**delete_crawler**](docs/ADLSApi.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler\n*ADLSApi* | [**delete_schedule**](docs/ADLSApi.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule\n*ADLSApi* | [**detach_capability**](docs/ADLSApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability\n*ADLSApi* | [**find_filesystem_asset_ids_for_capability**](docs/ADLSApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached\n*ADLSApi* | [**get_attached_capability_id**](docs/ADLSApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability\n*ADLSApi* | [**get_crawlers**](docs/ADLSApi.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers\n*ADLSApi* | [**get_schedule**](docs/ADLSApi.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule\n*ADLSApi* | [**synchronize_file_system**](docs/ADLSApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system\n*ADLSApi* | [**update_crawler**](docs/ADLSApi.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler\n*ADLSApi* | [**update_schedule**](docs/ADLSApi.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule\n*GCSApi* | [**add_crawler**](docs/GCSApi.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler\n*GCSApi* | [**add_schedule**](docs/GCSApi.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule\n*GCSApi* | [**attach_capability**](docs/GCSApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability\n*GCSApi* | [**cancel**](docs/GCSApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization\n*GCSApi* | [**delete_crawler**](docs/GCSApi.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler\n*GCSApi* | [**delete_schedule**](docs/GCSApi.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule\n*GCSApi* | [**detach_capability**](docs/GCSApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability\n*GCSApi* | [**find_filesystem_asset_ids_for_capability**](docs/GCSApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached\n*GCSApi* | [**get_attached_capability_id**](docs/GCSApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability\n*GCSApi* | [**get_crawlers**](docs/GCSApi.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers\n*GCSApi* | [**get_schedule**](docs/GCSApi.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule\n*GCSApi* | [**synchronize_file_system**](docs/GCSApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system\n*GCSApi* | [**update_crawler**](docs/GCSApi.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler\n*GCSApi* | [**update_schedule**](docs/GCSApi.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule\n*GENERICApi* | [**add_generic_schedule**](docs/GENERICApi.md#add_generic_schedule) | **POST** /genericIntegration/{ingestibleId}/schedule | Add a schedule\n*GENERICApi* | [**cancel_capability_job**](docs/GENERICApi.md#cancel_capability_job) | **DELETE** /genericIntegration/{ingestibleId}/cancel | Cancel a synchronization\n*GENERICApi* | [**delete_config**](docs/GENERICApi.md#delete_config) | **DELETE** /genericIntegration/{ingestibleId}/configuration | Delete a generic configuration\n*GENERICApi* | [**delete_generic_schedule**](docs/GENERICApi.md#delete_generic_schedule) | **DELETE** /genericIntegration/{ingestibleId}/schedule | Delete a schedule\n*GENERICApi* | [**get_config**](docs/GENERICApi.md#get_config) | **GET** /genericIntegration/{ingestibleId}/configuration | Retrieve a generic configuration\n*GENERICApi* | [**get_generic_schedule**](docs/GENERICApi.md#get_generic_schedule) | **GET** /genericIntegration/{ingestibleId}/schedule | Retrieve a schedule\n*GENERICApi* | [**get_schema**](docs/GENERICApi.md#get_schema) | **GET** /genericIntegration/{ingestibleId}/configuration/schema | Retrieve data schema as part of generic configuration\n*GENERICApi* | [**save_config**](docs/GENERICApi.md#save_config) | **PUT** /genericIntegration/{ingestibleId}/configuration | Create or update a generic configuration\n*GENERICApi* | [**start_capability_job**](docs/GENERICApi.md#start_capability_job) | **POST** /genericIntegration/{ingestibleId}/run | Starts capability on Edge.\n*GENERICApi* | [**update_generic_schedule**](docs/GENERICApi.md#update_generic_schedule) | **PUT** /genericIntegration/{ingestibleId}/schedule | Update a schedule\n*POWERBIApi* | [**cancel**](docs/POWERBIApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization\n*POWERBIApi* | [**synchronize_file_system**](docs/POWERBIApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system\n*S3Api* | [**add_crawler**](docs/S3Api.md#add_crawler) | **POST** /filesystem/{fileSystemType}/{assetId}/crawlers | Add a crawler\n*S3Api* | [**add_schedule**](docs/S3Api.md#add_schedule) | **POST** /filesystem/{fileSystemType}/{assetId}/schedule | Add a synchronization schedule\n*S3Api* | [**attach_capability**](docs/S3Api.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability\n*S3Api* | [**cancel**](docs/S3Api.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization\n*S3Api* | [**change_crawler_custom_classifiers**](docs/S3Api.md#change_crawler_custom_classifiers) | **PATCH** /filesystem/s3/{assetId}/crawlers/{crawlerId} | Set the custom classifiers.\n*S3Api* | [**delete_crawler**](docs/S3Api.md#delete_crawler) | **DELETE** /filesystem/{fileSystemType}/{assetId}/crawlers | Delete a crawler\n*S3Api* | [**delete_schedule**](docs/S3Api.md#delete_schedule) | **DELETE** /filesystem/{fileSystemType}/{assetId}/schedule | Delete a synchronization schedule\n*S3Api* | [**detach_capability**](docs/S3Api.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability\n*S3Api* | [**find_filesystem_asset_ids_for_capability**](docs/S3Api.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached\n*S3Api* | [**get_attached_capability_id**](docs/S3Api.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability\n*S3Api* | [**get_crawler_custom_classifiers**](docs/S3Api.md#get_crawler_custom_classifiers) | **GET** /filesystem/s3/{assetId}/crawlers/{crawlerId} | Get the custom classifiers.\n*S3Api* | [**get_crawlers**](docs/S3Api.md#get_crawlers) | **GET** /filesystem/{fileSystemType}/{assetId}/crawlers | List crawlers\n*S3Api* | [**get_schedule**](docs/S3Api.md#get_schedule) | **GET** /filesystem/{fileSystemType}/{assetId}/schedule | Retrieve a synchronization schedule\n*S3Api* | [**synchronize_file_system**](docs/S3Api.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system\n*S3Api* | [**synchronize_s3_file_system**](docs/S3Api.md#synchronize_s3_file_system) | **POST** /filesystem/s3/{assetId}/synchronize/jobserver | Asynchronously synchronizes an S3 File System.\n*S3Api* | [**update_crawler**](docs/S3Api.md#update_crawler) | **PUT** /filesystem/{fileSystemType}/{assetId}/crawlers | Update a crawler\n*S3Api* | [**update_schedule**](docs/S3Api.md#update_schedule) | **PUT** /filesystem/{fileSystemType}/{assetId}/schedule | Update a synchronization schedule\n*TABLEAUApi* | [**attach_capability**](docs/TABLEAUApi.md#attach_capability) | **PUT** /filesystem/{fileSystemType}/{assetId}/capability | Add a capability\n*TABLEAUApi* | [**cancel**](docs/TABLEAUApi.md#cancel) | **DELETE** /filesystem/{fileSystemType}/{assetId}/synchronize | Schedule canceling of cloud synchronization\n*TABLEAUApi* | [**detach_capability**](docs/TABLEAUApi.md#detach_capability) | **DELETE** /filesystem/{fileSystemType}/{assetId}/capability | Remove a capability\n*TABLEAUApi* | [**find_filesystem_asset_ids_for_capability**](docs/TABLEAUApi.md#find_filesystem_asset_ids_for_capability) | **GET** /filesystem | Find filesystem assets that have the given Edge capability attached\n*TABLEAUApi* | [**get_attached_capability_id**](docs/TABLEAUApi.md#get_attached_capability_id) | **GET** /filesystem/{fileSystemType}/{assetId}/capability | Retrieve a capability\n*TABLEAUApi* | [**synchronize_file_system**](docs/TABLEAUApi.md#synchronize_file_system) | **POST** /filesystem/{fileSystemType}/{assetId}/synchronize | Synchronize a file system\n\n## Documentation For Models\n\n - [AddCrawlerRequest](docs/AddCrawlerRequest.md)\n - [AddFileSystemScheduleRequest](docs/AddFileSystemScheduleRequest.md)\n - [AddGenericScheduleRequest](docs/AddGenericScheduleRequest.md)\n - [ChangeFileSystemScheduleRequest](docs/ChangeFileSystemScheduleRequest.md)\n - [ChangeGenericScheduleRequest](docs/ChangeGenericScheduleRequest.md)\n - [Crawler](docs/Crawler.md)\n - [CrawlerIncludePath](docs/CrawlerIncludePath.md)\n - [CrawlerIncludePathRequest](docs/CrawlerIncludePathRequest.md)\n - [GenericConfiguration](docs/GenericConfiguration.md)\n - [Job](docs/Job.md)\n - [RemoveCrawlerRequest](docs/RemoveCrawlerRequest.md)\n - [SaveGenericConfigRequest](docs/SaveGenericConfigRequest.md)\n - [Schedule](docs/Schedule.md)\n - [UpdateCrawlerCustomClassifiersRequest](docs/UpdateCrawlerCustomClassifiersRequest.md)\n - [UpdateCrawlerRequest](docs/UpdateCrawlerRequest.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 Cloud Ingestions API",
"version": "1.0.0",
"project_urls": null,
"split_keywords": [
"swagger",
" collibra catalog cloud ingestions api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1ba2e909b72b38d75bac3be7989e0608169e23cb173a7677522aad3701afd7a9",
"md5": "24ee12f1e9532a675d56fc73d2a280d9",
"sha256": "4b34d1bcc9da9f448d4ea836c1bb14bf0b7a0474baae063da00d3573c507cb36"
},
"downloads": -1,
"filename": "collibra_catalog_cloud_ingestions_100-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "24ee12f1e9532a675d56fc73d2a280d9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 81094,
"upload_time": "2024-06-24T17:54:02",
"upload_time_iso_8601": "2024-06-24T17:54:02.908119Z",
"url": "https://files.pythonhosted.org/packages/1b/a2/e909b72b38d75bac3be7989e0608169e23cb173a7677522aad3701afd7a9/collibra_catalog_cloud_ingestions_100-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "501cc65a6cc3194ffa677f32e2c7e119c46e55f5cc5d7574cb450f96a40b8001",
"md5": "45e92cd0318fb3d95d86eb037945b047",
"sha256": "f680c61e62d063c16a494c7e9244e36a58312a89391d19226fcc511e2cfb710c"
},
"downloads": -1,
"filename": "collibra-catalog_cloud_ingestions_100-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "45e92cd0318fb3d95d86eb037945b047",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40306,
"upload_time": "2024-06-24T17:54:04",
"upload_time_iso_8601": "2024-06-24T17:54:04.775358Z",
"url": "https://files.pythonhosted.org/packages/50/1c/c65a6cc3194ffa677f32e2c7e119c46e55f5cc5d7574cb450f96a40b8001/collibra-catalog_cloud_ingestions_100-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-24 17:54:04",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "collibra-catalog-cloud-ingestions-100"
}