class Azure::Network::Mgmt::V2019_11_01::Models::BastionHostIPConfiguration
IP configuration of an Bastion Host.
Attributes
@return [String] A unique read-only string that changes whenever the resource is updated.
@return [String] Name of the resource that is unique within a resource group. This name can be used to access the resource.
@return [IPAllocationMethod] Private IP allocation method. Possible values include: 'Static', 'Dynamic'
@return [ProvisioningState] The provisioning state of the bastion host IP configuration resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'
@return [SubResource] Reference of the PublicIP resource.
@return [SubResource] Reference of the subnet resource.
@return [String] Ip configuration type.
Public Class Methods
Mapper for BastionHostIPConfiguration
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-11-01/generated/azure_mgmt_network/models/bastion_host_ipconfiguration.rb, line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BastionHostIPConfiguration', type: { name: 'Composite', class_name: 'BastionHostIPConfiguration', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, subnet: { client_side_validation: true, required: true, serialized_name: 'properties.subnet', type: { name: 'Composite', class_name: 'SubResource' } }, public_ipaddress: { client_side_validation: true, required: true, serialized_name: 'properties.publicIPAddress', type: { name: 'Composite', class_name: 'SubResource' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, private_ipallocation_method: { client_side_validation: true, required: false, serialized_name: 'properties.privateIPAllocationMethod', 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