Skip to content
Closed
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
32 changes: 30 additions & 2 deletions protos/generated/models/aggregated_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1648,6 +1648,8 @@ message ErrorCause {
repeated ErrorCause suppressed = 6;

repeated string header = 7;

optional ObjectMap metadata = 8;
}
message ErrorResponseBase {
ErrorCause error = 1;
Expand Down Expand Up @@ -2082,6 +2084,8 @@ message FieldSuggester {
optional PhraseSuggester phrase = 5;

optional TermSuggester term = 6;

oneof field_suggester {}
}
enum FieldType {
FIELD_TYPE_UNSPECIFIED = 0;
Expand Down Expand Up @@ -2490,6 +2494,8 @@ message GeoDistanceSort {
optional DistanceUnit unit = 6;

optional GeoValidationMethod validation_method = 7;

map<string, GeoLocationArray> location = 8;
}
enum GeoDistanceType {
GEO_DISTANCE_TYPE_UNSPECIFIED = 0;
Expand Down Expand Up @@ -3270,6 +3276,8 @@ message InlineGetDictUserDefined {

// The source of the document.
optional ObjectMap x_source = 6;

optional ObjectMap metadata_fields = 7;
}
message InlineScript {
// Specifies any named parameters that are passed into the script as variables. Use parameters instead of hard-coded values to decrease compilation time.
Expand Down Expand Up @@ -3352,6 +3360,8 @@ message IntervalsContainer {
optional IntervalsPrefix prefix = 5;

optional IntervalsWildcard wildcard = 6;

oneof intervals_container {}
}
message IntervalsFilter {
optional IntervalsContainer after = 1;
Expand All @@ -3371,6 +3381,8 @@ message IntervalsFilter {
optional IntervalsContainer overlapping = 8;

optional Script script = 9;

oneof intervals_filter {}
}
message IntervalsFuzzy {
// Analyzer used to normalize the term.
Expand Down Expand Up @@ -3437,6 +3449,8 @@ message IntervalsQuery {
optional IntervalsWildcard wildcard = 8;

string field = 9;

oneof intervals_query {}
}
message IntervalsWildcard {
// Analyzer used to analyze the `pattern`. Defaults to the top-level field's analyzer.
Expand Down Expand Up @@ -3499,6 +3513,8 @@ message Items {
optional ResponseItem update = 3;

optional ResponseItem delete = 4;

oneof items {}
}
message KeyedPercentilesValue {
oneof keyed_percentiles_value {
Expand Down Expand Up @@ -4649,6 +4665,8 @@ message OperationContainer {
optional UpdateOperation update = 3;

optional DeleteOperation delete = 4;

oneof operation_container {}
}
enum Operator {
OPERATOR_UNSPECIFIED = 0;
Expand Down Expand Up @@ -5148,6 +5166,8 @@ message QueryContainer {
optional WrapperQuery wrapper = 57;

optional XyShapeQuery xy_shape = 58;

oneof query_container {}
}
message QueryProfile {
QueryBreakdown breakdown = 1;
Expand Down Expand Up @@ -6248,6 +6268,8 @@ message SmoothingModel {
optional LinearInterpolationSmoothingModel linear_interpolation = 2;

optional StupidBackoffSmoothingModel stupid_backoff = 3;

oneof smoothing_model {}
}
message SortCombinations {
oneof sort_combinations {
Expand Down Expand Up @@ -6275,6 +6297,8 @@ message SortOptions {
optional GeoDistanceSort x_geo_distance = 2;

optional ScriptSort x_script = 3;

oneof sort_options {}
}
enum SortOrder {
SORT_ORDER_UNSPECIFIED = 0;
Expand Down Expand Up @@ -6335,9 +6359,9 @@ message SpanFirstQuery {
SpanQuery match = 4;
}
message SpanGapQuery {
string field = 1;
map<string, int32> span_width = 1;

optional int32 span_width = 2;
oneof span_gap_query {}
}
message SpanMultiTermQuery {
// 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.
Expand Down Expand Up @@ -6411,6 +6435,8 @@ message SpanQuery {
optional SpanTermQuery span_term = 9;

optional SpanWithinQuery span_within = 10;

oneof span_query {}
}
message SpanTermQuery {
// 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.
Expand Down Expand Up @@ -6718,6 +6744,8 @@ enum SuggestSort {
message Suggester {
// The global suggest text, which avoids repetition when the same text is used in several suggesters.
optional string text = 1;

map<string, FieldSuggester> suggesters = 2;
}
message SuggesterBase {
optional string analyzer = 1;
Expand Down