Skip to content
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
27 changes: 27 additions & 0 deletions sdk/iothub/azure-mgmt-iothub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Release History

## 0.13.0 (2021-05-14)

**Features**

- Model RoutingStorageContainerProperties has a new parameter identity
- Model RoutingServiceBusQueueEndpointProperties has a new parameter identity
- Model IotHubDescription has a new parameter identity
- Model RoutingEventHubProperties has a new parameter identity
- Model IotHubProperties has a new parameter network_rule_sets
- Model ExportDevicesRequest has a new parameter identity
- Model ExportDevicesRequest has a new parameter configurations_blob_name
- Model ExportDevicesRequest has a new parameter include_configurations
- Model StorageEndpointProperties has a new parameter identity
- Model ImportDevicesRequest has a new parameter identity
- Model ImportDevicesRequest has a new parameter configurations_blob_name
- Model ImportDevicesRequest has a new parameter include_configurations
- Model RoutingServiceBusTopicEndpointProperties has a new parameter identity
- Model EndpointHealthData has a new parameter last_known_error
- Model EndpointHealthData has a new parameter last_send_attempt_time
- Model EndpointHealthData has a new parameter last_known_error_time
- Model EndpointHealthData has a new parameter last_successful_send_attempt_time

**Breaking changes**

- Operation CertificatesOperations.create_or_update has a new signature
- Operation IotHubResourceOperations.create_event_hub_consumer_group has a new signature

## 0.12.0 (2020-05-12)

**Features**
Expand Down
1 change: 1 addition & 0 deletions sdk/iothub/azure-mgmt-iothub/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include _meta.json
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
Expand Down
8 changes: 8 additions & 0 deletions sdk/iothub/azure-mgmt-iothub/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"autorest": "V2",
"use": "@microsoft.azure/autorest.python@~4.0.71",
"commit": "495e6fd12856cf3d909125b1119c83a3a9f18a8a",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/iothub/resource-manager/readme.md --keep-version-file --multiapi --no-async --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk [email protected]/autorest.python@~4.0.71 --version=V2",
"readme": "specification/iothub/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class IotHubClient(MultiApiClientMixin, SDKClient):
:type profile: azure.profiles.KnownProfiles
"""

DEFAULT_API_VERSION = '2020-03-01'
DEFAULT_API_VERSION = '2021-03-31'
_PROFILE_TAG = "azure.mgmt.iothub.IotHubClient"
LATEST_PROFILE = ProfileDefinition({
_PROFILE_TAG: {
Expand Down Expand Up @@ -83,6 +83,8 @@ def models(cls, api_version=DEFAULT_API_VERSION):
* 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>`
* 2020-03-01: :mod:`v2020_03_01.models<azure.mgmt.iothub.v2020_03_01.models>`
* 2021-03-03-preview: :mod:`v2021_03_03_preview.models<azure.mgmt.iothub.v2021_03_03_preview.models>`
* 2021-03-31: :mod:`v2021_03_31.models<azure.mgmt.iothub.v2021_03_31.models>`
"""
if api_version == '2016-02-03':
from .v2016_02_03 import models
Expand Down Expand Up @@ -117,6 +119,12 @@ def models(cls, api_version=DEFAULT_API_VERSION):
elif api_version == '2020-03-01':
from .v2020_03_01 import models
return models
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview import models
return models
elif api_version == '2021-03-31':
from .v2021_03_31 import models
return models
raise NotImplementedError("APIVersion {} is not available".format(api_version))

@property
Expand All @@ -132,6 +140,8 @@ def certificates(self):
* 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>`
* 2020-03-01: :class:`CertificatesOperations<azure.mgmt.iothub.v2020_03_01.operations.CertificatesOperations>`
* 2021-03-03-preview: :class:`CertificatesOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.CertificatesOperations>`
* 2021-03-31: :class:`CertificatesOperations<azure.mgmt.iothub.v2021_03_31.operations.CertificatesOperations>`
"""
api_version = self._get_api_version('certificates')
if api_version == '2017-07-01':
Expand All @@ -152,6 +162,10 @@ def certificates(self):
from .v2019_11_04.operations import CertificatesOperations as OperationClass
elif api_version == '2020-03-01':
from .v2020_03_01.operations import CertificatesOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import CertificatesOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import CertificatesOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -165,6 +179,8 @@ def iot_hub(self):
* 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>`
* 2020-03-01: :class:`IotHubOperations<azure.mgmt.iothub.v2020_03_01.operations.IotHubOperations>`
* 2021-03-03-preview: :class:`IotHubOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.IotHubOperations>`
* 2021-03-31: :class:`IotHubOperations<azure.mgmt.iothub.v2021_03_31.operations.IotHubOperations>`
"""
api_version = self._get_api_version('iot_hub')
if api_version == '2019-03-22':
Expand All @@ -177,6 +193,10 @@ def iot_hub(self):
from .v2019_11_04.operations import IotHubOperations as OperationClass
elif api_version == '2020-03-01':
from .v2020_03_01.operations import IotHubOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import IotHubOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import IotHubOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -196,6 +216,8 @@ def iot_hub_resource(self):
* 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>`
* 2020-03-01: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2020_03_01.operations.IotHubResourceOperations>`
* 2021-03-03-preview: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.IotHubResourceOperations>`
* 2021-03-31: :class:`IotHubResourceOperations<azure.mgmt.iothub.v2021_03_31.operations.IotHubResourceOperations>`
"""
api_version = self._get_api_version('iot_hub_resource')
if api_version == '2016-02-03':
Expand All @@ -220,6 +242,10 @@ def iot_hub_resource(self):
from .v2019_11_04.operations import IotHubResourceOperations as OperationClass
elif api_version == '2020-03-01':
from .v2020_03_01.operations import IotHubResourceOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import IotHubResourceOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import IotHubResourceOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -237,6 +263,8 @@ def operations(self):
* 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>`
* 2020-03-01: :class:`Operations<azure.mgmt.iothub.v2020_03_01.operations.Operations>`
* 2021-03-03-preview: :class:`Operations<azure.mgmt.iothub.v2021_03_03_preview.operations.Operations>`
* 2021-03-31: :class:`Operations<azure.mgmt.iothub.v2021_03_31.operations.Operations>`
"""
api_version = self._get_api_version('operations')
if api_version == '2017-07-01':
Expand All @@ -257,6 +285,10 @@ def operations(self):
from .v2019_11_04.operations import Operations as OperationClass
elif api_version == '2020-03-01':
from .v2020_03_01.operations import Operations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import Operations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import Operations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -266,10 +298,16 @@ def private_endpoint_connections(self):
"""Instance depends on the API version:

* 2020-03-01: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.iothub.v2020_03_01.operations.PrivateEndpointConnectionsOperations>`
* 2021-03-03-preview: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.PrivateEndpointConnectionsOperations>`
* 2021-03-31: :class:`PrivateEndpointConnectionsOperations<azure.mgmt.iothub.v2021_03_31.operations.PrivateEndpointConnectionsOperations>`
"""
api_version = self._get_api_version('private_endpoint_connections')
if api_version == '2020-03-01':
from .v2020_03_01.operations import PrivateEndpointConnectionsOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import PrivateEndpointConnectionsOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import PrivateEndpointConnectionsOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -279,10 +317,16 @@ def private_link_resources(self):
"""Instance depends on the API version:

* 2020-03-01: :class:`PrivateLinkResourcesOperations<azure.mgmt.iothub.v2020_03_01.operations.PrivateLinkResourcesOperations>`
* 2021-03-03-preview: :class:`PrivateLinkResourcesOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.PrivateLinkResourcesOperations>`
* 2021-03-31: :class:`PrivateLinkResourcesOperations<azure.mgmt.iothub.v2021_03_31.operations.PrivateLinkResourcesOperations>`
"""
api_version = self._get_api_version('private_link_resources')
if api_version == '2020-03-01':
from .v2020_03_01.operations import PrivateLinkResourcesOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import PrivateLinkResourcesOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import PrivateLinkResourcesOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
Expand All @@ -298,6 +342,8 @@ def resource_provider_common(self):
* 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>`
* 2020-03-01: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2020_03_01.operations.ResourceProviderCommonOperations>`
* 2021-03-03-preview: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2021_03_03_preview.operations.ResourceProviderCommonOperations>`
* 2021-03-31: :class:`ResourceProviderCommonOperations<azure.mgmt.iothub.v2021_03_31.operations.ResourceProviderCommonOperations>`
"""
api_version = self._get_api_version('resource_provider_common')
if api_version == '2018-04-01':
Expand All @@ -314,6 +360,10 @@ def resource_provider_common(self):
from .v2019_11_04.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2020-03-01':
from .v2020_03_01.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2021-03-03-preview':
from .v2021_03_03_preview.operations import ResourceProviderCommonOperations as OperationClass
elif api_version == '2021-03-31':
from .v2021_03_31.operations import ResourceProviderCommonOperations as OperationClass
else:
raise NotImplementedError("APIVersion {} is not available".format(api_version))
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
2 changes: 1 addition & 1 deletion sdk/iothub/azure-mgmt-iothub/azure/mgmt/iothub/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from .v2020_03_01.models import *
from .v2021_03_31.models import *
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def create_or_update(
Create or update the metadata of an Iot hub. The usual pattern to
modify a property is to retrieve the IoT hub metadata and security
metadata, and then combine them with the modified values in a new body
to update the IoT hub.
to update the IoT hub. If certain properties are missing in the JSON,
updating IoT Hub may cause these values to fallback to default, which
may lead to unexpected behavior.

:param resource_group_name: The name of the resource group that
contains the IoT hub.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.8.2"
VERSION = "0.13.0"

Loading