collibra-catalog-100


Namecollibra-catalog-100 JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryCollibra Catalog API
upload_time2024-06-24 17:53:25
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords swagger collibra catalog api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # collibra-catalog_100
<p>The Catalog 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 
```

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

## 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
from collibra_catalog.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = collibra_catalog.JDBCSchemaIngestionApi(collibra_catalog.ApiClient(configuration))
body = collibra_catalog.AddSchemaFromJdbcRequest() # AddSchemaFromJdbcRequest |  (optional)

try:
    # Create a JDBC schema ingestion
    api_response = api_instance.add_schema_from_jdbc(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling JDBCSchemaIngestionApi->add_schema_from_jdbc: %s\n" % e)

# create an instance of the API class
api_instance = collibra_catalog.JDBCSchemaIngestionApi(collibra_catalog.ApiClient(configuration))
asset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 
body = collibra_catalog.RefreshJdbcSchemaRequest() # RefreshJdbcSchemaRequest |  (optional)

try:
    # Refresh an existing JDBC schema ingestion
    api_response = api_instance.refresh_jdbc_schema(asset_id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling JDBCSchemaIngestionApi->refresh_jdbc_schema: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */rest/catalog/1.0*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*JDBCSchemaIngestionApi* | [**add_schema_from_jdbc**](docs/JDBCSchemaIngestionApi.md#add_schema_from_jdbc) | **POST** /schemas/jdbc | Create a JDBC schema ingestion
*JDBCSchemaIngestionApi* | [**refresh_jdbc_schema**](docs/JDBCSchemaIngestionApi.md#refresh_jdbc_schema) | **POST** /schemas/jdbc/{assetId} | Refresh an existing JDBC schema ingestion
*JobServerInstanceConfigurationApi* | [**get_available_job_server_instances**](docs/JobServerInstanceConfigurationApi.md#get_available_job_server_instances) | **GET** /configuration/jobServerInstance | Retrieve existing JobServer instance configurations

## Documentation For Models

 - [AddSchemaFromJdbcRequest](docs/AddSchemaFromJdbcRequest.md)
 - [Job](docs/Job.md)
 - [JobServerInstance](docs/JobServerInstance.md)
 - [JobServerInstanceResponse](docs/JobServerInstanceResponse.md)
 - [PagedResponseJobServerInstance](docs/PagedResponseJobServerInstance.md)
 - [RefreshJdbcSchemaRequest](docs/RefreshJdbcSchemaRequest.md)

## Documentation For Authorization

 All endpoints do not require authorization.


## Author



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "collibra-catalog-100",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Swagger, Collibra Catalog API",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/d0/3d/da4665a979f9f1bf8e03b57b45220dc01d12717cad26c9f19b54838c69ed/collibra-catalog_100-1.0.0.tar.gz",
    "platform": null,
    "description": "# collibra-catalog_100\n<p>The Catalog 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 \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\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\nfrom collibra_catalog.rest import ApiException\nfrom pprint import pprint\n\n# create an instance of the API class\napi_instance = collibra_catalog.JDBCSchemaIngestionApi(collibra_catalog.ApiClient(configuration))\nbody = collibra_catalog.AddSchemaFromJdbcRequest() # AddSchemaFromJdbcRequest |  (optional)\n\ntry:\n    # Create a JDBC schema ingestion\n    api_response = api_instance.add_schema_from_jdbc(body=body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling JDBCSchemaIngestionApi->add_schema_from_jdbc: %s\\n\" % e)\n\n# create an instance of the API class\napi_instance = collibra_catalog.JDBCSchemaIngestionApi(collibra_catalog.ApiClient(configuration))\nasset_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | \nbody = collibra_catalog.RefreshJdbcSchemaRequest() # RefreshJdbcSchemaRequest |  (optional)\n\ntry:\n    # Refresh an existing JDBC schema ingestion\n    api_response = api_instance.refresh_jdbc_schema(asset_id, body=body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling JDBCSchemaIngestionApi->refresh_jdbc_schema: %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*JDBCSchemaIngestionApi* | [**add_schema_from_jdbc**](docs/JDBCSchemaIngestionApi.md#add_schema_from_jdbc) | **POST** /schemas/jdbc | Create a JDBC schema ingestion\n*JDBCSchemaIngestionApi* | [**refresh_jdbc_schema**](docs/JDBCSchemaIngestionApi.md#refresh_jdbc_schema) | **POST** /schemas/jdbc/{assetId} | Refresh an existing JDBC schema ingestion\n*JobServerInstanceConfigurationApi* | [**get_available_job_server_instances**](docs/JobServerInstanceConfigurationApi.md#get_available_job_server_instances) | **GET** /configuration/jobServerInstance | Retrieve existing JobServer instance configurations\n\n## Documentation For Models\n\n - [AddSchemaFromJdbcRequest](docs/AddSchemaFromJdbcRequest.md)\n - [Job](docs/Job.md)\n - [JobServerInstance](docs/JobServerInstance.md)\n - [JobServerInstanceResponse](docs/JobServerInstanceResponse.md)\n - [PagedResponseJobServerInstance](docs/PagedResponseJobServerInstance.md)\n - [RefreshJdbcSchemaRequest](docs/RefreshJdbcSchemaRequest.md)\n\n## Documentation For Authorization\n\n All endpoints do not require authorization.\n\n\n## Author\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Collibra Catalog API",
    "version": "1.0.0",
    "project_urls": null,
    "split_keywords": [
        "swagger",
        " collibra catalog api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f12bb15970df90631740d11eb3c2fea39792aa78d4651bd99751e637868534b0",
                "md5": "c164f47700283bbecc9c1404604f855b",
                "sha256": "025099a5dce91169473cf08c5175eb876342215318ad740e321c012457375fbe"
            },
            "downloads": -1,
            "filename": "collibra_catalog_100-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c164f47700283bbecc9c1404604f855b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 41176,
            "upload_time": "2024-06-24T17:53:24",
            "upload_time_iso_8601": "2024-06-24T17:53:24.017601Z",
            "url": "https://files.pythonhosted.org/packages/f1/2b/b15970df90631740d11eb3c2fea39792aa78d4651bd99751e637868534b0/collibra_catalog_100-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d03dda4665a979f9f1bf8e03b57b45220dc01d12717cad26c9f19b54838c69ed",
                "md5": "22d42d4c490d6fc228b7560c31f37bde",
                "sha256": "7dac1c6fe5a5d2046dbceccd6bb8a9172a4a739436a4bb27e85a0205b46ef574"
            },
            "downloads": -1,
            "filename": "collibra-catalog_100-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "22d42d4c490d6fc228b7560c31f37bde",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 25052,
            "upload_time": "2024-06-24T17:53:25",
            "upload_time_iso_8601": "2024-06-24T17:53:25.313305Z",
            "url": "https://files.pythonhosted.org/packages/d0/3d/da4665a979f9f1bf8e03b57b45220dc01d12717cad26c9f19b54838c69ed/collibra-catalog_100-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-24 17:53:25",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "collibra-catalog-100"
}
        
Elapsed time: 0.28707s