class Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReport

Azure reachability report details.

Attributes

aggregation_level[RW]

@return [String] The aggregation level of Azure reachability report. Can be Country, State or City.

provider_location[RW]

@return [AzureReachabilityReportLocation]

reachability_report[RW]

@return [Array<AzureReachabilityReportItem>] List of Azure reachability report items.

Public Class Methods

mapper() click to toggle source

Mapper for AzureReachabilityReport class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-08-01/generated/azure_mgmt_network/models/azure_reachability_report.rb, line 30
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