Class AliasRemoveOperation
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class AliasRemoveOperation
Properties
| Edit this page View SourceAlias
An alias to remove. Multiple aliases can be specified with Aliases
Declaration
[DataMember(Name = "alias")]
public string Alias { get; set; }
Property Value
Type | Description |
---|---|
string |
Aliases
A collection of aliases to remove
Declaration
[DataMember(Name = "aliases")]
public IEnumerable<string> Aliases { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Index
The index to which to remove the alias. Multiple indices can be specified with Indices
Declaration
[DataMember(Name = "index")]
public IndexName Index { get; set; }
Property Value
Type | Description |
---|---|
IndexName |
Indices
The indices to which to remove the alias
Declaration
[DataMember(Name = "indices")]
public Indices Indices { get; set; }
Property Value
Type | Description |
---|---|
Indices |
MustExist
If true
, the alias to remove must exist. Defaults to false
.
Declaration
[DataMember(Name = "must_exist")]
public bool? MustExist { get; set; }
Property Value
Type | Description |
---|---|
bool? |