Skip to content

Commit

Permalink
[AutoPR] iotcentral/resource-manager (#2987)
Browse files Browse the repository at this point in the history
* Generated from 1dda4e455040e612e0553c6d9503d29509cde751 (#2968)

Add iotcentral version 2018-09-01

* IoT Central version 2018-09-01 (#3098)

* Generated from 1dda4e455040e612e0553c6d9503d29509cde751 (#2968)

Add iotcentral version 2018-09-01

* Update iotcentral test recording for version 2018-09-01

* Packaging
  • Loading branch information
AutorestCI authored and lmazuel committed Aug 8, 2018
1 parent cd93a26 commit bebd997
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 62 deletions.
5 changes: 5 additions & 0 deletions azure-mgmt-iotcentral/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

0.2.0 (2018-08-07)
++++++++++++++++++

* Replace API version by 2018-09-01

0.1.0 (2018-07-16)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-iotcentral/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the Microsoft Azure IoTCentral 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.4, 3.5 and 3.6.
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.

For the older Azure Service Management (ASM) libraries, see
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(
super(IotCentralClient, 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 = '2017-07-01-privatepreview'
self.api_version = '2018-09-01'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AppsOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
:ivar api_version: The version of the API. Constant value: "2017-07-01-privatepreview".
:ivar api_version: The version of the API. Constant value: "2018-09-01".
"""

models = models
Expand All @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
self.api_version = "2017-07-01-privatepreview"
self.api_version = "2018-09-01"

self.config = config

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Operations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
:ivar api_version: The version of the API. Constant value: "2017-07-01-privatepreview".
:ivar api_version: The version of the API. Constant value: "2018-09-01".
"""

models = models
Expand All @@ -32,7 +32,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
self.api_version = "2017-07-01-privatepreview"
self.api_version = "2018-09-01"

self.config = config

Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-iotcentral/azure/mgmt/iotcentral/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.1.0"

VERSION = "0.2.0"
4 changes: 3 additions & 1 deletion azure-mgmt-iotcentral/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,14 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(exclude=["tests"]),
install_requires=[
'msrestazure>=0.4.27,<2.0.0',
'msrest>=0.5.0',
'msrestazure>=0.4.32,<2.0.0',
'azure-common~=1.1',
],
cmdclass=cmdclass
Expand Down

Large diffs are not rendered by default.

0 comments on commit bebd997

Please sign in to comment.