class Azure::Network::Mgmt::V2019_04_01::Models::PrivateLinkServiceIpConfiguration

The private link service ip configuration.

Attributes

name[RW]

@return [String] The name of private link service ip configuration.

private_ipaddress[RW]

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

private_ipaddress_version[RW]

@return [IPVersion] Available from Api-Version 2016-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values include: 'IPv4', 'IPv6'

private_ipallocation_method[RW]

@return [IPAllocationMethod] The private IP address allocation method. Possible values include: 'Static', 'Dynamic'

provisioning_state[RW]

@return [String] Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.

public_ipaddress[RW]

@return [PublicIPAddress] The reference of the public IP resource.

subnet[RW]

@return [Subnet] The reference of the subnet resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-04-01/generated/azure_mgmt_network/models/private_link_service_ip_configuration.rb, line 44
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkServiceIpConfiguration',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkServiceIpConfiguration',
      model_properties: {
        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'
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.subnet',
          type: {
            name: 'Composite',
            class_name: 'Subnet'
          }
        },
        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'
          }
        },
        private_ipaddress_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateIPAddressVersion',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end