Class: Azure::Network::Mgmt::V2017_09_01::Models::Ipv6ExpressRouteCircuitPeeringConfig

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb

Overview

Contains IPv6 peering config.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#microsoft_peering_configExpressRouteCircuitPeeringConfig

configuration.

Returns:



23
24
25
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 23

def microsoft_peering_config
  @microsoft_peering_config
end

#primary_peer_address_prefixString

Returns The primary address prefix.

Returns:

  • (String)

    The primary address prefix.



16
17
18
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 16

def primary_peer_address_prefix
  @primary_peer_address_prefix
end

#route_filterRouteFilter

Returns The reference of the RouteFilter resource.

Returns:

  • (RouteFilter)

    The reference of the RouteFilter resource.



26
27
28
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 26

def route_filter
  @route_filter
end

#secondary_peer_address_prefixString

Returns The secondary address prefix.

Returns:

  • (String)

    The secondary address prefix.



19
20
21
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 19

def secondary_peer_address_prefix
  @secondary_peer_address_prefix
end

#stateExpressRouteCircuitPeeringState

Possible values are: ‘Disabled’ and ‘Enabled’. Possible values include: ‘Disabled’, ‘Enabled’

Returns:



31
32
33
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 31

def state
  @state
end

Class Method Details

.mapperObject

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



38
39
40
41
42
43
44
45
46
47
48
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
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 38

def self.mapper()
  {
    required: false,
    serialized_name: 'Ipv6ExpressRouteCircuitPeeringConfig',
    type: {
      name: 'Composite',
      class_name: 'Ipv6ExpressRouteCircuitPeeringConfig',
      model_properties: {
        primary_peer_address_prefix: {
          required: false,
          serialized_name: 'primaryPeerAddressPrefix',
          type: {
            name: 'String'
          }
        },
        secondary_peer_address_prefix: {
          required: false,
          serialized_name: 'secondaryPeerAddressPrefix',
          type: {
            name: 'String'
          }
        },
        microsoft_peering_config: {
          required: false,
          serialized_name: 'microsoftPeeringConfig',
          type: {
            name: 'Composite',
            class_name: 'ExpressRouteCircuitPeeringConfig'
          }
        },
        route_filter: {
          required: false,
          serialized_name: 'routeFilter',
          type: {
            name: 'Composite',
            class_name: 'RouteFilter'
          }
        },
        state: {
          required: false,
          serialized_name: 'state',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end