CosmosUserProperties Class

  • java.lang.Object
    • com.azure.cosmos.models.CosmosUserProperties

public final class CosmosUserProperties

The Cosmos user properties.

Constructor Summary

Constructor Description
CosmosUserProperties()

Initialize a user object.

Method Summary

Modifier and Type Method and Description
String getETag()

Get the entity tag associated with the resource.

String getId()

Gets the name of the resource.

Instant getTimestamp()

Get the last modified timestamp associated with the resource.

CosmosUserProperties setId(String id)

Sets the id

Methods inherited from java.lang.Object

Constructor Details

CosmosUserProperties

public CosmosUserProperties()

Initialize a user object.

Method Details

getETag

public String getETag()

Get the entity tag associated with the resource. This is only relevant when getting response from the server.

Returns:

the e tag.

getId

public String getId()

Gets the name of the resource.

Returns:

the name of the resource.

getTimestamp

public Instant getTimestamp()

Get the last modified timestamp associated with the resource. This is only relevant when getting response from the server.

Returns:

the timestamp.

setId

public CosmosUserProperties setId(String id)

Sets the id

Parameters:

id - the name of the resource.

Returns:

the current instance of cosmos user properties

Applies to