Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.52 KB

GatewayUpdateTmpUsers.md

File metadata and controls

36 lines (27 loc) · 1.52 KB

GatewayUpdateTmpUsers

gatewayUpdateTmpUsers is a command that returns gateway configuration [Deprecated: Use dynamic-secret-tmp-creds-update command]

Properties

Name Type Description Notes
host str Host
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_ttl_min int New TTL in Minutes
tmp_creds_id str Tmp Creds ID
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.gateway_update_tmp_users import GatewayUpdateTmpUsers

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

# convert the object into a dict
gateway_update_tmp_users_dict = gateway_update_tmp_users_instance.to_dict()
# create an instance of GatewayUpdateTmpUsers from a dict
gateway_update_tmp_users_from_dict = GatewayUpdateTmpUsers.from_dict(gateway_update_tmp_users_dict)

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