class Azure::Network::Mgmt::V2020_07_01::Models::ExpressRouteCircuitStats

Contains stats associated with the peering.

Attributes

primarybytes_in[RW]

@return [Integer] The Primary BytesIn of the peering.

primarybytes_out[RW]

@return [Integer] The primary BytesOut of the peering.

secondarybytes_in[RW]

@return [Integer] The secondary BytesIn of the peering.

secondarybytes_out[RW]

@return [Integer] The secondary BytesOut of the peering.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-07-01/generated/azure_mgmt_network/models/express_route_circuit_stats.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteCircuitStats',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitStats',
      model_properties: {
        primarybytes_in: {
          client_side_validation: true,
          required: false,
          serialized_name: 'primarybytesIn',
          type: {
            name: 'Number'
          }
        },
        primarybytes_out: {
          client_side_validation: true,
          required: false,
          serialized_name: 'primarybytesOut',
          type: {
            name: 'Number'
          }
        },
        secondarybytes_in: {
          client_side_validation: true,
          required: false,
          serialized_name: 'secondarybytesIn',
          type: {
            name: 'Number'
          }
        },
        secondarybytes_out: {
          client_side_validation: true,
          required: false,
          serialized_name: 'secondarybytesOut',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end