forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from bc9de4c17997df793ae578bfb852917389e1f3d0
- Loading branch information
Showing
33 changed files
with
881 additions
and
237 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
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
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
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
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
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
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
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
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
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
56 changes: 56 additions & 0 deletions
56
azure-mgmt-network/azure/mgmt/network/models/express_route_circuit_routes_table_summary.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,56 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft and contributors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ExpressRouteCircuitRoutesTableSummary(Model): | ||
""" | ||
The routes table associated with the ExpressRouteCircuit | ||
:param neighbor: Neighbor. | ||
:type neighbor: str | ||
:param v: BGP version number spoken to the neighbor. | ||
:type v: int | ||
:param as_property: Autonomous system number. | ||
:type as_property: int | ||
:param up_down: The length of time that the BGP session has been in the | ||
Established state, or the current status if not in the Established state. | ||
:type up_down: str | ||
:param state_pfx_rcd: Current state of the BGP session, and the number of | ||
prefixes that have been received from a neighbor or peer group. | ||
:type state_pfx_rcd: str | ||
""" | ||
|
||
_attribute_map = { | ||
'neighbor': {'key': 'neighbor', 'type': 'str'}, | ||
'v': {'key': 'v', 'type': 'int'}, | ||
'as_property': {'key': 'as', 'type': 'int'}, | ||
'up_down': {'key': 'upDown', 'type': 'str'}, | ||
'state_pfx_rcd': {'key': 'statePfxRcd', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, neighbor=None, v=None, as_property=None, up_down=None, state_pfx_rcd=None, **kwargs): | ||
self.neighbor = neighbor | ||
self.v = v | ||
self.as_property = as_property | ||
self.up_down = up_down | ||
self.state_pfx_rcd = state_pfx_rcd |
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
43 changes: 43 additions & 0 deletions
43
azure-mgmt-network/azure/mgmt/network/models/express_route_circuits_arp_table_list_result.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,43 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft and contributors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ExpressRouteCircuitsArpTableListResult(Model): | ||
""" | ||
Response for ListArpTable associated with the Express Route Circuits Api | ||
:param value: Gets List of ArpTable | ||
:type value: list of :class:`ExpressRouteCircuitArpTable | ||
<azure.mgmt.network.models.ExpressRouteCircuitArpTable>` | ||
:param next_link: Gets the URL to get the next set of results. | ||
:type next_link: str | ||
""" | ||
|
||
_attribute_map = { | ||
'value': {'key': 'value', 'type': '[ExpressRouteCircuitArpTable]'}, | ||
'next_link': {'key': 'nextLink', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, value=None, next_link=None, **kwargs): | ||
self.value = value | ||
self.next_link = next_link |
Oops, something went wrong.