Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions specification/ilm/_types/Phase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ export class SetPriorityAction {
}

export class RolloverAction {
/**
* The `max_size` condition has been deprecated in 9.3.0 and `max_primary_shard_size` should be used instead
* @deprecated 9.3.0 */
max_size?: ByteSize
max_primary_shard_size?: ByteSize
max_age?: Duration
Expand Down
3 changes: 3 additions & 0 deletions specification/indices/rollover/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export class RolloverConditions {
max_age_millis?: DurationValue<UnitMillis>
min_docs?: long
max_docs?: long
/**
* The `max_size` condition has been deprecated in 9.3.0 and `max_primary_shard_size` should be used instead
* @deprecated 9.3.0 */
max_size?: ByteSize
max_size_bytes?: long
min_size?: ByteSize
Expand Down
Loading