-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 13b235cccbe934e60dba491a2a49edcae9c7f275 (#4481)
Fix Hosting Environment Network Dependencies pagination
- Loading branch information
1 parent
11726bc
commit 040ae80
Showing
4 changed files
with
138 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
azure-mgmt-web/azure/mgmt/web/models/inbound_environment_endpoint_paged.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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 | ||
|
||
|
||
class InboundEnvironmentEndpointPaged(Paged): | ||
""" | ||
A paging container for iterating over a list of :class:`InboundEnvironmentEndpoint <azure.mgmt.web.models.InboundEnvironmentEndpoint>` object | ||
""" | ||
|
||
_attribute_map = { | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
'current_page': {'key': 'value', 'type': '[InboundEnvironmentEndpoint]'} | ||
} | ||
|
||
def __init__(self, *args, **kwargs): | ||
|
||
super(InboundEnvironmentEndpointPaged, self).__init__(*args, **kwargs) |
27 changes: 27 additions & 0 deletions
27
azure-mgmt-web/azure/mgmt/web/models/outbound_environment_endpoint_paged.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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 | ||
|
||
|
||
class OutboundEnvironmentEndpointPaged(Paged): | ||
""" | ||
A paging container for iterating over a list of :class:`OutboundEnvironmentEndpoint <azure.mgmt.web.models.OutboundEnvironmentEndpoint>` object | ||
""" | ||
|
||
_attribute_map = { | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
'current_page': {'key': 'value', 'type': '[OutboundEnvironmentEndpoint]'} | ||
} | ||
|
||
def __init__(self, *args, **kwargs): | ||
|
||
super(OutboundEnvironmentEndpointPaged, self).__init__(*args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters