Interface IRolloverConditions
Conditions that must be satisfied for a new index to be created with the rollover index API
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IRolloverConditions
Properties
| Edit this page View SourceMaxAge
The maximum age of the index
Declaration
[DataMember(Name = "max_age")]
Time MaxAge { get; set; }
Property Value
Type | Description |
---|---|
Time |
MaxDocs
The maximum number of documents
Declaration
[DataMember(Name = "max_docs")]
long? MaxDocs { get; set; }
Property Value
Type | Description |
---|---|
long? |
MaxSize
The maximum size of the index e.g. "5gb"
Declaration
[DataMember(Name = "max_size")]
string MaxSize { get; set; }
Property Value
Type | Description |
---|---|
string |