Class: Azure::ARM::DevTestLabs::Models::SharedPublicIpAddressConfigurationFragment
- Inherits:
-
Object
- Object
- Azure::ARM::DevTestLabs::Models::SharedPublicIpAddressConfigurationFragment
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_devtestlabs/models/shared_public_ip_address_configuration_fragment.rb
Overview
Properties of a virtual machine that determine how it is connected to a load balancer.
Instance Attribute Summary collapse
-
#inbound_nat_rules ⇒ Array<InboundNatRuleFragment>
The incoming NAT rules.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SharedPublicIpAddressConfigurationFragment class as Ruby Hash.
Instance Attribute Details
#inbound_nat_rules ⇒ Array<InboundNatRuleFragment>
Returns The incoming NAT rules.
18 19 20 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/shared_public_ip_address_configuration_fragment.rb', line 18 def inbound_nat_rules @inbound_nat_rules end |
Class Method Details
.mapper ⇒ Object
Mapper for SharedPublicIpAddressConfigurationFragment class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/shared_public_ip_address_configuration_fragment.rb', line 26 def self.mapper() { required: false, serialized_name: 'SharedPublicIpAddressConfigurationFragment', type: { name: 'Composite', class_name: 'SharedPublicIpAddressConfigurationFragment', model_properties: { inbound_nat_rules: { required: false, serialized_name: 'inboundNatRules', type: { name: 'Sequence', element: { required: false, serialized_name: 'InboundNatRuleFragmentElementType', type: { name: 'Composite', class_name: 'InboundNatRuleFragment' } } } } } } } end |