Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.29 KB

GwUpdateRemoteAccessSessionLogsSyslog.md

File metadata and controls

41 lines (32 loc) · 2.29 KB

GwUpdateRemoteAccessSessionLogsSyslog

gwUpdateRemoteAccessSessionLogsSyslog is a command that updates session log forwarding config (syslog target)

Properties

Name Type Description Notes
enable str Enable Log Forwarding [true/false] [optional] [default to 'true']
enable_tls bool Enable tls relevant only for network type TCP [optional]
formatter str Syslog formatter [text/cef] [optional] [default to 'text']
host str Syslog host [optional]
var_json bool Set output format to JSON [optional] [default to False]
network str Syslog network [tcp/udp] [optional] [default to 'tcp']
output_format str Logs format [text/json] [optional] [default to 'text']
pull_interval str Pull interval in seconds [optional] [default to '10']
target_tag str Syslog target tag [optional] [default to 'use-existing']
tls_certificate str Syslog tls certificate [optional] [default to 'use-existing']
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.gw_update_remote_access_session_logs_syslog import GwUpdateRemoteAccessSessionLogsSyslog

# TODO update the JSON string below
json = "{}"
# create an instance of GwUpdateRemoteAccessSessionLogsSyslog from a JSON string
gw_update_remote_access_session_logs_syslog_instance = GwUpdateRemoteAccessSessionLogsSyslog.from_json(json)
# print the JSON string representation of the object
print(GwUpdateRemoteAccessSessionLogsSyslog.to_json())

# convert the object into a dict
gw_update_remote_access_session_logs_syslog_dict = gw_update_remote_access_session_logs_syslog_instance.to_dict()
# create an instance of GwUpdateRemoteAccessSessionLogsSyslog from a dict
gw_update_remote_access_session_logs_syslog_from_dict = GwUpdateRemoteAccessSessionLogsSyslog.from_dict(gw_update_remote_access_session_logs_syslog_dict)

[Back to Model list] [Back to API list] [Back to README]