@ibm-cloud/cloudant - v0.12.4
    Preparing search index...

    Interface HeadAttachmentParams

    Parameters for the headAttachment operation.

    interface HeadAttachmentParams {
        attachmentName: string;
        db: string;
        docId: string;
        headers?: OutgoingHttpHeaders;
        ifMatch?: string;
        ifNoneMatch?: string;
        rev?: string;
        signal?: GenericAbortSignal;
    }

    Hierarchy

    • DefaultParams
      • HeadAttachmentParams
    Index

    Properties

    attachmentName: string

    Path parameter to specify the attachment name.

    db: string

    Path parameter to specify the database name.

    docId: string

    Path parameter to specify the document ID.

    headers?: OutgoingHttpHeaders
    ifMatch?: string

    Header parameter for a conditional HTTP request matching an ETag.

    ifNoneMatch?: string

    Header parameter for a conditional HTTP request not matching an ETag.

    rev?: string

    Query parameter to specify a document revision.

    signal?: GenericAbortSignal