Auto-generated code for 8.13 (#2220)
This commit is contained in:
@ -3275,7 +3275,7 @@ If no index is specified or the index does not have a default analyzer, the anal
|
||||
** *`analyzer` (Optional, string)*: The name of the analyzer that should be applied to the provided `text`.
|
||||
This could be a built-in analyzer, or an analyzer that’s been configured in the index.
|
||||
** *`attributes` (Optional, string[])*: Array of token attributes used to filter the output of the `explain` parameter.
|
||||
** *`char_filter` (Optional, string | { type } | { type, mappings, mappings_path } | { type, flags, pattern, replacement } | { type, mode, name } | { type, normalize_kana, normalize_kanji }[])*: Array of character filters used to preprocess characters before the tokenizer.
|
||||
** *`char_filter` (Optional, string | { type, escaped_tags } | { type, mappings, mappings_path } | { type, flags, pattern, replacement } | { type, mode, name } | { type, normalize_kana, normalize_kanji }[])*: Array of character filters used to preprocess characters before the tokenizer.
|
||||
** *`explain` (Optional, boolean)*: If `true`, the response includes token attributes and additional details.
|
||||
** *`field` (Optional, string)*: Field used to derive the analyzer.
|
||||
To use this parameter, you must specify an index.
|
||||
|
||||
@ -3179,8 +3179,8 @@ export interface AggregationsEwmaMovingAverageAggregation extends AggregationsMo
|
||||
}
|
||||
|
||||
export interface AggregationsExtendedBounds<T = unknown> {
|
||||
max: T
|
||||
min: T
|
||||
max?: T
|
||||
min?: T
|
||||
}
|
||||
|
||||
export interface AggregationsExtendedStatsAggregate extends AggregationsStatsAggregate {
|
||||
@ -4126,6 +4126,7 @@ export interface AggregationsVariableWidthHistogramAggregation {
|
||||
buckets?: integer
|
||||
shard_size?: integer
|
||||
initial_buffer?: integer
|
||||
script?: Script
|
||||
}
|
||||
|
||||
export interface AggregationsVariableWidthHistogramBucketKeys extends AggregationsMultiBucketBase {
|
||||
@ -4275,6 +4276,7 @@ export interface AnalysisFingerprintTokenFilter extends AnalysisTokenFilterBase
|
||||
|
||||
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
||||
type: 'html_strip'
|
||||
escaped_tags?: string[]
|
||||
}
|
||||
|
||||
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
||||
@ -4901,7 +4903,7 @@ export interface MappingDoubleRangeProperty extends MappingRangePropertyBase {
|
||||
export type MappingDynamicMapping = boolean | 'strict' | 'runtime' | 'true' | 'false'
|
||||
|
||||
export interface MappingDynamicProperty extends MappingDocValuesPropertyBase {
|
||||
type: '{dynamic_property}'
|
||||
type: '{dynamic_type}'
|
||||
enabled?: boolean
|
||||
null_value?: FieldValue
|
||||
boost?: double
|
||||
@ -5160,7 +5162,7 @@ export interface MappingRuntimeFieldFetchFields {
|
||||
format?: string
|
||||
}
|
||||
|
||||
export type MappingRuntimeFieldType = 'boolean' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup'
|
||||
export type MappingRuntimeFieldType = 'boolean' | 'composite' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup'
|
||||
|
||||
export type MappingRuntimeFields = Record<Field, MappingRuntimeField>
|
||||
|
||||
@ -9770,7 +9772,7 @@ export interface IndicesIndexSettingsAnalysis {
|
||||
}
|
||||
|
||||
export interface IndicesIndexSettingsLifecycle {
|
||||
name: Name
|
||||
name?: Name
|
||||
indexing_complete?: SpecUtilsStringified<boolean>
|
||||
origination_date?: long
|
||||
parse_origination_date?: boolean
|
||||
|
||||
@ -3252,8 +3252,8 @@ export interface AggregationsEwmaMovingAverageAggregation extends AggregationsMo
|
||||
}
|
||||
|
||||
export interface AggregationsExtendedBounds<T = unknown> {
|
||||
max: T
|
||||
min: T
|
||||
max?: T
|
||||
min?: T
|
||||
}
|
||||
|
||||
export interface AggregationsExtendedStatsAggregate extends AggregationsStatsAggregate {
|
||||
@ -4199,6 +4199,7 @@ export interface AggregationsVariableWidthHistogramAggregation {
|
||||
buckets?: integer
|
||||
shard_size?: integer
|
||||
initial_buffer?: integer
|
||||
script?: Script
|
||||
}
|
||||
|
||||
export interface AggregationsVariableWidthHistogramBucketKeys extends AggregationsMultiBucketBase {
|
||||
@ -4348,6 +4349,7 @@ export interface AnalysisFingerprintTokenFilter extends AnalysisTokenFilterBase
|
||||
|
||||
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
||||
type: 'html_strip'
|
||||
escaped_tags?: string[]
|
||||
}
|
||||
|
||||
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
||||
@ -4974,7 +4976,7 @@ export interface MappingDoubleRangeProperty extends MappingRangePropertyBase {
|
||||
export type MappingDynamicMapping = boolean | 'strict' | 'runtime' | 'true' | 'false'
|
||||
|
||||
export interface MappingDynamicProperty extends MappingDocValuesPropertyBase {
|
||||
type: '{dynamic_property}'
|
||||
type: '{dynamic_type}'
|
||||
enabled?: boolean
|
||||
null_value?: FieldValue
|
||||
boost?: double
|
||||
@ -5233,7 +5235,7 @@ export interface MappingRuntimeFieldFetchFields {
|
||||
format?: string
|
||||
}
|
||||
|
||||
export type MappingRuntimeFieldType = 'boolean' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup'
|
||||
export type MappingRuntimeFieldType = 'boolean' | 'composite' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup'
|
||||
|
||||
export type MappingRuntimeFields = Record<Field, MappingRuntimeField>
|
||||
|
||||
@ -9896,7 +9898,7 @@ export interface IndicesIndexSettingsAnalysis {
|
||||
}
|
||||
|
||||
export interface IndicesIndexSettingsLifecycle {
|
||||
name: Name
|
||||
name?: Name
|
||||
indexing_complete?: SpecUtilsStringified<boolean>
|
||||
origination_date?: long
|
||||
parse_origination_date?: boolean
|
||||
|
||||
Reference in New Issue
Block a user