Modifier and Type | Method and Description |
---|---|
CosmosItemRequestOptions |
CosmosItemRequestOptions.accessCondition(AccessCondition accessCondition)
Sets the conditions associated with the request.
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.consistencyLevel(ConsistencyLevel consistencyLevel)
Sets the consistency level required for the request.
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.indexingDirective(IndexingDirective indexingDirective)
Sets the indexing directive (index, do not index etc).
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.partitionKey(PartitionKey partitionKey)
Sets the partition key
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.postTriggerInclude(List<String> postTriggerInclude)
Sets the triggers to be invoked after the operation.
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.preTriggerInclude(List<String> preTriggerInclude)
Sets the triggers to be invoked before the operation.
|
CosmosItemRequestOptions |
CosmosItemRequestOptions.sessionToken(String sessionToken)
Sets the token for use with session consistency.
|
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<CosmosItemResponse> |
CosmosContainer.createItem(Object item,
CosmosItemRequestOptions options)
Creates a cosmos item.
|
reactor.core.publisher.Mono<CosmosItemResponse> |
CosmosItem.delete(CosmosItemRequestOptions options)
Deletes the item.
|
reactor.core.publisher.Mono<CosmosItemResponse> |
CosmosItem.read(CosmosItemRequestOptions options)
Reads an item.
|
reactor.core.publisher.Mono<CosmosItemResponse> |
CosmosItem.replace(Object item,
CosmosItemRequestOptions options)
Replaces an item with the passed in item.
|
reactor.core.publisher.Mono<CosmosItemResponse> |
CosmosContainer.upsertItem(Object item,
CosmosItemRequestOptions options)
Upserts a cosmos item.
|
Copyright © 2019. All rights reserved.