Package com.azure.cosmos.models
Class CosmosBulkItemResponse
java.lang.Object
com.azure.cosmos.models.CosmosBulkItemResponse
Response of a
CosmosItemOperation
request when processed using Bulk by calling
CosmosAsyncContainer.executeBulkOperations(Flux, CosmosBulkExecutionOptions)
.-
Method Summary
Modifier and TypeMethodDescriptionGets the activity ID that identifies the server request made to execute this operation.Gets the cosmos diagnostic for this operation.Gets the end-to-end request latency for the current request to Azure Cosmos DB service.getETag()
Gets the entity tag associated with the current item.<T> T
Gets the item associated with the current result.double
Gets the request charge as request units (RU) consumed by the current operation.Gets the headers associated with the response.Gets retry after.Gets the token used for managing client's consistency requirements.int
Gets the HTTP status code associated with the current result.int
Gets sub status code associated with the current result.boolean
Gets a value indicating whether the current operation completed successfully.
-
Method Details
-
getActivityId
Gets the activity ID that identifies the server request made to execute this operation.- Returns:
- the activity ID that identifies the server request made to execute this operation.
-
getETag
Gets the entity tag associated with the current item. ETags are used for concurrency checking when updating resources.- Returns:
- Entity tag associated with the current item.
-
getRequestCharge
public double getRequestCharge()Gets the request charge as request units (RU) consumed by the current operation.For more information about the RU and factors that can impact the effective charges please visit Request Units in Azure Cosmos DB
- Returns:
- the request charge.
-
getItem
Gets the item associated with the current result.- Type Parameters:
T
- the type parameter- Parameters:
type
- class type for which deserialization is needed.- Returns:
- item associated with the current result.
-
getRetryAfterDuration
Gets retry after.- Returns:
- the retry after
-
getSubStatusCode
public int getSubStatusCode()Gets sub status code associated with the current result.- Returns:
- the sub status code
-
isSuccessStatusCode
public boolean isSuccessStatusCode()Gets a value indicating whether the current operation completed successfully.- Returns:
true
if the current operation completed successfully;false
otherwise.
-
getStatusCode
public int getStatusCode()Gets the HTTP status code associated with the current result.- Returns:
- the status code.
-
getCosmosDiagnostics
Gets the cosmos diagnostic for this operation.- Returns:
- the CosmosDiagnostics
CosmosDiagnostics
-
getSessionToken
Gets the token used for managing client's consistency requirements.- Returns:
- the session token.
-
getResponseHeaders
Gets the headers associated with the response.- Returns:
- the response headers.
-
getDuration
Gets the end-to-end request latency for the current request to Azure Cosmos DB service.- Returns:
- end-to-end request latency for the current request to Azure Cosmos DB service.
-