class Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::Ipv4Config

Details related to the IPv4 address configuration.

Attributes

gateway[RW]

@return [String] The IPv4 gateway of the network adapter.

ip_address[RW]

@return [String] The IPv4 address of the network adapter.

subnet[RW]

@return [String] The IPv4 subnet of the network adapter.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_databoxedge/models/ipv4config.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Ipv4Config',
    type: {
      name: 'Composite',
      class_name: 'Ipv4Config',
      model_properties: {
        ip_address: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'ipAddress',
          type: {
            name: 'String'
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'subnet',
          type: {
            name: 'String'
          }
        },
        gateway: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'gateway',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end