class Azure::Network::Mgmt::V2017_09_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
Contains IPv6 peering config.
Attributes
microsoft_peering_config[RW]
@return [ExpressRouteCircuitPeeringConfig] The Microsoft peering configuration.
primary_peer_address_prefix[RW]
@return [String] The primary address prefix.
route_filter[RW]
@return [RouteFilter] The reference of the RouteFilter
resource.
secondary_peer_address_prefix[RW]
@return [String] The secondary address prefix.
state[RW]
@return [ExpressRouteCircuitPeeringState] The state of peering. Possible values are: 'Disabled' and 'Enabled'. Possible values include: 'Disabled', 'Enabled'
Public Class Methods
mapper()
click to toggle source
Mapper for Ipv6ExpressRouteCircuitPeeringConfig
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-09-01/generated/azure_mgmt_network/models/ipv6express_route_circuit_peering_config.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Ipv6ExpressRouteCircuitPeeringConfig', type: { name: 'Composite', class_name: 'Ipv6ExpressRouteCircuitPeeringConfig', model_properties: { primary_peer_address_prefix: { client_side_validation: true, required: false, serialized_name: 'primaryPeerAddressPrefix', type: { name: 'String' } }, secondary_peer_address_prefix: { client_side_validation: true, required: false, serialized_name: 'secondaryPeerAddressPrefix', type: { name: 'String' } }, microsoft_peering_config: { client_side_validation: true, required: false, serialized_name: 'microsoftPeeringConfig', type: { name: 'Composite', class_name: 'ExpressRouteCircuitPeeringConfig' } }, route_filter: { client_side_validation: true, required: false, serialized_name: 'routeFilter', type: { name: 'Composite', class_name: 'RouteFilter' } }, state: { client_side_validation: true, required: false, serialized_name: 'state', type: { name: 'String' } } } } } end