Source code for azure.mgmt.hanaonazure.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.hanaonazure.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 SapMonitorPaged(Paged): """ A paging container for iterating over a list of :class:`SapMonitor <azure.mgmt.hanaonazure.models.SapMonitor>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[SapMonitor]'} } def __init__(self, *args, **kwargs): super(SapMonitorPaged, self).__init__(*args, **kwargs)
[docs]class ProviderInstancePaged(Paged): """ A paging container for iterating over a list of :class:`ProviderInstance <azure.mgmt.hanaonazure.models.ProviderInstance>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[ProviderInstance]'} } def __init__(self, *args, **kwargs): super(ProviderInstancePaged, self).__init__(*args, **kwargs)