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.8+. 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 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:

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

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-1.0.0.tar.gz (66.4 kB view hashes)

Uploaded Source

Built Distribution

azure_mgmt_standbypool-1.0.0-py3-none-any.whl (71.8 kB view hashes)

Uploaded Python 3

Supported by

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