Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.37 KB

CreateESM.md

File metadata and controls

36 lines (30 loc) · 1.37 KB

Akeyless::CreateESM

Properties

Name Type Description Notes
azure_kv_name String Azure Key Vault name (Relevant only for Azure targets) [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the External Secrets Manager [optional]
json Boolean Set output format to JSON [optional][default to false]
k8s_namespace String K8s namespace (Relevant to Kubernetes targets) [optional]
name String External Secrets Manager name
tags Array<String> List of the tags attached to this External Secrets Manager [optional]
target_to_associate String Target External Secrets Manager to connect
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::CreateESM.new(
  azure_kv_name: null,
  delete_protection: null,
  description: null,
  json: null,
  k8s_namespace: null,
  name: null,
  tags: null,
  target_to_associate: null,
  token: null,
  uid_token: null
)