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
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class AssignmentStatus(BlueprintResourceStatusBase):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class AssignmentStatus(BlueprintResourceStatusBase):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class AssignmentStatus(BlueprintResourceStatusBase):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class AssignmentStatus(BlueprintResourceStatusBase):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class BlueprintResourceStatusBase(Model):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class BlueprintResourceStatusBase(Model):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class BlueprintResourceStatusBase(Model):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class BlueprintResourceStatusBase(Model):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class BlueprintStatus(BlueprintResourceStatusBase):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class BlueprintStatus(BlueprintResourceStatusBase):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class BlueprintStatus(BlueprintResourceStatusBase):
sending a request.

:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: str
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: str
:vartype last_modified: datetime
"""

_validation = {
Expand All @@ -30,8 +30,8 @@ class BlueprintStatus(BlueprintResourceStatusBase):
}

_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'str'},
'last_modified': {'key': 'lastModified', 'type': 'str'},
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}

def __init__(self, **kwargs) -> None:
Expand Down
1 change: 1 addition & 0 deletions azure-mgmt-blueprint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
version=version,
description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME),
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
license='MIT License',
author='Microsoft Corporation',
author_email='[email protected]',
Expand Down