Documentation
    Preparing search index...

    Interface StudioBackendType

    Standard properties shared by all persisted base objects.

    interface StudioBackendType {
        createdAt?: string | number;
        createdBy?: any;
        credentials?: string;
        database?: string;
        deletedAt?: string | number;
        deletedBy?: any;
        engine: string;
        filePath?: string;
        host?: string;
        isDefault?: boolean;
        name: string;
        password?: string;
        port?: number;
        status?: string;
        studioProject?: string;
        updatedAt?: string | number;
        updatedBy?: any;
        username?: string;
        [x: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [x: string]: any
    Index

    Properties

    createdAt?: string | number

    Epoch timestamp or string detailing creation date.

    createdBy?: any

    Identity referencing the creator of this object.

    credentials?: string
    database?: string
    deletedAt?: string | number

    Epoch timestamp or string detailing deletion date.

    deletedBy?: any

    Identity referencing the user who deleted this resource.

    engine: string
    filePath?: string
    host?: string
    isDefault?: boolean
    name: string

    The name of the resource instance.

    password?: string
    port?: number
    status?: string

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

    studioProject?: string
    updatedAt?: string | number

    Epoch timestamp or string detailing update date.

    updatedBy?: any

    Identity referencing the last modifier.

    username?: string