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
* For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`.
59
59
* @server_default true
60
60
*/
61
-
allow_no_indices?: boolean// default: true
61
+
allow_no_indices?: boolean
62
62
/**
63
63
* The type of index that wildcard patterns can match.
64
64
* If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
65
65
* It supports comma-separated values, such as `open,hidden`.
66
66
* @server_default open
67
67
*/
68
-
expand_wildcards?: ExpandWildcards// default: open
68
+
expand_wildcards?: ExpandWildcards
69
69
/**
70
70
* If `false`, the request returns an error if it targets a missing or closed index.
71
71
* @server_default false
72
72
*/
73
-
ignore_unavailable?: boolean// default: false
73
+
ignore_unavailable?: boolean
74
74
/**
75
75
* The period to wait for the master node.
76
76
* If the master node is not available before the timeout expires, the request fails and returns an error.
77
77
* It can also be set to `-1` to indicate that the request should never timeout.
78
78
* @server_default 30s
79
79
*/
80
-
master_timeout?: Duration// default: 30s
80
+
master_timeout?: Duration
81
81
/**
82
82
* The period to wait for a response from all relevant nodes in the cluster after updating the cluster metadata.
83
83
* If no response is received before the timeout expires, the cluster metadata update still applies but the response will indicate that it was not completely acknowledged.
84
84
* It can also be set to `-1` to indicate that the request should never timeout.
0 commit comments