Source code for azure.mgmt.advisor.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 MetadataEntityPaged(Paged): """ A paging container for iterating over a list of :class:`MetadataEntity <azure.mgmt.advisor.models.MetadataEntity>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[MetadataEntity]'} } def __init__(self, *args, **kwargs): super(MetadataEntityPaged, self).__init__(*args, **kwargs)
[docs]class ConfigDataPaged(Paged): """ A paging container for iterating over a list of :class:`ConfigData <azure.mgmt.advisor.models.ConfigData>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[ConfigData]'} } def __init__(self, *args, **kwargs): super(ConfigDataPaged, self).__init__(*args, **kwargs)
[docs]class ResourceRecommendationBasePaged(Paged): """ A paging container for iterating over a list of :class:`ResourceRecommendationBase <azure.mgmt.advisor.models.ResourceRecommendationBase>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[ResourceRecommendationBase]'} } def __init__(self, *args, **kwargs): super(ResourceRecommendationBasePaged, self).__init__(*args, **kwargs)
[docs]class OperationEntityPaged(Paged): """ A paging container for iterating over a list of :class:`OperationEntity <azure.mgmt.advisor.models.OperationEntity>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[OperationEntity]'} } def __init__(self, *args, **kwargs): super(OperationEntityPaged, self).__init__(*args, **kwargs)
[docs]class SuppressionContractPaged(Paged): """ A paging container for iterating over a list of :class:`SuppressionContract <azure.mgmt.advisor.models.SuppressionContract>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[SuppressionContract]'} } def __init__(self, *args, **kwargs): super(SuppressionContractPaged, self).__init__(*args, **kwargs)