Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.66 KB

GatewayCreateProducerCustom.md

File metadata and controls

44 lines (35 loc) · 2.66 KB

GatewayCreateProducerCustom

gatewayCreateProducerCustom is a command that creates a custom producer. [Deprecated: Use dynamic-secret-create-custom command]

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]
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
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.gateway_create_producer_custom import GatewayCreateProducerCustom

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

# convert the object into a dict
gateway_create_producer_custom_dict = gateway_create_producer_custom_instance.to_dict()
# create an instance of GatewayCreateProducerCustom from a dict
gateway_create_producer_custom_from_dict = GatewayCreateProducerCustom.from_dict(gateway_create_producer_custom_dict)

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