diff --git a/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs b/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs index 6f6b0c4e8b..fea8747a79 100644 --- a/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs +++ b/Microsoft.Azure.Cosmos/src/Resource/Settings/ContainerProperties.cs @@ -558,9 +558,9 @@ public IReadOnlyList 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 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 @@ public IReadOnlyList PartitionKeyPaths /// 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 @@ public IReadOnlyList PartitionKeyPaths /// /// /// - /// The example below disables analytical store on a container. + /// The example below disables analytical store on a container if previously enabled. /// /// /// ///