gwUpdateRemoteAccessSessionLogsDatadog is a command that updates session log forwarding config (datadog target)
Name | Type | Description | Notes |
---|---|---|---|
api_key | str | Datadog api key | [optional] |
enable | str | Enable Log Forwarding [true/false] | [optional] [default to 'true'] |
host | str | Datadog host | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
log_service | str | Datadog log service | [optional] [default to 'use-existing'] |
log_source | str | Datadog log source | [optional] [default to 'use-existing'] |
log_tags | str | A comma-separated list of Datadog log tags formatted as "key:value" strings | [optional] [default to 'use-existing'] |
output_format | str | Logs format [text/json] | [optional] [default to 'text'] |
pull_interval | str | Pull interval in seconds | [optional] [default to '10'] |
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_datadog import GwUpdateRemoteAccessSessionLogsDatadog
# TODO update the JSON string below
json = "{}"
# create an instance of GwUpdateRemoteAccessSessionLogsDatadog from a JSON string
gw_update_remote_access_session_logs_datadog_instance = GwUpdateRemoteAccessSessionLogsDatadog.from_json(json)
# print the JSON string representation of the object
print(GwUpdateRemoteAccessSessionLogsDatadog.to_json())
# convert the object into a dict
gw_update_remote_access_session_logs_datadog_dict = gw_update_remote_access_session_logs_datadog_instance.to_dict()
# create an instance of GwUpdateRemoteAccessSessionLogsDatadog from a dict
gw_update_remote_access_session_logs_datadog_from_dict = GwUpdateRemoteAccessSessionLogsDatadog.from_dict(gw_update_remote_access_session_logs_datadog_dict)