@runloop/api-client - v1.4.0
    Preparing search index...

    Interface SecretView

    A Secret represents a key-value pair that can be securely stored and used in Devboxes as environment variables.

    interface SecretView {
        id: string;
        create_time_ms: number;
        name: string;
        update_time_ms: number;
    }
    Index

    Properties

    id: string

    The unique identifier of the Secret.

    create_time_ms: number

    Creation time of the Secret (Unix timestamp in milliseconds).

    name: string

    The globally unique name of the Secret. Used as the environment variable name in Devboxes.

    update_time_ms: number

    Last update time of the Secret (Unix timestamp in milliseconds).