# 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 ServiceHealthStateChunkList(Model):
"""The list of service 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 service health state chunks that respect the
input filters in the chunk query.
:type items: list[~azure.servicefabric.models.ServiceHealthStateChunk]
"""
_attribute_map = {
'items': {'key': 'Items', 'type': '[ServiceHealthStateChunk]'},
}
def __init__(self, *, items=None, **kwargs) -> None:
super(ServiceHealthStateChunkList, self).__init__(**kwargs)
self.items = items