Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release for iothub #10337

Merged
merged 4 commits into from
Mar 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdk/iothub/azure-mgmt-iothub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 0.11.0 (2020-03-17)

- Preview API versions 2018-12-01-preview, 2019-03-22-preview, 2019-07-01-preview included

## 0.10.0 (2020-01-09)

**Features**
Expand Down
28 changes: 10 additions & 18 deletions sdk/iothub/azure-mgmt-iothub/README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,21 @@
## Microsoft Azure SDK for Python
# Microsoft Azure SDK for Python

This is the Microsoft Azure IoTHub Management Client Library.

Azure Resource Manager (ARM) is the next generation of management APIs
that replace the old Azure Service Management (ASM).

This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
For a more complete view of Azure libraries, see the [Github repo](https://github.com/Azure/azure-sdk-for-python/)

For the older Azure Service Management (ASM) libraries, see
[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy)
library.

For a more complete set of Azure libraries, see the
[azure](https://pypi.python.org/pypi/azure) bundle package.
# Usage

## Usage
For code examples, see [IoTHub Management](https://docs.microsoft.com/python/api/overview/azure/iot)
on docs.microsoft.com.

For code examples, see [IoTHub
Management](https://docs.microsoft.com/python/api/overview/azure/iot) on
docs.microsoft.com.

## Provide Feedback
# 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)
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.

![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-iothub%2FREADME.png)

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-iothub%2FREADME.png)
54 changes: 54 additions & 0 deletions sdk/iothub/azure-mgmt-iothub/azure/mgmt/iothub/_iot_hub_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ def models(cls, api_version=DEFAULT_API_VERSION):
* 2017-07-01: :mod:`v2017_07_01.models<azure.mgmt.iothub.v2017_07_01.models>`
* 2018-01-22: :mod:`v2018_01_22.models<azure.mgmt.iothub.v2018_01_22.models>`
* 2018-04-01: :mod:`v2018_04_01.models<azure.mgmt.iothub.v2018_04_01.models>`
* 2018-12-01-preview: :mod:`v2018_12_01_preview.models<azure.mgmt.iothub.v2018_12_01_preview.models>`
* 2019-03-22: :mod:`v2019_03_22.models<azure.mgmt.iothub.v2019_03_22.models>`
* 2019-03-22-preview: :mod:`v2019_03_22_preview.models<azure.mgmt.iothub.v2019_03_22_preview.models>`
* 2019-07-01-preview: :mod:`v2019_07_01_preview.models<azure.mgmt.iothub.v2019_07_01_preview.models>`
* 2019-11-04: :mod:`v2019_11_04.models<azure.mgmt.iothub.v2019_11_04.models>`
"""
if api_version == '2016-02-03':
Expand All @@ -95,9 +98,18 @@ def models(cls, api_version=DEFAULT_API_VERSION):
elif api_version == '2018-04-01':
from .v2018_04_01 import models
return models
elif api_version == '2018-12-01-preview':
from .v2018_12_01_preview import models
return models
elif api_version == '2019-03-22':
from .v2019_03_22 import models
return models
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview import models
return models
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview import models
return models
elif api_version == '2019-11-04':
from .v2019_11_04 import models
return models
Expand All @@ -110,7 +122,10 @@ def certificates(self):
* 2017-07-01: :class:`CertificatesOperations<azure.mgmt.iothub.v2017_07_01.operations.CertificatesOperations>`
* 2018-01-22: :class:`CertificatesOperations<azure.mgmt.iothub.v2018_01_22.operations.CertificatesOperations>`
* 2018-04-01: :class:`CertificatesOperations<azure.mgmt.iothub.v2018_04_01.operations.CertificatesOperations>`
* 2018-12-01-preview: :class:`CertificatesOperations<azure.mgmt.iothub.v2018_12_01_preview.operations.CertificatesOperations>`
* 2019-03-22: :class:`CertificatesOperations<azure.mgmt.iothub.v2019_03_22.operations.CertificatesOperations>`
* 2019-03-22-preview: :class:`CertificatesOperations<azure.mgmt.iothub.v2019_03_22_preview.operations.CertificatesOperations>`
* 2019-07-01-preview: :class:`CertificatesOperations<azure.mgmt.iothub.v2019_07_01_preview.operations.CertificatesOperations>`
* 2019-11-04: :class:`CertificatesOperations<azure.mgmt.iothub.v2019_11_04.operations.CertificatesOperations>`
"""
api_version = self._get_api_version('certificates')
Expand All @@ -120,8 +135,14 @@ def certificates(self):
from .v2018_01_22.operations import CertificatesOperations as OperationClass
elif api_version == '2018-04-01':
from .v2018_04_01.operations import CertificatesOperations as OperationClass
elif api_version == '2018-12-01-preview':
from .v2018_12_01_preview.operations import CertificatesOperations as OperationClass
elif api_version == '2019-03-22':
from .v2019_03_22.operations import CertificatesOperations as OperationClass
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview.operations import CertificatesOperations as OperationClass
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview.operations import CertificatesOperations as OperationClass
elif api_version == '2019-11-04':
from .v2019_11_04.operations import CertificatesOperations as OperationClass
else:
Expand All @@ -133,11 +154,17 @@ def iot_hub(self):
"""Instance depends on the API version:

* 2019-03-22: :class:`IotHubOperations<azure.mgmt.iothub.v2019_03_22.operations.IotHubOperations>`
* 2019-03-22-preview: :class:`IotHubOperations<azure.mgmt.iothub.v2019_03_22_preview.operations.IotHubOperations>`
* 2019-07-01-preview: :class:`IotHubOperations<azure.mgmt.iothub.v2019_07_01_preview.operations.IotHubOperations>`
* 2019-11-04: :class:`IotHubOperations<azure.mgmt.iothub.v2019_11_04.operations.IotHubOperations>`
"""
api_version = self._get_api_version('iot_hub')
if api_version == '2019-03-22':
from .v2019_03_22.operations import IotHubOperations as OperationClass
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview.operations import IotHubOperations as OperationClass
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview.operations import IotHubOperations as OperationClass
elif api_version == '2019-11-04':
from .v2019_11_04.operations import IotHubOperations as OperationClass
else:
Expand All @@ -153,7 +180,10 @@ def iot_hub_resource(self):
* 2017-07-01: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2017_07_01.operations.IotHubResourceOperations>`
* 2018-01-22: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2018_01_22.operations.IotHubResourceOperations>`
* 2018-04-01: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2018_04_01.operations.IotHubResourceOperations>`
* 2018-12-01-preview: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2018_12_01_preview.operations.IotHubResourceOperations>`
* 2019-03-22: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2019_03_22.operations.IotHubResourceOperations>`
* 2019-03-22-preview: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2019_03_22_preview.operations.IotHubResourceOperations>`
* 2019-07-01-preview: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2019_07_01_preview.operations.IotHubResourceOperations>`
* 2019-11-04: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2019_11_04.operations.IotHubResourceOperations>`
"""
api_version = self._get_api_version('iot_hub_resource')
Expand All @@ -167,8 +197,14 @@ def iot_hub_resource(self):
from .v2018_01_22.operations import IotHubResourceOperations as OperationClass
elif api_version == '2018-04-01':
from .v2018_04_01.operations import IotHubResourceOperations as OperationClass
elif api_version == '2018-12-01-preview':
from .v2018_12_01_preview.operations import IotHubResourceOperations as OperationClass
elif api_version == '2019-03-22':
from .v2019_03_22.operations import IotHubResourceOperations as OperationClass
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview.operations import IotHubResourceOperations as OperationClass
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview.operations import IotHubResourceOperations as OperationClass
elif api_version == '2019-11-04':
from .v2019_11_04.operations import IotHubResourceOperations as OperationClass
else:
Expand All @@ -182,7 +218,10 @@ def operations(self):
* 2017-07-01: :class:`Operations<azure.mgmt.iothub.v2017_07_01.operations.Operations>`
* 2018-01-22: :class:`Operations<azure.mgmt.iothub.v2018_01_22.operations.Operations>`
* 2018-04-01: :class:`Operations<azure.mgmt.iothub.v2018_04_01.operations.Operations>`
* 2018-12-01-preview: :class:`Operations<azure.mgmt.iothub.v2018_12_01_preview.operations.Operations>`
* 2019-03-22: :class:`Operations<azure.mgmt.iothub.v2019_03_22.operations.Operations>`
* 2019-03-22-preview: :class:`Operations<azure.mgmt.iothub.v2019_03_22_preview.operations.Operations>`
* 2019-07-01-preview: :class:`Operations<azure.mgmt.iothub.v2019_07_01_preview.operations.Operations>`
* 2019-11-04: :class:`Operations<azure.mgmt.iothub.v2019_11_04.operations.Operations>`
"""
api_version = self._get_api_version('operations')
Expand All @@ -192,8 +231,14 @@ def operations(self):
from .v2018_01_22.operations import Operations as OperationClass
elif api_version == '2018-04-01':
from .v2018_04_01.operations import Operations as OperationClass
elif api_version == '2018-12-01-preview':
from .v2018_12_01_preview.operations import Operations as OperationClass
elif api_version == '2019-03-22':
from .v2019_03_22.operations import Operations as OperationClass
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview.operations import Operations as OperationClass
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview.operations import Operations as OperationClass
elif api_version == '2019-11-04':
from .v2019_11_04.operations import Operations as OperationClass
else:
Expand All @@ -205,14 +250,23 @@ def resource_provider_common(self):
"""Instance depends on the API version:

* 2018-04-01: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2018_04_01.operations.ResourceProviderCommonOperations>`
* 2018-12-01-preview: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2018_12_01_preview.operations.ResourceProviderCommonOperations>`
* 2019-03-22: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2019_03_22.operations.ResourceProviderCommonOperations>`
* 2019-03-22-preview: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2019_03_22_preview.operations.ResourceProviderCommonOperations>`
* 2019-07-01-preview: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2019_07_01_preview.operations.ResourceProviderCommonOperations>`
* 2019-11-04: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2019_11_04.operations.ResourceProviderCommonOperations>`
"""
api_version = self._get_api_version('resource_provider_common')
if api_version == '2018-04-01':
from .v2018_04_01.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2018-12-01-preview':
from .v2018_12_01_preview.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2019-03-22':
from .v2019_03_22.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2019-03-22-preview':
from .v2019_03_22_preview.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2019-07-01-preview':
from .v2019_07_01_preview.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2019-11-04':
from .v2019_11_04.operations import ResourceProviderCommonOperations as OperationClass
else:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from ._configuration import IotHubClientConfiguration
from ._iot_hub_client import IotHubClient
__all__ = ['IotHubClient', 'IotHubClientConfiguration']

from .version import VERSION

__version__ = VERSION

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrestazure import AzureConfiguration

from .version import VERSION


class IotHubClientConfiguration(AzureConfiguration):
"""Configuration for IotHubClient
Note that all parameters used to create this instance are saved as instance
attributes.

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The subscription identifier.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=None):

if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
if subscription_id is None:
raise ValueError("Parameter 'subscription_id' must not be None.")
if not base_url:
base_url = 'https://management.azure.com'

super(IotHubClientConfiguration, self).__init__(base_url)

# Starting Autorest.Python 4.0.64, make connection pool activated by default
self.keep_alive = True

self.add_user_agent('azure-mgmt-iothub/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
self.subscription_id = subscription_id
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.service_client import SDKClient
from msrest import Serializer, Deserializer

from ._configuration import IotHubClientConfiguration
from .operations import Operations
from .operations import IotHubResourceOperations
from .operations import ResourceProviderCommonOperations
from .operations import CertificatesOperations
from . import models


class IotHubClient(SDKClient):
"""Use this API to manage the IoT hubs in your Azure subscription.

:ivar config: Configuration for client.
:vartype config: IotHubClientConfiguration

:ivar operations: Operations operations
:vartype operations: azure.mgmt.iothub.operations.Operations
:ivar iot_hub_resource: IotHubResource operations
:vartype iot_hub_resource: azure.mgmt.iothub.operations.IotHubResourceOperations
:ivar resource_provider_common: ResourceProviderCommon operations
:vartype resource_provider_common: azure.mgmt.iothub.operations.ResourceProviderCommonOperations
:ivar certificates: Certificates operations
:vartype certificates: azure.mgmt.iothub.operations.CertificatesOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: The subscription identifier.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=None):

self.config = IotHubClientConfiguration(credentials, subscription_id, base_url)
super(IotHubClient, self).__init__(self.config.credentials, self.config)

client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
self.api_version = '2018-12-01-preview'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

self.operations = Operations(
self._client, self.config, self._serialize, self._deserialize)
self.iot_hub_resource = IotHubResourceOperations(
self._client, self.config, self._serialize, self._deserialize)
self.resource_provider_common = ResourceProviderCommonOperations(
self._client, self.config, self._serialize, self._deserialize)
self.certificates = CertificatesOperations(
self._client, self.config, self._serialize, self._deserialize)
Loading