tap-pulumi-cloud


Nametap-pulumi-cloud JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/edgarrmondragon/tap-pulumi-cloud
Summary`tap-pulumi-cloud` is a Singer tap for Pulumi Cloud, built with the Meltano SDK for Singer Taps.
upload_time2024-02-19 01:32:07
maintainer
docs_urlNone
authorEdgar Ramírez-Mondragón
requires_python>=3.8,<4
licenseApache-2.0
keywords elt singer.io pulumi cloud
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `tap-pulumi-cloud`

Singer tap for Pulumi Cloud.

Built with the [Meltano Singer SDK](https://sdk.meltano.com).

## Capabilities

* `catalog`
* `discover`
* `about`
* `stream-maps`
* `schema-flattening`

> **Note**
> Incremental replication is not supported by any streams, so the `state` capability is not supported by this tap.

## Settings

| Setting             | Required | Default | Description |
|:--------------------|:--------:|:-------:|:------------|
| token               | True     | None    | API Token for Pulumi Cloud |
| organizations       | True     | None    | List of organizations to sync |
| start_date          | False    | None    | Earliest datetime to get data from |
| requests_cache      | False    | None    | Cache configuration for HTTP requests |
| stream_maps         | False    | None    | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |
| stream_map_config   | False    | None    | User-defined config values to be used within map expressions. |
| flattening_enabled  | False    | None    | 'True' to enable schema flattening and automatically expand nested properties. |
| flattening_max_depth| False    | None    | The max depth to flatten schemas. |

A full list of supported settings and capabilities is available by running: `tap-pulumi-cloud --about`

### Source Authentication and Authorization

See https://www.pulumi.com/docs/reference/cloud-rest-api/#authentication.

## Usage

You can easily run `tap-pulumi-cloud` by itself or in a pipeline using [Meltano](https://meltano.com/).

### Executing the Tap Directly

```bash
tap-pulumi-cloud --version
tap-pulumi-cloud --help
tap-pulumi-cloud --config CONFIG --discover > ./catalog.json
```

## Developer Resources

### Initialize your Development Environment

```bash
pipx install poetry
poetry install
```

### Create and Run Tests

Create tests within the `tests` subfolder and then run:

```bash
poetry run pytest
```

You can also test the `tap-pulumi-cloud` CLI interface directly using `poetry run`:

```bash
poetry run tap-pulumi-cloud --help
```

### Testing with [Meltano](https://www.meltano.com)

_**Note:** This tap will work in any Singer environment and does not require Meltano.
Examples here are for convenience and to streamline end-to-end orchestration scenarios._

Your project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any _"TODO"_ items listed in
the file.

Next, install Meltano (if you haven't already) and any needed plugins:

```bash
# Install meltano
pipx install meltano
# Initialize meltano within this directory
cd tap-pulumi-cloud
meltano install
```

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-pulumi-cloud --version

# OR run a pipeline:
meltano run tap-pulumi-cloud target-jsonl
```

### SDK Dev Guide

See the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to
develop your own taps and targets.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/edgarrmondragon/tap-pulumi-cloud",
    "name": "tap-pulumi-cloud",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4",
    "maintainer_email": "",
    "keywords": "ELT,singer.io,Pulumi Cloud",
    "author": "Edgar Ram\u00edrez-Mondrag\u00f3n",
    "author_email": "edgarrm358@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/30/38/e40fd1b9b5a8cb2344c7a891a06371bae3963ad494ef77e9d4207459c625/tap_pulumi_cloud-0.1.0.tar.gz",
    "platform": null,
    "description": "# `tap-pulumi-cloud`\n\nSinger tap for Pulumi Cloud.\n\nBuilt with the [Meltano Singer SDK](https://sdk.meltano.com).\n\n## Capabilities\n\n* `catalog`\n* `discover`\n* `about`\n* `stream-maps`\n* `schema-flattening`\n\n> **Note**\n> Incremental replication is not supported by any streams, so the `state` capability is not supported by this tap.\n\n## Settings\n\n| Setting             | Required | Default | Description |\n|:--------------------|:--------:|:-------:|:------------|\n| token               | True     | None    | API Token for Pulumi Cloud |\n| organizations       | True     | None    | List of organizations to sync |\n| start_date          | False    | None    | Earliest datetime to get data from |\n| requests_cache      | False    | None    | Cache configuration for HTTP requests |\n| stream_maps         | False    | None    | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |\n| stream_map_config   | False    | None    | User-defined config values to be used within map expressions. |\n| flattening_enabled  | False    | None    | 'True' to enable schema flattening and automatically expand nested properties. |\n| flattening_max_depth| False    | None    | The max depth to flatten schemas. |\n\nA full list of supported settings and capabilities is available by running: `tap-pulumi-cloud --about`\n\n### Source Authentication and Authorization\n\nSee https://www.pulumi.com/docs/reference/cloud-rest-api/#authentication.\n\n## Usage\n\nYou can easily run `tap-pulumi-cloud` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-pulumi-cloud --version\ntap-pulumi-cloud --help\ntap-pulumi-cloud --config CONFIG --discover > ./catalog.json\n```\n\n## Developer Resources\n\n### Initialize your Development Environment\n\n```bash\npipx install poetry\npoetry install\n```\n\n### Create and Run Tests\n\nCreate tests within the `tests` subfolder and then run:\n\n```bash\npoetry run pytest\n```\n\nYou can also test the `tap-pulumi-cloud` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-pulumi-cloud --help\n```\n\n### Testing with [Meltano](https://www.meltano.com)\n\n_**Note:** This tap will work in any Singer environment and does not require Meltano.\nExamples here are for convenience and to streamline end-to-end orchestration scenarios._\n\nYour project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any _\"TODO\"_ items listed in\nthe file.\n\nNext, install Meltano (if you haven't already) and any needed plugins:\n\n```bash\n# Install meltano\npipx install meltano\n# Initialize meltano within this directory\ncd tap-pulumi-cloud\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-pulumi-cloud --version\n\n# OR run a pipeline:\nmeltano run tap-pulumi-cloud target-jsonl\n```\n\n### SDK Dev Guide\n\nSee the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to\ndevelop your own taps and targets.\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "`tap-pulumi-cloud` is a Singer tap for Pulumi Cloud, built with the Meltano SDK for Singer Taps.",
    "version": "0.1.0",
    "project_urls": {
        "Documentation": "https://github.com/edgarrmondragon/tap-pulumi-cloud#readme",
        "Homepage": "https://github.com/edgarrmondragon/tap-pulumi-cloud",
        "Repository": "https://github.com/edgarrmondragon/tap-pulumi-cloud"
    },
    "split_keywords": [
        "elt",
        "singer.io",
        "pulumi cloud"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c244a33b9642737acd1b02ca9d00c7d9139792a6080171afe7dfae1cb8349ad",
                "md5": "70d89d625899ef5df60640157303f1a5",
                "sha256": "d5d1327a0c4f478cc42aca83bd6507a4eaeb1bcf483f9026bb3a464728af7c45"
            },
            "downloads": -1,
            "filename": "tap_pulumi_cloud-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "70d89d625899ef5df60640157303f1a5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4",
            "size": 11020,
            "upload_time": "2024-02-19T01:32:05",
            "upload_time_iso_8601": "2024-02-19T01:32:05.660339Z",
            "url": "https://files.pythonhosted.org/packages/2c/24/4a33b9642737acd1b02ca9d00c7d9139792a6080171afe7dfae1cb8349ad/tap_pulumi_cloud-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3038e40fd1b9b5a8cb2344c7a891a06371bae3963ad494ef77e9d4207459c625",
                "md5": "85fac6dbbb765207525ab6e1fdd9ee53",
                "sha256": "ee5678470fcd4b549e2cb175bd74f959ebb32d287a35e1e6fc2e2af9684e05a3"
            },
            "downloads": -1,
            "filename": "tap_pulumi_cloud-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "85fac6dbbb765207525ab6e1fdd9ee53",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4",
            "size": 9474,
            "upload_time": "2024-02-19T01:32:07",
            "upload_time_iso_8601": "2024-02-19T01:32:07.200614Z",
            "url": "https://files.pythonhosted.org/packages/30/38/e40fd1b9b5a8cb2344c7a891a06371bae3963ad494ef77e9d4207459c625/tap_pulumi_cloud-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-19 01:32:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "edgarrmondragon",
    "github_project": "tap-pulumi-cloud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tap-pulumi-cloud"
}
        
Elapsed time: 0.19542s