CosmosPatchItemRequestOptions Class

public class CosmosPatchItemRequestOptions
extends CosmosItemRequestOptions

Encapsulates options for CosmosPatchOperations

Constructor Summary

Constructor Description
CosmosPatchItemRequestOptions()

Constructor

Method Summary

Modifier and Type Method and Description
String getFilterPredicate()

Gets the FilterPredicate associated with the request in the Azure Cosmos DB service.

CosmosPatchItemRequestOptions setFilterPredicate(String filterPredicate)

Sets the FilterPredicate associated with the request in the Azure Cosmos DB service.

Methods inherited from CosmosItemRequestOptions

Methods inherited from java.lang.Object

Constructor Details

CosmosPatchItemRequestOptions

public CosmosPatchItemRequestOptions()

Constructor

Method Details

getFilterPredicate

public String getFilterPredicate()

Gets the FilterPredicate associated with the request in the Azure Cosmos DB service.

Returns:

the FilterPredicate associated with the request.

setFilterPredicate

public CosmosPatchItemRequestOptions setFilterPredicate(String filterPredicate)

Sets the FilterPredicate associated with the request in the Azure Cosmos DB service. for example: setFilterPredicate("from c where c.taskNum = 3").

Parameters:

filterPredicate - the filterPredicate associated with the request.

Returns:

the current request options

Applies to