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

## 4.0.0 (2021-01-05)

**Features**

- Model AppTemplate has a new parameter name

**Breaking changes**

- Model AppTemplate no longer has parameter app_template_name

## 3.1.0 (2020-06-30)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ class AppTemplate(Model):
:vartype manifest_id: str
:ivar manifest_version: The version of the template.
:vartype manifest_version: str
:ivar app_template_name: The name of the template.
:vartype app_template_name: str
:ivar name: The name of the template.
:vartype name: str
:ivar title: The title of the template.
:vartype title: str
:ivar order: The order of the template in the templates list.
Expand All @@ -248,7 +248,7 @@ class AppTemplate(Model):
_validation = {
'manifest_id': {'readonly': True},
'manifest_version': {'readonly': True},
'app_template_name': {'readonly': True},
'name': {'readonly': True},
'title': {'readonly': True},
'order': {'readonly': True},
'description': {'readonly': True},
Expand All @@ -257,7 +257,7 @@ class AppTemplate(Model):
_attribute_map = {
'manifest_id': {'key': 'manifestId', 'type': 'str'},
'manifest_version': {'key': 'manifestVersion', 'type': 'str'},
'app_template_name': {'key': 'appTemplateName', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'title': {'key': 'title', 'type': 'str'},
'order': {'key': 'order', 'type': 'float'},
'description': {'key': 'description', 'type': 'str'},
Expand All @@ -267,7 +267,7 @@ def __init__(self, **kwargs):
super(AppTemplate, self).__init__(**kwargs)
self.manifest_id = None
self.manifest_version = None
self.app_template_name = None
self.name = None
self.title = None
self.order = None
self.description = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ class AppTemplate(Model):
:vartype manifest_id: str
:ivar manifest_version: The version of the template.
:vartype manifest_version: str
:ivar app_template_name: The name of the template.
:vartype app_template_name: str
:ivar name: The name of the template.
:vartype name: str
:ivar title: The title of the template.
:vartype title: str
:ivar order: The order of the template in the templates list.
Expand All @@ -248,7 +248,7 @@ class AppTemplate(Model):
_validation = {
'manifest_id': {'readonly': True},
'manifest_version': {'readonly': True},
'app_template_name': {'readonly': True},
'name': {'readonly': True},
'title': {'readonly': True},
'order': {'readonly': True},
'description': {'readonly': True},
Expand All @@ -257,7 +257,7 @@ class AppTemplate(Model):
_attribute_map = {
'manifest_id': {'key': 'manifestId', 'type': 'str'},
'manifest_version': {'key': 'manifestVersion', 'type': 'str'},
'app_template_name': {'key': 'appTemplateName', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'title': {'key': 'title', 'type': 'str'},
'order': {'key': 'order', 'type': 'float'},
'description': {'key': 'description', 'type': 'str'},
Expand All @@ -267,7 +267,7 @@ def __init__(self, **kwargs) -> None:
super(AppTemplate, self).__init__(**kwargs)
self.manifest_id = None
self.manifest_version = None
self.app_template_name = None
self.name = None
self.title = None
self.order = None
self.description = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "3.1.0"
VERSION = "4.0.0"

Loading