class Azure::Network::Mgmt::V2020_08_01::Models::VpnGatewayIpConfiguration

IP Configuration of a VPN Gateway Resource.

Attributes

id[RW]

@return [String] The identifier of the IP configuration for a VPN Gateway.

private_ip_address[RW]

@return [String] The private IP address of this IP configuration.

public_ip_address[RW]

@return [String] The public IP address of this IP configuration.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-08-01/generated/azure_mgmt_network/models/vpn_gateway_ip_configuration.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VpnGatewayIpConfiguration',
    type: {
      name: 'Composite',
      class_name: 'VpnGatewayIpConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        public_ip_address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'publicIpAddress',
          type: {
            name: 'String'
          }
        },
        private_ip_address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'privateIpAddress',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end