export interface Secret {
    /**
     * A name for the secret used to identify it for use in Zambda Functions. May contain letters, numbers, dashes, and underscores.
     */
    name: string;
    /**
     * The secret value. Common examples include M2M Client credentials used to call Oystehr APIs, and third-party API keys used to integrate with external systems.
     */
    value: string;
}
