Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.75 KB

GetDynamicSecretValue.md

File metadata and controls

36 lines (27 loc) · 1.75 KB

GetDynamicSecretValue

Properties

Name Type Description Notes
args List[str] Optional arguments as key=value pairs or JSON strings, e.g - \"--args=csr=base64_encoded_csr --args=common_name=bar\" or args='{\"csr\":\"base64_encoded_csr\"}. It is possible to combine both formats.' [optional]
host str Host [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
target str Target Name [optional]
timeout int Timeout in seconds [optional] [default to 15]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.get_dynamic_secret_value import GetDynamicSecretValue

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

# convert the object into a dict
get_dynamic_secret_value_dict = get_dynamic_secret_value_instance.to_dict()
# create an instance of GetDynamicSecretValue from a dict
get_dynamic_secret_value_from_dict = GetDynamicSecretValue.from_dict(get_dynamic_secret_value_dict)

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