Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.77 KB

GwUpdateRemoteAccessSessionLogsElasticsearch.md

File metadata and controls

45 lines (36 loc) · 2.77 KB

GwUpdateRemoteAccessSessionLogsElasticsearch

gwUpdateRemoteAccessSessionLogsElasticsearch is a command that updates session log forwarding config (elasticsearch target)

Properties

Name Type Description Notes
api_key str Elasticsearch api key relevant only for api_key auth-type [optional]
auth_type str Elasticsearch auth type [api_key/password] [optional]
cloud_id str Elasticsearch cloud id relevant only for cloud server-type [optional]
enable str Enable Log Forwarding [true/false] [optional] [default to 'true']
enable_tls bool Enable tls [optional]
index str Elasticsearch index [optional]
var_json bool Set output format to JSON [optional] [default to False]
nodes str Elasticsearch nodes relevant only for nodes server-type [optional]
output_format str Logs format [text/json] [optional] [default to 'text']
password str Elasticsearch password relevant only for password auth-type [optional]
pull_interval str Pull interval in seconds [optional] [default to '10']
server_type str Elasticsearch server type [cloud/nodes] [optional]
tls_certificate str Elasticsearch 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]
user_name str Elasticsearch user name relevant only for password auth-type [optional]

Example

from akeyless.models.gw_update_remote_access_session_logs_elasticsearch import GwUpdateRemoteAccessSessionLogsElasticsearch

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

# convert the object into a dict
gw_update_remote_access_session_logs_elasticsearch_dict = gw_update_remote_access_session_logs_elasticsearch_instance.to_dict()
# create an instance of GwUpdateRemoteAccessSessionLogsElasticsearch from a dict
gw_update_remote_access_session_logs_elasticsearch_from_dict = GwUpdateRemoteAccessSessionLogsElasticsearch.from_dict(gw_update_remote_access_session_logs_elasticsearch_dict)

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