Skip to content

Commit

Permalink
Documentation: Fixes AnalyticalStoreTimeToLiveInSeconds API documenta…
Browse files Browse the repository at this point in the history
…tion to list correct values (#4638)

* Updating API doc

* Wording
  • Loading branch information
ealsur authored Aug 12, 2024
1 parent c2043ae commit 47596bd
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,17 +558,17 @@ public IReadOnlyList<string> PartitionKeyPaths
/// It is an optional property.
///
/// The unit of measurement is seconds. The maximum allowed value is 2147483647.
/// A valid value must be either a nonzero positive integer, '-1' or <c>null</c>.
/// When updating this property, a valid value must be either a positive integer or '-1'.
///
/// By default, AnalyticalStoreTimeToLiveInSeconds is set to null meaning analytical store is turned-off.
/// By default, AnalyticalStoreTimeToLiveInSeconds is <c>null</c> meaning analytical store is turned-off.
/// </value>
/// <remarks>
/// <para>
/// The <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is applicable to all the item changes in the container.
/// It cannot be overriden or customizable per item.
/// </para>
/// <para>
/// When the <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is <c>null</c> analytical store is turned-off.
/// When the <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is 0 analytical store is turned-off.
/// It means all the item changes in the container are disregarded.
/// </para>
/// <para>
Expand All @@ -581,10 +581,10 @@ public IReadOnlyList<string> PartitionKeyPaths
/// </para>
/// </remarks>
/// <example>
/// The example below disables analytical store on a container.
/// The example below disables analytical store on a container if previously enabled.
/// <code language="c#">
/// <![CDATA[
/// container.AnalyticalStoreTimeToLiveInSeconds = null;
/// container.AnalyticalStoreTimeToLiveInSeconds = 0;
/// ]]>
/// </code>
/// </example>
Expand Down

0 comments on commit 47596bd

Please sign in to comment.