Source code for azure.servicefabric.models.entity_health_state_chunk_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 EntityHealthStateChunk(Model): """A base type for the health state chunk of various entities in the cluster. It contains the aggregated health state. :param health_state: The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc. Possible values include: 'Invalid', 'Ok', 'Warning', 'Error', 'Unknown' :type health_state: str or ~azure.servicefabric.models.HealthState """ _attribute_map = { 'health_state': {'key': 'HealthState', 'type': 'str'}, } def __init__(self, *, health_state=None, **kwargs) -> None: super(EntityHealthStateChunk, self).__init__(**kwargs) self.health_state = health_state