-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathassignment_status.py
More file actions
38 lines (30 loc) · 1.33 KB
/
assignment_status.py
File metadata and controls
38 lines (30 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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 .blueprint_resource_status_base import BlueprintResourceStatusBase
class AssignmentStatus(BlueprintResourceStatusBase):
"""The status of a blueprint assignment. This field is readonly.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar time_created: Creation time of this blueprint definition.
:vartype time_created: datetime
:ivar last_modified: Last modified time of this blueprint definition.
:vartype last_modified: datetime
"""
_validation = {
'time_created': {'readonly': True},
'last_modified': {'readonly': True},
}
_attribute_map = {
'time_created': {'key': 'timeCreated', 'type': 'iso-8601'},
'last_modified': {'key': 'lastModified', 'type': 'iso-8601'},
}
def __init__(self, **kwargs):
super(AssignmentStatus, self).__init__(**kwargs)