class Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::Ipv6Config
Details related to the IPv6 address configuration.
Attributes
gateway[RW]
@return [String] The IPv6 gateway of the network adapter.
ip_address[RW]
@return [String] The IPv6 address of the network adapter.
prefix_length[RW]
@return [Integer] The IPv6 prefix of the network adapter.
Private Class Methods
mapper()
click to toggle source
Mapper for Ipv6Config
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-08-01/generated/azure_mgmt_databoxedge/models/ipv6config.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Ipv6Config', type: { name: 'Composite', class_name: 'Ipv6Config', model_properties: { ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'ipAddress', type: { name: 'String' } }, prefix_length: { client_side_validation: true, required: false, read_only: true, serialized_name: 'prefixLength', type: { name: 'Number' } }, gateway: { client_side_validation: true, required: false, read_only: true, serialized_name: 'gateway', type: { name: 'String' } } } } } end