Source code for azure.mgmt.containerregistry.v2019_04_01.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 RegistryPaged(Paged): """ A paging container for iterating over a list of :class:`Registry <azure.mgmt.containerregistry.v2019_04_01.models.Registry>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Registry]'} } def __init__(self, *args, **kwargs): super(RegistryPaged, self).__init__(*args, **kwargs)
[docs]class OperationDefinitionPaged(Paged): """ A paging container for iterating over a list of :class:`OperationDefinition <azure.mgmt.containerregistry.v2019_04_01.models.OperationDefinition>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[OperationDefinition]'} } def __init__(self, *args, **kwargs): super(OperationDefinitionPaged, self).__init__(*args, **kwargs)
[docs]class ReplicationPaged(Paged): """ A paging container for iterating over a list of :class:`Replication <azure.mgmt.containerregistry.v2019_04_01.models.Replication>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Replication]'} } def __init__(self, *args, **kwargs): super(ReplicationPaged, self).__init__(*args, **kwargs)
[docs]class WebhookPaged(Paged): """ A paging container for iterating over a list of :class:`Webhook <azure.mgmt.containerregistry.v2019_04_01.models.Webhook>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Webhook]'} } def __init__(self, *args, **kwargs): super(WebhookPaged, self).__init__(*args, **kwargs)
[docs]class EventPaged(Paged): """ A paging container for iterating over a list of :class:`Event <azure.mgmt.containerregistry.v2019_04_01.models.Event>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Event]'} } def __init__(self, *args, **kwargs): super(EventPaged, self).__init__(*args, **kwargs)
[docs]class RunPaged(Paged): """ A paging container for iterating over a list of :class:`Run <azure.mgmt.containerregistry.v2019_04_01.models.Run>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Run]'} } def __init__(self, *args, **kwargs): super(RunPaged, self).__init__(*args, **kwargs)
[docs]class TaskPaged(Paged): """ A paging container for iterating over a list of :class:`Task <azure.mgmt.containerregistry.v2019_04_01.models.Task>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Task]'} } def __init__(self, *args, **kwargs): super(TaskPaged, self).__init__(*args, **kwargs)