Class: Azure::Peering::Mgmt::V2019_08_01_preview::Models::ExchangePeeringFacility
- Inherits:
-
Object
- Object
- Azure::Peering::Mgmt::V2019_08_01_preview::Models::ExchangePeeringFacility
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb
Overview
The properties that define an exchange peering facility.
Instance Attribute Summary collapse
-
#bandwidth_in_mbps ⇒ Integer
the exchange peering facility.
-
#exchange_name ⇒ String
The name of the exchange peering facility.
-
#facility_ipv4prefix ⇒ String
facility.
-
#facility_ipv6prefix ⇒ String
facility.
-
#microsoft_ipv4address ⇒ String
facility.
-
#microsoft_ipv6address ⇒ String
facility.
-
#peering_dbfacility_id ⇒ Integer
The PeeringDB.com ID of the facility.
-
#peering_dbfacility_link ⇒ String
The PeeringDB.com URL of the facility.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExchangePeeringFacility class as Ruby Hash.
Instance Attribute Details
#bandwidth_in_mbps ⇒ Integer
the exchange peering facility.
20 21 22 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 20 def bandwidth_in_mbps @bandwidth_in_mbps end |
#exchange_name ⇒ String
Returns The name of the exchange peering facility.
16 17 18 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 16 def exchange_name @exchange_name end |
#facility_ipv4prefix ⇒ String
facility.
32 33 34 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 32 def facility_ipv4prefix @facility_ipv4prefix end |
#facility_ipv6prefix ⇒ String
facility.
36 37 38 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 36 def facility_ipv6prefix @facility_ipv6prefix end |
#microsoft_ipv4address ⇒ String
facility.
24 25 26 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 24 def microsoft_ipv4address @microsoft_ipv4address end |
#microsoft_ipv6address ⇒ String
facility.
28 29 30 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 28 def microsoft_ipv6address @microsoft_ipv6address end |
#peering_dbfacility_id ⇒ Integer
Returns The PeeringDB.com ID of the facility.
39 40 41 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 39 def peering_dbfacility_id @peering_dbfacility_id end |
#peering_dbfacility_link ⇒ String
Returns The PeeringDB.com URL of the facility.
42 43 44 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 42 def peering_dbfacility_link @peering_dbfacility_link end |
Class Method Details
.mapper ⇒ Object
Mapper for ExchangePeeringFacility class as Ruby Hash. This will be used for serialization/deserialization.
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 49 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExchangePeeringFacility', type: { name: 'Composite', class_name: 'ExchangePeeringFacility', model_properties: { exchange_name: { client_side_validation: true, required: false, serialized_name: 'exchangeName', type: { name: 'String' } }, bandwidth_in_mbps: { client_side_validation: true, required: false, serialized_name: 'bandwidthInMbps', type: { name: 'Number' } }, microsoft_ipv4address: { client_side_validation: true, required: false, serialized_name: 'microsoftIPv4Address', type: { name: 'String' } }, microsoft_ipv6address: { client_side_validation: true, required: false, serialized_name: 'microsoftIPv6Address', type: { name: 'String' } }, facility_ipv4prefix: { client_side_validation: true, required: false, serialized_name: 'facilityIPv4Prefix', type: { name: 'String' } }, facility_ipv6prefix: { client_side_validation: true, required: false, serialized_name: 'facilityIPv6Prefix', type: { name: 'String' } }, peering_dbfacility_id: { client_side_validation: true, required: false, serialized_name: 'peeringDBFacilityId', type: { name: 'Number' } }, peering_dbfacility_link: { client_side_validation: true, required: false, serialized_name: 'peeringDBFacilityLink', type: { name: 'String' } } } } } end |