CreateESM is a command that creates an External Secrets Manager. [Deprecated: Use command create-usc]
Name | Type | Description | Notes |
---|---|---|---|
azure_kv_name | str | Azure Key Vault name (Relevant only for Azure targets) | [optional] |
delete_protection | str | Protection from accidental deletion of this object [true/false] | [optional] |
description | str | Description of the External Secrets Manager | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
k8s_namespace | str | K8s namespace (Relevant to Kubernetes targets) | [optional] |
name | str | External Secrets Manager name | |
tags | List[str] | List of the tags attached to this External Secrets Manager | [optional] |
target_to_associate | str | Target External Secrets Manager to connect | |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
from akeyless.models.create_esm import CreateESM
# TODO update the JSON string below
json = "{}"
# create an instance of CreateESM from a JSON string
create_esm_instance = CreateESM.from_json(json)
# print the JSON string representation of the object
print(CreateESM.to_json())
# convert the object into a dict
create_esm_dict = create_esm_instance.to_dict()
# create an instance of CreateESM from a dict
create_esm_from_dict = CreateESM.from_dict(create_esm_dict)