Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.27 KB

GatewayUpdateProducerChef.md

File metadata and controls

45 lines (36 loc) · 2.27 KB

GatewayUpdateProducerChef

gatewayUpdateProducerChef is a command that updates chef producer [Deprecated: Use dynamic-secret-update-chef command]

Properties

Name Type Description Notes
chef_orgs str Organizations [optional]
chef_server_key str Server key [optional]
chef_server_url str Server URL [optional]
chef_server_username str Server username [optional]
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_name str Dynamic secret name [optional]
password_length str The length of the password to be generated [optional]
producer_encryption_key_name str Dynamic producer encryption key [optional]
skip_ssl bool Skip SSL [optional] [default to True]
tags List[str] Add tags attached to this object [optional]
target_name str Target name [optional]
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_update_producer_chef import GatewayUpdateProducerChef

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

# convert the object into a dict
gateway_update_producer_chef_dict = gateway_update_producer_chef_instance.to_dict()
# create an instance of GatewayUpdateProducerChef from a dict
gateway_update_producer_chef_from_dict = GatewayUpdateProducerChef.from_dict(gateway_update_producer_chef_dict)

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