You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maximum allowed time in seconds for the webhook to return the results
[optional] [default to 60]
token
str
Authentication token (see `/auth` and `/configure`)
[optional]
uid_token
str
The universal identity token, Required only for universal_identity authentication
[optional]
user_ttl
str
User TTL
[optional] [default to '60m']
Example
fromakeyless.models.dynamic_secret_update_customimportDynamicSecretUpdateCustom# TODO update the JSON string belowjson="{}"# create an instance of DynamicSecretUpdateCustom from a JSON stringdynamic_secret_update_custom_instance=DynamicSecretUpdateCustom.from_json(json)
# print the JSON string representation of the objectprint(DynamicSecretUpdateCustom.to_json())
# convert the object into a dictdynamic_secret_update_custom_dict=dynamic_secret_update_custom_instance.to_dict()
# create an instance of DynamicSecretUpdateCustom from a dictdynamic_secret_update_custom_from_dict=DynamicSecretUpdateCustom.from_dict(dynamic_secret_update_custom_dict)