Skip to content

Files

Latest commit

ce5fd4a · Feb 20, 2025

History

History
33 lines (24 loc) · 1.34 KB

GetEventForwarder.md

File metadata and controls

33 lines (24 loc) · 1.34 KB

GetEventForwarder

getEventForwarder is a command that creates a new event forwarder [Deprecated - please use event-forwarder-get command]

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
name str EventForwarder name
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.get_event_forwarder import GetEventForwarder

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

# convert the object into a dict
get_event_forwarder_dict = get_event_forwarder_instance.to_dict()
# create an instance of GetEventForwarder from a dict
get_event_forwarder_from_dict = GetEventForwarder.from_dict(get_event_forwarder_dict)

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