Source code for azure.mgmt.netapp.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 OperationPaged(Paged): """ A paging container for iterating over a list of :class:`Operation <azure.mgmt.netapp.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 NetAppAccountPaged(Paged): """ A paging container for iterating over a list of :class:`NetAppAccount <azure.mgmt.netapp.models.NetAppAccount>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[NetAppAccount]'} } def __init__(self, *args, **kwargs): super(NetAppAccountPaged, self).__init__(*args, **kwargs)
[docs]class CapacityPoolPaged(Paged): """ A paging container for iterating over a list of :class:`CapacityPool <azure.mgmt.netapp.models.CapacityPool>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[CapacityPool]'} } def __init__(self, *args, **kwargs): super(CapacityPoolPaged, self).__init__(*args, **kwargs)
[docs]class VolumePaged(Paged): """ A paging container for iterating over a list of :class:`Volume <azure.mgmt.netapp.models.Volume>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Volume]'} } def __init__(self, *args, **kwargs): super(VolumePaged, self).__init__(*args, **kwargs)
[docs]class SnapshotPaged(Paged): """ A paging container for iterating over a list of :class:`Snapshot <azure.mgmt.netapp.models.Snapshot>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Snapshot]'} } def __init__(self, *args, **kwargs): super(SnapshotPaged, self).__init__(*args, **kwargs)
[docs]class SnapshotPolicyPaged(Paged): """ A paging container for iterating over a list of :class:`SnapshotPolicy <azure.mgmt.netapp.models.SnapshotPolicy>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[SnapshotPolicy]'} } def __init__(self, *args, **kwargs): super(SnapshotPolicyPaged, self).__init__(*args, **kwargs)
[docs]class BackupPaged(Paged): """ A paging container for iterating over a list of :class:`Backup <azure.mgmt.netapp.models.Backup>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Backup]'} } def __init__(self, *args, **kwargs): super(BackupPaged, self).__init__(*args, **kwargs)
[docs]class BackupPolicyPaged(Paged): """ A paging container for iterating over a list of :class:`BackupPolicy <azure.mgmt.netapp.models.BackupPolicy>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[BackupPolicy]'} } def __init__(self, *args, **kwargs): super(BackupPolicyPaged, self).__init__(*args, **kwargs)
[docs]class VaultPaged(Paged): """ A paging container for iterating over a list of :class:`Vault <azure.mgmt.netapp.models.Vault>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[Vault]'} } def __init__(self, *args, **kwargs): super(VaultPaged, self).__init__(*args, **kwargs)