-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to views and analyzers for 3.10
- Loading branch information
Showing
3 changed files
with
90 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace ArangoDBNetStandard.ViewApi.Models | ||
{ | ||
public class SearchAliasIndex | ||
{ | ||
/// <summary> | ||
/// Possible value for <see cref="Operation"/> | ||
/// </summary> | ||
public const string SearchAliasIndexAddOperation = "add"; | ||
|
||
/// <summary> | ||
/// Possible value for <see cref="Operation"/> | ||
/// </summary> | ||
public const string SearchAliasIndexDelOperation = "del"; | ||
|
||
/// <summary> | ||
/// Possible value for <see cref="Operation"/> | ||
/// </summary> | ||
public const string SearchAliasIndexNoOperation = ""; | ||
|
||
/// <summary> | ||
/// Name of the collection | ||
/// </summary> | ||
public string Collection { get; set; } | ||
|
||
/// <summary> | ||
/// Name of the index | ||
/// </summary> | ||
public string Index { get; set; } | ||
|
||
/// <summary> | ||
/// Optional. Type of operation. | ||
/// Possible values: | ||
/// <see cref="SearchAliasIndexAddOperation"/>, | ||
/// <see cref="SearchAliasIndexDelOperation"/>, or | ||
/// <see cref="SearchAliasIndexNoOperation"/> | ||
/// </summary> | ||
public string Operation { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters