Class: Azure::ARM::Network::Models::AzureReachabilityReport
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::AzureReachabilityReport
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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.
18 19 20 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 18 def aggregation_level @aggregation_level end |
#provider_location ⇒ AzureReachabilityReportLocation
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 21 def provider_location @provider_location end |
#reachability_report ⇒ Array<AzureReachabilityReportItem>
report items.
25 26 27 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 25 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.
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 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 32 def self.mapper() { required: false, serialized_name: 'AzureReachabilityReport', type: { name: 'Composite', class_name: 'AzureReachabilityReport', model_properties: { aggregation_level: { required: true, serialized_name: 'aggregationLevel', type: { name: 'String' } }, provider_location: { required: true, serialized_name: 'providerLocation', type: { name: 'Composite', class_name: 'AzureReachabilityReportLocation' } }, reachability_report: { required: true, serialized_name: 'reachabilityReport', type: { name: 'Sequence', element: { required: false, serialized_name: 'AzureReachabilityReportItemElementType', type: { name: 'Composite', class_name: 'AzureReachabilityReportItem' } } } } } } } end |