class Azure::Network::Mgmt::V2019_09_01::Models::PrivateLinkServiceIpConfiguration

The private link service ip configuration.

Attributes

etag[RW]

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

name[RW]

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

primary[RW]

@return [Boolean] Whether the ip configuration is primary or not.

private_ipaddress[RW]

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

private_ipaddress_version[RW]

@return [IPVersion] Whether the specific IP configuration is IPv4 or IPv6. Default is 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 [ProvisioningState] The provisioning state of the private link service IP configuration resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

subnet[RW]

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

type[RW]

@return [String] The resource type.

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-09-01/generated/azure_mgmt_network/models/private_link_service_ip_configuration.rb, line 52
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkServiceIpConfiguration',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkServiceIpConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        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'
          }
        },
        primary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.primary',
          type: {
            name: 'Boolean'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          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'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end