class Azure::Peering::Mgmt::V2019_08_01_preview::Models::ExchangePeeringFacility

The properties that define an exchange peering facility.

Attributes

bandwidth_in_mbps[RW]

@return [Integer] The bandwidth of the connection between Microsoft and the exchange peering facility.

exchange_name[RW]

@return [String] The name of the exchange peering facility.

facility_ipv4prefix[RW]

@return [String] The IPv4 prefixes associated with the exchange peering facility.

facility_ipv6prefix[RW]

@return [String] The IPv6 prefixes associated with the exchange peering facility.

microsoft_ipv4address[RW]

@return [String] The IPv4 address of Microsoft at the exchange peering facility.

microsoft_ipv6address[RW]

@return [String] The IPv6 address of Microsoft at the exchange peering facility.

peering_dbfacility_id[RW]

@return [Integer] The PeeringDB.com ID of the facility.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb, line 49
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExchangePeeringFacility',
    type: {
      name: 'Composite',
      class_name: 'ExchangePeeringFacility',
      model_properties: {
        exchange_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'exchangeName',
          type: {
            name: 'String'
          }
        },
        bandwidth_in_mbps: {
          client_side_validation: true,
          required: false,
          serialized_name: 'bandwidthInMbps',
          type: {
            name: 'Number'
          }
        },
        microsoft_ipv4address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'microsoftIPv4Address',
          type: {
            name: 'String'
          }
        },
        microsoft_ipv6address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'microsoftIPv6Address',
          type: {
            name: 'String'
          }
        },
        facility_ipv4prefix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'facilityIPv4Prefix',
          type: {
            name: 'String'
          }
        },
        facility_ipv6prefix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'facilityIPv6Prefix',
          type: {
            name: 'String'
          }
        },
        peering_dbfacility_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'peeringDBFacilityId',
          type: {
            name: 'Number'
          }
        },
        peering_dbfacility_link: {
          client_side_validation: true,
          required: false,
          serialized_name: 'peeringDBFacilityLink',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end