azure-mgmt-deviceupdate


Nameazure-mgmt-deviceupdate JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Device Update Management Client Library for Python
upload_time2023-12-18 03:33:37
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.7
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 Device Update 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-deviceupdate
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.deviceupdate import DeviceUpdateMgmtClient
import os

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

## Examples

Code samples for this package can be found at:
- [Search Device Update 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-12-18)

### Features Added

  - Model Account has a new parameter encryption

## 1.1.0b1 (2022-12-26)

### Other Changes

  - Added generated samples in github repo
  - Drop support for python<3.7.0

## 1.0.0 (2022-08-26)

### Breaking Changes

  - Client name is changed from `DeviceUpdate` to `DeviceUpdateMgmtClient`

## 1.0.0b4 (2022-05-26)

**Features**

  - Added operation group PrivateEndpointConnectionProxiesOperations
  - Model Account has a new parameter locations
  - Model Account has a new parameter private_endpoint_connections
  - Model Account has a new parameter sku
  - Model PrivateEndpointConnection has a new parameter group_ids

**Breaking changes**

  - Model IotHubSettings no longer has parameter event_hub_connection_string
  - Model IotHubSettings no longer has parameter io_t_hub_connection_string
  - Parameter private_link_service_connection_state of model PrivateEndpointConnection is now required

## 1.0.0b3 (2021-11-04)

**Features**

  - Model AccountUpdate has a new parameter identity
  - Model Instance has a new parameter diagnostic_storage_properties
  - Model Instance has a new parameter enable_diagnostics
  - Model Instance has a new parameter system_data
  - Model Account has a new parameter identity
  - Model Account has a new parameter system_data
  - Model Account has a new parameter public_network_access
  - Model Resource has a new parameter system_data
  - Model TrackedResource has a new parameter system_data
  - Model ErrorResponse has a new parameter error
  - Added operation InstancesOperations.head
  - Added operation AccountsOperations.head
  - Added operation group PrivateLinkResourcesOperations
  - Added operation group DeviceUpdateOperationsMixin
  - Added operation group PrivateEndpointConnectionsOperations

**Breaking changes**

  - Model ErrorResponse no longer has parameter additional_info
  - Model ErrorResponse no longer has parameter message
  - Model ErrorResponse no longer has parameter details
  - Model ErrorResponse no longer has parameter code
  - Model ErrorResponse no longer has parameter target

## 1.0.0b2 (2021-03-24)

**Breaking changes**

  - Removed operation InstancesOperations.list_by_subscription
  - Model ErrorResponse has a new signature
  - Model ErrorDefinition has a new signature

## 1.0.0b1 (2021-03-02)

* Initial Release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-deviceupdate",
    "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/ee/46/0c7c91c0b9fd740e67f159d24de7faf9759286baacdc0c2f723ca067ecc3/azure-mgmt-deviceupdate-1.1.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Device Update 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-deviceupdate\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.deviceupdate import DeviceUpdateMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = DeviceUpdateMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Device Update 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-12-18)\n\n### Features Added\n\n  - Model Account has a new parameter encryption\n\n## 1.1.0b1 (2022-12-26)\n\n### Other Changes\n\n  - Added generated samples in github repo\n  - Drop support for python<3.7.0\n\n## 1.0.0 (2022-08-26)\n\n### Breaking Changes\n\n  - Client name is changed from `DeviceUpdate` to `DeviceUpdateMgmtClient`\n\n## 1.0.0b4 (2022-05-26)\n\n**Features**\n\n  - Added operation group PrivateEndpointConnectionProxiesOperations\n  - Model Account has a new parameter locations\n  - Model Account has a new parameter private_endpoint_connections\n  - Model Account has a new parameter sku\n  - Model PrivateEndpointConnection has a new parameter group_ids\n\n**Breaking changes**\n\n  - Model IotHubSettings no longer has parameter event_hub_connection_string\n  - Model IotHubSettings no longer has parameter io_t_hub_connection_string\n  - Parameter private_link_service_connection_state of model PrivateEndpointConnection is now required\n\n## 1.0.0b3 (2021-11-04)\n\n**Features**\n\n  - Model AccountUpdate has a new parameter identity\n  - Model Instance has a new parameter diagnostic_storage_properties\n  - Model Instance has a new parameter enable_diagnostics\n  - Model Instance has a new parameter system_data\n  - Model Account has a new parameter identity\n  - Model Account has a new parameter system_data\n  - Model Account has a new parameter public_network_access\n  - Model Resource has a new parameter system_data\n  - Model TrackedResource has a new parameter system_data\n  - Model ErrorResponse has a new parameter error\n  - Added operation InstancesOperations.head\n  - Added operation AccountsOperations.head\n  - Added operation group PrivateLinkResourcesOperations\n  - Added operation group DeviceUpdateOperationsMixin\n  - Added operation group PrivateEndpointConnectionsOperations\n\n**Breaking changes**\n\n  - Model ErrorResponse no longer has parameter additional_info\n  - Model ErrorResponse no longer has parameter message\n  - Model ErrorResponse no longer has parameter details\n  - Model ErrorResponse no longer has parameter code\n  - Model ErrorResponse no longer has parameter target\n\n## 1.0.0b2 (2021-03-24)\n\n**Breaking changes**\n\n  - Removed operation InstancesOperations.list_by_subscription\n  - Model ErrorResponse has a new signature\n  - Model ErrorDefinition has a new signature\n\n## 1.0.0b1 (2021-03-02)\n\n* Initial Release\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Device Update 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": "9ddf45556974eff6f8a754586cebcb7794e629c5269e80357735d4b38e05d572",
                "md5": "6f1d7e1a4691e26a3054c9a18c24573e",
                "sha256": "a3f0e45f362e334d4ad56f792131fa0c8fff22f7632dbf62ac59b6a1b72b2448"
            },
            "downloads": -1,
            "filename": "azure_mgmt_deviceupdate-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6f1d7e1a4691e26a3054c9a18c24573e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 97985,
            "upload_time": "2023-12-18T03:33:39",
            "upload_time_iso_8601": "2023-12-18T03:33:39.635887Z",
            "url": "https://files.pythonhosted.org/packages/9d/df/45556974eff6f8a754586cebcb7794e629c5269e80357735d4b38e05d572/azure_mgmt_deviceupdate-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee460c7c91c0b9fd740e67f159d24de7faf9759286baacdc0c2f723ca067ecc3",
                "md5": "0a765060f1f92432f8632314eddc662f",
                "sha256": "456d590edfcabeb2715cc972f67a192f3529d4d4da1fc2bec02a56f3c7711b9d"
            },
            "downloads": -1,
            "filename": "azure-mgmt-deviceupdate-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0a765060f1f92432f8632314eddc662f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 72024,
            "upload_time": "2023-12-18T03:33:37",
            "upload_time_iso_8601": "2023-12-18T03:33:37.637266Z",
            "url": "https://files.pythonhosted.org/packages/ee/46/0c7c91c0b9fd740e67f159d24de7faf9759286baacdc0c2f723ca067ecc3/azure-mgmt-deviceupdate-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-18 03:33:37",
    "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-deviceupdate"
}
        
Elapsed time: 0.16122s