pulumi-databricks


Namepulumi-databricks JSON
Version 1.56.2 PyPI version JSON
download
home_pageNone
SummaryA Pulumi package for creating and managing databricks cloud resources.
upload_time2024-12-12 14:43:59
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-2.0
keywords pulumi databricks category/infrastructure
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Actions Status](https://github.com/pulumi/pulumi-databricks/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-databricks/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fdatabricks.svg)](https://www.npmjs.com/package/@pulumi/databricks)
[![Python version](https://badge.fury.io/py/pulumi-databricks.svg)](https://pypi.org/project/pulumi-databricks)
[![NuGet version](https://badge.fury.io/nu/pulumi.databricks.svg)](https://badge.fury.io/nu/pulumi.databricks)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-databricks/sdk/go)](https://pkg.go.dev/github.com/pulumi/pulumi-databricks/sdk/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-databricks/blob/master/LICENSE)

# Databricks Resource Provider

The Databricks Resource Provider lets you manage Databricks resources.

## Installing

This package is available in many languages in the standard packaging formats.

### Node.js (Java/TypeScript)

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

    $ npm install @pulumi/databricks

or `yarn`:

    $ yarn add @pulumi/databricks

### Python

To use from Python, install using `pip`:

    $ pip install pulumi_databricks

### Go

To use from Go, use `go get` to grab the latest version of the library

    $ go get github.com/pulumi/pulumi-databricks/sdk

### .NET

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

    $ dotnet add package Pulumi.Databricks

## Configuration

The following configuration points are available:

* `databricks:host` - (optional) This is the host of the Databricks workspace. It is a URL that you use to login to your workspace.
  Alternatively, you can provide this value as an environment variable `DATABRICKS_HOST`.
* `databricks:token` - (optional) This is the API token to authenticate into the workspace. Alternatively, you can provide 
  this value as an environment variable `DATABRICKS_TOKEN`.
* `databricks:username` - (optional) This is the username of the user that can log into the workspace. Alternatively,
  you can provide this value as an environment variable `DATABRICKS_USERNAME`.
* `databricks:password` - (optional) This is the user's password that can log into the workspace. Alternatively, you can 
  provide this value as an environment variable `DATABRICKS_PASSWORD`.
* `databricks:configFile` - (optional) Location of the Databricks CLI credentials file created by `databricks configure --token`
  command (`~/.databrickscfg` by default). Check [Databricks CLI documentation](https://docs.databricks.com/dev-tools/cli/index.html#set-up-authentication) for more details. 
  The provider uses configuration file credentials when you don't specify host/token/username/password/azure attributes. 
  Alternatively, you can provide this value as an environment variable `DATABRICKS_CONFIG_FILE`. This field defaults to `~/.databrickscfg`.
* `databricks:profile` - (optional) Connection profile specified within `~/.databrickscfg`. Please check 
  [connection profiles section](https://docs.databricks.com/dev-tools/cli/index.html#connection-profiles) for more details. This field defaults to `DEFAULT`.
* `databricks:accountId` - (optional) Account Id that could be found in the bottom left corner of 
  [Accounts Console](https://accounts.cloud.databricks.com/). Alternatively, you can provide this value as an environment 
  variable `DATABRICKS_ACCOUNT_ID`. Only has effect when `host = "https://accounts.cloud.databricks.com/"` and currently used to provision account admins via `databricks_user`.
  In the future releases of the provider this property will also be used specify account for `databricks_mws_*` resources as well.
* `databricks:authType` - (optional) enforce specific auth type to be used in very rare cases, where a single provider state
  manages Databricks workspaces on more than one cloud and `More than one authorization method configured` error is a false positive. Valid values are `pat`, `basic`, `azure-client-secret`, `azure-msi`, `azure-cli`, and `databricks-cli`.

## Reference

For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/databricks/api-docs/).

## Contributors

This package was originally built by the development team at [https://www.ingenii.io/](https://www.ingenii.io/). Pulumi thanks them for their continued contributions to the project.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pulumi-databricks",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "pulumi, databricks, category/infrastructure",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/d2/4e/5671a56ded2b09944f37f5e2c02088ee67008ce1c429310799086002a60d/pulumi_databricks-1.56.2.tar.gz",
    "platform": null,
    "description": "[![Actions Status](https://github.com/pulumi/pulumi-databricks/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-databricks/actions)\n[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)\n[![NPM version](https://badge.fury.io/js/%40pulumi%2Fdatabricks.svg)](https://www.npmjs.com/package/@pulumi/databricks)\n[![Python version](https://badge.fury.io/py/pulumi-databricks.svg)](https://pypi.org/project/pulumi-databricks)\n[![NuGet version](https://badge.fury.io/nu/pulumi.databricks.svg)](https://badge.fury.io/nu/pulumi.databricks)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-databricks/sdk/go)](https://pkg.go.dev/github.com/pulumi/pulumi-databricks/sdk/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-databricks/blob/master/LICENSE)\n\n# Databricks Resource Provider\n\nThe Databricks Resource Provider lets you manage Databricks resources.\n\n## Installing\n\nThis package is available in many languages in the standard packaging formats.\n\n### Node.js (Java/TypeScript)\n\nTo use from JavaScript or TypeScript in Node.js, install using either `npm`:\n\n    $ npm install @pulumi/databricks\n\nor `yarn`:\n\n    $ yarn add @pulumi/databricks\n\n### Python\n\nTo use from Python, install using `pip`:\n\n    $ pip install pulumi_databricks\n\n### Go\n\nTo use from Go, use `go get` to grab the latest version of the library\n\n    $ go get github.com/pulumi/pulumi-databricks/sdk\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n    $ dotnet add package Pulumi.Databricks\n\n## Configuration\n\nThe following configuration points are available:\n\n* `databricks:host` - (optional) This is the host of the Databricks workspace. It is a URL that you use to login to your workspace.\n  Alternatively, you can provide this value as an environment variable `DATABRICKS_HOST`.\n* `databricks:token` - (optional) This is the API token to authenticate into the workspace. Alternatively, you can provide \n  this value as an environment variable `DATABRICKS_TOKEN`.\n* `databricks:username` - (optional) This is the username of the user that can log into the workspace. Alternatively,\n  you can provide this value as an environment variable `DATABRICKS_USERNAME`.\n* `databricks:password` - (optional) This is the user's password that can log into the workspace. Alternatively, you can \n  provide this value as an environment variable `DATABRICKS_PASSWORD`.\n* `databricks:configFile` - (optional) Location of the Databricks CLI credentials file created by `databricks configure --token`\n  command (`~/.databrickscfg` by default). Check [Databricks CLI documentation](https://docs.databricks.com/dev-tools/cli/index.html#set-up-authentication) for more details. \n  The provider uses configuration file credentials when you don't specify host/token/username/password/azure attributes. \n  Alternatively, you can provide this value as an environment variable `DATABRICKS_CONFIG_FILE`. This field defaults to `~/.databrickscfg`.\n* `databricks:profile` - (optional) Connection profile specified within `~/.databrickscfg`. Please check \n  [connection profiles section](https://docs.databricks.com/dev-tools/cli/index.html#connection-profiles) for more details. This field defaults to `DEFAULT`.\n* `databricks:accountId` - (optional) Account Id that could be found in the bottom left corner of \n  [Accounts Console](https://accounts.cloud.databricks.com/). Alternatively, you can provide this value as an environment \n  variable `DATABRICKS_ACCOUNT_ID`. Only has effect when `host = \"https://accounts.cloud.databricks.com/\"` and currently used to provision account admins via `databricks_user`.\n  In the future releases of the provider this property will also be used specify account for `databricks_mws_*` resources as well.\n* `databricks:authType` - (optional) enforce specific auth type to be used in very rare cases, where a single provider state\n  manages Databricks workspaces on more than one cloud and `More than one authorization method configured` error is a false positive. Valid values are `pat`, `basic`, `azure-client-secret`, `azure-msi`, `azure-cli`, and `databricks-cli`.\n\n## Reference\n\nFor detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/databricks/api-docs/).\n\n## Contributors\n\nThis package was originally built by the development team at [https://www.ingenii.io/](https://www.ingenii.io/). Pulumi thanks them for their continued contributions to the project.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating and managing databricks cloud resources.",
    "version": "1.56.2",
    "project_urls": {
        "Homepage": "https://www.pulumi.com",
        "Repository": "https://github.com/pulumi/pulumi-databricks"
    },
    "split_keywords": [
        "pulumi",
        " databricks",
        " category/infrastructure"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "525e77c9c60b6ef420d220ad75e7fbddca23b7ff71c39a8355757a5d8ee1461e",
                "md5": "7abd5a62cd2cb319c7cc665c48507c50",
                "sha256": "b897826bb7488e97b4ee16d7e91f0c0185eb2eddb61fd5d80ec809af9f0b3079"
            },
            "downloads": -1,
            "filename": "pulumi_databricks-1.56.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7abd5a62cd2cb319c7cc665c48507c50",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 883937,
            "upload_time": "2024-12-12T14:43:54",
            "upload_time_iso_8601": "2024-12-12T14:43:54.911086Z",
            "url": "https://files.pythonhosted.org/packages/52/5e/77c9c60b6ef420d220ad75e7fbddca23b7ff71c39a8355757a5d8ee1461e/pulumi_databricks-1.56.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24e5671a56ded2b09944f37f5e2c02088ee67008ce1c429310799086002a60d",
                "md5": "05a5ff46d7419828b8460e0a3febc2d9",
                "sha256": "a562b70bd3218ad34d69236c3b37793b8b2d5d436313e472a74e30a2cc13d65f"
            },
            "downloads": -1,
            "filename": "pulumi_databricks-1.56.2.tar.gz",
            "has_sig": false,
            "md5_digest": "05a5ff46d7419828b8460e0a3febc2d9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 705586,
            "upload_time": "2024-12-12T14:43:59",
            "upload_time_iso_8601": "2024-12-12T14:43:59.228886Z",
            "url": "https://files.pythonhosted.org/packages/d2/4e/5671a56ded2b09944f37f5e2c02088ee67008ce1c429310799086002a60d/pulumi_databricks-1.56.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-12 14:43:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pulumi",
    "github_project": "pulumi-databricks",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pulumi-databricks"
}
        
Elapsed time: 0.48089s