-
Methods in com.couchbase.client.core.endpoint.http with parameters of type CoreCommonOptions
Modifier and Type |
Method |
Description |
static CoreHttpRequest.Builder |
CoreHttpRequest.builder(CoreCommonOptions options,
CoreContext coreContext,
com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method,
CoreHttpPath path,
RequestTarget target) |
|
CoreHttpRequest.Builder |
CoreHttpClient.delete(CoreHttpPath path,
CoreCommonOptions options) |
|
CoreHttpRequest.Builder |
CoreHttpClient.get(CoreHttpPath path,
CoreCommonOptions options) |
|
CoreHttpRequest.Builder |
CoreHttpClient.newRequest(com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method,
CoreHttpPath path,
CoreCommonOptions options) |
|
CoreHttpRequest.Builder |
CoreHttpClient.post(CoreHttpPath path,
CoreCommonOptions options) |
|
CoreHttpRequest.Builder |
CoreHttpClient.put(CoreHttpPath path,
CoreCommonOptions options) |
|
-
Methods in com.couchbase.client.core.manager with parameters of type CoreCommonOptions
Modifier and Type |
Method |
Description |
CompletableFuture<Void> |
CoreAnalyticsLinkManager.createLink(Map<String,String> link,
CoreCommonOptions options) |
|
CompletableFuture<Void> |
CoreViewIndexManager.dropDesignDocument(String name,
boolean production,
CoreCommonOptions options) |
Removes a design document from the server.
|
CompletableFuture<Void> |
CoreAnalyticsLinkManager.dropLink(String linkName,
String dataverse,
CoreCommonOptions options) |
|
CompletableFuture<Map<String,com.couchbase.client.core.deps.com.fasterxml.jackson.databind.node.ObjectNode>> |
CoreViewIndexManager.getAllDesignDocuments(boolean production,
CoreCommonOptions options) |
Returns map of design doc name to JSON.
|
CompletableFuture<byte[]> |
CoreAnalyticsLinkManager.getAllLinks(String dataverseName,
String linkType,
CoreCommonOptions options) |
|
CompletableFuture<byte[]> |
CoreViewIndexManager.getDesignDocument(String name,
boolean production,
CoreCommonOptions options) |
Returns the named design document from the specified namespace.
|
CompletableFuture<Void> |
CoreViewIndexManager.publishDesignDocument(String name,
CoreCommonOptions options) |
Convenience method that gets a the document from the development namespace
and upserts it to the production namespace.
|
CompletableFuture<Void> |
CoreAnalyticsLinkManager.replaceLink(Map<String,String> link,
CoreCommonOptions options) |
|
CompletableFuture<Void> |
CoreViewIndexManager.upsertDesignDocument(String docName,
byte[] doc,
boolean production,
CoreCommonOptions options) |
Stores the design document on the server under the specified namespace, replacing any existing document
with the same name.
|