pulumi-datarobot


Namepulumi-datarobot JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://www.datarobot.com
SummaryA Pulumi package for creating and managing DataRobot resources.
upload_time2024-11-14 20:44:50
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-2.0
keywords datarobot ai category/cloud
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DataRobot Resource Provider

The DataRobot Resource Provider lets you manage [DataRobot](https://www.datarobot.com/) resources.
The provider is built on [terraform-provider-datarobot](https://github.com/datarobot-community/terraform-provider-datarobot).
To use this package, please install the [Pulumi CLI](https://pulumi.io/) first.

## Installing

This package is available for several languages/platforms:

- Python: [`pulumi-datarobot`](https://pypi.org/project/pulumi-datarobot/)
- JavaScript/TypeScript: [`@datarobot/pulumi-datarobot`](https://www.npmjs.com/package/@datarobot/pulumi-datarobot)
- Go: [`github.com/datarobot-community/pulumi-datarobot/sdk`](https://pkg.go.dev/github.com/datarobot-community/pulumi-datarobot/sdk)
- .NET: [`DataRobotPulumi.Datarobot`](https://www.nuget.org/packages/DataRobotPulumi.Datarobot)

### Python

To use from Python, install using `pip`:

```bash
pip install pulumi_datarobot
```

### Javscript/Typescript

To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @datarobot/pulumi-datarobot
```

or `yarn`:

```bash
yarn add @datarobot/pulumi-datarobot
```

### Go

```
go get github.com/datarobot-community/pulumi-datarobot/sdk/go/...
```

### .NET

To use from .NET, install using `dotnet add package`:

```
dotnet add package DataRobotPulumi.Datarobot
```

### YAML

No install necessary, just run `pulumi up`.

## Configuration

The following configuration points are available for the DataRobot provider:

- `datarobot:apikey` (environment: `DATAROBOT_API_TOKEN`) - the API key for DataRobot
- `datarobot:endpoint` (environment: `DATAROBOT_ENDPOINT`) - the endpoint for DataRobot

## Examples

See [datarobot-pulumi examples](https://github.com/datarobot-community/pulumi-datarobot/tree/main/examples)

## Air-Gapped Environments

Keep the following items in mind if running in an air-gapped environment:

- Run `pulumi login --local` to store state files on your local filesystem, instead of the default Pulumi Cloud. Pulumi binaries are available [here](https://www.pulumi.com/docs/iac/download-install/).
- Set `DATAROBOT_ENDPOINT`: https://{datarobot.example.com}/api/v2
    (replacing {datarobot.example.com} with your specific deployment endpoint)
- For Python, the [pulumi](https://pypi.org/project/pulumi/) and [pulumi-datarobot](https://pypi.org/project/pulumi-datarobot/) packages must be installed in the air-gapped system. 

    Example using `pip wheel`:

    1. create a directory where you want to store package wheels.

    ```bash
    mkdir folder_containing_wheel
    ```

    2. Now install wheels of the python library you want to install

    ```bash
    pip wheel pulumi-datarobot -w folder_containing_wheel
    ```

    This will store all your required dependent wheels of the `pulumi-datarobot` package in the folder. you can check it with doing ls -ltr`.

    3. Now, you can make a tar file of this folder.

    ```bash
    tar cf folder_containing_wheel.tar folder_containing_wheel/
    ```

    and you can transfer it to your air-gapped system.

    Now untar the folder.

    ```bash
    tar xf folder_containing_wheel.tar
    cd folder_containing_wheel/
    ```

    now install wheels from the folder.

    ```bash
    pip install * -f ./ --no-index 
    ```


            

Raw data

            {
    "_id": null,
    "home_page": "https://www.datarobot.com",
    "name": "pulumi-datarobot",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "datarobot ai category/cloud",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/9c/e4/1d088fc7dc1cc6fec553c76e91add173a19c1fe86c37829820cdda4ff056/pulumi_datarobot-0.4.2.tar.gz",
    "platform": null,
    "description": "# DataRobot Resource Provider\n\nThe DataRobot Resource Provider lets you manage [DataRobot](https://www.datarobot.com/) resources.\nThe provider is built on [terraform-provider-datarobot](https://github.com/datarobot-community/terraform-provider-datarobot).\nTo use this package, please install the [Pulumi CLI](https://pulumi.io/) first.\n\n## Installing\n\nThis package is available for several languages/platforms:\n\n- Python: [`pulumi-datarobot`](https://pypi.org/project/pulumi-datarobot/)\n- JavaScript/TypeScript: [`@datarobot/pulumi-datarobot`](https://www.npmjs.com/package/@datarobot/pulumi-datarobot)\n- Go: [`github.com/datarobot-community/pulumi-datarobot/sdk`](https://pkg.go.dev/github.com/datarobot-community/pulumi-datarobot/sdk)\n- .NET: [`DataRobotPulumi.Datarobot`](https://www.nuget.org/packages/DataRobotPulumi.Datarobot)\n\n### Python\n\nTo use from Python, install using `pip`:\n\n```bash\npip install pulumi_datarobot\n```\n\n### Javscript/Typescript\n\nTo use from JavaScript or TypeScript in Node.js, install using either `npm`:\n\n```bash\nnpm install @datarobot/pulumi-datarobot\n```\n\nor `yarn`:\n\n```bash\nyarn add @datarobot/pulumi-datarobot\n```\n\n### Go\n\n```\ngo get github.com/datarobot-community/pulumi-datarobot/sdk/go/...\n```\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n```\ndotnet add package DataRobotPulumi.Datarobot\n```\n\n### YAML\n\nNo install necessary, just run `pulumi up`.\n\n## Configuration\n\nThe following configuration points are available for the DataRobot provider:\n\n- `datarobot:apikey` (environment: `DATAROBOT_API_TOKEN`) - the API key for DataRobot\n- `datarobot:endpoint` (environment: `DATAROBOT_ENDPOINT`) - the endpoint for DataRobot\n\n## Examples\n\nSee [datarobot-pulumi examples](https://github.com/datarobot-community/pulumi-datarobot/tree/main/examples)\n\n## Air-Gapped Environments\n\nKeep the following items in mind if running in an air-gapped environment:\n\n- Run `pulumi login --local` to store state files on your local filesystem, instead of the default Pulumi Cloud. Pulumi binaries are available [here](https://www.pulumi.com/docs/iac/download-install/).\n- Set `DATAROBOT_ENDPOINT`: https://{datarobot.example.com}/api/v2\n    (replacing {datarobot.example.com} with your specific deployment endpoint)\n- For Python, the [pulumi](https://pypi.org/project/pulumi/) and [pulumi-datarobot](https://pypi.org/project/pulumi-datarobot/) packages must be installed in the air-gapped system. \n\n    Example using `pip wheel`:\n\n    1. create a directory where you want to store package wheels.\n\n    ```bash\n    mkdir folder_containing_wheel\n    ```\n\n    2. Now install wheels of the python library you want to install\n\n    ```bash\n    pip wheel pulumi-datarobot -w folder_containing_wheel\n    ```\n\n    This will store all your required dependent wheels of the `pulumi-datarobot` package in the folder. you can check it with doing ls -ltr`.\n\n    3. Now, you can make a tar file of this folder.\n\n    ```bash\n    tar cf folder_containing_wheel.tar folder_containing_wheel/\n    ```\n\n    and you can transfer it to your air-gapped system.\n\n    Now untar the folder.\n\n    ```bash\n    tar xf folder_containing_wheel.tar\n    cd folder_containing_wheel/\n    ```\n\n    now install wheels from the folder.\n\n    ```bash\n    pip install * -f ./ --no-index \n    ```\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating and managing DataRobot resources.",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://www.datarobot.com",
        "Repository": "https://github.com/datarobot-community/pulumi-datarobot"
    },
    "split_keywords": [
        "datarobot",
        "ai",
        "category/cloud"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ce41d088fc7dc1cc6fec553c76e91add173a19c1fe86c37829820cdda4ff056",
                "md5": "3c11edbb6c6a65041a34874f9ec39a10",
                "sha256": "4dbba2d48cb11b04fecd489078462914c7a75296f9c7fd70f5d9846ba34916d7"
            },
            "downloads": -1,
            "filename": "pulumi_datarobot-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "3c11edbb6c6a65041a34874f9ec39a10",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 57256,
            "upload_time": "2024-11-14T20:44:50",
            "upload_time_iso_8601": "2024-11-14T20:44:50.898361Z",
            "url": "https://files.pythonhosted.org/packages/9c/e4/1d088fc7dc1cc6fec553c76e91add173a19c1fe86c37829820cdda4ff056/pulumi_datarobot-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-14 20:44:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "datarobot-community",
    "github_project": "pulumi-datarobot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pulumi-datarobot"
}
        
Elapsed time: 1.01611s