Skip to content
Merged
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
13 changes: 13 additions & 0 deletions src/Nest/XPack/Ilm/ExplainLifecycle/ExplainLifecycleResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,25 @@ public class LifecycleExplain
[JsonFormatter(typeof(DateTimeOffsetEpochMillisecondsFormatter))]
public DateTimeOffset ActionTime { get; internal set; }

/// <summary>
/// Indicates if retrying a failed step can overcome the error.
/// If this is true, the failed step will be retried automatically.
/// </summary>
[DataMember(Name = "is_auto_retryable_error")]
public bool? IsAutoRetryableError { get; internal set; }

/// <summary>
/// The step that caused the error, if applicable.
/// </summary>
[DataMember(Name = "failed_step")]
public string FailedStep { get; internal set; }

/// <summary>
/// Number of attempted automatic retries to execute the failed step, if applicable.
/// </summary>
[DataMember(Name = "failed_step_retry_count")]
public int? FailedStepRetryCount { get; internal set; }

[DataMember(Name = "index")]
public IndexName Index { get; internal set; }

Expand Down