@voidmerge/doc
    Preparing search index...

    Object store metadata/path.

    This represents the storage location of some data in an object store, including some metadata encoded in that path.

    Index

    Methods

    • Get the appPath component of the ObjMeta path.

      Returns string

    • Get the byte length of the data associated with this ObjMeta path.

      Returns number

    • Get the createdSecs timestamp component of the ObjMeta path.

      Returns number

    • Get the context identifier component of the ObjMeta path.

      Returns string

    • Get the expiresSecs timestamp component of the ObjMeta path.

      Returns number

    • Get the full ObjMeta path.

      Returns string

    • Get the system prefix component of the ObjMeta path.

      Returns string

    • Validate and construct an ObjMeta from a full path string.

      Parameters

      • path: string

      Returns ObjMeta

    • Generate an ObjMeta from components, filling in stubs for unknowns.

      Parameters

      • input: {
            appPath: string;
            byteLength?: string | number;
            createdSecs?: string | number;
            expiresSecs?: string | number;
        }

      Returns ObjMeta