Class: Azure::Peering::Mgmt::V2019_08_01_preview::Models::PeeringLocationPropertiesExchange
- Inherits:
-
Object
- Object
- Azure::Peering::Mgmt::V2019_08_01_preview::Models::PeeringLocationPropertiesExchange
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01-preview/generated/azure_mgmt_peering/models/peering_location_properties_exchange.rb
Overview
The properties that define an exchange peering location.
Instance Attribute Summary collapse
-
#peering_facilities ⇒ Array<ExchangePeeringFacility>
facilities at the peering location.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PeeringLocationPropertiesExchange class as Ruby Hash.
Instance Attribute Details
#peering_facilities ⇒ Array<ExchangePeeringFacility>
facilities at the peering location.
17 18 19 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/peering_location_properties_exchange.rb', line 17 def peering_facilities @peering_facilities end |
Class Method Details
.mapper ⇒ Object
Mapper for PeeringLocationPropertiesExchange class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/peering_location_properties_exchange.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PeeringLocationPropertiesExchange', type: { name: 'Composite', class_name: 'PeeringLocationPropertiesExchange', model_properties: { peering_facilities: { client_side_validation: true, required: false, serialized_name: 'peeringFacilities', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ExchangePeeringFacilityElementType', type: { name: 'Composite', class_name: 'ExchangePeeringFacility' } } } } } } } end |