class Azure::Network::Mgmt::V2018_12_01::Models::IPConfiguration
IP configuration
Attributes
@return [String] A unique read-only string that changes whenever the resource is updated.
@return [String] The name of the resource that is unique within a resource group. This name can be used to access the resource.
@return [String] The private IP address of the IP configuration.
@return [IPAllocationMethod] The private IP allocation method. Possible values are 'Static' and 'Dynamic'. 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 IPConfiguration
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-12-01/generated/azure_mgmt_network/models/ipconfiguration.rb, line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IPConfiguration', type: { name: 'Composite', class_name: 'IPConfiguration', 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' } }, 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