Databricks SDK for JavaScript
    Preparing search index...

    Interface GetFileMetadataRequest

    Get file metadata

    interface GetFileMetadataRequest {
        filePath?: string;
        ifUnmodifiedSince?: string;
        range?: string;
    }
    Index

    Properties

    filePath?: string

    The absolute path of the file.

    ifUnmodifiedSince?: string

    Download the file only if it has not been modified since the specified timestamp. If it has, a 412 Precondition Failed error will be returned. See RFC 9110 for further details.

    range?: string

    The range of bytes to retrieve. The range is inclusive and zero-based, see RFC 9110 for further details.