class Azure::Network::Mgmt::V2019_06_01::Models::VirtualNetworkGatewayIPConfiguration
IP configuration for virtual network gateway.
Attributes
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated.
name[RW]
@return [String] The name of the resource that is unique within a resource group. This name can be used to access the resource.
private_ipallocation_method[RW]
@return [IPAllocationMethod] The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
provisioning_state[RW]
@return [String] The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
public_ipaddress[RW]
@return [SubResource] The reference of the public IP resource.
subnet[RW]
@return [SubResource] The reference of the subnet resource.
Private Class Methods
mapper()
click to toggle source
Mapper for VirtualNetworkGatewayIPConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01/generated/azure_mgmt_network/models/virtual_network_gateway_ipconfiguration.rb, line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualNetworkGatewayIPConfiguration', type: { name: 'Composite', class_name: 'VirtualNetworkGatewayIPConfiguration', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', 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: 'SubResource' } }, public_ipaddress: { client_side_validation: true, required: false, 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' } }, 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