1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
# 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 .sub_resource import SubResource
class ExpressRouteCircuitPeering(SubResource):
"""Peering in a ExpressRouteCircuit resource.
:param id: Resource Id
:type id: str
:param peering_type: Gets or sets PeeringType. Possible values include:
'AzurePublicPeering', 'AzurePrivatePeering', 'MicrosoftPeering'
:type peering_type: str or :class:`ExpressRouteCircuitPeeringType
<azure.mgmt.network.models.ExpressRouteCircuitPeeringType>`
:param state: Gets or sets state of Peering. Possible values include:
'Disabled', 'Enabled'
:type state: str or :class:`ExpressRouteCircuitPeeringState
<azure.mgmt.network.models.ExpressRouteCircuitPeeringState>`
:param azure_asn: Gets or sets the azure ASN
:type azure_asn: int
:param peer_asn: Gets or sets the peer ASN
:type peer_asn: int
:param primary_peer_address_prefix: Gets or sets the primary address
prefix
:type primary_peer_address_prefix: str
:param secondary_peer_address_prefix: Gets or sets the secondary address
prefix
:type secondary_peer_address_prefix: str
:param primary_azure_port: Gets or sets the primary port
:type primary_azure_port: str
:param secondary_azure_port: Gets or sets the secondary port
:type secondary_azure_port: str
:param shared_key: Gets or sets the shared key
:type shared_key: str
:param vlan_id: Gets or sets the vlan id
:type vlan_id: int
:param microsoft_peering_config: Gets or sets the mircosoft peering config
:type microsoft_peering_config: :class:`ExpressRouteCircuitPeeringConfig
<azure.mgmt.network.models.ExpressRouteCircuitPeeringConfig>`
:param stats: Gets or peering stats
:type stats: :class:`ExpressRouteCircuitStats
<azure.mgmt.network.models.ExpressRouteCircuitStats>`
:param provisioning_state: Gets provisioning state of the PublicIP
resource Updating/Deleting/Failed
:type provisioning_state: str
:param gateway_manager_etag: Gets or sets the GatewayManager Etag
:type gateway_manager_etag: str
:param last_modified_by: Gets whether the provider or the customer last
modified the peering
:type last_modified_by: str
:param name: Gets name of the resource that is unique within a resource
group. This name can be used to access the resource
:type name: str
:param etag: A unique read-only string that changes whenever the resource
is updated
:type etag: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'peering_type': {'key': 'properties.peeringType', 'type': 'str'},
'state': {'key': 'properties.state', 'type': 'str'},
'azure_asn': {'key': 'properties.azureASN', 'type': 'int'},
'peer_asn': {'key': 'properties.peerASN', 'type': 'int'},
'primary_peer_address_prefix': {'key': 'properties.primaryPeerAddressPrefix', 'type': 'str'},
'secondary_peer_address_prefix': {'key': 'properties.secondaryPeerAddressPrefix', 'type': 'str'},
'primary_azure_port': {'key': 'properties.primaryAzurePort', 'type': 'str'},
'secondary_azure_port': {'key': 'properties.secondaryAzurePort', 'type': 'str'},
'shared_key': {'key': 'properties.sharedKey', 'type': 'str'},
'vlan_id': {'key': 'properties.vlanId', 'type': 'int'},
'microsoft_peering_config': {'key': 'properties.microsoftPeeringConfig', 'type': 'ExpressRouteCircuitPeeringConfig'},
'stats': {'key': 'properties.stats', 'type': 'ExpressRouteCircuitStats'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'gateway_manager_etag': {'key': 'properties.gatewayManagerEtag', 'type': 'str'},
'last_modified_by': {'key': 'properties.lastModifiedBy', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'etag': {'key': 'etag', 'type': 'str'},
}
def __init__(self, id=None, peering_type=None, state=None, azure_asn=None, peer_asn=None, primary_peer_address_prefix=None, secondary_peer_address_prefix=None, primary_azure_port=None, secondary_azure_port=None, shared_key=None, vlan_id=None, microsoft_peering_config=None, stats=None, provisioning_state=None, gateway_manager_etag=None, last_modified_by=None, name=None, etag=None):
super(ExpressRouteCircuitPeering, self).__init__(id=id)
self.peering_type = peering_type
self.state = state
self.azure_asn = azure_asn
self.peer_asn = peer_asn
self.primary_peer_address_prefix = primary_peer_address_prefix
self.secondary_peer_address_prefix = secondary_peer_address_prefix
self.primary_azure_port = primary_azure_port
self.secondary_azure_port = secondary_azure_port
self.shared_key = shared_key
self.vlan_id = vlan_id
self.microsoft_peering_config = microsoft_peering_config
self.stats = stats
self.provisioning_state = provisioning_state
self.gateway_manager_etag = gateway_manager_etag
self.last_modified_by = last_modified_by
self.name = name
self.etag = etag
|