# Microsoft Azure SDK for Python
This is the Microsoft Azure Edge Order 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-edgeorder
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.edgeorder import EdgeOrderManagementClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = EdgeOrderManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```
## Examples
Code samples for this package can be found at:
- [Search Edge Order 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
## 2.0.0 (2024-10-30)
### Breaking Changes
- This package now only targets the latest Api-Version available on Azure and removes APIs of other Api-Version. After this change, the package can have much smaller size. If your application requires a specific and non-latest Api-Version, it's recommended to pin this package to the previous released version; If your application always only use latest Api-Version, please ingore this change.
## 2.0.0b1 (2023-02-13)
### Features Added
- Added operation group AddressesOperations
- Added operation group Operations
- Added operation group OrderItemsOperations
- Added operation group OrdersOperations
- Added operation group ProductsAndConfigurationsOperations
- Model BasicInformation has a new parameter fulfilled_by
- Model CommonProperties has a new parameter fulfilled_by
- Model Configuration has a new parameter child_configuration_types
- Model Configuration has a new parameter fulfilled_by
- Model Configuration has a new parameter grouped_child_configurations
- Model ConfigurationProperties has a new parameter child_configuration_types
- Model ConfigurationProperties has a new parameter fulfilled_by
- Model ConfigurationProperties has a new parameter grouped_child_configurations
- Model ConfigurationsRequest has a new parameter configuration_filter
- Model OrderItemDetails has a new parameter order_item_mode
- Model OrderResource has a new parameter order_mode
- Model Product has a new parameter fulfilled_by
- Model ProductDetails has a new parameter child_configuration_device_details
- Model ProductDetails has a new parameter identification_type
- Model ProductDetails has a new parameter opt_in_additional_configurations
- Model ProductDetails has a new parameter parent_device_details
- Model ProductFamiliesMetadataDetails has a new parameter fulfilled_by
- Model ProductFamily has a new parameter fulfilled_by
- Model ProductFamilyProperties has a new parameter fulfilled_by
- Model ProductLine has a new parameter fulfilled_by
- Model ProductLineProperties has a new parameter fulfilled_by
- Model ProductProperties has a new parameter fulfilled_by
### Breaking Changes
- Model ConfigurationsRequest no longer has parameter configuration_filters
- Model OrderItemDetails no longer has parameter management_rp_details
- Model ProductDetails no longer has parameter count
- Model ProductDetails no longer has parameter device_details
## 1.0.0 (2021-12-23)
**Features**
- Model OrderItemDetails has a new parameter management_rp_details_list
- Model ReturnOrderItemDetails has a new parameter shipping_box_required
- Model ReturnOrderItemDetails has a new parameter service_tag
- Model AddressResource has a new parameter address_validation_status
- Model DeviceDetails has a new parameter management_resource_tenant_id
- Model ProductFamily has a new parameter resource_provider_details
- Model ProductFamilyProperties has a new parameter resource_provider_details
- Model ProductFamiliesMetadataDetails has a new parameter resource_provider_details
- Model ProductDetails has a new parameter product_double_encryption_status
- Model AddressProperties has a new parameter address_validation_status
**Breaking changes**
- Operation EdgeOrderManagementClientOperationsMixin.list_order_items_at_subscription_level has a new signature
## 1.0.0b1 (2021-07-27)
* Initial Release
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python",
"name": "azure-mgmt-edgeorder",
"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/56/99/fa584bf305bbfb6392b486091e40f211e56d0641f1b7298b7ab39c321409/azure_mgmt_edgeorder-2.0.0.tar.gz",
"platform": null,
"description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Edge Order 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-edgeorder\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.edgeorder import EdgeOrderManagementClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = EdgeOrderManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Edge Order 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## 2.0.0 (2024-10-30)\n\n### Breaking Changes\n\n - This package now only targets the latest Api-Version available on Azure and removes APIs of other Api-Version. After this change, the package can have much smaller size. If your application requires a specific and non-latest Api-Version, it's recommended to pin this package to the previous released version; If your application always only use latest Api-Version, please ingore this change.\n\n## 2.0.0b1 (2023-02-13)\n\n### Features Added\n\n - Added operation group AddressesOperations\n - Added operation group Operations\n - Added operation group OrderItemsOperations\n - Added operation group OrdersOperations\n - Added operation group ProductsAndConfigurationsOperations\n - Model BasicInformation has a new parameter fulfilled_by\n - Model CommonProperties has a new parameter fulfilled_by\n - Model Configuration has a new parameter child_configuration_types\n - Model Configuration has a new parameter fulfilled_by\n - Model Configuration has a new parameter grouped_child_configurations\n - Model ConfigurationProperties has a new parameter child_configuration_types\n - Model ConfigurationProperties has a new parameter fulfilled_by\n - Model ConfigurationProperties has a new parameter grouped_child_configurations\n - Model ConfigurationsRequest has a new parameter configuration_filter\n - Model OrderItemDetails has a new parameter order_item_mode\n - Model OrderResource has a new parameter order_mode\n - Model Product has a new parameter fulfilled_by\n - Model ProductDetails has a new parameter child_configuration_device_details\n - Model ProductDetails has a new parameter identification_type\n - Model ProductDetails has a new parameter opt_in_additional_configurations\n - Model ProductDetails has a new parameter parent_device_details\n - Model ProductFamiliesMetadataDetails has a new parameter fulfilled_by\n - Model ProductFamily has a new parameter fulfilled_by\n - Model ProductFamilyProperties has a new parameter fulfilled_by\n - Model ProductLine has a new parameter fulfilled_by\n - Model ProductLineProperties has a new parameter fulfilled_by\n - Model ProductProperties has a new parameter fulfilled_by\n\n### Breaking Changes\n\n - Model ConfigurationsRequest no longer has parameter configuration_filters\n - Model OrderItemDetails no longer has parameter management_rp_details\n - Model ProductDetails no longer has parameter count\n - Model ProductDetails no longer has parameter device_details\n\n## 1.0.0 (2021-12-23)\n\n**Features**\n\n - Model OrderItemDetails has a new parameter management_rp_details_list\n - Model ReturnOrderItemDetails has a new parameter shipping_box_required\n - Model ReturnOrderItemDetails has a new parameter service_tag\n - Model AddressResource has a new parameter address_validation_status\n - Model DeviceDetails has a new parameter management_resource_tenant_id\n - Model ProductFamily has a new parameter resource_provider_details\n - Model ProductFamilyProperties has a new parameter resource_provider_details\n - Model ProductFamiliesMetadataDetails has a new parameter resource_provider_details\n - Model ProductDetails has a new parameter product_double_encryption_status\n - Model AddressProperties has a new parameter address_validation_status\n\n**Breaking changes**\n\n - Operation EdgeOrderManagementClientOperationsMixin.list_order_items_at_subscription_level has a new signature\n\n## 1.0.0b1 (2021-07-27)\n\n* Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Edge Order Management Client Library for Python",
"version": "2.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": "a69d6b158c1ffb27b4ac91966b2aa6e606e1a30cf668d7bec5c7c910efcffe9f",
"md5": "89544b3c70d21c8c918a05cdd3a9acfe",
"sha256": "73829f07cbee57e768280b66696464c7b6bcd30c910a6ef20653648cce55a85c"
},
"downloads": -1,
"filename": "azure_mgmt_edgeorder-2.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "89544b3c70d21c8c918a05cdd3a9acfe",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 71174,
"upload_time": "2024-10-30T08:27:24",
"upload_time_iso_8601": "2024-10-30T08:27:24.653970Z",
"url": "https://files.pythonhosted.org/packages/a6/9d/6b158c1ffb27b4ac91966b2aa6e606e1a30cf668d7bec5c7c910efcffe9f/azure_mgmt_edgeorder-2.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5699fa584bf305bbfb6392b486091e40f211e56d0641f1b7298b7ab39c321409",
"md5": "1a745516ddc050596d7d03d360bb3929",
"sha256": "238e5e0a0f074abba4a680c0ab2ee2b9ade7e0822a4c5f702e60a6a20a0c466c"
},
"downloads": -1,
"filename": "azure_mgmt_edgeorder-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "1a745516ddc050596d7d03d360bb3929",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 65847,
"upload_time": "2024-10-30T08:27:23",
"upload_time_iso_8601": "2024-10-30T08:27:23.162496Z",
"url": "https://files.pythonhosted.org/packages/56/99/fa584bf305bbfb6392b486091e40f211e56d0641f1b7298b7ab39c321409/azure_mgmt_edgeorder-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 08:27:23",
"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-edgeorder"
}