azure-mgmt-standbypool


Nameazure-mgmt-standbypool JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Standbypool Management Client Library for Python
upload_time2024-09-25 05:56:52
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.8
licenseMIT License
keywords azure azure sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Microsoft Azure SDK for Python

This is the Microsoft Azure Standbypool Management Client Library.
This package has been tested with Python 3.8+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.8+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-standbypool
pip install azure-identity
```

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.standbypool import StandbyPoolMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = StandbyPoolMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Standbypool Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project. 


# Release History

## 1.0.0 (2024-09-25)

### Features Added

  - Client `StandbyPoolMgmtClient` added property `send_request`
  - Client `StandbyPoolMgmtClient` added operation group `standby_virtual_machine_pool_runtime_views`
  - Client `StandbyPoolMgmtClient` added operation group `standby_container_group_pool_runtime_views`
  - Model `ContainerGroupProfile` added property `id`
  - Model `ContainerGroupProfile` added property `revision`
  - Model `ContainerGroupProperties` added property `container_group_profile`
  - Model `ContainerGroupProperties` added property `subnet_ids`
  - Model `ErrorAdditionalInfo` added property `info`
  - Model `ErrorAdditionalInfo` added property `type`
  - Model `ErrorDetail` added property `additional_info`
  - Model `ErrorDetail` added property `code`
  - Model `ErrorDetail` added property `details`
  - Model `ErrorDetail` added property `message`
  - Model `ErrorDetail` added property `target`
  - Model `ErrorResponse` added property `error`
  - Model `Operation` added property `action_type`
  - Model `Operation` added property `display`
  - Model `Operation` added property `is_data_action`
  - Model `Operation` added property `name`
  - Model `Operation` added property `origin`
  - Model `OperationDisplay` added property `description`
  - Model `OperationDisplay` added property `operation`
  - Model `OperationDisplay` added property `provider`
  - Model `OperationDisplay` added property `resource`
  - Model `ProxyResource` added property `id`
  - Model `ProxyResource` added property `name`
  - Model `ProxyResource` added property `system_data`
  - Model `ProxyResource` added property `type`
  - Model `Resource` added property `id`
  - Model `Resource` added property `name`
  - Model `Resource` added property `system_data`
  - Model `Resource` added property `type`
  - Model `StandbyContainerGroupPoolElasticityProfile` added property `max_ready_capacity`
  - Model `StandbyContainerGroupPoolElasticityProfile` added property `refill_policy`
  - Model `StandbyContainerGroupPoolResource` added property `id`
  - Model `StandbyContainerGroupPoolResource` added property `location`
  - Model `StandbyContainerGroupPoolResource` added property `name`
  - Model `StandbyContainerGroupPoolResource` added property `properties`
  - Model `StandbyContainerGroupPoolResource` added property `system_data`
  - Model `StandbyContainerGroupPoolResource` added property `tags`
  - Model `StandbyContainerGroupPoolResource` added property `type`
  - Model `StandbyContainerGroupPoolResourceProperties` added property `container_group_properties`
  - Model `StandbyContainerGroupPoolResourceProperties` added property `elasticity_profile`
  - Model `StandbyContainerGroupPoolResourceProperties` added property `provisioning_state`
  - Model `StandbyContainerGroupPoolResourceUpdate` added property `properties`
  - Model `StandbyContainerGroupPoolResourceUpdate` added property `tags`
  - Model `StandbyContainerGroupPoolResourceUpdateProperties` added property `container_group_properties`
  - Model `StandbyContainerGroupPoolResourceUpdateProperties` added property `elasticity_profile`
  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `max_ready_capacity`
  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `min_ready_capacity`
  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `min_ready_capacity`
  - Model `StandbyVirtualMachinePoolResource` added property `id`
  - Model `StandbyVirtualMachinePoolResource` added property `location`
  - Model `StandbyVirtualMachinePoolResource` added property `name`
  - Model `StandbyVirtualMachinePoolResource` added property `properties`
  - Model `StandbyVirtualMachinePoolResource` added property `system_data`
  - Model `StandbyVirtualMachinePoolResource` added property `tags`
  - Model `StandbyVirtualMachinePoolResource` added property `type`
  - Model `StandbyVirtualMachinePoolResourceProperties` added property `attached_virtual_machine_scale_set_id`
  - Model `StandbyVirtualMachinePoolResourceProperties` added property `elasticity_profile`
  - Model `StandbyVirtualMachinePoolResourceProperties` added property `provisioning_state`
  - Model `StandbyVirtualMachinePoolResourceProperties` added property `virtual_machine_state`
  - Model `StandbyVirtualMachinePoolResourceUpdate` added property `properties`
  - Model `StandbyVirtualMachinePoolResourceUpdate` added property `tags`
  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `attached_virtual_machine_scale_set_id`
  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `elasticity_profile`
  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `virtual_machine_state`
  - Model `StandbyVirtualMachineResource` added property `id`
  - Model `StandbyVirtualMachineResource` added property `name`
  - Model `StandbyVirtualMachineResource` added property `properties`
  - Model `StandbyVirtualMachineResource` added property `system_data`
  - Model `StandbyVirtualMachineResource` added property `type`
  - Model `StandbyVirtualMachineResourceProperties` added property `provisioning_state`
  - Model `StandbyVirtualMachineResourceProperties` added property `virtual_machine_resource_id`
  - Model `Subnet` added property `id`
  - Model `SystemData` added property `created_at`
  - Model `SystemData` added property `created_by`
  - Model `SystemData` added property `created_by_type`
  - Model `SystemData` added property `last_modified_at`
  - Model `SystemData` added property `last_modified_by`
  - Model `SystemData` added property `last_modified_by_type`
  - Model `TrackedResource` added property `id`
  - Model `TrackedResource` added property `location`
  - Model `TrackedResource` added property `name`
  - Model `TrackedResource` added property `system_data`
  - Model `TrackedResource` added property `tags`
  - Model `TrackedResource` added property `type`
  - Added model `ContainerGroupInstanceCountSummary`
  - Added model `PoolResourceStateCount`
  - Added model `StandbyContainerGroupPoolRuntimeViewResource`
  - Added model `StandbyContainerGroupPoolRuntimeViewResourceProperties`
  - Added model `StandbyVirtualMachinePoolRuntimeViewResource`
  - Added model `StandbyVirtualMachinePoolRuntimeViewResourceProperties`
  - Added model `VirtualMachineInstanceCountSummary`
  - Added model `StandbyContainerGroupPoolRuntimeViewsOperations`
  - Added model `StandbyVirtualMachinePoolRuntimeViewsOperations`

### Breaking Changes

  - Model `ProxyResource` deleted or renamed its instance variable `additional_properties`
  - Deleted or renamed model `ContainerGroupProfileUpdate`
  - Deleted or renamed model `ContainerGroupPropertiesUpdate`
  - Deleted or renamed model `OperationListResult`
  - Deleted or renamed model `StandbyContainerGroupPoolElasticityProfileUpdate`
  - Deleted or renamed model `StandbyContainerGroupPoolResourceListResult`
  - Deleted or renamed model `StandbyVirtualMachinePoolElasticityProfileUpdate`
  - Deleted or renamed model `StandbyVirtualMachinePoolResourceListResult`
  - Deleted or renamed model `StandbyVirtualMachineResourceListResult`

## 1.0.0b1 (2024-04-22)

* Initial Release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-standbypool",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "azure, azure sdk",
    "author": "Microsoft Corporation",
    "author_email": "azpysdkhelp@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/51/bb/d0efef3e33eb33a750c40918d58c4884a6e09e6b7c69659e54a77ffad819/azure_mgmt_standbypool-1.0.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Standbypool Management Client Library.\nThis package has been tested with Python 3.8+.\nFor a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).\n\n## _Disclaimer_\n\n_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_\n\n## Getting started\n\n### Prerequisites\n\n- Python 3.8+ is required to use this package.\n- [Azure subscription](https://azure.microsoft.com/free/)\n\n### Install the package\n\n```bash\npip install azure-mgmt-standbypool\npip install azure-identity\n```\n\n### Authentication\n\nBy default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.\n\n- `AZURE_CLIENT_ID` for Azure client ID.\n- `AZURE_TENANT_ID` for Azure tenant ID.\n- `AZURE_CLIENT_SECRET` for Azure client secret.\n\nIn addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.\n\nWith above configuration, client can be authenticated by following code:\n\n```python\nfrom azure.identity import DefaultAzureCredential\nfrom azure.mgmt.standbypool import StandbyPoolMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = StandbyPoolMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Standbypool Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com\n- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)\n\n\n## Troubleshooting\n\n## Next steps\n\n## Provide Feedback\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n[Issues](https://github.com/Azure/azure-sdk-for-python/issues)\nsection of the project. \n\n\n# Release History\n\n## 1.0.0 (2024-09-25)\n\n### Features Added\n\n  - Client `StandbyPoolMgmtClient` added property `send_request`\n  - Client `StandbyPoolMgmtClient` added operation group `standby_virtual_machine_pool_runtime_views`\n  - Client `StandbyPoolMgmtClient` added operation group `standby_container_group_pool_runtime_views`\n  - Model `ContainerGroupProfile` added property `id`\n  - Model `ContainerGroupProfile` added property `revision`\n  - Model `ContainerGroupProperties` added property `container_group_profile`\n  - Model `ContainerGroupProperties` added property `subnet_ids`\n  - Model `ErrorAdditionalInfo` added property `info`\n  - Model `ErrorAdditionalInfo` added property `type`\n  - Model `ErrorDetail` added property `additional_info`\n  - Model `ErrorDetail` added property `code`\n  - Model `ErrorDetail` added property `details`\n  - Model `ErrorDetail` added property `message`\n  - Model `ErrorDetail` added property `target`\n  - Model `ErrorResponse` added property `error`\n  - Model `Operation` added property `action_type`\n  - Model `Operation` added property `display`\n  - Model `Operation` added property `is_data_action`\n  - Model `Operation` added property `name`\n  - Model `Operation` added property `origin`\n  - Model `OperationDisplay` added property `description`\n  - Model `OperationDisplay` added property `operation`\n  - Model `OperationDisplay` added property `provider`\n  - Model `OperationDisplay` added property `resource`\n  - Model `ProxyResource` added property `id`\n  - Model `ProxyResource` added property `name`\n  - Model `ProxyResource` added property `system_data`\n  - Model `ProxyResource` added property `type`\n  - Model `Resource` added property `id`\n  - Model `Resource` added property `name`\n  - Model `Resource` added property `system_data`\n  - Model `Resource` added property `type`\n  - Model `StandbyContainerGroupPoolElasticityProfile` added property `max_ready_capacity`\n  - Model `StandbyContainerGroupPoolElasticityProfile` added property `refill_policy`\n  - Model `StandbyContainerGroupPoolResource` added property `id`\n  - Model `StandbyContainerGroupPoolResource` added property `location`\n  - Model `StandbyContainerGroupPoolResource` added property `name`\n  - Model `StandbyContainerGroupPoolResource` added property `properties`\n  - Model `StandbyContainerGroupPoolResource` added property `system_data`\n  - Model `StandbyContainerGroupPoolResource` added property `tags`\n  - Model `StandbyContainerGroupPoolResource` added property `type`\n  - Model `StandbyContainerGroupPoolResourceProperties` added property `container_group_properties`\n  - Model `StandbyContainerGroupPoolResourceProperties` added property `elasticity_profile`\n  - Model `StandbyContainerGroupPoolResourceProperties` added property `provisioning_state`\n  - Model `StandbyContainerGroupPoolResourceUpdate` added property `properties`\n  - Model `StandbyContainerGroupPoolResourceUpdate` added property `tags`\n  - Model `StandbyContainerGroupPoolResourceUpdateProperties` added property `container_group_properties`\n  - Model `StandbyContainerGroupPoolResourceUpdateProperties` added property `elasticity_profile`\n  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `max_ready_capacity`\n  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `min_ready_capacity`\n  - Model `StandbyVirtualMachinePoolElasticityProfile` added property `min_ready_capacity`\n  - Model `StandbyVirtualMachinePoolResource` added property `id`\n  - Model `StandbyVirtualMachinePoolResource` added property `location`\n  - Model `StandbyVirtualMachinePoolResource` added property `name`\n  - Model `StandbyVirtualMachinePoolResource` added property `properties`\n  - Model `StandbyVirtualMachinePoolResource` added property `system_data`\n  - Model `StandbyVirtualMachinePoolResource` added property `tags`\n  - Model `StandbyVirtualMachinePoolResource` added property `type`\n  - Model `StandbyVirtualMachinePoolResourceProperties` added property `attached_virtual_machine_scale_set_id`\n  - Model `StandbyVirtualMachinePoolResourceProperties` added property `elasticity_profile`\n  - Model `StandbyVirtualMachinePoolResourceProperties` added property `provisioning_state`\n  - Model `StandbyVirtualMachinePoolResourceProperties` added property `virtual_machine_state`\n  - Model `StandbyVirtualMachinePoolResourceUpdate` added property `properties`\n  - Model `StandbyVirtualMachinePoolResourceUpdate` added property `tags`\n  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `attached_virtual_machine_scale_set_id`\n  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `elasticity_profile`\n  - Model `StandbyVirtualMachinePoolResourceUpdateProperties` added property `virtual_machine_state`\n  - Model `StandbyVirtualMachineResource` added property `id`\n  - Model `StandbyVirtualMachineResource` added property `name`\n  - Model `StandbyVirtualMachineResource` added property `properties`\n  - Model `StandbyVirtualMachineResource` added property `system_data`\n  - Model `StandbyVirtualMachineResource` added property `type`\n  - Model `StandbyVirtualMachineResourceProperties` added property `provisioning_state`\n  - Model `StandbyVirtualMachineResourceProperties` added property `virtual_machine_resource_id`\n  - Model `Subnet` added property `id`\n  - Model `SystemData` added property `created_at`\n  - Model `SystemData` added property `created_by`\n  - Model `SystemData` added property `created_by_type`\n  - Model `SystemData` added property `last_modified_at`\n  - Model `SystemData` added property `last_modified_by`\n  - Model `SystemData` added property `last_modified_by_type`\n  - Model `TrackedResource` added property `id`\n  - Model `TrackedResource` added property `location`\n  - Model `TrackedResource` added property `name`\n  - Model `TrackedResource` added property `system_data`\n  - Model `TrackedResource` added property `tags`\n  - Model `TrackedResource` added property `type`\n  - Added model `ContainerGroupInstanceCountSummary`\n  - Added model `PoolResourceStateCount`\n  - Added model `StandbyContainerGroupPoolRuntimeViewResource`\n  - Added model `StandbyContainerGroupPoolRuntimeViewResourceProperties`\n  - Added model `StandbyVirtualMachinePoolRuntimeViewResource`\n  - Added model `StandbyVirtualMachinePoolRuntimeViewResourceProperties`\n  - Added model `VirtualMachineInstanceCountSummary`\n  - Added model `StandbyContainerGroupPoolRuntimeViewsOperations`\n  - Added model `StandbyVirtualMachinePoolRuntimeViewsOperations`\n\n### Breaking Changes\n\n  - Model `ProxyResource` deleted or renamed its instance variable `additional_properties`\n  - Deleted or renamed model `ContainerGroupProfileUpdate`\n  - Deleted or renamed model `ContainerGroupPropertiesUpdate`\n  - Deleted or renamed model `OperationListResult`\n  - Deleted or renamed model `StandbyContainerGroupPoolElasticityProfileUpdate`\n  - Deleted or renamed model `StandbyContainerGroupPoolResourceListResult`\n  - Deleted or renamed model `StandbyVirtualMachinePoolElasticityProfileUpdate`\n  - Deleted or renamed model `StandbyVirtualMachinePoolResourceListResult`\n  - Deleted or renamed model `StandbyVirtualMachineResourceListResult`\n\n## 1.0.0b1 (2024-04-22)\n\n* Initial Release\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Standbypool Management Client Library for Python",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/Azure/azure-sdk-for-python"
    },
    "split_keywords": [
        "azure",
        " azure sdk"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "258cf890aead31a473c8316bde769b0627790fc5bfacf8a5a273a8b700f6fdde",
                "md5": "f1c5b575f9ed2651ae4b588497ef4e31",
                "sha256": "5bec40f0307c79b1a4f6bf6934e0ba81cc26b25cb6103b6b12317179a0bfea86"
            },
            "downloads": -1,
            "filename": "azure_mgmt_standbypool-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f1c5b575f9ed2651ae4b588497ef4e31",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 71759,
            "upload_time": "2024-09-25T05:56:54",
            "upload_time_iso_8601": "2024-09-25T05:56:54.734290Z",
            "url": "https://files.pythonhosted.org/packages/25/8c/f890aead31a473c8316bde769b0627790fc5bfacf8a5a273a8b700f6fdde/azure_mgmt_standbypool-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51bbd0efef3e33eb33a750c40918d58c4884a6e09e6b7c69659e54a77ffad819",
                "md5": "9fcf140275a32daf66d9bf0f57adaae0",
                "sha256": "e7f9e7d837d81438b72cddbd8a3d044b207e3d567ce818b10f77cee9bd34b2ae"
            },
            "downloads": -1,
            "filename": "azure_mgmt_standbypool-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9fcf140275a32daf66d9bf0f57adaae0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 66378,
            "upload_time": "2024-09-25T05:56:52",
            "upload_time_iso_8601": "2024-09-25T05:56:52.995123Z",
            "url": "https://files.pythonhosted.org/packages/51/bb/d0efef3e33eb33a750c40918d58c4884a6e09e6b7c69659e54a77ffad819/azure_mgmt_standbypool-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-25 05:56:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Azure",
    "github_project": "azure-sdk-for-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "azure-mgmt-standbypool"
}
        
Elapsed time: 0.29705s