class Azure::Network::Mgmt::V2015_05_01_preview::Models::ExpressRouteServiceProviderPropertiesFormat
Properties of ExpressRouteServiceProvider
Attributes
bandwidths_offered[RW]
@return [Array<ExpressRouteServiceProviderBandwidthsOffered>] Gets or bandwidths offered
peering_locations[RW]
@return [Array<String>] Gets or list of peering locations
provisioning_state[RW]
@return [String] Gets or sets Provisioning state of the resource
Public Class Methods
mapper()
click to toggle source
Mapper for ExpressRouteServiceProviderPropertiesFormat class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01-preview/generated/azure_mgmt_network/models/express_route_service_provider_properties_format.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExpressRouteServiceProviderPropertiesFormat', type: { name: 'Composite', class_name: 'ExpressRouteServiceProviderPropertiesFormat', model_properties: { peering_locations: { client_side_validation: true, required: false, serialized_name: 'peeringLocations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, bandwidths_offered: { client_side_validation: true, required: false, serialized_name: 'bandwidthsOffered', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ExpressRouteServiceProviderBandwidthsOfferedElementType', type: { name: 'Composite', class_name: 'ExpressRouteServiceProviderBandwidthsOffered' } } } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'provisioningState', type: { name: 'String' } } } } } end