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
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ internal static class ApiUrlsLookups
internal static ApiUrls EqlGet = new ApiUrls(new[] { "/_eql/search/{id}" });
internal static ApiUrls NoNamespaceExists = new ApiUrls(new[] { "/{index}/_doc/{id}" });
internal static ApiUrls NoNamespaceGet = new ApiUrls(new[] { "/{index}/_doc/{id}" });
internal static ApiUrls GraphExplore = new ApiUrls(new[] { "/{index}/_graph/explore" });
internal static ApiUrls IndexManagementDelete = new ApiUrls(new[] { "/{index}" });
internal static ApiUrls IndexManagementExists = new ApiUrls(new[] { "/{index}" });
internal static ApiUrls IndexManagementRefresh = new ApiUrls(new[] { "/_refresh", "/{index}/_refresh" });
Expand Down
Loading