Class: Azure::ARM::Network::Models::AzureReachabilityReport

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#aggregation_levelString

Can be Country, State or City.

Returns:

  • (String)

    The aggregation level of Azure reachability report.



18
19
20
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 18

def aggregation_level
  @aggregation_level
end

#provider_locationAzureReachabilityReportLocation



21
22
23
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report.rb', line 21

def provider_location
  @provider_location
end

#reachability_reportArray<AzureReachabilityReportItem>

report items.

Returns:



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

.mapperObject

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