Skip to main content

Microsoft Azure Standbypool Management Client Library for Python

Project description

Microsoft Azure SDK for Python

This is the Microsoft Azure Standbypool Management Client Library. This package has been tested with Python 3.9+. For a more complete view of Azure libraries, see the azure sdk python release.

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

Install the package

pip install azure-mgmt-standbypool
pip install azure-identity

Authentication

By default, Azure Active Directory token authentication depends on correct configuration of the 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:

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:

Troubleshooting

Next steps

Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.

Release History

2.1.0 (2026-03-25)

Features Added

  • Model StandbyPoolMgmtClient added parameter cloud_setting in method __init__
  • Model StandbyContainerGroupPoolElasticityProfile added property dynamic_sizing
  • Model StandbyVirtualMachinePoolElasticityProfile added property post_provisioning_delay
  • Model StandbyVirtualMachinePoolElasticityProfile added property dynamic_sizing
  • Added model DynamicSizing

2.0.0 (2025-04-21)

Features Added

  • Model ContainerGroupInstanceCountSummary added property zone
  • Model StandbyContainerGroupPoolResourceProperties added property zones
  • Model StandbyContainerGroupPoolResourceUpdateProperties added property zones
  • Model StandbyContainerGroupPoolRuntimeViewResourceProperties added property status
  • Model StandbyContainerGroupPoolRuntimeViewResourceProperties added property prediction
  • Model StandbyVirtualMachinePoolRuntimeViewResourceProperties added property status
  • Model StandbyVirtualMachinePoolRuntimeViewResourceProperties added property prediction
  • Enum VirtualMachineState added member HIBERNATED
  • Added enum HealthStateCode
  • Added enum PoolContainerGroupState
  • Added model PoolContainerGroupStateCount
  • Added model PoolStatus
  • Added enum PoolVirtualMachineState
  • Added model PoolVirtualMachineStateCount
  • Added model StandbyContainerGroupPoolForecastValues
  • Added model StandbyContainerGroupPoolPrediction
  • Added model StandbyVirtualMachinePoolForecastValues
  • Added model StandbyVirtualMachinePoolPrediction

Breaking Changes

  • Deleted or renamed model PoolResourceStateCount

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

azure_mgmt_standbypool-2.1.0.tar.gz (68.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

azure_mgmt_standbypool-2.1.0-py3-none-any.whl (75.1 kB view details)

Uploaded Python 3

File details

Details for the file azure_mgmt_standbypool-2.1.0.tar.gz.

File metadata

  • Download URL: azure_mgmt_standbypool-2.1.0.tar.gz
  • Upload date:
  • Size: 68.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: RestSharp/106.13.0.0

File hashes

Hashes for azure_mgmt_standbypool-2.1.0.tar.gz
Algorithm Hash digest
SHA256 7535a99a3292f1441d2827821e6f534957ddf6084f4be7977dcf13c826bd9e2b
MD5 0dfd97e34feb04ac198cefd817f3fce8
BLAKE2b-256 ca077039a3340431e0375686664395b1200b6d15d5d4803b182208e4a398862a

See more details on using hashes here.

File details

Details for the file azure_mgmt_standbypool-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for azure_mgmt_standbypool-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 135cb77fdd02f6f131d6e7b2eb5d6e839810bb3242c05f707844e9bc48a40d28
MD5 36fff1e2268527df988b9da328db520e
BLAKE2b-256 b517f2fc6a6f3aa84458c2f3ca694a2040cf2325b3e9d84fd18cf13b2ebd374d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page