gwUpdateRemoteAccessSessionLogsSplunk is a command that updates session log forwarding config (splunk target)
Name | Type | Description | Notes |
---|---|---|---|
enable | str | Enable Log Forwarding [true/false] | [optional] [default to 'true'] |
enable_tls | bool | Enable tls | [optional] |
index | str | Splunk index | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
output_format | str | Logs format [text/json] | [optional] [default to 'text'] |
pull_interval | str | Pull interval in seconds | [optional] [default to '10'] |
source | str | Splunk source | [optional] [default to 'use-existing'] |
source_type | str | Splunk source type | [optional] [default to 'use-existing'] |
splunk_token | str | Splunk token | [optional] |
splunk_url | str | Splunk server URL | [optional] |
tls_certificate | str | Splunk 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] |
from akeyless.models.gw_update_remote_access_session_logs_splunk import GwUpdateRemoteAccessSessionLogsSplunk
# TODO update the JSON string below
json = "{}"
# create an instance of GwUpdateRemoteAccessSessionLogsSplunk from a JSON string
gw_update_remote_access_session_logs_splunk_instance = GwUpdateRemoteAccessSessionLogsSplunk.from_json(json)
# print the JSON string representation of the object
print(GwUpdateRemoteAccessSessionLogsSplunk.to_json())
# convert the object into a dict
gw_update_remote_access_session_logs_splunk_dict = gw_update_remote_access_session_logs_splunk_instance.to_dict()
# create an instance of GwUpdateRemoteAccessSessionLogsSplunk from a dict
gw_update_remote_access_session_logs_splunk_from_dict = GwUpdateRemoteAccessSessionLogsSplunk.from_dict(gw_update_remote_access_session_logs_splunk_dict)