Source code for azure.mgmt.containerinstance.models._paged_models

# 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.paging import Paged


[docs]class ContainerGroupPaged(Paged): """ A paging container for iterating over a list of :class:`ContainerGroup <azure.mgmt.containerinstance.models.ContainerGroup>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[ContainerGroup]'} } def __init__(self, *args, **kwargs): super(ContainerGroupPaged, self).__init__(*args, **kwargs)
[docs]class OperationPaged(Paged): """ A paging container for iterating over a list of :class:`Operation <azure.mgmt.containerinstance.models.Operation>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Operation]'} } def __init__(self, *args, **kwargs): super(OperationPaged, self).__init__(*args, **kwargs)
[docs]class UsagePaged(Paged): """ A paging container for iterating over a list of :class:`Usage <azure.mgmt.containerinstance.models.Usage>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Usage]'} } def __init__(self, *args, **kwargs): super(UsagePaged, self).__init__(*args, **kwargs)
[docs]class CachedImagesPaged(Paged): """ A paging container for iterating over a list of :class:`CachedImages <azure.mgmt.containerinstance.models.CachedImages>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[CachedImages]'} } def __init__(self, *args, **kwargs): super(CachedImagesPaged, self).__init__(*args, **kwargs)
[docs]class CapabilitiesPaged(Paged): """ A paging container for iterating over a list of :class:`Capabilities <azure.mgmt.containerinstance.models.Capabilities>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Capabilities]'} } def __init__(self, *args, **kwargs): super(CapabilitiesPaged, self).__init__(*args, **kwargs)