Source code for azure.mgmt.containerregistry.v2018_02_01_preview.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.v2018_02_01_preview.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.v2018_02_01_preview.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.v2018_02_01_preview.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.v2018_02_01_preview.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.v2018_02_01_preview.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 BuildPaged(Paged): """ A paging container for iterating over a list of :class:`Build <azure.mgmt.containerregistry.v2018_02_01_preview.models.Build>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Build]'} } def __init__(self, *args, **kwargs): super(BuildPaged, self).__init__(*args, **kwargs)
[docs]class BuildStepPaged(Paged): """ A paging container for iterating over a list of :class:`BuildStep <azure.mgmt.containerregistry.v2018_02_01_preview.models.BuildStep>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[BuildStep]'} } def __init__(self, *args, **kwargs): super(BuildStepPaged, self).__init__(*args, **kwargs)
[docs]class BuildArgumentPaged(Paged): """ A paging container for iterating over a list of :class:`BuildArgument <azure.mgmt.containerregistry.v2018_02_01_preview.models.BuildArgument>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[BuildArgument]'} } def __init__(self, *args, **kwargs): super(BuildArgumentPaged, self).__init__(*args, **kwargs)
[docs]class BuildTaskPaged(Paged): """ A paging container for iterating over a list of :class:`BuildTask <azure.mgmt.containerregistry.v2018_02_01_preview.models.BuildTask>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[BuildTask]'} } def __init__(self, *args, **kwargs): super(BuildTaskPaged, self).__init__(*args, **kwargs)