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