class Azure::Network::Mgmt::V2016_03_30::Models::NetworkInterfaceIPConfiguration

IPConfiguration in a NetworkInterface

Attributes

application_gateway_backend_address_pools[RW]

@return [Array<ApplicationGatewayBackendAddressPool>] Gets or sets the reference of ApplicationGatewayBackendAddressPool resource

etag[RW]

@return [String] A unique read-only string that changes whenever the resource is updated

load_balancer_backend_address_pools[RW]

@return [Array<BackendAddressPool>] Gets or sets the reference of LoadBalancerBackendAddressPool resource

load_balancer_inbound_nat_rules[RW]

@return [Array<InboundNatRule>] Gets or sets list of references of LoadBalancerInboundNatRules

name[RW]

@return [String] Gets name of the resource that is unique within a resource group. This name can be used to access the resource

primary[RW]

@return [Boolean] Gets whether this is a primary customer address on the NIC

private_ipaddress[RW]

@return [String]

private_ipaddress_version[RW]

@return [IPVersion] Gets or sets PrivateIP address version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'

private_ipallocation_method[RW]

@return [IPAllocationMethod] Gets or sets PrivateIP allocation method (Static/Dynamic). Possible values include: 'Static', 'Dynamic'

provisioning_state[RW]

@return [String]

public_ipaddress[RW]

@return [PublicIPAddress]

subnet[RW]

@return [Subnet]

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-03-30/generated/azure_mgmt_network/models/network_interface_ipconfiguration.rb, line 63
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NetworkInterfaceIPConfiguration',
    type: {
      name: 'Composite',
      class_name: 'NetworkInterfaceIPConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        application_gateway_backend_address_pools: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.applicationGatewayBackendAddressPools',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewayBackendAddressPoolElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationGatewayBackendAddressPool'
                }
            }
          }
        },
        load_balancer_backend_address_pools: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.loadBalancerBackendAddressPools',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'BackendAddressPoolElementType',
                type: {
                  name: 'Composite',
                  class_name: 'BackendAddressPool'
                }
            }
          }
        },
        load_balancer_inbound_nat_rules: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.loadBalancerInboundNatRules',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'InboundNatRuleElementType',
                type: {
                  name: 'Composite',
                  class_name: 'InboundNatRule'
                }
            }
          }
        },
        private_ipaddress: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateIPAddress',
          type: {
            name: 'String'
          }
        },
        private_ipallocation_method: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateIPAllocationMethod',
          type: {
            name: 'String'
          }
        },
        private_ipaddress_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateIPAddressVersion',
          type: {
            name: 'String'
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.subnet',
          type: {
            name: 'Composite',
            class_name: 'Subnet'
          }
        },
        primary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.primary',
          type: {
            name: 'Boolean'
          }
        },
        public_ipaddress: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.publicIPAddress',
          type: {
            name: 'Composite',
            class_name: 'PublicIPAddress'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end