Modifier and Type | Field and Description |
---|---|
static PartitionKey |
PartitionKey.NONE |
Modifier and Type | Method and Description |
---|---|
PartitionKey |
CosmosStoredProcedureRequestOptions.getPartitionKey()
Gets the partition key used to identify the current request's target partition.
|
PartitionKey |
ChangeFeedOptions.getPartitionKey()
Gets the partition key used to identify the current request's target
partition.
|
PartitionKey |
FeedOptions.partitionKey()
Gets the partition key used to identify the current request's target
partition.
|
Modifier and Type | Method and Description |
---|---|
<T> reactor.core.publisher.Mono<CosmosAsyncItemResponse<T>> |
CosmosAsyncContainer.createItem(T item,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Creates a cosmos item.
|
<T> CosmosItemResponse<T> |
CosmosContainer.createItem(T item,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Create a cosmos item synchronously.
|
reactor.core.publisher.Mono<CosmosAsyncItemResponse> |
CosmosAsyncContainer.deleteItem(String itemId,
PartitionKey partitionKey)
Deletes the item.
|
reactor.core.publisher.Mono<CosmosAsyncItemResponse> |
CosmosAsyncContainer.deleteItem(String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Deletes the item.
|
CosmosItemResponse |
CosmosContainer.deleteItem(String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Delete cosmos sync item response.
|
FeedOptions |
FeedOptions.partitionKey(PartitionKey partitionkey)
Sets the partition key used to identify the current request's target
partition.
|
<T> reactor.core.publisher.Mono<CosmosAsyncItemResponse<T>> |
CosmosAsyncContainer.readItem(String itemId,
PartitionKey partitionKey,
Class<T> itemType)
Reads an item.
|
<T> CosmosItemResponse<T> |
CosmosContainer.readItem(String itemId,
PartitionKey partitionKey,
Class<T> itemType)
Read cosmos sync item response.
|
<T> reactor.core.publisher.Mono<CosmosAsyncItemResponse<T>> |
CosmosAsyncContainer.readItem(String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options,
Class<T> itemType)
Reads an item.
|
<T> CosmosItemResponse<T> |
CosmosContainer.readItem(String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options,
Class<T> itemType)
Read cosmos sync item response.
|
<T> reactor.core.publisher.Mono<CosmosAsyncItemResponse<T>> |
CosmosAsyncContainer.replaceItem(T item,
String itemId,
PartitionKey partitionKey)
Replaces an item with the passed in item.
|
<T> reactor.core.publisher.Mono<CosmosAsyncItemResponse<T>> |
CosmosAsyncContainer.replaceItem(T item,
String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Replaces an item with the passed in item.
|
<T> CosmosItemResponse<T> |
CosmosContainer.replaceItem(T item,
String itemId,
PartitionKey partitionKey,
CosmosItemRequestOptions options)
Replace cosmos sync item response.
|
CosmosStoredProcedureRequestOptions |
CosmosStoredProcedureRequestOptions.setPartitionKey(PartitionKey partitionKey)
Sets the partition key used to identify the current request's target partition.
|
ChangeFeedOptions |
ChangeFeedOptions.setPartitionKey(PartitionKey partitionkey)
Sets the partition key used to identify the current request's target
partition.
|
CosmosPermissionProperties |
CosmosPermissionProperties.setResourcePartitionKey(PartitionKey partitionKey)
Sets the resource partition key associated with this permission object.
|
Modifier and Type | Method and Description |
---|---|
static <T> FeedResponse<T> |
ItemOperations.readMany(CosmosContainer container,
List<org.apache.commons.lang3.tuple.Pair<String,PartitionKey>> itemKeyList,
Class<T> klass)
Note: although this method is public, it is not part of public API and may change in future.
|
static <T> reactor.core.publisher.Mono<FeedResponse<T>> |
ItemOperations.readManyAsync(CosmosAsyncContainer container,
List<org.apache.commons.lang3.tuple.Pair<String,PartitionKey>> itemKeyList,
Class<T> klass)
Note: although this method is public, it is not part of public API and may change in future.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.