Source code for azure.servicefabric.models.entity_health_state_chunk_list_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 EntityHealthStateChunkList(Model): """A base type for the list of health state chunks found in the cluster. It contains the total number of health states that match the input filters. :param total_count: Total number of entity health state objects that match the specified filters from the cluster health chunk query description. :type total_count: long """ _attribute_map = { 'total_count': {'key': 'TotalCount', 'type': 'long'}, } def __init__(self, *, total_count: int=None, **kwargs) -> None: super(EntityHealthStateChunkList, self).__init__(**kwargs) self.total_count = total_count