Source code for azure.servicefabric.models.replica_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 ReplicaHealthStateChunkList(Model): """The list of replica health state chunks that respect the input filters in the chunk query. Returned by get cluster health state chunks query. :param items: The list of replica health state chunks that respect the input filters in the chunk query. :type items: list[~azure.servicefabric.models.ReplicaHealthStateChunk] """ _attribute_map = { 'items': {'key': 'Items', 'type': '[ReplicaHealthStateChunk]'}, } def __init__(self, *, items=None, **kwargs) -> None: super(ReplicaHealthStateChunkList, self).__init__(**kwargs) self.items = items