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

    Interface ObjectView

    An Object represents a stored data entity with metadata.

    interface ObjectView {
        id: string;
        content_type: "binary" | "unspecified" | "text" | "gzip" | "tar" | "tgz";
        create_time_ms: number;
        name: string;
        state: "UPLOADING" | "READ_ONLY" | "DELETED" | "ERROR";
        delete_after_time_ms?: number | null;
        size_bytes?: number | null;
        upload_url?: string | null;
    }
    Index

    Properties

    id: string

    The unique identifier of the Object.

    content_type: "binary" | "unspecified" | "text" | "gzip" | "tar" | "tgz"

    The content type of the Object.

    create_time_ms: number

    The creation time of the Object in milliseconds since epoch.

    name: string

    The name of the Object.

    state: "UPLOADING" | "READ_ONLY" | "DELETED" | "ERROR"

    The current state of the Object.

    delete_after_time_ms?: number | null

    The time after which the Object will be deleted in milliseconds since epoch.

    size_bytes?: number | null

    The size of the Object content in bytes (null until uploaded).

    upload_url?: string | null

    Presigned URL for uploading content to S3 (only present on create).