dynamicSecretCreateChef is a command that creates chef dynamic secret
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] |
description | str | Description of the object | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
name | str | Dynamic secret name | |
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'] |
from akeyless.models.dynamic_secret_create_chef import DynamicSecretCreateChef
# TODO update the JSON string below
json = "{}"
# create an instance of DynamicSecretCreateChef from a JSON string
dynamic_secret_create_chef_instance = DynamicSecretCreateChef.from_json(json)
# print the JSON string representation of the object
print(DynamicSecretCreateChef.to_json())
# convert the object into a dict
dynamic_secret_create_chef_dict = dynamic_secret_create_chef_instance.to_dict()
# create an instance of DynamicSecretCreateChef from a dict
dynamic_secret_create_chef_from_dict = DynamicSecretCreateChef.from_dict(dynamic_secret_create_chef_dict)