CosmosItemResponse<T> Class

  • java.lang.Object
    • com.azure.cosmos.models.CosmosItemResponse<T>

Type Parameters

T

the type parameter

public class CosmosItemResponse

The type Cosmos item response. This contains the item and response methods

Method Summary

Modifier and Type Method and Description
String getActivityId()

Gets the Activity ID for the request.

String getCurrentResourceQuotaUsage()

Gets the current size of this entity (in megabytes (MB) for server resources and in count for master resources)

CosmosDiagnostics getDiagnostics()

Gets the diagnostics information for the current request to Azure Cosmos DB service.

Duration getDuration()

Gets the end-to-end request latency for the current request to Azure Cosmos DB service.

String getETag()

Gets the ETag from the response headers.

T getItem()

Gets the resource.

String getMaxResourceQuota()

Gets the maximum size limit for this entity (in megabytes (MB) for server resources and in count for master resources).

double getRequestCharge()

Gets the request charge as request units (RU) consumed by the operation.

Map<String,String> getResponseHeaders()

Gets the headers associated with the response.

String getSessionToken()

Gets the token used for managing client's consistency requirements.

int getStatusCode()

Gets the HTTP status code associated with the response.

Methods inherited from java.lang.Object

Method Details

getActivityId

public String getActivityId()

Gets the Activity ID for the request.

Returns:

the activity getId.

getCurrentResourceQuotaUsage

public String getCurrentResourceQuotaUsage()

Gets the current size of this entity (in megabytes (MB) for server resources and in count for master resources)

Returns:

the current resource quota usage.

getDiagnostics

public CosmosDiagnostics getDiagnostics()

Gets the diagnostics information for the current request to Azure Cosmos DB service.

Returns:

diagnostics information for the current request to Azure Cosmos DB service.

getDuration

public Duration 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.

getETag

public String getETag()

Gets the ETag from the response headers. This is only relevant when getting response from the server. Null in case of delete operation.

Returns:

ETag

getItem

public T getItem()

Gets the resource.

Returns:

the resource

getMaxResourceQuota

public String getMaxResourceQuota()

Gets the maximum size limit for this entity (in megabytes (MB) for server resources and in count for master resources).

Returns:

the max resource quota.

getRequestCharge

public double getRequestCharge()

Gets the request charge as request units (RU) consumed by the 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.

getResponseHeaders

public Map getResponseHeaders()

Gets the headers associated with the response.

Returns:

the response headers.

getSessionToken

public String getSessionToken()

Gets the token used for managing client's consistency requirements.

Returns:

the session token.

getStatusCode

public int getStatusCode()

Gets the HTTP status code associated with the response.

Returns:

the status code.

Applies to