# 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 PagedComposeDeploymentStatusInfoList(Model):
"""The list of compose deployments in the cluster. The list is paged when all
of the results cannot fit in a single message. The next set of results can
be obtained by executing the same query with the continuation token
provided in this list.
:param continuation_token: The continuation token parameter is used to
obtain next set of results. The continuation token is included in the
response of the API when the results from the system do not fit in a
single response. When this value is passed to the next API call, the API
returns next set of results. If there are no further results, then the
continuation token is not included in the response.
:type continuation_token: str
:param items: List of compose deployment status information.
:type items: list[~azure.servicefabric.models.ComposeDeploymentStatusInfo]
"""
_attribute_map = {
'continuation_token': {'key': 'ContinuationToken', 'type': 'str'},
'items': {'key': 'Items', 'type': '[ComposeDeploymentStatusInfo]'},
}
def __init__(self, *, continuation_token: str=None, items=None, **kwargs) -> None:
super(PagedComposeDeploymentStatusInfoList, self).__init__(**kwargs)
self.continuation_token = continuation_token
self.items = items