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