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

    Interface ObjectCreateParams

    Parameters for creating a new Storage Object.

    interface ObjectCreateParams {
        content_type: "binary" | "unspecified" | "text" | "gzip" | "tar" | "tgz";
        name: string;
        metadata?: { [key: string]: string } | null;
        ttl_ms?: number | null;
    }
    Index

    Properties

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

    The content type of the Object.

    name: string

    The name of the Object.

    metadata?: { [key: string]: string } | null

    User defined metadata to attach to the object for organization.

    ttl_ms?: number | null

    Optional lifetime of the object in milliseconds, after which the object is automatically deleted. Time starts ticking after the object is created.