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: protos/generated/models/aggregated_models.proto
+21-16Lines changed: 21 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -2351,6 +2351,11 @@ message FieldSort {
2351
2351
// The numeric type to use for sorting.
2352
2352
optionalFieldSortNumericTypenumeric_type=6;
2353
2353
2354
+
}
2355
+
messageFieldSortMap {
2356
+
2357
+
map<string, FieldSort> field_sort_map=1;
2358
+
2354
2359
}
2355
2360
enumFieldSortNumericType {
2356
2361
@@ -3090,7 +3095,6 @@ message GlobalParams {
3090
3095
// Whether to include the stack trace of returned errors.
3091
3096
optionalboolerror_trace=2;
3092
3097
3093
-
// A comma-separated list of filters used to filter the response. Use wildcards to match any field or part of a field's name. To exclude fields, use `-`.
3094
3098
repeatedstringfilter_path=3;
3095
3099
3096
3100
}
@@ -3107,7 +3111,7 @@ message HasChildQuery {
3107
3111
3108
3112
optionalstringx_name=2;
3109
3113
3110
-
// Indicates whether to ignore an unmapped `type` and not return any documents instead of an error.
3114
+
// Set to `true` to ignore an unmapped field and not match any documents for this query. Set to `false` to throw an exception if the field is not mapped.
3111
3115
optionalboolignore_unmapped=3;
3112
3116
3113
3117
optionalInnerHitsinner_hits=4;
@@ -3133,7 +3137,7 @@ message HasParentQuery {
3133
3137
3134
3138
optionalstringx_name=2;
3135
3139
3136
-
// Indicates whether to ignore an unmapped `parent_type` and not return any documents instead of an error. You can use this parameter to query multiple indexes that may not contain the `parent_type`.
3140
+
// Set to `true` to ignore an unmapped field and not match any documents for this query. Set to `false` to throw an exception if the field is not mapped.
// Floating point number used to decrease or increase the relevance scores of the query. Boost values are relative to the default value of 1.0. A boost value between 0 and 1.0 decreases the relevance score. A value greater than 1.0 increases the relevance score.
@@ -4677,7 +4686,7 @@ message MoreLikeThisQuery {
4677
4686
// The routing value for the document.
4678
4687
optionalstringrouting=17;
4679
4688
4680
-
optionalStopWordsstop_words=18;
4689
+
repeatedstringstop_words=18;
4681
4690
4682
4691
// Used in combination with `like` to exclude documents that match a set of terms.
4683
4692
repeatedLikeunlike=19;
@@ -5204,7 +5213,7 @@ message NestedQuery {
5204
5213
5205
5214
optionalstringx_name=2;
5206
5215
5207
-
// Indicates whether to ignore an unmapped path and not return any documents instead of an error.
5216
+
// Set to `true` to ignore an unmapped field and not match any documents for this query. Set to `false` to throw an exception if the field is not mapped.
5208
5217
optionalboolignore_unmapped=3;
5209
5218
5210
5219
optionalInnerHitsinner_hits=4;
@@ -5228,7 +5237,7 @@ message NestedSortValue {
5228
5237
// How to sort hierarchical nested objects.
5229
5238
optionalNestedSortValuenested=3;
5230
5239
5231
-
// The path to the nested objects.
5240
+
// The path to a field or an array of paths. Some APIs support wildcards in the path, which allows you to select multiple fields.
5232
5241
stringpath=4;
5233
5242
5234
5243
}
@@ -5436,7 +5445,7 @@ message ParentIdQuery {
5436
5445
// The unique identifier for a resource.
5437
5446
optionalstringid=3;
5438
5447
5439
-
// Indicates whether to ignore an unmapped `type` and not return any documents instead of an error.
5448
+
// Set to `true` to ignore an unmapped field and not match any documents for this query. Set to `false` to throw an exception if the field is not mapped.
// The path to a field or an array of paths. Some APIs support wildcards in the path, which allows you to select multiple fields.
7203
7212
optionalstringfield=1;
7204
7213
7205
7214
// The ID of the slice.
@@ -7225,9 +7234,9 @@ message SortCombinations {
7225
7234
// The path to a field or an array of paths. Some APIs support wildcards in the path, which allows you to select multiple fields.
7226
7235
stringfield=1;
7227
7236
7228
-
map<string, SortOrder> field_with_direction = 2;
7237
+
StringMapfield_with_direction=2;
7229
7238
7230
-
map<string, FieldSort> field_with_order = 3;
7239
+
FieldSortMapfield_with_order=3;
7231
7240
7232
7241
SortOptionsoptions=4;
7233
7242
@@ -7275,8 +7284,7 @@ message SourceConfigParam {
7275
7284
7276
7285
boolfetch=1;
7277
7286
7278
-
// A comma-separated list or a wildcard expression specifying the fields to include in the statistics. Used as the default list unless a specific field list is provided in the `completion_fields` or `fielddata_fields` parameters.
0 commit comments