pulumi-vsphere


Namepulumi-vsphere JSON
Version 4.10.0 PyPI version JSON
download
home_page
SummaryA Pulumi package for creating vsphere resources
upload_time2024-03-12 12:53:45
maintainer
docs_urlNone
author
requires_python>=3.8
licenseApache-2.0
keywords pulumi vsphere
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fvsphere.svg)](https://www.npmjs.com/package/@pulumi/vsphere)
[![Python version](https://badge.fury.io/py/pulumi-vsphere.svg)](https://pypi.org/project/pulumi-vsphere)
[![NuGet version](https://badge.fury.io/nu/pulumi.vsphere.svg)](https://badge.fury.io/nu/pulumi.vsphere)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-vsphere/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-vsphere/sdk/v3/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-vsphere/blob/master/LICENSE)

# VSphere provider

The VSphere resource provider for Pulumi lets you use VSphere resources in your infrastructure 
programs. To use this package, please [install the Pulumi CLI first](https://pulumi.io/).

## 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/vsphere

or `yarn`:

    $ yarn add @pulumi/vsphere

### Python

To use from Python, install using `pip`:

    $ pip install pulumi-vsphere

### Go

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

    $ go get github.com/pulumi/pulumi-vsphere/sdk/v3/
    
### .NET

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

    $ dotnet add package Pulumi.Vsphere   
 
## Configuration

The following configuration points are available:

- `vsphere:user` - (Required) This is the username for vSphere API operations. Can also be specified with the `VSPHERE_USER`
  environment variable.
- `vsphere:password` - (Required) This is the password for vSphere API operations. Can also be specified with the 
  `VSPHERE_PASSWORD` environment variable.
- `vsphere:vsphereServer` - (Required) This is the vCenter server name for vSphere API operations. Can also be specified
  with the `VSPHERE_SERVER` environment variable.
- `vsphere:allowUnverifiedSsl` - (Optional) Boolean that can be set to true to disable SSL certificate verification. 
  This should be used with care as it could allow an attacker to intercept your auth token. If omitted, default value is
  `false`. Can also be specified with the `VSPHERE_ALLOW_UNVERIFIED_SSL` environment variable.
- `vsphere:vimKeepAlive` - (Optional) Keep alive interval in minutes for the VIM session. Standard session timeout in 
  vSphere is 30 minutes. This defaults to `10` minutes to ensure that operations that take a longer than 30 minutes 
  without API interaction do not result in a session timeout. Can also be specified with the `VSPHERE_VIM_KEEP_ALIVE`
  environment variable.
- `vsphere:persistSession` - (Optional) Persist the SOAP and REST client sessions to disk. Default: false. Can also be 
  specified by the `VSPHERE_PERSIST_SESSION` environment variable.
- `vsphere:vimSessionPath` - (Optional) The direcotry to save the VIM SOAP API session to. Default: `${HOME}/.govmomi/sessions`.
  Can also be specified by the `VSPHERE_VIM_SESSION_PATH` environment variable.
- `vsphere:restSessionPath` - (Optional) The directory to save the REST API session (used for tags) to. Default: `${HOME}/.govmomi/rest_sessions`. 
  Can also be specified by the `VSPHERE_REST_SESSION_PATH` environment variable.
- `vsphere:clientDebug` - (Optional) When `true`, the provider logs SOAP calls made to the vSphere API to disk. The log 
  files are logged to `${HOME}/.govmomi`. Can also be specified with the `VSPHERE_CLIENT_DEBUG` environment variable.
- `vsphere:clientDebugPath` - (Optional) Override the default log path. Can also be specified with the 
  `VSPHERE_CLIENT_DEBUG_PATH` environment variable.
- `vsphere:clientDebugPathRun` - (Optional) A specific subdirectory in `client_debug_path` to use for debugging calls for
  this particular provider configuration. All data in this directory is removed at the start of the provider run. Can also
  be specified with the `VSPHERE_CLIENT_DEBUG_PATH_RUN` environment variable.

## Reference

For further information, please visit [the vSphere provider docs](https://www.pulumi.com/docs/intro/cloud-providers/vsphere) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/vsphere).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pulumi-vsphere",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "pulumi,vsphere",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/08/9b/f48ba80b4b5a27ca69bbf3b357f3b74c8a21fa5e40e684b19872211b0b8f/pulumi_vsphere-4.10.0.tar.gz",
    "platform": null,
    "description": "[![Actions Status](https://github.com/pulumi/pulumi-vsphere/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-vsphere/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%2Fvsphere.svg)](https://www.npmjs.com/package/@pulumi/vsphere)\n[![Python version](https://badge.fury.io/py/pulumi-vsphere.svg)](https://pypi.org/project/pulumi-vsphere)\n[![NuGet version](https://badge.fury.io/nu/pulumi.vsphere.svg)](https://badge.fury.io/nu/pulumi.vsphere)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-vsphere/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-vsphere/sdk/v3/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-vsphere/blob/master/LICENSE)\n\n# VSphere provider\n\nThe VSphere resource provider for Pulumi lets you use VSphere resources in your infrastructure \nprograms. To use this package, please [install the Pulumi CLI first](https://pulumi.io/).\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/vsphere\n\nor `yarn`:\n\n    $ yarn add @pulumi/vsphere\n\n### Python\n\nTo use from Python, install using `pip`:\n\n    $ pip install pulumi-vsphere\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-vsphere/sdk/v3/\n    \n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n    $ dotnet add package Pulumi.Vsphere   \n \n## Configuration\n\nThe following configuration points are available:\n\n- `vsphere:user` - (Required) This is the username for vSphere API operations. Can also be specified with the `VSPHERE_USER`\n  environment variable.\n- `vsphere:password` - (Required) This is the password for vSphere API operations. Can also be specified with the \n  `VSPHERE_PASSWORD` environment variable.\n- `vsphere:vsphereServer` - (Required) This is the vCenter server name for vSphere API operations. Can also be specified\n  with the `VSPHERE_SERVER` environment variable.\n- `vsphere:allowUnverifiedSsl` - (Optional) Boolean that can be set to true to disable SSL certificate verification. \n  This should be used with care as it could allow an attacker to intercept your auth token. If omitted, default value is\n  `false`. Can also be specified with the `VSPHERE_ALLOW_UNVERIFIED_SSL` environment variable.\n- `vsphere:vimKeepAlive` - (Optional) Keep alive interval in minutes for the VIM session. Standard session timeout in \n  vSphere is 30 minutes. This defaults to `10` minutes to ensure that operations that take a longer than 30 minutes \n  without API interaction do not result in a session timeout. Can also be specified with the `VSPHERE_VIM_KEEP_ALIVE`\n  environment variable.\n- `vsphere:persistSession` - (Optional) Persist the SOAP and REST client sessions to disk. Default: false. Can also be \n  specified by the `VSPHERE_PERSIST_SESSION` environment variable.\n- `vsphere:vimSessionPath` - (Optional) The direcotry to save the VIM SOAP API session to. Default: `${HOME}/.govmomi/sessions`.\n  Can also be specified by the `VSPHERE_VIM_SESSION_PATH` environment variable.\n- `vsphere:restSessionPath` - (Optional) The directory to save the REST API session (used for tags) to. Default: `${HOME}/.govmomi/rest_sessions`. \n  Can also be specified by the `VSPHERE_REST_SESSION_PATH` environment variable.\n- `vsphere:clientDebug` - (Optional) When `true`, the provider logs SOAP calls made to the vSphere API to disk. The log \n  files are logged to `${HOME}/.govmomi`. Can also be specified with the `VSPHERE_CLIENT_DEBUG` environment variable.\n- `vsphere:clientDebugPath` - (Optional) Override the default log path. Can also be specified with the \n  `VSPHERE_CLIENT_DEBUG_PATH` environment variable.\n- `vsphere:clientDebugPathRun` - (Optional) A specific subdirectory in `client_debug_path` to use for debugging calls for\n  this particular provider configuration. All data in this directory is removed at the start of the provider run. Can also\n  be specified with the `VSPHERE_CLIENT_DEBUG_PATH_RUN` environment variable.\n\n## Reference\n\nFor further information, please visit [the vSphere provider docs](https://www.pulumi.com/docs/intro/cloud-providers/vsphere) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/vsphere).\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating vsphere resources",
    "version": "4.10.0",
    "project_urls": {
        "Homepage": "https://pulumi.io",
        "Repository": "https://github.com/pulumi/pulumi-vsphere"
    },
    "split_keywords": [
        "pulumi",
        "vsphere"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bfe8fd8fa8efd080fdd6b408dd176ec1903c9ed5195698753e9b255eef007f4",
                "md5": "69c24fee1ea90b4ca7c22435e2b8aecd",
                "sha256": "cdaf5b2a9bfda11a57024651f944268f70057f658f41fcf8bfe84749172104fd"
            },
            "downloads": -1,
            "filename": "pulumi_vsphere-4.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "69c24fee1ea90b4ca7c22435e2b8aecd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 331809,
            "upload_time": "2024-03-12T12:53:28",
            "upload_time_iso_8601": "2024-03-12T12:53:28.330364Z",
            "url": "https://files.pythonhosted.org/packages/7b/fe/8fd8fa8efd080fdd6b408dd176ec1903c9ed5195698753e9b255eef007f4/pulumi_vsphere-4.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "089bf48ba80b4b5a27ca69bbf3b357f3b74c8a21fa5e40e684b19872211b0b8f",
                "md5": "1a505bfeac606ea2fe72e199df6d8066",
                "sha256": "b93f710ecb75448cb3cfb72d25cb314465ae2224eabab95f3138531a8b9e452e"
            },
            "downloads": -1,
            "filename": "pulumi_vsphere-4.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1a505bfeac606ea2fe72e199df6d8066",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 261773,
            "upload_time": "2024-03-12T12:53:45",
            "upload_time_iso_8601": "2024-03-12T12:53:45.936740Z",
            "url": "https://files.pythonhosted.org/packages/08/9b/f48ba80b4b5a27ca69bbf3b357f3b74c8a21fa5e40e684b19872211b0b8f/pulumi_vsphere-4.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 12:53:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pulumi",
    "github_project": "pulumi-vsphere",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pulumi-vsphere"
}
        
Elapsed time: 0.32078s