Skip to content

Commit

Permalink
T1 iotcentral 2021 01 05 (Azure#15982)
Browse files Browse the repository at this point in the history
* CodeGen from PR 12224 in Azure/azure-rest-api-specs
[Hub Generated] Review request for Microsoft.IoTCentral to add version stable/2018-09-01 (Azure#12224)

* update to name

* update

* test,version,CHANGELOG

* fix test

Co-authored-by: SDKAuto <sdkautomation@microsoft.com>
  • Loading branch information
00Kai0 and SDKAuto authored Jan 5, 2021
1 parent 47a73de commit c2a098d
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 181 deletions.
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

0 comments on commit c2a098d

Please sign in to comment.