class Azure::Network::Mgmt::V2019_04_01::Models::PrivateLinkServiceIpConfiguration
The private link service ip configuration.
Attributes
@return [String] The name of private link service ip configuration.
@return [String] The private IP address of the IP configuration.
@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'
@return [IPAllocationMethod] The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
@return [String] Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
@return [PublicIPAddress] The reference of the public IP resource.
@return [Subnet] The reference of the subnet resource.
Public Class Methods
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