# 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 NodeTransitionResult(Model):
"""Represents information about an operation in a terminal state (Completed or
Faulted).
:param error_code: If OperationState is Completed, this is 0. If
OperationState is Faulted, this is an error code indicating the reason.
:type error_code: int
:param node_result: Contains information about a node that was targeted by
a user-induced operation.
:type node_result: ~azure.servicefabric.models.NodeResult
"""
_attribute_map = {
'error_code': {'key': 'ErrorCode', 'type': 'int'},
'node_result': {'key': 'NodeResult', 'type': 'NodeResult'},
}
def __init__(self, *, error_code: int=None, node_result=None, **kwargs) -> None:
super(NodeTransitionResult, self).__init__(**kwargs)
self.error_code = error_code
self.node_result = node_result