1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
# 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 .sub_resource import SubResource
class InboundNatPool(SubResource):
"""Inbound NAT pool of the load balancer.
:param id: Resource Id
:type id: str
:param frontend_ip_configuration: Gets or sets a reference to frontend IP
Addresses
:type frontend_ip_configuration: :class:`SubResource
<azure.mgmt.network.models.SubResource>`
:param protocol: Gets or sets the transport protocol for the endpoint.
Possible values are Udp or Tcp. Possible values include: 'Udp', 'Tcp'
:type protocol: str or :class:`TransportProtocol
<azure.mgmt.network.models.TransportProtocol>`
:param frontend_port_range_start: Gets or sets the starting port range
for the NAT pool. You can specify any port number you choose, but the
port numbers specified for each role in the service must be unique.
Possible values range between 1 and 65535, inclusive
:type frontend_port_range_start: int
:param frontend_port_range_end: Gets or sets the ending port range for
the NAT pool. You can specify any port number you choose, but the port
numbers specified for each role in the service must be unique. Possible
values range between 1 and 65535, inclusive
:type frontend_port_range_end: int
:param backend_port: Gets or sets a port used for internal connections on
the endpoint. The localPort attribute maps the eternal port of the
endpoint to an internal port on a role. This is useful in scenarios
where a role must communicate to an internal component on a port that is
different from the one that is exposed externally. If not specified, the
value of localPort is the same as the port attribute. Set the value of
localPort to '*' to automatically assign an unallocated port that is
discoverable using the runtime API
:type backend_port: int
:param provisioning_state: Gets provisioning state of the PublicIP
resource Updating/Deleting/Failed
:type provisioning_state: str
:param name: Gets name of the resource that is unique within a resource
group. This name can be used to access the resource
:type name: str
:param etag: A unique read-only string that changes whenever the resource
is updated
:type etag: str
"""
_validation = {
'protocol': {'required': True},
'frontend_port_range_start': {'required': True},
'frontend_port_range_end': {'required': True},
'backend_port': {'required': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'},
'protocol': {'key': 'properties.protocol', 'type': 'str'},
'frontend_port_range_start': {'key': 'properties.frontendPortRangeStart', 'type': 'int'},
'frontend_port_range_end': {'key': 'properties.frontendPortRangeEnd', 'type': 'int'},
'backend_port': {'key': 'properties.backendPort', 'type': 'int'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'etag': {'key': 'etag', 'type': 'str'},
}
def __init__(self, protocol, frontend_port_range_start, frontend_port_range_end, backend_port, id=None, frontend_ip_configuration=None, provisioning_state=None, name=None, etag=None):
super(InboundNatPool, self).__init__(id=id)
self.frontend_ip_configuration = frontend_ip_configuration
self.protocol = protocol
self.frontend_port_range_start = frontend_port_range_start
self.frontend_port_range_end = frontend_port_range_end
self.backend_port = backend_port
self.provisioning_state = provisioning_state
self.name = name
self.etag = etag
|