From 47596bd007f9e5f0e94bcd8063a16d6388e89b73 Mon Sep 17 00:00:00 2001 From: Matias Quaranta Date: Mon, 12 Aug 2024 14:30:03 -0700 Subject: [PATCH] Documentation: Fixes AnalyticalStoreTimeToLiveInSeconds API documentation to list correct values (#4638) * Updating API doc * Wording --- .../src/Resource/Settings/ContainerProperties.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs b/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs index 6f6b0c4e8..fea8747a7 100644 --- a/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs +++ b/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs @@ -558,9 +558,9 @@ namespace Microsoft.Azure.Cosmos /// 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 null. + /// 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 null meaning analytical store is turned-off. /// /// /// @@ -568,7 +568,7 @@ namespace Microsoft.Azure.Cosmos /// It cannot be overriden or customizable per item. /// /// - /// When the is null analytical store is turned-off. + /// When the is 0 analytical store is turned-off. /// It means all the item changes in the container are disregarded. /// /// @@ -581,10 +581,10 @@ namespace Microsoft.Azure.Cosmos /// /// /// - /// The example below disables analytical store on a container. + /// The example below disables analytical store on a container if previously enabled. /// /// /// ///