Class: Azure::Peering::Mgmt::V2019_08_01_preview::Models::ExchangePeeringFacility

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb

Overview

The properties that define an exchange peering facility.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#bandwidth_in_mbpsInteger

the exchange peering facility.

Returns:

  • (Integer)

    The bandwidth of the connection between Microsoft and



20
21
22
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 20

def bandwidth_in_mbps
  @bandwidth_in_mbps
end

#exchange_nameString

Returns The name of the exchange peering facility.

Returns:

  • (String)

    The name of the exchange peering facility.



16
17
18
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 16

def exchange_name
  @exchange_name
end

#facility_ipv4prefixString

facility.

Returns:

  • (String)

    The IPv4 prefixes associated with the exchange peering



32
33
34
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 32

def facility_ipv4prefix
  @facility_ipv4prefix
end

#facility_ipv6prefixString

facility.

Returns:

  • (String)

    The IPv6 prefixes associated with the exchange peering



36
37
38
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 36

def facility_ipv6prefix
  @facility_ipv6prefix
end

#microsoft_ipv4addressString

facility.

Returns:

  • (String)

    The IPv4 address of Microsoft at the exchange peering



24
25
26
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 24

def microsoft_ipv4address
  @microsoft_ipv4address
end

#microsoft_ipv6addressString

facility.

Returns:

  • (String)

    The IPv6 address of Microsoft at the exchange peering



28
29
30
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 28

def microsoft_ipv6address
  @microsoft_ipv6address
end

#peering_dbfacility_idInteger

Returns The PeeringDB.com ID of the facility.

Returns:

  • (Integer)

    The PeeringDB.com ID of the facility.



39
40
41
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 39

def peering_dbfacility_id
  @peering_dbfacility_id
end

Returns The PeeringDB.com URL of the facility.

Returns:

  • (String)

    The PeeringDB.com URL of the facility.



42
43
44
# File 'lib/2019-08-01-preview/generated/azure_mgmt_peering/models/exchange_peering_facility.rb', line 42

def peering_dbfacility_link
  @peering_dbfacility_link
end

Class Method Details

.mapperObject

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



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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# 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