# Microsoft Azure SDK for Python
This is the Microsoft Azure Resource Mover Management Client Library.
This package has been tested with Python 3.7+.
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.7+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)
### Install the package
```bash
pip install azure-mgmt-resourcemover
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.resourcemover import ResourceMoverServiceAPI
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = ResourceMoverServiceAPI(credential=DefaultAzureCredential(), subscription_id=sub_id)
```
## Examples
Code samples for this package can be found at:
- [Search Resource Mover 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.1.0 (2023-10-23)
### Features Added
- Model AvailabilitySetResourceSettings has a new parameter tags
- Model AvailabilitySetResourceSettings has a new parameter target_resource_group_name
- Model DiskEncryptionSetResourceSettings has a new parameter target_resource_group_name
- Model KeyVaultResourceSettings has a new parameter target_resource_group_name
- Model LoadBalancerResourceSettings has a new parameter tags
- Model LoadBalancerResourceSettings has a new parameter target_resource_group_name
- Model MoveCollection has a new parameter system_data
- Model MoveCollectionProperties has a new parameter move_region
- Model MoveCollectionProperties has a new parameter move_type
- Model MoveCollectionProperties has a new parameter version
- Model MoveResource has a new parameter system_data
- Model NetworkInterfaceResourceSettings has a new parameter tags
- Model NetworkInterfaceResourceSettings has a new parameter target_resource_group_name
- Model NetworkSecurityGroupResourceSettings has a new parameter tags
- Model NetworkSecurityGroupResourceSettings has a new parameter target_resource_group_name
- Model PublicIPAddressResourceSettings has a new parameter tags
- Model PublicIPAddressResourceSettings has a new parameter target_resource_group_name
- Model ResourceGroupResourceSettings has a new parameter target_resource_group_name
- Model ResourceSettings has a new parameter target_resource_group_name
- Model SqlDatabaseResourceSettings has a new parameter tags
- Model SqlDatabaseResourceSettings has a new parameter target_resource_group_name
- Model SqlElasticPoolResourceSettings has a new parameter tags
- Model SqlElasticPoolResourceSettings has a new parameter target_resource_group_name
- Model SqlServerResourceSettings has a new parameter target_resource_group_name
- Model VirtualMachineResourceSettings has a new parameter tags
- Model VirtualMachineResourceSettings has a new parameter target_resource_group_name
- Model VirtualMachineResourceSettings has a new parameter user_managed_identities
- Model VirtualNetworkResourceSettings has a new parameter tags
- Model VirtualNetworkResourceSettings has a new parameter target_resource_group_name
## 1.1.0b3 (2022-11-04)
### Features Added
- Model AvailabilitySetResourceSettings has a new parameter tags
- Model LoadBalancerResourceSettings has a new parameter tags
- Model MoveCollection has a new parameter system_data
- Model MoveResource has a new parameter system_data
- Model NetworkInterfaceResourceSettings has a new parameter tags
- Model NetworkSecurityGroupResourceSettings has a new parameter tags
- Model PublicIPAddressResourceSettings has a new parameter tags
- Model SqlDatabaseResourceSettings has a new parameter tags
- Model SqlElasticPoolResourceSettings has a new parameter tags
- Model VirtualMachineResourceSettings has a new parameter tags
- Model VirtualMachineResourceSettings has a new parameter user_managed_identities
- Model VirtualNetworkResourceSettings has a new parameter tags
## 1.1.0b2 (2021-05-24)
- Models rename
## 1.1.0b1 (2021-03-09)
* version number change
## 1.0.0 (2021-02-19)
* GA release
## 1.0.0b2 (2021-02-03)
* Initial Release
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python",
"name": "azure-mgmt-resourcemover",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "azure,azure sdk",
"author": "Microsoft Corporation",
"author_email": "azpysdkhelp@microsoft.com",
"download_url": "https://files.pythonhosted.org/packages/c2/67/175ef25300b84b84e8fb7aa44994b859c008cd51493591f0bd6c5344336d/azure-mgmt-resourcemover-1.1.0.tar.gz",
"platform": null,
"description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Resource Mover Management Client Library.\nThis package has been tested with Python 3.7+.\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.7+ 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-resourcemover\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.resourcemover import ResourceMoverServiceAPI\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = ResourceMoverServiceAPI(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Resource Mover 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.1.0 (2023-10-23)\n\n### Features Added\n\n - Model AvailabilitySetResourceSettings has a new parameter tags\n - Model AvailabilitySetResourceSettings has a new parameter target_resource_group_name\n - Model DiskEncryptionSetResourceSettings has a new parameter target_resource_group_name\n - Model KeyVaultResourceSettings has a new parameter target_resource_group_name\n - Model LoadBalancerResourceSettings has a new parameter tags\n - Model LoadBalancerResourceSettings has a new parameter target_resource_group_name\n - Model MoveCollection has a new parameter system_data\n - Model MoveCollectionProperties has a new parameter move_region\n - Model MoveCollectionProperties has a new parameter move_type\n - Model MoveCollectionProperties has a new parameter version\n - Model MoveResource has a new parameter system_data\n - Model NetworkInterfaceResourceSettings has a new parameter tags\n - Model NetworkInterfaceResourceSettings has a new parameter target_resource_group_name\n - Model NetworkSecurityGroupResourceSettings has a new parameter tags\n - Model NetworkSecurityGroupResourceSettings has a new parameter target_resource_group_name\n - Model PublicIPAddressResourceSettings has a new parameter tags\n - Model PublicIPAddressResourceSettings has a new parameter target_resource_group_name\n - Model ResourceGroupResourceSettings has a new parameter target_resource_group_name\n - Model ResourceSettings has a new parameter target_resource_group_name\n - Model SqlDatabaseResourceSettings has a new parameter tags\n - Model SqlDatabaseResourceSettings has a new parameter target_resource_group_name\n - Model SqlElasticPoolResourceSettings has a new parameter tags\n - Model SqlElasticPoolResourceSettings has a new parameter target_resource_group_name\n - Model SqlServerResourceSettings has a new parameter target_resource_group_name\n - Model VirtualMachineResourceSettings has a new parameter tags\n - Model VirtualMachineResourceSettings has a new parameter target_resource_group_name\n - Model VirtualMachineResourceSettings has a new parameter user_managed_identities\n - Model VirtualNetworkResourceSettings has a new parameter tags\n - Model VirtualNetworkResourceSettings has a new parameter target_resource_group_name\n\n## 1.1.0b3 (2022-11-04)\n\n### Features Added\n\n - Model AvailabilitySetResourceSettings has a new parameter tags\n - Model LoadBalancerResourceSettings has a new parameter tags\n - Model MoveCollection has a new parameter system_data\n - Model MoveResource has a new parameter system_data\n - Model NetworkInterfaceResourceSettings has a new parameter tags\n - Model NetworkSecurityGroupResourceSettings has a new parameter tags\n - Model PublicIPAddressResourceSettings has a new parameter tags\n - Model SqlDatabaseResourceSettings has a new parameter tags\n - Model SqlElasticPoolResourceSettings has a new parameter tags\n - Model VirtualMachineResourceSettings has a new parameter tags\n - Model VirtualMachineResourceSettings has a new parameter user_managed_identities\n - Model VirtualNetworkResourceSettings has a new parameter tags\n\n## 1.1.0b2 (2021-05-24)\n\n - Models rename\n\n## 1.1.0b1 (2021-03-09)\n\n* version number change\n\n## 1.0.0 (2021-02-19)\n\n* GA release\n\n## 1.0.0b2 (2021-02-03)\n\n* Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Resource Mover Management Client Library for Python",
"version": "1.1.0",
"project_urls": {
"Homepage": "https://github.com/Azure/azure-sdk-for-python"
},
"split_keywords": [
"azure",
"azure sdk"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "75e843f1cddf1a19975b753ad5286ed2d22a3615bf9770b46d0e8c76bade7123",
"md5": "9570768ae5bb5856a245ed089292e3f9",
"sha256": "1b39cb1ab279fc8c477dc71cf0804c7d8260cd320d9ec6ea3a65be18223660c5"
},
"downloads": -1,
"filename": "azure_mgmt_resourcemover-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9570768ae5bb5856a245ed089292e3f9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 83161,
"upload_time": "2023-10-23T02:52:43",
"upload_time_iso_8601": "2023-10-23T02:52:43.887193Z",
"url": "https://files.pythonhosted.org/packages/75/e8/43f1cddf1a19975b753ad5286ed2d22a3615bf9770b46d0e8c76bade7123/azure_mgmt_resourcemover-1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c267175ef25300b84b84e8fb7aa44994b859c008cd51493591f0bd6c5344336d",
"md5": "3e0308a41824994bfabb68f2bf9c3bb8",
"sha256": "ae6860f05404c25f33adaf1478771b2a60e5901ba07b1f74c138bea52674316e"
},
"downloads": -1,
"filename": "azure-mgmt-resourcemover-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "3e0308a41824994bfabb68f2bf9c3bb8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 66386,
"upload_time": "2023-10-23T02:52:42",
"upload_time_iso_8601": "2023-10-23T02:52:42.639114Z",
"url": "https://files.pythonhosted.org/packages/c2/67/175ef25300b84b84e8fb7aa44994b859c008cd51493591f0bd6c5344336d/azure-mgmt-resourcemover-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-10-23 02:52:42",
"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-resourcemover"
}