Source code for azure.mgmt.datalake.store.models.operation_py3

# 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 msrest.serialization import Model


[docs]class Operation(Model): """An available operation for Data Lake Store. Variables are only populated by the server, and will be ignored when sending a request. :ivar name: The name of the operation. :vartype name: str :param display: The display information for the operation. :type display: ~azure.mgmt.datalake.store.models.OperationDisplay :ivar origin: The intended executor of the operation. Possible values include: 'user', 'system', 'user,system' :vartype origin: str or ~azure.mgmt.datalake.store.models.OperationOrigin """ _validation = { 'name': {'readonly': True}, 'origin': {'readonly': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'display': {'key': 'display', 'type': 'OperationDisplay'}, 'origin': {'key': 'origin', 'type': 'str'}, } def __init__(self, *, display=None, **kwargs) -> None: super(Operation, self).__init__(**kwargs) self.name = None self.display = display self.origin = None