Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.evergreens.ai/llms.txt

Use this file to discover all available pages before exploring further.

AuthorAuthor: Adnan Ali
Tedi SecretEntity defines the structure and properties of a secret used in Tedi’s Secrets API.

Definition

Below is the definition for the SecretEntity:
SecretEntity
interface SecretEntity {
  id: string;
  name: string;
  value: string; // Always encrypted
  created_at: string;
  updated_at: string;
}
PropertyTypeDescription
idstringThe unique identifier of the secret.
namestringThe name of the secret.
valuestringThe value of the secret, which is always encrypted.
created_atstringThe timestamp when the secret was created.
updated_atstringThe timestamp when the secret was last updated.