Skip to content

Commit

Permalink
CodeGen from PR 14183 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge ebc494d7babeceae1257a3aa7d92a75d69f7d40e into dad4aba
  • Loading branch information
SDKAuto committed Apr 29, 2021
1 parent c96a4c2 commit 1af8291
Show file tree
Hide file tree
Showing 28 changed files with 9,432 additions and 8 deletions.
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": "a1f655b773a81d6a9d1a3bb580768f6759881661",
"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 --use=@microsoft.azure/autorest.python@~4.0.71 --version=V2",
"readme": "specification/iothub/resource-manager/readme.md"
}
25 changes: 25 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 @@ -83,6 +83,7 @@ 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>`
"""
if api_version == '2016-02-03':
from .v2016_02_03 import models
Expand Down Expand Up @@ -117,6 +118,9 @@ 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
raise NotImplementedError("APIVersion {} is not available".format(api_version))

@property
Expand All @@ -132,6 +136,7 @@ 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>`
"""
api_version = self._get_api_version('certificates')
if api_version == '2017-07-01':
Expand All @@ -152,6 +157,8 @@ 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
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 +172,7 @@ 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>`
"""
api_version = self._get_api_version('iot_hub')
if api_version == '2019-03-22':
Expand All @@ -177,6 +185,8 @@ 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
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 +206,7 @@ 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>`
"""
api_version = self._get_api_version('iot_hub_resource')
if api_version == '2016-02-03':
Expand All @@ -220,6 +231,8 @@ 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
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 +250,7 @@ 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>`
"""
api_version = self._get_api_version('operations')
if api_version == '2017-07-01':
Expand All @@ -257,6 +271,8 @@ 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
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 +282,13 @@ 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>`
"""
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
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 +298,13 @@ 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>`
"""
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
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 +320,7 @@ 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>`
"""
api_version = self._get_api_version('resource_provider_common')
if api_version == '2018-04-01':
Expand All @@ -314,6 +337,8 @@ 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
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)))
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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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
@@ -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
Loading

0 comments on commit 1af8291

Please sign in to comment.