Skip to content

Commit

Permalink
Add must_exist to alias remove (#4914) (#4931)
Browse files Browse the repository at this point in the history
Relates: elastic/elasticsearch#58100

Co-authored-by: Russ Cam <[email protected]>
  • Loading branch information
github-actions[bot] and russcam authored Aug 5, 2020
1 parent 3324932 commit d37b8af
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,25 @@ public class AliasRemoveOperation
public IEnumerable<string> Aliases { get; set; }

/// <summary>
/// The index to which to add the alias.
/// The index to which to remove the alias.
/// Multiple indices can be specified with <see cref="Indices"/>
/// </summary>
[DataMember(Name ="index")]
public IndexName Index { get; set; }

/// <summary>
/// The indices to which to add the alias
/// The indices to which to remove the alias
/// </summary>
[DataMember(Name = "indices")]
[JsonFormatter(typeof(IndicesFormatter))]
public Indices Indices { get; set; }

/// <summary>
/// If <c>true</c>, the alias to remove must exist. Defaults to <c>false</c>.
/// <para />
/// Valid in Elasticsearch 7.9.0+
/// </summary>
[DataMember(Name = "must_exist")]
public bool? MustExist { get; set; }
}
}

0 comments on commit d37b8af

Please sign in to comment.