Class: Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReport
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReport
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb
Overview
Azure reachability report details.
Instance Attribute Summary collapse
-
#aggregation_level ⇒ String
Can be Country, State or City.
- #provider_location ⇒ AzureReachabilityReportLocation
-
#reachability_report ⇒ Array<AzureReachabilityReportItem>
report items.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureReachabilityReport class as Ruby Hash.
Instance Attribute Details
#aggregation_level ⇒ String
Can be Country, State or City.
17 18 19 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 17 def aggregation_level @aggregation_level end |
#provider_location ⇒ AzureReachabilityReportLocation
20 21 22 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 20 def provider_location @provider_location end |
#reachability_report ⇒ Array<AzureReachabilityReportItem>
report items.
24 25 26 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 24 def reachability_report @reachability_report end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureReachabilityReport class as Ruby Hash. This will be used for serialization/deserialization.
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 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureReachabilityReport', type: { name: 'Composite', class_name: 'AzureReachabilityReport', model_properties: { aggregation_level: { client_side_validation: true, required: true, serialized_name: 'aggregationLevel', type: { name: 'String' } }, provider_location: { client_side_validation: true, required: true, serialized_name: 'providerLocation', type: { name: 'Composite', class_name: 'AzureReachabilityReportLocation' } }, reachability_report: { client_side_validation: true, required: true, serialized_name: 'reachabilityReport', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'AzureReachabilityReportItemElementType', type: { name: 'Composite', class_name: 'AzureReachabilityReportItem' } } } } } } } end |