# 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 .resource_py3 import Resource
[docs]class User(Resource):
"""The User registered to a lab.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: The identifier of the resource.
:vartype id: str
:ivar name: The name of the resource.
:vartype name: str
:ivar type: The type of the resource.
:vartype type: str
:param location: The location of the resource.
:type location: str
:param tags: The tags of the resource.
:type tags: dict[str, str]
:ivar email: The user email address, as it was specified during
registration.
:vartype email: str
:ivar family_name: The user family name, as it was specified during
registration.
:vartype family_name: str
:ivar given_name: The user given name, as it was specified during
registration.
:vartype given_name: str
:ivar tenant_id: The user tenant ID, as it was specified during
registration.
:vartype tenant_id: str
:ivar total_usage: How long the user has used his VMs in this lab
:vartype total_usage: timedelta
:param provisioning_state: The provisioning status of the resource.
:type provisioning_state: str
:param unique_identifier: The unique immutable identifier of a resource
(Guid).
:type unique_identifier: str
:ivar latest_operation_result: The details of the latest operation. ex:
status, error
:vartype latest_operation_result:
~azure.mgmt.labservices.models.LatestOperationResult
"""
_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'email': {'readonly': True},
'family_name': {'readonly': True},
'given_name': {'readonly': True},
'tenant_id': {'readonly': True},
'total_usage': {'readonly': True},
'latest_operation_result': {'readonly': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'tags': {'key': 'tags', 'type': '{str}'},
'email': {'key': 'properties.email', 'type': 'str'},
'family_name': {'key': 'properties.familyName', 'type': 'str'},
'given_name': {'key': 'properties.givenName', 'type': 'str'},
'tenant_id': {'key': 'properties.tenantId', 'type': 'str'},
'total_usage': {'key': 'properties.totalUsage', 'type': 'duration'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'unique_identifier': {'key': 'properties.uniqueIdentifier', 'type': 'str'},
'latest_operation_result': {'key': 'properties.latestOperationResult', 'type': 'LatestOperationResult'},
}
def __init__(self, *, location: str=None, tags=None, provisioning_state: str=None, unique_identifier: str=None, **kwargs) -> None:
super(User, self).__init__(location=location, tags=tags, **kwargs)
self.email = None
self.family_name = None
self.given_name = None
self.tenant_id = None
self.total_usage = None
self.provisioning_state = provisioning_state
self.unique_identifier = unique_identifier
self.latest_operation_result = None