You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add features property to indices.get (#1562) (#1574)
* Add features property to indices.get
* linter linter linter
* Update specification/indices/get/IndicesGetRequest.ts
Co-authored-by: Tomas Della Vedova <[email protected]>
* fresh output
Co-authored-by: Tomas Della Vedova <[email protected]>
Co-authored-by: Philip Krauss <[email protected]>
Co-authored-by: Tomas Della Vedova <[email protected]>
Copy file name to clipboardExpand all lines: specification/indices/get/IndicesGetRequest.ts
+29-3Lines changed: 29 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,20 +22,33 @@ import { ExpandWildcards, Indices } from '@_types/common'
22
22
import{Time}from'@_types/Time'
23
23
24
24
/**
25
+
* Returns information about one or more indices. For data streams, the API returns information about the
26
+
* stream’s backing indices.
25
27
* @rest_spec_name indices.get
26
28
* @since 0.0.0
27
29
* @stability stable
30
+
* @index_privileges view_index_metadata, manage
28
31
*/
29
32
exportinterfaceRequestextendsRequestBase{
30
33
path_parts: {
31
-
/** Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (*) are supported. */
34
+
/**
35
+
* Comma-separated list of data streams, indices, and index aliases used to limit the request.
36
+
* Wildcard expressions (*) are supported.
37
+
*/
32
38
index: Indices
33
39
}
34
40
query_parameters: {
35
-
/** @server_default true */
41
+
/**
42
+
* If false, the request returns an error if any wildcard expression, index alias, or _all value targets only
43
+
* missing or closed indices. This behavior applies even if the request targets other open indices. For example,
44
+
* a request targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar.
45
+
* @server_default true
46
+
*/
36
47
allow_no_indices?: boolean
37
48
/**
38
-
* Type of index that wildcard expressions can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as open,hidden.
49
+
* Type of index that wildcard expressions can match. If the request can target data streams, this argument
50
+
* determines whether wildcard expressions match hidden data streams. Supports comma-separated values,
0 commit comments