azure-mgmt-computefleet


Nameazure-mgmt-computefleet JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Computefleet Management Client Library for Python
upload_time2024-10-23 02:12: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 Computefleet 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-computefleet
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.computefleet import ComputeFleetMgmtClient
import os

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

## Examples

Code samples for this package can be found at:
- [Search Computefleet 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-10-22)

### Features Added

  - Model `ComputeProfile` added property `additional_virtual_machine_capabilities`
  - Model `FleetProperties` added property `vm_attributes`
  - Model `FleetProperties` added property `additional_locations_profile`
  - Enum `DiskControllerTypes` added member `NV_ME`
  - Enum `SecurityTypes` added member `CONFIDENTIAL_VM`
  - Enum `WindowsVMGuestPatchMode` added member `AUTOMATIC_BY_OS`
  - Added model `AdditionalCapabilities`
  - Added model `AdditionalLocationsProfile`
  - Added model `LocationProfile`
  - Added model `VMAttributeMinMaxDouble`
  - Added model `VMAttributeMinMaxInteger`
  - Added model `VMAttributes`
  - Added enum `AcceleratorManufacturer`
  - Added enum `AcceleratorType`
  - Added enum `ArchitectureType`
  - Added enum `CpuManufacturer`
  - Added enum `LocalStorageDiskType`
  - Added enum `VMAttributeSupport`
  - Added enum `VMCategory`

### Breaking Changes

  - Model `LinuxConfiguration` renamed its instance variable `provision_v_m_agent` into `provision_vm_agent`
  - Model `LinuxConfiguration` renamed its instance variable `enable_v_m_agent_platform_updates` into `enable_vm_agent_platform_updates`
  - Model `SpotPriorityProfile` renamed its instance variable `max_price_per_v_m` into `max_price_per_vm`
  - Model `VMSizeProperties` renamed its instance variable `v_c_p_us_available` into `v_cpus_available`
  - Model `VMSizeProperties` renamed its instance variable `v_c_p_us_per_core` into `v_cpus_per_core`
  - Model `VirtualMachineScaleSetDataDisk` renamed its instance variable `disk_size_g_b` into `disk_size_gb`
  - Model `VirtualMachineScaleSetDataDisk` renamed its instance variable `disk_i_o_p_s_read_write` into `disk_iops_read_write`
  - Model `VirtualMachineScaleSetIPConfigurationProperties` renamed its instance variable `public_i_p_address_configuration` into `public_ip_address_configuration`
  - Model `VirtualMachineScaleSetIPConfigurationProperties` renamed its instance variable `private_i_p_address_version` into `private_ip_address_version`
  - Model `VirtualMachineScaleSetNetworkConfigurationProperties` renamed its instance variable `enable_i_p_forwarding` into `enable_ip_forwarding`
  - Model `VirtualMachineScaleSetOSDisk` renamed its instance variable `disk_size_g_b` into `disk_size_gb`
  - Model `VirtualMachineScaleSetPublicIPAddressConfigurationProperties` renamed its instance variable `public_i_p_prefix` into `public_ip_prefix`
  - Model `VirtualMachineScaleSetPublicIPAddressConfigurationProperties` renamed its instance variable `public_i_p_address_version` into `public_ip_address_version`
  - Model `WindowsConfiguration` renamed its instance variable `provision_v_m_agent` into `provision_vm_agent`
  - Model `WindowsConfiguration` renamed its instance variable `win_r_m` into `win_rm`
  - Model `WindowsConfiguration` renamed its instance variable `enable_v_m_agent_platform_updates` into `enable_vm_agent_platform_updates`
  - Deleted or renamed enum value `DiskControllerTypes.N_V_ME`
  - Deleted or renamed enum value `NetworkApiVersion.ENUM_2020_11_01`
  - Deleted or renamed enum value `SecurityEncryptionTypes.DISK_WITH_V_M_GUEST_STATE`
  - Deleted or renamed enum value `SecurityEncryptionTypes.NON_PERSISTED_T_P_M`
  - Deleted or renamed enum value `SecurityEncryptionTypes.V_M_GUEST_STATE_ONLY`
  - Deleted or renamed enum value `SecurityTypes.CONFIDENTIAL_V_M`
  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_L_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_V2_L_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_Z_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_L_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_S_S_D_L_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_S_S_D_Z_R_S`
  - Deleted or renamed enum value `StorageAccountTypes.ULTRA_S_S_D_L_R_S`
  - Deleted or renamed enum value `WindowsVMGuestPatchMode.AUTOMATIC_BY_O_S`

## 1.0.0b1 (2024-07-22)

### Other Changes

  - Initial version

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-computefleet",
    "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/21/0c/56dbe569520765d904fafaa67593848fd0cc018d61c9a6458688b91a51b1/azure_mgmt_computefleet-1.0.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Computefleet 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-computefleet\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.computefleet import ComputeFleetMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = ComputeFleetMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Computefleet 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-10-22)\n\n### Features Added\n\n  - Model `ComputeProfile` added property `additional_virtual_machine_capabilities`\n  - Model `FleetProperties` added property `vm_attributes`\n  - Model `FleetProperties` added property `additional_locations_profile`\n  - Enum `DiskControllerTypes` added member `NV_ME`\n  - Enum `SecurityTypes` added member `CONFIDENTIAL_VM`\n  - Enum `WindowsVMGuestPatchMode` added member `AUTOMATIC_BY_OS`\n  - Added model `AdditionalCapabilities`\n  - Added model `AdditionalLocationsProfile`\n  - Added model `LocationProfile`\n  - Added model `VMAttributeMinMaxDouble`\n  - Added model `VMAttributeMinMaxInteger`\n  - Added model `VMAttributes`\n  - Added enum `AcceleratorManufacturer`\n  - Added enum `AcceleratorType`\n  - Added enum `ArchitectureType`\n  - Added enum `CpuManufacturer`\n  - Added enum `LocalStorageDiskType`\n  - Added enum `VMAttributeSupport`\n  - Added enum `VMCategory`\n\n### Breaking Changes\n\n  - Model `LinuxConfiguration` renamed its instance variable `provision_v_m_agent` into `provision_vm_agent`\n  - Model `LinuxConfiguration` renamed its instance variable `enable_v_m_agent_platform_updates` into `enable_vm_agent_platform_updates`\n  - Model `SpotPriorityProfile` renamed its instance variable `max_price_per_v_m` into `max_price_per_vm`\n  - Model `VMSizeProperties` renamed its instance variable `v_c_p_us_available` into `v_cpus_available`\n  - Model `VMSizeProperties` renamed its instance variable `v_c_p_us_per_core` into `v_cpus_per_core`\n  - Model `VirtualMachineScaleSetDataDisk` renamed its instance variable `disk_size_g_b` into `disk_size_gb`\n  - Model `VirtualMachineScaleSetDataDisk` renamed its instance variable `disk_i_o_p_s_read_write` into `disk_iops_read_write`\n  - Model `VirtualMachineScaleSetIPConfigurationProperties` renamed its instance variable `public_i_p_address_configuration` into `public_ip_address_configuration`\n  - Model `VirtualMachineScaleSetIPConfigurationProperties` renamed its instance variable `private_i_p_address_version` into `private_ip_address_version`\n  - Model `VirtualMachineScaleSetNetworkConfigurationProperties` renamed its instance variable `enable_i_p_forwarding` into `enable_ip_forwarding`\n  - Model `VirtualMachineScaleSetOSDisk` renamed its instance variable `disk_size_g_b` into `disk_size_gb`\n  - Model `VirtualMachineScaleSetPublicIPAddressConfigurationProperties` renamed its instance variable `public_i_p_prefix` into `public_ip_prefix`\n  - Model `VirtualMachineScaleSetPublicIPAddressConfigurationProperties` renamed its instance variable `public_i_p_address_version` into `public_ip_address_version`\n  - Model `WindowsConfiguration` renamed its instance variable `provision_v_m_agent` into `provision_vm_agent`\n  - Model `WindowsConfiguration` renamed its instance variable `win_r_m` into `win_rm`\n  - Model `WindowsConfiguration` renamed its instance variable `enable_v_m_agent_platform_updates` into `enable_vm_agent_platform_updates`\n  - Deleted or renamed enum value `DiskControllerTypes.N_V_ME`\n  - Deleted or renamed enum value `NetworkApiVersion.ENUM_2020_11_01`\n  - Deleted or renamed enum value `SecurityEncryptionTypes.DISK_WITH_V_M_GUEST_STATE`\n  - Deleted or renamed enum value `SecurityEncryptionTypes.NON_PERSISTED_T_P_M`\n  - Deleted or renamed enum value `SecurityEncryptionTypes.V_M_GUEST_STATE_ONLY`\n  - Deleted or renamed enum value `SecurityTypes.CONFIDENTIAL_V_M`\n  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_L_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_V2_L_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.PREMIUM_Z_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_L_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_S_S_D_L_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.STANDARD_S_S_D_Z_R_S`\n  - Deleted or renamed enum value `StorageAccountTypes.ULTRA_S_S_D_L_R_S`\n  - Deleted or renamed enum value `WindowsVMGuestPatchMode.AUTOMATIC_BY_O_S`\n\n## 1.0.0b1 (2024-07-22)\n\n### Other Changes\n\n  - Initial version\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Computefleet 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": "13e65b81168d2bb7148f781aa9f51204c2c909ea68f64d3411c17de46ddd7e37",
                "md5": "46c7da25081efa7b53c65a494cd01f63",
                "sha256": "5cf259843546531d855fbccaa309bc178446ec886b8279cefacaececbcfc92f5"
            },
            "downloads": -1,
            "filename": "azure_mgmt_computefleet-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "46c7da25081efa7b53c65a494cd01f63",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 94527,
            "upload_time": "2024-10-23T02:12:53",
            "upload_time_iso_8601": "2024-10-23T02:12:53.672171Z",
            "url": "https://files.pythonhosted.org/packages/13/e6/5b81168d2bb7148f781aa9f51204c2c909ea68f64d3411c17de46ddd7e37/azure_mgmt_computefleet-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "210c56dbe569520765d904fafaa67593848fd0cc018d61c9a6458688b91a51b1",
                "md5": "5e7fcf442e032344d6f56058b46f3f7d",
                "sha256": "366a4f977fe68b1025e5bc322f730bec7c0563cf8ce2bf78365884df4f892ce9"
            },
            "downloads": -1,
            "filename": "azure_mgmt_computefleet-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5e7fcf442e032344d6f56058b46f3f7d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 89816,
            "upload_time": "2024-10-23T02:12:52",
            "upload_time_iso_8601": "2024-10-23T02:12:52.164175Z",
            "url": "https://files.pythonhosted.org/packages/21/0c/56dbe569520765d904fafaa67593848fd0cc018d61c9a6458688b91a51b1/azure_mgmt_computefleet-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-23 02:12: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-computefleet"
}
        
Elapsed time: 0.44057s