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
Copy file name to clipboardExpand all lines: elasticsearch/src/params.rs
+24-6Lines changed: 24 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,15 @@ pub enum OpType {
155
155
#[serde(rename = "create")]
156
156
Create,
157
157
}
158
-
#[doc = "If `true` then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` (the default) then do nothing with refreshes."]
#[doc = "If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes."]
Copy file name to clipboardExpand all lines: elasticsearch/src/root/mod.rs
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2951,6 +2951,7 @@ pub struct Get<'a, 'b> {
2951
2951
_source_includes:Option<&'b[&'bstr]>,
2952
2952
error_trace:Option<bool>,
2953
2953
filter_path:Option<&'b[&'bstr]>,
2954
+
force_synthetic_source:Option<bool>,
2954
2955
headers:HeaderMap,
2955
2956
human:Option<bool>,
2956
2957
preference:Option<&'bstr>,
@@ -2977,6 +2978,7 @@ impl<'a, 'b> Get<'a, 'b> {
2977
2978
_source_includes:None,
2978
2979
error_trace:None,
2979
2980
filter_path:None,
2981
+
force_synthetic_source:None,
2980
2982
human:None,
2981
2983
preference:None,
2982
2984
pretty:None,
@@ -3015,6 +3017,11 @@ impl<'a, 'b> Get<'a, 'b> {
3015
3017
self.filter_path = Some(filter_path);
3016
3018
self
3017
3019
}
3020
+
#[doc = "Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index."]
#[doc = "Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index."]
#[doc = "Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index."]
0 commit comments