class Azure::Network::Mgmt::V2017_11_01::Models::AvailableProvidersListParameters
Constraints that determine the list of available Internet service providers.
Attributes
azure_locations[RW]
@return [Array<String>] A list of Azure
regions.
city[RW]
@return [String] The city or town for available providers list.
country[RW]
@return [String] The country for available providers list.
state[RW]
@return [String] The state for available providers list.
Public Class Methods
mapper()
click to toggle source
Mapper for AvailableProvidersListParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-11-01/generated/azure_mgmt_network/models/available_providers_list_parameters.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AvailableProvidersListParameters', type: { name: 'Composite', class_name: 'AvailableProvidersListParameters', model_properties: { azure_locations: { client_side_validation: true, required: false, serialized_name: 'azureLocations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, country: { client_side_validation: true, required: false, serialized_name: 'country', type: { name: 'String' } }, state: { client_side_validation: true, required: false, serialized_name: 'state', type: { name: 'String' } }, city: { client_side_validation: true, required: false, serialized_name: 'city', type: { name: 'String' } } } } } end