class Azure::Network::Mgmt::V2020_04_01::Models::PrivateLinkServiceIpConfiguration
The private link service ip configuration.
Attributes
@return [String] A unique read-only string that changes whenever the resource is updated.
@return [String] The name of private link service ip configuration.
@return [Boolean] Whether the ip configuration is primary or not.
@return [String] The private IP address of the IP configuration.
@return [IPVersion] Whether the specific IP configuration is IPv4 or IPv6. Default is IPv4. Possible values include: 'IPv4', 'IPv6'
@return [IPAllocationMethod] The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
@return [ProvisioningState] The provisioning state of the private link service IP configuration resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'
@return [Subnet] The reference to the subnet resource.
@return [String] The resource type.
Public Class Methods
Mapper for PrivateLinkServiceIpConfiguration
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-04-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