Show / Hide Table of Contents

Class AccountConsistencyPolicyArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AccountConsistencyPolicyArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.CosmosDB.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class AccountConsistencyPolicyArgs : ResourceArgs

Constructors

View Source

AccountConsistencyPolicyArgs()

Declaration
public AccountConsistencyPolicyArgs()

Properties

View Source

ConsistencyLevel

The Consistency Level to use for this CosmosDB Account - can be either BoundedStaleness, Eventual, Session, Strong or ConsistentPrefix.

Declaration
public Input<string> ConsistencyLevel { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaxIntervalInSeconds

When used with the Bounded Staleness consistency level, this value represents the time amount of staleness (in seconds) tolerated. Accepted range for this value is 5 - 86400 (1 day). Defaults to 5. Required when consistency_level is set to BoundedStaleness.

Declaration
public Input<int> MaxIntervalInSeconds { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MaxStalenessPrefix

When used with the Bounded Staleness consistency level, this value represents the number of stale requests tolerated. Accepted range for this value is 10 – 2147483647. Defaults to 100. Required when consistency_level is set to BoundedStaleness.

Declaration
public Input<int> MaxStalenessPrefix { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.