Documentation
    Preparing search index...

    Interface StudioSecretType

    Standard properties shared by all persisted base objects.

    interface StudioSecretType {
        createdAt?: string | number;
        createdBy?: any;
        deletedAt?: string | number;
        deletedBy?: any;
        name: string;
        status?: string;
        studioEnvironment: string;
        updatedAt?: string | number;
        updatedBy?: any;
        values: Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt?: string | number

    Epoch timestamp or string detailing creation date.

    createdBy?: any

    Identity referencing the creator of this object.

    deletedAt?: string | number

    Epoch timestamp or string detailing deletion date.

    deletedBy?: any

    Identity referencing the user who deleted this resource.

    name: string

    The name of the resource instance.

    status?: string

    Current status indicator (e.g. 'active', 'deleted').

    studioEnvironment: string
    updatedAt?: string | number

    Epoch timestamp or string detailing update date.

    updatedBy?: any

    Identity referencing the last modifier.

    values: Record<string, any>