Class CosmosContainerProperties
A database may contain zero or more named containers and each container consists of zero or more JSON items. Being schema-free, the items in a container do not need to share the same structure or fields. Since containers are application resources, they can be authorized using either the master key or resource keys.
-
Constructor Summary
ConstructorDescriptionCosmosContainerProperties
(String id, PartitionKeyDefinition partitionKeyDefinition) ConstructorCosmosContainerProperties
(String id, String partitionKeyPath) Constructor -
Method Summary
Modifier and TypeMethodDescriptionGets the analytical store time to live in seconds for items in a container from the Azure Cosmos DB service.Gets the changeFeedPolicy for this container in the Azure Cosmos DB service.Gets the ClientEncryptionPolicy that is used for encrypting item fieldsGets the computedProperties for this container in the Azure Cosmos DB service.Gets the conflictResolutionPolicy that is used for resolving conflicting writes on items in different regions, in a container in the Azure Cosmos DB service.Gets the container's default time-to-live value.getETag()
Get the entity tag associated with the resource.getId()
Gets the name of the resource.Gets the container's indexing policy.Gets the containers's partition key definition.Gets the ID associated with the resource.Get the last modified timestamp associated with the resource.Gets the containers unique key policysetAnalyticalStoreTimeToLiveInSeconds
(Integer timeToLive) Sets the analytical store time to live in seconds for items in a container from the Azure Cosmos DB service.Sets the changeFeedPolicy for this container in the Azure Cosmos DB service.Sets the ClientEncryptionPolicy that is used for encrypting item fieldssetComputedProperties
(Collection<ComputedProperty> computedProperties) Sets the computedProperties for this container in the Azure Cosmos DB service.Sets the conflictResolutionPolicy that is used for resolving conflicting writes on items in different regions, in a container in the Azure Cosmos DB service.setDefaultTimeToLiveInSeconds
(Integer timeToLive) Sets the container's default time-to-live value.Sets the name of the resource.setIndexingPolicy
(IndexingPolicy indexingPolicy) Sets the container's indexing policysetPartitionKeyDefinition
(PartitionKeyDefinition partitionKeyDefinition) Sets the containers's partition key definition.setUniqueKeyPolicy
(UniqueKeyPolicy uniqueKeyPolicy) Sets the Containers unique key policy
-
Constructor Details
-
CosmosContainerProperties
Constructor- Parameters:
id
- id of the ContainerpartitionKeyPath
- partition key path
-
CosmosContainerProperties
Constructor- Parameters:
id
- id of the containerpartitionKeyDefinition
- thePartitionKeyDefinition
-
-
Method Details
-
getIndexingPolicy
Gets the container's indexing policy.- Returns:
- the indexing policy.
-
setIndexingPolicy
Sets the container's indexing policy- Parameters:
indexingPolicy
-IndexingPolicy
the indexing policy- Returns:
- the CosmosContainerProperties.
-
getUniqueKeyPolicy
Gets the containers unique key policy- Returns:
- the unique key policy
-
setUniqueKeyPolicy
Sets the Containers unique key policy- Parameters:
uniqueKeyPolicy
- the unique key policy- Returns:
- the CosmosContainerProperties.
-
getPartitionKeyDefinition
Gets the containers's partition key definition.- Returns:
- the partition key definition.
-
setPartitionKeyDefinition
public CosmosContainerProperties setPartitionKeyDefinition(PartitionKeyDefinition partitionKeyDefinition) Sets the containers's partition key definition.- Parameters:
partitionKeyDefinition
- the partition key definition.- Returns:
- the CosmosContainerProperties.
-
getConflictResolutionPolicy
Gets the conflictResolutionPolicy that is used for resolving conflicting writes on items in different regions, in a container in the Azure Cosmos DB service.- Returns:
- ConflictResolutionPolicy
-
setConflictResolutionPolicy
Sets the conflictResolutionPolicy that is used for resolving conflicting writes on items in different regions, in a container in the Azure Cosmos DB service.- Parameters:
value
- ConflictResolutionPolicy to be used.- Returns:
- the CosmosContainerProperties.
-
getChangeFeedPolicy
@Beta(value=V4_12_0, warningText="Preview API - subject to change in non-backwards compatible way") public ChangeFeedPolicy getChangeFeedPolicy()Gets the changeFeedPolicy for this container in the Azure Cosmos DB service.- Returns:
- ChangeFeedPolicy
-
setChangeFeedPolicy
@Beta(value=V4_12_0, warningText="Preview API - subject to change in non-backwards compatible way") public CosmosContainerProperties setChangeFeedPolicy(ChangeFeedPolicy value) Sets the changeFeedPolicy for this container in the Azure Cosmos DB service.- Parameters:
value
- ChangeFeedPolicy to be used.- Returns:
- the CosmosContainerProperties.
-
getComputedProperties
Gets the computedProperties for this container in the Azure Cosmos DB service.- Returns:
- the computedProperties.
-
setComputedProperties
public CosmosContainerProperties setComputedProperties(Collection<ComputedProperty> computedProperties) Sets the computedProperties for this container in the Azure Cosmos DB service. For more information on how to use computed properties visit Computed Properties in Azure Cosmos DB- Parameters:
computedProperties
- the computedProperties.- Returns:
- the CosmosContainerProperties.
-
getDefaultTimeToLiveInSeconds
Gets the container's default time-to-live value.- Returns:
- the default time-to-live value in seconds.
-
setDefaultTimeToLiveInSeconds
Sets the container's default time-to-live value.The default time-to-live value on a container is an optional property. If set, the items within the container expires after the specified number of seconds since their last write time. The value of this property should be one of the following:
null - indicates evaluation of time-to-live is disabled and items within the container will never expire, regardless whether individual items have their time-to-live set.
nonzero positive integer - indicates the default time-to-live value for all items within the container. This value can be overridden by individual items time-to-live value.
-1 - indicates by default all items within the container never expire. This value can be overridden by individual items time-to-live value.
- Parameters:
timeToLive
- the default time-to-live value in seconds.- Returns:
- the CosmosContainerProperties.
-
setAnalyticalStoreTimeToLiveInSeconds
Sets the analytical store time to live in seconds for items in a container from the Azure Cosmos DB service. It is an optional property. A valid value must be either a nonzero positive integer, '-1', or 0. By default, AnalyticalStoreTimeToLive is set to 0 meaning the analytical store is turned off for the container; -1 means items in analytical store never expire. The unit of measurement is seconds. The maximum allowed value is 2147483647.- Parameters:
timeToLive
- the analytical store time to live in seconds.- Returns:
- the CosmosContainerProperties.
-
getAnalyticalStoreTimeToLiveInSeconds
Gets the analytical store time to live in seconds for items in a container from the Azure Cosmos DB service. It is an optional property. A valid value must be either a nonzero positive integer, '-1', or 0. By default, AnalyticalStoreTimeToLive is set to 0 meaning the analytical store is turned off for the container; -1 means items in analytical store never expire. The unit of measurement is seconds. The maximum allowed value is 2147483647.- Returns:
- analytical ttl
-
getId
Gets the name of the resource.- Returns:
- the name of the resource.
-
setId
Sets the name of the resource.- Parameters:
id
- the name of the resource.- Returns:
- the current instance of
CosmosContainerProperties
.
-
getResourceId
Gets the ID associated with the resource.- Returns:
- the ID associated with the resource.
-
getTimestamp
Get the last modified timestamp associated with the resource. This is only relevant when getting response from the server.- Returns:
- the timestamp.
-
getETag
Get the entity tag associated with the resource. This is only relevant when getting response from the server.- Returns:
- the e tag.
-
getClientEncryptionPolicy
Gets the ClientEncryptionPolicy that is used for encrypting item fields- Returns:
- ClientEncryptionPolicy
-
setClientEncryptionPolicy
Sets the ClientEncryptionPolicy that is used for encrypting item fields- Parameters:
value
- ClientEncryptionPolicy to be used.- Returns:
- the CosmosContainerProperties.
-