Source code for models.protocol_syslog_server_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class ProtocolSyslogServerEnum(object): """Implementation of the 'Protocol_SyslogServer' enum. Specifies the protocol used to send the logs. Specifies the protocol used to communicate to a server. e.g., kUDP, kTCP. 'kUDP' indicates UDP protocol. 'kTCP' indicates TCP protocol. Attributes: KUDP: TODO: type description here. KTCP: TODO: type description here. """ KUDP = 'kUDP' KTCP = 'kTCP'