Parameters for the postReplicator operation.

interface PostReplicatorParams {
    batch?: string;
    headers?: OutgoingHttpHeaders;
    replicationDocument: CloudantV1.ReplicationDocument;
    signal?: GenericAbortSignal;
}

Hierarchy

  • DefaultParams
    • PostReplicatorParams

Properties

batch?: string

Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.

headers?: OutgoingHttpHeaders
replicationDocument: CloudantV1.ReplicationDocument

HTTP request body for replication operations.

signal?: GenericAbortSignal