class Azure::Network::Mgmt::V2017_09_01::Models::AzureReachabilityReportItem

Azure reachability report details for a given provider location.

Attributes

azure_location[RW]

@return [String] The Azure region.

latencies[RW]

@return [Array<AzureReachabilityReportLatencyInfo>] List of latency details for each of the time series.

provider[RW]

@return [String] The Internet service provider.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_item.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureReachabilityReportItem',
    type: {
      name: 'Composite',
      class_name: 'AzureReachabilityReportItem',
      model_properties: {
        provider: {
          client_side_validation: true,
          required: false,
          serialized_name: 'provider',
          type: {
            name: 'String'
          }
        },
        azure_location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'azureLocation',
          type: {
            name: 'String'
          }
        },
        latencies: {
          client_side_validation: true,
          required: false,
          serialized_name: 'latencies',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'AzureReachabilityReportLatencyInfoElementType',
                type: {
                  name: 'Composite',
                  class_name: 'AzureReachabilityReportLatencyInfo'
                }
            }
          }
        }
      }
    }
  }
end