Source code for azure.mgmt.devtestlabs.models.shared_public_ip_address_configuration_fragment

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class SharedPublicIpAddressConfigurationFragment(Model): """Properties of a virtual machine that determine how it is connected to a load balancer. :param inbound_nat_rules: The incoming NAT rules :type inbound_nat_rules: list[~azure.mgmt.devtestlabs.models.InboundNatRuleFragment] """ _attribute_map = { 'inbound_nat_rules': {'key': 'inboundNatRules', 'type': '[InboundNatRuleFragment]'}, } def __init__(self, inbound_nat_rules=None): super(SharedPublicIpAddressConfigurationFragment, self).__init__() self.inbound_nat_rules = inbound_nat_rules