Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.2 KB

EsmCreate.md

File metadata and controls

34 lines (28 loc) · 1.2 KB

Akeyless::EsmCreate

Properties

Name Type Description Notes
binary_value Boolean Use this option if the external secret value is a base64 encoded binary [optional]
description String Description of the external secret [optional]
esm_name String Name of the External Secrets Manager item
json Boolean Set output format to JSON [optional][default to false]
secret_name String Name for the new external secret
tags Hash<String, String> Tags for the external secret [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
value String Value of the external secret item, either text or base64 encoded binary

Example

require 'akeyless'

instance = Akeyless::EsmCreate.new(
  binary_value: null,
  description: null,
  esm_name: null,
  json: null,
  secret_name: null,
  tags: null,
  token: null,
  uid_token: null,
  value: null
)