Source code for azure.mgmt.compute.v2017_03_30.models.compute_long_running_operation_properties_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 ComputeLongRunningOperationProperties(Model): """Compute-specific operation properties, including output. :param output: Operation output data (raw JSON) :type output: object """ _attribute_map = { 'output': {'key': 'output', 'type': 'object'}, } def __init__(self, *, output=None, **kwargs) -> None: super(ComputeLongRunningOperationProperties, self).__init__(**kwargs) self.output = output