Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.64 KB

DynamicSecretUpdateCustom.md

File metadata and controls

45 lines (36 loc) · 2.64 KB

DynamicSecretUpdateCustom

Properties

Name Type Description Notes
admin_rotation_interval_days int Define rotation interval in days [optional]
create_sync_url str URL of an endpoint that implements /sync/create method, for example https://webhook.example.com/sync/create
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
description str Description of the object [optional]
enable_admin_rotation bool Should admin credentials be rotated [optional] [default to False]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_name str Dynamic secret name [optional]
payload str Secret payload to be sent with each create/revoke webhook request [optional]
producer_encryption_key_name str Dynamic producer encryption key [optional]
revoke_sync_url str URL of an endpoint that implements /sync/revoke method, for example https://webhook.example.com/sync/revoke
rotate_sync_url str URL of an endpoint that implements /sync/rotate method, for example https://webhook.example.com/sync/rotate [optional]
tags List[str] Add tags attached to this object [optional]
timeout_sec int 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

from akeyless.models.dynamic_secret_update_custom import DynamicSecretUpdateCustom

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

# convert the object into a dict
dynamic_secret_update_custom_dict = dynamic_secret_update_custom_instance.to_dict()
# create an instance of DynamicSecretUpdateCustom from a dict
dynamic_secret_update_custom_from_dict = DynamicSecretUpdateCustom.from_dict(dynamic_secret_update_custom_dict)

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