Class: Azure::Network::Mgmt::V2018_06_01::Models::AzureReachabilityReportLocation
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_06_01::Models::AzureReachabilityReportLocation
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_network/models/azure_reachability_report_location.rb
Overview
Parameters that define a geographic location.
Instance Attribute Summary collapse
-
#city ⇒ String
The name of the city or town.
-
#country ⇒ String
The name of the country.
-
#state ⇒ String
The name of the state.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureReachabilityReportLocation class as Ruby Hash.
Instance Attribute Details
#city ⇒ String
Returns The name of the city or town.
22 23 24 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/azure_reachability_report_location.rb', line 22 def city @city end |
#country ⇒ String
Returns The name of the country.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/azure_reachability_report_location.rb', line 16 def country @country end |
#state ⇒ String
Returns The name of the state.
19 20 21 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/azure_reachability_report_location.rb', line 19 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureReachabilityReportLocation class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/azure_reachability_report_location.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureReachabilityReportLocation', type: { name: 'Composite', class_name: 'AzureReachabilityReportLocation', model_properties: { country: { client_side_validation: true, required: true, 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 |