Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.89 KB

TargetCreateHashiVault.md

File metadata and controls

38 lines (29 loc) · 1.89 KB

TargetCreateHashiVault

Properties

Name Type Description Notes
description str Description of the object [optional]
hashi_url str HashiCorp Vault API URL, e.g. https://vault-mgr01:8200 [optional]
var_json bool Set output format to JSON [optional] [default to False]
key str The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) [optional]
max_versions str Set the maximum number of versions, limited by the account settings defaults. [optional]
name str Target name
namespace List[str] Comma-separated list of vault namespaces [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
vault_token str Vault access token with sufficient permissions [optional]

Example

from akeyless.models.target_create_hashi_vault import TargetCreateHashiVault

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

# convert the object into a dict
target_create_hashi_vault_dict = target_create_hashi_vault_instance.to_dict()
# create an instance of TargetCreateHashiVault from a dict
target_create_hashi_vault_from_dict = TargetCreateHashiVault.from_dict(target_create_hashi_vault_dict)

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