pulumi-databricks


Namepulumi-databricks JSON
Version 1.78.0 PyPI version JSON
download
home_pageNone
SummaryA Pulumi package for creating and managing databricks cloud resources.
upload_time2025-11-07 04:01:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
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.9",
    "maintainer_email": null,
    "keywords": "pulumi, databricks, category/infrastructure",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/52/b2/6f4749150e0e29c1a80444ffe740ceba8c32cc5395b87d8f4a6b205cbdc6/pulumi_databricks-1.78.0.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.78.0",
    "project_urls": {
        "Homepage": "https://www.pulumi.com",
        "Repository": "https://github.com/pulumi/pulumi-databricks"
    },
    "split_keywords": [
        "pulumi",
        " databricks",
        " category/infrastructure"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be758689456ec90de341c6bad64238a914e0467a9eb274d11276d5e0ab813c62",
                "md5": "e48e34c6aab6bdad8d365886e18f306c",
                "sha256": "b77ad7929b3eddd0748100dd4239d377f25bdd50e4b52bcefeb44d93bdd72e64"
            },
            "downloads": -1,
            "filename": "pulumi_databricks-1.78.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e48e34c6aab6bdad8d365886e18f306c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 1343512,
            "upload_time": "2025-11-07T04:01:12",
            "upload_time_iso_8601": "2025-11-07T04:01:12.872108Z",
            "url": "https://files.pythonhosted.org/packages/be/75/8689456ec90de341c6bad64238a914e0467a9eb274d11276d5e0ab813c62/pulumi_databricks-1.78.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52b26f4749150e0e29c1a80444ffe740ceba8c32cc5395b87d8f4a6b205cbdc6",
                "md5": "c04b1eec63eabc68c61ffe1d30796f65",
                "sha256": "b7e7ff06123ce7bbb200051dedd83a0afab124d6eaa6b103a599c4dcc54953e4"
            },
            "downloads": -1,
            "filename": "pulumi_databricks-1.78.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c04b1eec63eabc68c61ffe1d30796f65",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1066608,
            "upload_time": "2025-11-07T04:01:14",
            "upload_time_iso_8601": "2025-11-07T04:01:14.960655Z",
            "url": "https://files.pythonhosted.org/packages/52/b2/6f4749150e0e29c1a80444ffe740ceba8c32cc5395b87d8f4a6b205cbdc6/pulumi_databricks-1.78.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-07 04:01:14",
    "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: 4.78895s