Source code for azure.servicefabric.models.health_evaluation_wrapper_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 HealthEvaluationWrapper(Model): """Wrapper object for health evaluation. :param health_evaluation: Represents a health evaluation which describes the data and the algorithm used by health manager to evaluate the health of an entity. :type health_evaluation: ~azure.servicefabric.models.HealthEvaluation """ _attribute_map = { 'health_evaluation': {'key': 'HealthEvaluation', 'type': 'HealthEvaluation'}, } def __init__(self, *, health_evaluation=None, **kwargs) -> None: super(HealthEvaluationWrapper, self).__init__(**kwargs) self.health_evaluation = health_evaluation