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
|
# 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
class InboundEndpoint(Model):
"""An inbound endpoint on a compute node.
All required parameters must be populated in order to send to Azure.
:param name: Required. The name of the endpoint.
:type name: str
:param protocol: Required. The protocol of the endpoint. Possible values
include: 'tcp', 'udp'
:type protocol: str or ~azure.batch.models.InboundEndpointProtocol
:param public_ip_address: Required. The public IP address of the compute
node.
:type public_ip_address: str
:param public_fqdn: Required. The public fully qualified domain name for
the compute node.
:type public_fqdn: str
:param frontend_port: Required. The public port number of the endpoint.
:type frontend_port: int
:param backend_port: Required. The backend port number of the endpoint.
:type backend_port: int
"""
_validation = {
'name': {'required': True},
'protocol': {'required': True},
'public_ip_address': {'required': True},
'public_fqdn': {'required': True},
'frontend_port': {'required': True},
'backend_port': {'required': True},
}
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'protocol': {'key': 'protocol', 'type': 'InboundEndpointProtocol'},
'public_ip_address': {'key': 'publicIPAddress', 'type': 'str'},
'public_fqdn': {'key': 'publicFQDN', 'type': 'str'},
'frontend_port': {'key': 'frontendPort', 'type': 'int'},
'backend_port': {'key': 'backendPort', 'type': 'int'},
}
def __init__(self, *, name: str, protocol, public_ip_address: str, public_fqdn: str, frontend_port: int, backend_port: int, **kwargs) -> None:
super(InboundEndpoint, self).__init__(**kwargs)
self.name = name
self.protocol = protocol
self.public_ip_address = public_ip_address
self.public_fqdn = public_fqdn
self.frontend_port = frontend_port
self.backend_port = backend_port
|