Class: Azure::ARM::Network::Models::Ipv6ExpressRouteCircuitPeeringConfig
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::Ipv6ExpressRouteCircuitPeeringConfig
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb
Overview
Contains IPv6 peering config.
Instance Attribute Summary collapse
-
#microsoft_peering_config ⇒ ExpressRouteCircuitPeeringConfig
configuration.
-
#primary_peer_address_prefix ⇒ String
The primary address prefix.
-
#route_filter ⇒ RouteFilter
The reference of the RouteFilter resource.
-
#secondary_peer_address_prefix ⇒ String
The secondary address prefix.
-
#state ⇒ ExpressRouteCircuitPeeringState
Possible values are: ‘Disabled’ and ‘Enabled’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Ipv6ExpressRouteCircuitPeeringConfig class as Ruby Hash.
Instance Attribute Details
#microsoft_peering_config ⇒ ExpressRouteCircuitPeeringConfig
configuration.
24 25 26 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 24 def microsoft_peering_config @microsoft_peering_config end |
#primary_peer_address_prefix ⇒ String
Returns The primary address prefix.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 17 def primary_peer_address_prefix @primary_peer_address_prefix end |
#route_filter ⇒ RouteFilter
Returns The reference of the RouteFilter resource.
27 28 29 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 27 def route_filter @route_filter end |
#secondary_peer_address_prefix ⇒ String
Returns The secondary address prefix.
20 21 22 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 20 def secondary_peer_address_prefix @secondary_peer_address_prefix end |
#state ⇒ ExpressRouteCircuitPeeringState
Possible values are: ‘Disabled’ and ‘Enabled’. Possible values include: ‘Disabled’, ‘Enabled’
32 33 34 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 32 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for Ipv6ExpressRouteCircuitPeeringConfig class as Ruby Hash. This will be used for serialization/deserialization.
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 87 |
# File 'lib/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb', line 39 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 |