Auto-generated code for main (#2351)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
This commit is contained in:
12
docs/doc_examples/14a33c364873c2f930ca83d0a3005389.asciidoc
Normal file
12
docs/doc_examples/14a33c364873c2f930ca83d0a3005389.asciidoc
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.cluster.allocationExplain({
|
||||||
|
index: "my-index",
|
||||||
|
shard: 0,
|
||||||
|
primary: false,
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
16
docs/doc_examples/2e09666d3ad5ad9afc22763ee6e97a2b.asciidoc
Normal file
16
docs/doc_examples/2e09666d3ad5ad9afc22763ee6e97a2b.asciidoc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.slm.putLifecycle({
|
||||||
|
policy_id: "hourly-snapshots",
|
||||||
|
schedule: "1h",
|
||||||
|
name: "<hourly-snap-{now/d}>",
|
||||||
|
repository: "my_repository",
|
||||||
|
config: {
|
||||||
|
indices: ["data-*", "important"],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
21
docs/doc_examples/8f2875d976332cf5da8fb7764097a307.asciidoc
Normal file
21
docs/doc_examples/8f2875d976332cf5da8fb7764097a307.asciidoc
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.indices.putIndexTemplate({
|
||||||
|
name: "template",
|
||||||
|
index_patterns: ["my-data-stream*"],
|
||||||
|
data_stream: {},
|
||||||
|
priority: 500,
|
||||||
|
template: {
|
||||||
|
lifecycle: {
|
||||||
|
data_retention: "7d",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
_meta: {
|
||||||
|
description: "Template with data stream lifecycle",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
13
docs/doc_examples/e7cfe670b4177d1011076f845ec2916c.asciidoc
Normal file
13
docs/doc_examples/e7cfe670b4177d1011076f845ec2916c.asciidoc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// This file is autogenerated, DO NOT EDIT
|
||||||
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
||||||
|
|
||||||
|
[source, js]
|
||||||
|
----
|
||||||
|
const response = await client.cluster.putSettings({
|
||||||
|
persistent: {
|
||||||
|
"data_streams.lifecycle.retention.default": "7d",
|
||||||
|
"data_streams.lifecycle.retention.max": "90d",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.log(response);
|
||||||
|
----
|
||||||
@ -1351,6 +1351,7 @@ If the index has a default ingest pipeline specified, then setting the value to
|
|||||||
If a final pipeline is configured it will always run, regardless of the value of this parameter.
|
If a final pipeline is configured it will always run, regardless of the value of this parameter.
|
||||||
** *`preference` (Optional, string)*: Specifies the node or shard the operation should be performed on.
|
** *`preference` (Optional, string)*: Specifies the node or shard the operation should be performed on.
|
||||||
Random by default.
|
Random by default.
|
||||||
|
** *`q` (Optional, string)*: Query in the Lucene query string syntax.
|
||||||
** *`refresh` (Optional, boolean)*: If `true`, Elasticsearch refreshes affected shards to make the operation visible to search.
|
** *`refresh` (Optional, boolean)*: If `true`, Elasticsearch refreshes affected shards to make the operation visible to search.
|
||||||
** *`request_cache` (Optional, boolean)*: If `true`, the request cache is used for this request.
|
** *`request_cache` (Optional, boolean)*: If `true`, the request cache is used for this request.
|
||||||
** *`requests_per_second` (Optional, float)*: The throttle for this request in sub-requests per second.
|
** *`requests_per_second` (Optional, float)*: The throttle for this request in sub-requests per second.
|
||||||
@ -8355,7 +8356,7 @@ client.queryRules.putRule({ ruleset_id, rule_id, type, criteria, actions })
|
|||||||
* *Request (object):*
|
* *Request (object):*
|
||||||
** *`ruleset_id` (string)*: The unique identifier of the query ruleset containing the rule to be created or updated
|
** *`ruleset_id` (string)*: The unique identifier of the query ruleset containing the rule to be created or updated
|
||||||
** *`rule_id` (string)*: The unique identifier of the query rule within the specified ruleset to be created or updated
|
** *`rule_id` (string)*: The unique identifier of the query rule within the specified ruleset to be created or updated
|
||||||
** *`type` (Enum("pinned"))*
|
** *`type` (Enum("pinned" | "exclude"))*
|
||||||
** *`criteria` ({ type, metadata, values } | { type, metadata, values }[])*
|
** *`criteria` ({ type, metadata, values } | { type, metadata, values }[])*
|
||||||
** *`actions` ({ ids, docs })*
|
** *`actions` ({ ids, docs })*
|
||||||
** *`priority` (Optional, number)*
|
** *`priority` (Optional, number)*
|
||||||
|
|||||||
292
src/api/types.ts
292
src/api/types.ts
@ -361,6 +361,7 @@ export interface FieldCapsResponse {
|
|||||||
export interface GetGetResult<TDocument = unknown> {
|
export interface GetGetResult<TDocument = unknown> {
|
||||||
_index: IndexName
|
_index: IndexName
|
||||||
fields?: Record<string, any>
|
fields?: Record<string, any>
|
||||||
|
_ignored?: string[]
|
||||||
found: boolean
|
found: boolean
|
||||||
_id: Id
|
_id: Id
|
||||||
_primary_term?: long
|
_primary_term?: long
|
||||||
@ -459,6 +460,16 @@ export interface HealthReportBaseIndicator {
|
|||||||
diagnosis?: HealthReportDiagnosis[]
|
diagnosis?: HealthReportDiagnosis[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HealthReportDataStreamLifecycleDetails {
|
||||||
|
stagnating_backing_indices_count: integer
|
||||||
|
total_backing_indices_in_error: integer
|
||||||
|
stagnating_backing_indices?: HealthReportStagnatingBackingIndices[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface HealthReportDataStreamLifecycleIndicator extends HealthReportBaseIndicator {
|
||||||
|
details?: HealthReportDataStreamLifecycleDetails
|
||||||
|
}
|
||||||
|
|
||||||
export interface HealthReportDiagnosis {
|
export interface HealthReportDiagnosis {
|
||||||
id: string
|
id: string
|
||||||
action: string
|
action: string
|
||||||
@ -518,6 +529,7 @@ export interface HealthReportIndicators {
|
|||||||
shards_availability?: HealthReportShardsAvailabilityIndicator
|
shards_availability?: HealthReportShardsAvailabilityIndicator
|
||||||
disk?: HealthReportDiskIndicator
|
disk?: HealthReportDiskIndicator
|
||||||
repository_integrity?: HealthReportRepositoryIntegrityIndicator
|
repository_integrity?: HealthReportRepositoryIntegrityIndicator
|
||||||
|
data_stream_lifecycle?: HealthReportDataStreamLifecycleIndicator
|
||||||
ilm?: HealthReportIlmIndicator
|
ilm?: HealthReportIlmIndicator
|
||||||
slm?: HealthReportSlmIndicator
|
slm?: HealthReportSlmIndicator
|
||||||
shards_capacity?: HealthReportShardsCapacityIndicator
|
shards_capacity?: HealthReportShardsCapacityIndicator
|
||||||
@ -614,6 +626,12 @@ export interface HealthReportSlmIndicatorUnhealthyPolicies {
|
|||||||
invocations_since_last_success?: Record<string, long>
|
invocations_since_last_success?: Record<string, long>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HealthReportStagnatingBackingIndices {
|
||||||
|
index_name: IndexName
|
||||||
|
first_occurrence_timestamp: long
|
||||||
|
retry_count: integer
|
||||||
|
}
|
||||||
|
|
||||||
export interface IndexRequest<TDocument = unknown> extends RequestBase {
|
export interface IndexRequest<TDocument = unknown> extends RequestBase {
|
||||||
id?: Id
|
id?: Id
|
||||||
index: IndexName
|
index: IndexName
|
||||||
@ -1402,7 +1420,6 @@ export interface SearchHighlightBase {
|
|||||||
export interface SearchHighlightField extends SearchHighlightBase {
|
export interface SearchHighlightField extends SearchHighlightBase {
|
||||||
fragment_offset?: integer
|
fragment_offset?: integer
|
||||||
matched_fields?: Fields
|
matched_fields?: Fields
|
||||||
analyzer?: AnalysisAnalyzer
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SearchHighlighterEncoder = 'default' | 'html'
|
export type SearchHighlighterEncoder = 'default' | 'html'
|
||||||
@ -1904,6 +1921,7 @@ export interface UpdateByQueryRequest extends RequestBase {
|
|||||||
lenient?: boolean
|
lenient?: boolean
|
||||||
pipeline?: string
|
pipeline?: string
|
||||||
preference?: string
|
preference?: string
|
||||||
|
q?: string
|
||||||
refresh?: boolean
|
refresh?: boolean
|
||||||
request_cache?: boolean
|
request_cache?: boolean
|
||||||
requests_per_second?: float
|
requests_per_second?: float
|
||||||
@ -4210,13 +4228,61 @@ export interface AggregationsWeightedAverageValue {
|
|||||||
export interface AggregationsWeightedAvgAggregate extends AggregationsSingleMetricAggregateBase {
|
export interface AggregationsWeightedAvgAggregate extends AggregationsSingleMetricAggregateBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AnalysisAnalyzer = AnalysisCustomAnalyzer | AnalysisFingerprintAnalyzer | AnalysisKeywordAnalyzer | AnalysisLanguageAnalyzer | AnalysisNoriAnalyzer | AnalysisPatternAnalyzer | AnalysisSimpleAnalyzer | AnalysisStandardAnalyzer | AnalysisStopAnalyzer | AnalysisWhitespaceAnalyzer | AnalysisIcuAnalyzer | AnalysisKuromojiAnalyzer | AnalysisSnowballAnalyzer | AnalysisDutchAnalyzer
|
export type AnalysisAnalyzer = AnalysisCustomAnalyzer | AnalysisFingerprintAnalyzer | AnalysisKeywordAnalyzer | AnalysisLanguageAnalyzer | AnalysisNoriAnalyzer | AnalysisPatternAnalyzer | AnalysisSimpleAnalyzer | AnalysisStandardAnalyzer | AnalysisStopAnalyzer | AnalysisWhitespaceAnalyzer | AnalysisIcuAnalyzer | AnalysisKuromojiAnalyzer | AnalysisSnowballAnalyzer | AnalysisArabicAnalyzer | AnalysisArmenianAnalyzer | AnalysisBasqueAnalyzer | AnalysisBengaliAnalyzer | AnalysisBrazilianAnalyzer | AnalysisBulgarianAnalyzer | AnalysisCatalanAnalyzer | AnalysisChineseAnalyzer | AnalysisCjkAnalyzer | AnalysisCzechAnalyzer | AnalysisDanishAnalyzer | AnalysisDutchAnalyzer | AnalysisEnglishAnalyzer | AnalysisEstonianAnalyzer | AnalysisFinnishAnalyzer | AnalysisFrenchAnalyzer | AnalysisGalicianAnalyzer | AnalysisGermanAnalyzer | AnalysisGreekAnalyzer | AnalysisHindiAnalyzer | AnalysisHungarianAnalyzer | AnalysisIndonesianAnalyzer | AnalysisIrishAnalyzer | AnalysisItalianAnalyzer | AnalysisLatvianAnalyzer | AnalysisLithuanianAnalyzer | AnalysisNorwegianAnalyzer | AnalysisPersianAnalyzer | AnalysisPortugueseAnalyzer | AnalysisRomanianAnalyzer | AnalysisRussianAnalyzer | AnalysisSerbianAnalyzer | AnalysisSoraniAnalyzer | AnalysisSpanishAnalyzer | AnalysisSwedishAnalyzer | AnalysisTurkishAnalyzer | AnalysisThaiAnalyzer
|
||||||
|
|
||||||
|
export interface AnalysisArabicAnalyzer {
|
||||||
|
type: 'arabic'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisArmenianAnalyzer {
|
||||||
|
type: 'armenian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisAsciiFoldingTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisAsciiFoldingTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'asciifolding'
|
type: 'asciifolding'
|
||||||
preserve_original?: SpecUtilsStringified<boolean>
|
preserve_original?: SpecUtilsStringified<boolean>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBasqueAnalyzer {
|
||||||
|
type: 'basque'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBengaliAnalyzer {
|
||||||
|
type: 'bengali'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBrazilianAnalyzer {
|
||||||
|
type: 'brazilian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBulgarianAnalyzer {
|
||||||
|
type: 'bulgarian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCatalanAnalyzer {
|
||||||
|
type: 'catalan'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisCharFilter = string | AnalysisCharFilterDefinition
|
export type AnalysisCharFilter = string | AnalysisCharFilterDefinition
|
||||||
|
|
||||||
export interface AnalysisCharFilterBase {
|
export interface AnalysisCharFilterBase {
|
||||||
@ -4231,6 +4297,18 @@ export interface AnalysisCharGroupTokenizer extends AnalysisTokenizerBase {
|
|||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisChineseAnalyzer {
|
||||||
|
type: 'chinese'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCjkAnalyzer {
|
||||||
|
type: 'cjk'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisCommonGramsTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisCommonGramsTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'common_grams'
|
type: 'common_grams'
|
||||||
common_words?: string[]
|
common_words?: string[]
|
||||||
@ -4270,6 +4348,19 @@ export interface AnalysisCustomNormalizer {
|
|||||||
filter?: string[]
|
filter?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCzechAnalyzer {
|
||||||
|
type: 'czech'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisDanishAnalyzer {
|
||||||
|
type: 'danish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisDelimitedPayloadEncoding = 'int' | 'float' | 'identity'
|
export type AnalysisDelimitedPayloadEncoding = 'int' | 'float' | 'identity'
|
||||||
|
|
||||||
export interface AnalysisDelimitedPayloadTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisDelimitedPayloadTokenFilter extends AnalysisTokenFilterBase {
|
||||||
@ -4285,6 +4376,8 @@ export interface AnalysisDictionaryDecompounderTokenFilter extends AnalysisCompo
|
|||||||
export interface AnalysisDutchAnalyzer {
|
export interface AnalysisDutchAnalyzer {
|
||||||
type: 'dutch'
|
type: 'dutch'
|
||||||
stopwords?: AnalysisStopWords
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AnalysisEdgeNGramSide = 'front' | 'back'
|
export type AnalysisEdgeNGramSide = 'front' | 'back'
|
||||||
@ -4312,6 +4405,19 @@ export interface AnalysisElisionTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
articles_case?: SpecUtilsStringified<boolean>
|
articles_case?: SpecUtilsStringified<boolean>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisEnglishAnalyzer {
|
||||||
|
type: 'english'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisEstonianAnalyzer {
|
||||||
|
type: 'estonian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisFingerprintAnalyzer {
|
export interface AnalysisFingerprintAnalyzer {
|
||||||
type: 'fingerprint'
|
type: 'fingerprint'
|
||||||
version?: VersionString
|
version?: VersionString
|
||||||
@ -4328,11 +4434,59 @@ export interface AnalysisFingerprintTokenFilter extends AnalysisTokenFilterBase
|
|||||||
separator?: string
|
separator?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisFinnishAnalyzer {
|
||||||
|
type: 'finnish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisFrenchAnalyzer {
|
||||||
|
type: 'french'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGalicianAnalyzer {
|
||||||
|
type: 'galician'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGermanAnalyzer {
|
||||||
|
type: 'german'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGreekAnalyzer {
|
||||||
|
type: 'greek'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisHindiAnalyzer {
|
||||||
|
type: 'hindi'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
||||||
type: 'html_strip'
|
type: 'html_strip'
|
||||||
escaped_tags?: string[]
|
escaped_tags?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisHungarianAnalyzer {
|
||||||
|
type: 'hungarian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'hunspell'
|
type: 'hunspell'
|
||||||
dedup?: boolean
|
dedup?: boolean
|
||||||
@ -4408,6 +4562,27 @@ export interface AnalysisIcuTransformTokenFilter extends AnalysisTokenFilterBase
|
|||||||
id: string
|
id: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisIndonesianAnalyzer {
|
||||||
|
type: 'indonesian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisIrishAnalyzer {
|
||||||
|
type: 'irish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisItalianAnalyzer {
|
||||||
|
type: 'italian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisKStemTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisKStemTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'kstem'
|
type: 'kstem'
|
||||||
}
|
}
|
||||||
@ -4496,6 +4671,13 @@ export interface AnalysisLanguageAnalyzer {
|
|||||||
stopwords_path?: string
|
stopwords_path?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisLatvianAnalyzer {
|
||||||
|
type: 'latvian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisLengthTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisLengthTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'length'
|
type: 'length'
|
||||||
max?: integer
|
max?: integer
|
||||||
@ -4512,6 +4694,13 @@ export interface AnalysisLimitTokenCountTokenFilter extends AnalysisTokenFilterB
|
|||||||
max_token_count?: SpecUtilsStringified<integer>
|
max_token_count?: SpecUtilsStringified<integer>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisLithuanianAnalyzer {
|
||||||
|
type: 'lithuanian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisLowercaseNormalizer {
|
export interface AnalysisLowercaseNormalizer {
|
||||||
type: 'lowercase'
|
type: 'lowercase'
|
||||||
}
|
}
|
||||||
@ -4577,6 +4766,13 @@ export interface AnalysisNoriTokenizer extends AnalysisTokenizerBase {
|
|||||||
|
|
||||||
export type AnalysisNormalizer = AnalysisLowercaseNormalizer | AnalysisCustomNormalizer
|
export type AnalysisNormalizer = AnalysisLowercaseNormalizer | AnalysisCustomNormalizer
|
||||||
|
|
||||||
|
export interface AnalysisNorwegianAnalyzer {
|
||||||
|
type: 'norwegian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisPathHierarchyTokenizer extends AnalysisTokenizerBase {
|
export interface AnalysisPathHierarchyTokenizer extends AnalysisTokenizerBase {
|
||||||
type: 'path_hierarchy'
|
type: 'path_hierarchy'
|
||||||
buffer_size?: SpecUtilsStringified<integer>
|
buffer_size?: SpecUtilsStringified<integer>
|
||||||
@ -4623,6 +4819,12 @@ export interface AnalysisPatternTokenizer extends AnalysisTokenizerBase {
|
|||||||
pattern?: string
|
pattern?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisPersianAnalyzer {
|
||||||
|
type: 'persian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisPhoneticEncoder = 'metaphone' | 'double_metaphone' | 'soundex' | 'refined_soundex' | 'caverphone1' | 'caverphone2' | 'cologne' | 'nysiis' | 'koelnerphonetik' | 'haasephonetik' | 'beider_morse' | 'daitch_mokotoff'
|
export type AnalysisPhoneticEncoder = 'metaphone' | 'double_metaphone' | 'soundex' | 'refined_soundex' | 'caverphone1' | 'caverphone2' | 'cologne' | 'nysiis' | 'koelnerphonetik' | 'haasephonetik' | 'beider_morse' | 'daitch_mokotoff'
|
||||||
|
|
||||||
export type AnalysisPhoneticLanguage = 'any' | 'common' | 'cyrillic' | 'english' | 'french' | 'german' | 'hebrew' | 'hungarian' | 'polish' | 'romanian' | 'russian' | 'spanish'
|
export type AnalysisPhoneticLanguage = 'any' | 'common' | 'cyrillic' | 'english' | 'french' | 'german' | 'hebrew' | 'hungarian' | 'polish' | 'romanian' | 'russian' | 'spanish'
|
||||||
@ -4645,6 +4847,13 @@ export interface AnalysisPorterStemTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
type: 'porter_stem'
|
type: 'porter_stem'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisPortugueseAnalyzer {
|
||||||
|
type: 'portuguese'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisPredicateTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisPredicateTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'predicate_token_filter'
|
type: 'predicate_token_filter'
|
||||||
script: Script | string
|
script: Script | string
|
||||||
@ -4658,6 +4867,27 @@ export interface AnalysisReverseTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
type: 'reverse'
|
type: 'reverse'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisRomanianAnalyzer {
|
||||||
|
type: 'romanian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisRussianAnalyzer {
|
||||||
|
type: 'russian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSerbianAnalyzer {
|
||||||
|
type: 'serbian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisShingleTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisShingleTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'shingle'
|
type: 'shingle'
|
||||||
filler_token?: string
|
filler_token?: string
|
||||||
@ -4687,6 +4917,20 @@ export interface AnalysisSnowballTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
language?: AnalysisSnowballLanguage
|
language?: AnalysisSnowballLanguage
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSoraniAnalyzer {
|
||||||
|
type: 'sorani'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSpanishAnalyzer {
|
||||||
|
type: 'spanish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisStandardAnalyzer {
|
export interface AnalysisStandardAnalyzer {
|
||||||
type: 'standard'
|
type: 'standard'
|
||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
@ -4727,6 +4971,13 @@ export interface AnalysisStopTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
|
|
||||||
export type AnalysisStopWords = string | string[]
|
export type AnalysisStopWords = string | string[]
|
||||||
|
|
||||||
|
export interface AnalysisSwedishAnalyzer {
|
||||||
|
type: 'swedish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisSynonymFormat = 'solr' | 'wordnet'
|
export type AnalysisSynonymFormat = 'solr' | 'wordnet'
|
||||||
|
|
||||||
export interface AnalysisSynonymGraphTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisSynonymGraphTokenFilter extends AnalysisTokenFilterBase {
|
||||||
@ -4753,6 +5004,12 @@ export interface AnalysisSynonymTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
updateable?: boolean
|
updateable?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisThaiAnalyzer {
|
||||||
|
type: 'thai'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisTokenChar = 'letter' | 'digit' | 'whitespace' | 'punctuation' | 'symbol' | 'custom'
|
export type AnalysisTokenChar = 'letter' | 'digit' | 'whitespace' | 'punctuation' | 'symbol' | 'custom'
|
||||||
|
|
||||||
export type AnalysisTokenFilter = string | AnalysisTokenFilterDefinition
|
export type AnalysisTokenFilter = string | AnalysisTokenFilterDefinition
|
||||||
@ -4780,6 +5037,13 @@ export interface AnalysisTruncateTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
length?: integer
|
length?: integer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisTurkishAnalyzer {
|
||||||
|
type: 'turkish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisUaxEmailUrlTokenizer extends AnalysisTokenizerBase {
|
export interface AnalysisUaxEmailUrlTokenizer extends AnalysisTokenizerBase {
|
||||||
type: 'uax_url_email'
|
type: 'uax_url_email'
|
||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
@ -10257,6 +10521,7 @@ export interface IndicesCacheQueries {
|
|||||||
export interface IndicesDataStream {
|
export interface IndicesDataStream {
|
||||||
_meta?: Metadata
|
_meta?: Metadata
|
||||||
allow_custom_routing?: boolean
|
allow_custom_routing?: boolean
|
||||||
|
failure_store?: IndicesFailureStore
|
||||||
generation: integer
|
generation: integer
|
||||||
hidden: boolean
|
hidden: boolean
|
||||||
ilm_policy?: Name
|
ilm_policy?: Name
|
||||||
@ -10266,6 +10531,7 @@ export interface IndicesDataStream {
|
|||||||
lifecycle?: IndicesDataStreamLifecycleWithRollover
|
lifecycle?: IndicesDataStreamLifecycleWithRollover
|
||||||
name: DataStreamName
|
name: DataStreamName
|
||||||
replicated?: boolean
|
replicated?: boolean
|
||||||
|
rollover_on_write: boolean
|
||||||
status: HealthStatus
|
status: HealthStatus
|
||||||
system?: boolean
|
system?: boolean
|
||||||
template: Name
|
template: Name
|
||||||
@ -10276,8 +10542,8 @@ export interface IndicesDataStreamIndex {
|
|||||||
index_name: IndexName
|
index_name: IndexName
|
||||||
index_uuid: Uuid
|
index_uuid: Uuid
|
||||||
ilm_policy?: Name
|
ilm_policy?: Name
|
||||||
managed_by: IndicesManagedBy
|
managed_by?: IndicesManagedBy
|
||||||
prefer_ilm: boolean
|
prefer_ilm?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IndicesDataStreamLifecycle {
|
export interface IndicesDataStreamLifecycle {
|
||||||
@ -10325,6 +10591,12 @@ export interface IndicesDownsamplingRound {
|
|||||||
config: IndicesDownsampleConfig
|
config: IndicesDownsampleConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IndicesFailureStore {
|
||||||
|
enabled: boolean
|
||||||
|
indices: IndicesDataStreamIndex[]
|
||||||
|
rollover_on_write: boolean
|
||||||
|
}
|
||||||
|
|
||||||
export interface IndicesFielddataFrequencyFilter {
|
export interface IndicesFielddataFrequencyFilter {
|
||||||
max: double
|
max: double
|
||||||
min: double
|
min: double
|
||||||
@ -13689,7 +13961,7 @@ export interface MlPerPartitionCategorization {
|
|||||||
stop_on_warn?: boolean
|
stop_on_warn?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MlPredictedValue = string | double | boolean | integer
|
export type MlPredictedValue = ScalarValue | ScalarValue[]
|
||||||
|
|
||||||
export interface MlQuestionAnsweringInferenceOptions {
|
export interface MlQuestionAnsweringInferenceOptions {
|
||||||
num_top_classes?: integer
|
num_top_classes?: integer
|
||||||
@ -15700,13 +15972,6 @@ export interface NodesGetRepositoriesMeteringInfoResponseBase extends NodesNodes
|
|||||||
nodes: Record<string, NodesRepositoryMeteringInformation>
|
nodes: Record<string, NodesRepositoryMeteringInformation>
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesHotThreadsHotThread {
|
|
||||||
hosts: Host[]
|
|
||||||
node_id: Id
|
|
||||||
node_name: Name
|
|
||||||
threads: string[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodesHotThreadsRequest extends RequestBase {
|
export interface NodesHotThreadsRequest extends RequestBase {
|
||||||
node_id?: NodeIds
|
node_id?: NodeIds
|
||||||
ignore_idle_threads?: boolean
|
ignore_idle_threads?: boolean
|
||||||
@ -15720,7 +15985,6 @@ export interface NodesHotThreadsRequest extends RequestBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesHotThreadsResponse {
|
export interface NodesHotThreadsResponse {
|
||||||
hot_threads: NodesHotThreadsHotThread[]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesInfoDeprecationIndexing {
|
export interface NodesInfoDeprecationIndexing {
|
||||||
@ -16158,7 +16422,7 @@ export interface QueryRulesQueryRuleCriteria {
|
|||||||
|
|
||||||
export type QueryRulesQueryRuleCriteriaType = 'global' | 'exact' | 'exact_fuzzy' | 'fuzzy' | 'prefix' | 'suffix' | 'contains' | 'lt' | 'lte' | 'gt' | 'gte' | 'always'
|
export type QueryRulesQueryRuleCriteriaType = 'global' | 'exact' | 'exact_fuzzy' | 'fuzzy' | 'prefix' | 'suffix' | 'contains' | 'lt' | 'lte' | 'gt' | 'gte' | 'always'
|
||||||
|
|
||||||
export type QueryRulesQueryRuleType = 'pinned'
|
export type QueryRulesQueryRuleType = 'pinned' | 'exclude'
|
||||||
|
|
||||||
export interface QueryRulesQueryRuleset {
|
export interface QueryRulesQueryRuleset {
|
||||||
ruleset_id: Id
|
ruleset_id: Id
|
||||||
|
|||||||
@ -382,6 +382,7 @@ export interface FieldCapsResponse {
|
|||||||
export interface GetGetResult<TDocument = unknown> {
|
export interface GetGetResult<TDocument = unknown> {
|
||||||
_index: IndexName
|
_index: IndexName
|
||||||
fields?: Record<string, any>
|
fields?: Record<string, any>
|
||||||
|
_ignored?: string[]
|
||||||
found: boolean
|
found: boolean
|
||||||
_id: Id
|
_id: Id
|
||||||
_primary_term?: long
|
_primary_term?: long
|
||||||
@ -480,6 +481,16 @@ export interface HealthReportBaseIndicator {
|
|||||||
diagnosis?: HealthReportDiagnosis[]
|
diagnosis?: HealthReportDiagnosis[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HealthReportDataStreamLifecycleDetails {
|
||||||
|
stagnating_backing_indices_count: integer
|
||||||
|
total_backing_indices_in_error: integer
|
||||||
|
stagnating_backing_indices?: HealthReportStagnatingBackingIndices[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface HealthReportDataStreamLifecycleIndicator extends HealthReportBaseIndicator {
|
||||||
|
details?: HealthReportDataStreamLifecycleDetails
|
||||||
|
}
|
||||||
|
|
||||||
export interface HealthReportDiagnosis {
|
export interface HealthReportDiagnosis {
|
||||||
id: string
|
id: string
|
||||||
action: string
|
action: string
|
||||||
@ -539,6 +550,7 @@ export interface HealthReportIndicators {
|
|||||||
shards_availability?: HealthReportShardsAvailabilityIndicator
|
shards_availability?: HealthReportShardsAvailabilityIndicator
|
||||||
disk?: HealthReportDiskIndicator
|
disk?: HealthReportDiskIndicator
|
||||||
repository_integrity?: HealthReportRepositoryIntegrityIndicator
|
repository_integrity?: HealthReportRepositoryIntegrityIndicator
|
||||||
|
data_stream_lifecycle?: HealthReportDataStreamLifecycleIndicator
|
||||||
ilm?: HealthReportIlmIndicator
|
ilm?: HealthReportIlmIndicator
|
||||||
slm?: HealthReportSlmIndicator
|
slm?: HealthReportSlmIndicator
|
||||||
shards_capacity?: HealthReportShardsCapacityIndicator
|
shards_capacity?: HealthReportShardsCapacityIndicator
|
||||||
@ -635,6 +647,12 @@ export interface HealthReportSlmIndicatorUnhealthyPolicies {
|
|||||||
invocations_since_last_success?: Record<string, long>
|
invocations_since_last_success?: Record<string, long>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HealthReportStagnatingBackingIndices {
|
||||||
|
index_name: IndexName
|
||||||
|
first_occurrence_timestamp: long
|
||||||
|
retry_count: integer
|
||||||
|
}
|
||||||
|
|
||||||
export interface IndexRequest<TDocument = unknown> extends RequestBase {
|
export interface IndexRequest<TDocument = unknown> extends RequestBase {
|
||||||
id?: Id
|
id?: Id
|
||||||
index: IndexName
|
index: IndexName
|
||||||
@ -1457,7 +1475,6 @@ export interface SearchHighlightBase {
|
|||||||
export interface SearchHighlightField extends SearchHighlightBase {
|
export interface SearchHighlightField extends SearchHighlightBase {
|
||||||
fragment_offset?: integer
|
fragment_offset?: integer
|
||||||
matched_fields?: Fields
|
matched_fields?: Fields
|
||||||
analyzer?: AnalysisAnalyzer
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SearchHighlighterEncoder = 'default' | 'html'
|
export type SearchHighlighterEncoder = 'default' | 'html'
|
||||||
@ -1974,6 +1991,7 @@ export interface UpdateByQueryRequest extends RequestBase {
|
|||||||
lenient?: boolean
|
lenient?: boolean
|
||||||
pipeline?: string
|
pipeline?: string
|
||||||
preference?: string
|
preference?: string
|
||||||
|
q?: string
|
||||||
refresh?: boolean
|
refresh?: boolean
|
||||||
request_cache?: boolean
|
request_cache?: boolean
|
||||||
requests_per_second?: float
|
requests_per_second?: float
|
||||||
@ -4283,13 +4301,61 @@ export interface AggregationsWeightedAverageValue {
|
|||||||
export interface AggregationsWeightedAvgAggregate extends AggregationsSingleMetricAggregateBase {
|
export interface AggregationsWeightedAvgAggregate extends AggregationsSingleMetricAggregateBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AnalysisAnalyzer = AnalysisCustomAnalyzer | AnalysisFingerprintAnalyzer | AnalysisKeywordAnalyzer | AnalysisLanguageAnalyzer | AnalysisNoriAnalyzer | AnalysisPatternAnalyzer | AnalysisSimpleAnalyzer | AnalysisStandardAnalyzer | AnalysisStopAnalyzer | AnalysisWhitespaceAnalyzer | AnalysisIcuAnalyzer | AnalysisKuromojiAnalyzer | AnalysisSnowballAnalyzer | AnalysisDutchAnalyzer
|
export type AnalysisAnalyzer = AnalysisCustomAnalyzer | AnalysisFingerprintAnalyzer | AnalysisKeywordAnalyzer | AnalysisLanguageAnalyzer | AnalysisNoriAnalyzer | AnalysisPatternAnalyzer | AnalysisSimpleAnalyzer | AnalysisStandardAnalyzer | AnalysisStopAnalyzer | AnalysisWhitespaceAnalyzer | AnalysisIcuAnalyzer | AnalysisKuromojiAnalyzer | AnalysisSnowballAnalyzer | AnalysisArabicAnalyzer | AnalysisArmenianAnalyzer | AnalysisBasqueAnalyzer | AnalysisBengaliAnalyzer | AnalysisBrazilianAnalyzer | AnalysisBulgarianAnalyzer | AnalysisCatalanAnalyzer | AnalysisChineseAnalyzer | AnalysisCjkAnalyzer | AnalysisCzechAnalyzer | AnalysisDanishAnalyzer | AnalysisDutchAnalyzer | AnalysisEnglishAnalyzer | AnalysisEstonianAnalyzer | AnalysisFinnishAnalyzer | AnalysisFrenchAnalyzer | AnalysisGalicianAnalyzer | AnalysisGermanAnalyzer | AnalysisGreekAnalyzer | AnalysisHindiAnalyzer | AnalysisHungarianAnalyzer | AnalysisIndonesianAnalyzer | AnalysisIrishAnalyzer | AnalysisItalianAnalyzer | AnalysisLatvianAnalyzer | AnalysisLithuanianAnalyzer | AnalysisNorwegianAnalyzer | AnalysisPersianAnalyzer | AnalysisPortugueseAnalyzer | AnalysisRomanianAnalyzer | AnalysisRussianAnalyzer | AnalysisSerbianAnalyzer | AnalysisSoraniAnalyzer | AnalysisSpanishAnalyzer | AnalysisSwedishAnalyzer | AnalysisTurkishAnalyzer | AnalysisThaiAnalyzer
|
||||||
|
|
||||||
|
export interface AnalysisArabicAnalyzer {
|
||||||
|
type: 'arabic'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisArmenianAnalyzer {
|
||||||
|
type: 'armenian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisAsciiFoldingTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisAsciiFoldingTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'asciifolding'
|
type: 'asciifolding'
|
||||||
preserve_original?: SpecUtilsStringified<boolean>
|
preserve_original?: SpecUtilsStringified<boolean>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBasqueAnalyzer {
|
||||||
|
type: 'basque'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBengaliAnalyzer {
|
||||||
|
type: 'bengali'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBrazilianAnalyzer {
|
||||||
|
type: 'brazilian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisBulgarianAnalyzer {
|
||||||
|
type: 'bulgarian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCatalanAnalyzer {
|
||||||
|
type: 'catalan'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisCharFilter = string | AnalysisCharFilterDefinition
|
export type AnalysisCharFilter = string | AnalysisCharFilterDefinition
|
||||||
|
|
||||||
export interface AnalysisCharFilterBase {
|
export interface AnalysisCharFilterBase {
|
||||||
@ -4304,6 +4370,18 @@ export interface AnalysisCharGroupTokenizer extends AnalysisTokenizerBase {
|
|||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisChineseAnalyzer {
|
||||||
|
type: 'chinese'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCjkAnalyzer {
|
||||||
|
type: 'cjk'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisCommonGramsTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisCommonGramsTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'common_grams'
|
type: 'common_grams'
|
||||||
common_words?: string[]
|
common_words?: string[]
|
||||||
@ -4343,6 +4421,19 @@ export interface AnalysisCustomNormalizer {
|
|||||||
filter?: string[]
|
filter?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisCzechAnalyzer {
|
||||||
|
type: 'czech'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisDanishAnalyzer {
|
||||||
|
type: 'danish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisDelimitedPayloadEncoding = 'int' | 'float' | 'identity'
|
export type AnalysisDelimitedPayloadEncoding = 'int' | 'float' | 'identity'
|
||||||
|
|
||||||
export interface AnalysisDelimitedPayloadTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisDelimitedPayloadTokenFilter extends AnalysisTokenFilterBase {
|
||||||
@ -4358,6 +4449,8 @@ export interface AnalysisDictionaryDecompounderTokenFilter extends AnalysisCompo
|
|||||||
export interface AnalysisDutchAnalyzer {
|
export interface AnalysisDutchAnalyzer {
|
||||||
type: 'dutch'
|
type: 'dutch'
|
||||||
stopwords?: AnalysisStopWords
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AnalysisEdgeNGramSide = 'front' | 'back'
|
export type AnalysisEdgeNGramSide = 'front' | 'back'
|
||||||
@ -4385,6 +4478,19 @@ export interface AnalysisElisionTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
articles_case?: SpecUtilsStringified<boolean>
|
articles_case?: SpecUtilsStringified<boolean>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisEnglishAnalyzer {
|
||||||
|
type: 'english'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisEstonianAnalyzer {
|
||||||
|
type: 'estonian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisFingerprintAnalyzer {
|
export interface AnalysisFingerprintAnalyzer {
|
||||||
type: 'fingerprint'
|
type: 'fingerprint'
|
||||||
version?: VersionString
|
version?: VersionString
|
||||||
@ -4401,11 +4507,59 @@ export interface AnalysisFingerprintTokenFilter extends AnalysisTokenFilterBase
|
|||||||
separator?: string
|
separator?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisFinnishAnalyzer {
|
||||||
|
type: 'finnish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisFrenchAnalyzer {
|
||||||
|
type: 'french'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGalicianAnalyzer {
|
||||||
|
type: 'galician'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGermanAnalyzer {
|
||||||
|
type: 'german'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisGreekAnalyzer {
|
||||||
|
type: 'greek'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisHindiAnalyzer {
|
||||||
|
type: 'hindi'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
export interface AnalysisHtmlStripCharFilter extends AnalysisCharFilterBase {
|
||||||
type: 'html_strip'
|
type: 'html_strip'
|
||||||
escaped_tags?: string[]
|
escaped_tags?: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisHungarianAnalyzer {
|
||||||
|
type: 'hungarian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisHunspellTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'hunspell'
|
type: 'hunspell'
|
||||||
dedup?: boolean
|
dedup?: boolean
|
||||||
@ -4481,6 +4635,27 @@ export interface AnalysisIcuTransformTokenFilter extends AnalysisTokenFilterBase
|
|||||||
id: string
|
id: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisIndonesianAnalyzer {
|
||||||
|
type: 'indonesian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisIrishAnalyzer {
|
||||||
|
type: 'irish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisItalianAnalyzer {
|
||||||
|
type: 'italian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisKStemTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisKStemTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'kstem'
|
type: 'kstem'
|
||||||
}
|
}
|
||||||
@ -4569,6 +4744,13 @@ export interface AnalysisLanguageAnalyzer {
|
|||||||
stopwords_path?: string
|
stopwords_path?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisLatvianAnalyzer {
|
||||||
|
type: 'latvian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisLengthTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisLengthTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'length'
|
type: 'length'
|
||||||
max?: integer
|
max?: integer
|
||||||
@ -4585,6 +4767,13 @@ export interface AnalysisLimitTokenCountTokenFilter extends AnalysisTokenFilterB
|
|||||||
max_token_count?: SpecUtilsStringified<integer>
|
max_token_count?: SpecUtilsStringified<integer>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisLithuanianAnalyzer {
|
||||||
|
type: 'lithuanian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisLowercaseNormalizer {
|
export interface AnalysisLowercaseNormalizer {
|
||||||
type: 'lowercase'
|
type: 'lowercase'
|
||||||
}
|
}
|
||||||
@ -4650,6 +4839,13 @@ export interface AnalysisNoriTokenizer extends AnalysisTokenizerBase {
|
|||||||
|
|
||||||
export type AnalysisNormalizer = AnalysisLowercaseNormalizer | AnalysisCustomNormalizer
|
export type AnalysisNormalizer = AnalysisLowercaseNormalizer | AnalysisCustomNormalizer
|
||||||
|
|
||||||
|
export interface AnalysisNorwegianAnalyzer {
|
||||||
|
type: 'norwegian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisPathHierarchyTokenizer extends AnalysisTokenizerBase {
|
export interface AnalysisPathHierarchyTokenizer extends AnalysisTokenizerBase {
|
||||||
type: 'path_hierarchy'
|
type: 'path_hierarchy'
|
||||||
buffer_size?: SpecUtilsStringified<integer>
|
buffer_size?: SpecUtilsStringified<integer>
|
||||||
@ -4696,6 +4892,12 @@ export interface AnalysisPatternTokenizer extends AnalysisTokenizerBase {
|
|||||||
pattern?: string
|
pattern?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisPersianAnalyzer {
|
||||||
|
type: 'persian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisPhoneticEncoder = 'metaphone' | 'double_metaphone' | 'soundex' | 'refined_soundex' | 'caverphone1' | 'caverphone2' | 'cologne' | 'nysiis' | 'koelnerphonetik' | 'haasephonetik' | 'beider_morse' | 'daitch_mokotoff'
|
export type AnalysisPhoneticEncoder = 'metaphone' | 'double_metaphone' | 'soundex' | 'refined_soundex' | 'caverphone1' | 'caverphone2' | 'cologne' | 'nysiis' | 'koelnerphonetik' | 'haasephonetik' | 'beider_morse' | 'daitch_mokotoff'
|
||||||
|
|
||||||
export type AnalysisPhoneticLanguage = 'any' | 'common' | 'cyrillic' | 'english' | 'french' | 'german' | 'hebrew' | 'hungarian' | 'polish' | 'romanian' | 'russian' | 'spanish'
|
export type AnalysisPhoneticLanguage = 'any' | 'common' | 'cyrillic' | 'english' | 'french' | 'german' | 'hebrew' | 'hungarian' | 'polish' | 'romanian' | 'russian' | 'spanish'
|
||||||
@ -4718,6 +4920,13 @@ export interface AnalysisPorterStemTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
type: 'porter_stem'
|
type: 'porter_stem'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisPortugueseAnalyzer {
|
||||||
|
type: 'portuguese'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisPredicateTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisPredicateTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'predicate_token_filter'
|
type: 'predicate_token_filter'
|
||||||
script: Script | string
|
script: Script | string
|
||||||
@ -4731,6 +4940,27 @@ export interface AnalysisReverseTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
type: 'reverse'
|
type: 'reverse'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisRomanianAnalyzer {
|
||||||
|
type: 'romanian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisRussianAnalyzer {
|
||||||
|
type: 'russian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSerbianAnalyzer {
|
||||||
|
type: 'serbian'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisShingleTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisShingleTokenFilter extends AnalysisTokenFilterBase {
|
||||||
type: 'shingle'
|
type: 'shingle'
|
||||||
filler_token?: string
|
filler_token?: string
|
||||||
@ -4760,6 +4990,20 @@ export interface AnalysisSnowballTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
language?: AnalysisSnowballLanguage
|
language?: AnalysisSnowballLanguage
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSoraniAnalyzer {
|
||||||
|
type: 'sorani'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AnalysisSpanishAnalyzer {
|
||||||
|
type: 'spanish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisStandardAnalyzer {
|
export interface AnalysisStandardAnalyzer {
|
||||||
type: 'standard'
|
type: 'standard'
|
||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
@ -4800,6 +5044,13 @@ export interface AnalysisStopTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
|
|
||||||
export type AnalysisStopWords = string | string[]
|
export type AnalysisStopWords = string | string[]
|
||||||
|
|
||||||
|
export interface AnalysisSwedishAnalyzer {
|
||||||
|
type: 'swedish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisSynonymFormat = 'solr' | 'wordnet'
|
export type AnalysisSynonymFormat = 'solr' | 'wordnet'
|
||||||
|
|
||||||
export interface AnalysisSynonymGraphTokenFilter extends AnalysisTokenFilterBase {
|
export interface AnalysisSynonymGraphTokenFilter extends AnalysisTokenFilterBase {
|
||||||
@ -4826,6 +5077,12 @@ export interface AnalysisSynonymTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
updateable?: boolean
|
updateable?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisThaiAnalyzer {
|
||||||
|
type: 'thai'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type AnalysisTokenChar = 'letter' | 'digit' | 'whitespace' | 'punctuation' | 'symbol' | 'custom'
|
export type AnalysisTokenChar = 'letter' | 'digit' | 'whitespace' | 'punctuation' | 'symbol' | 'custom'
|
||||||
|
|
||||||
export type AnalysisTokenFilter = string | AnalysisTokenFilterDefinition
|
export type AnalysisTokenFilter = string | AnalysisTokenFilterDefinition
|
||||||
@ -4853,6 +5110,13 @@ export interface AnalysisTruncateTokenFilter extends AnalysisTokenFilterBase {
|
|||||||
length?: integer
|
length?: integer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AnalysisTurkishAnalyzer {
|
||||||
|
type: 'turkish'
|
||||||
|
stopwords?: AnalysisStopWords
|
||||||
|
stopwords_path?: string
|
||||||
|
stem_exclusion?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface AnalysisUaxEmailUrlTokenizer extends AnalysisTokenizerBase {
|
export interface AnalysisUaxEmailUrlTokenizer extends AnalysisTokenizerBase {
|
||||||
type: 'uax_url_email'
|
type: 'uax_url_email'
|
||||||
max_token_length?: integer
|
max_token_length?: integer
|
||||||
@ -10431,6 +10695,7 @@ export interface IndicesCacheQueries {
|
|||||||
export interface IndicesDataStream {
|
export interface IndicesDataStream {
|
||||||
_meta?: Metadata
|
_meta?: Metadata
|
||||||
allow_custom_routing?: boolean
|
allow_custom_routing?: boolean
|
||||||
|
failure_store?: IndicesFailureStore
|
||||||
generation: integer
|
generation: integer
|
||||||
hidden: boolean
|
hidden: boolean
|
||||||
ilm_policy?: Name
|
ilm_policy?: Name
|
||||||
@ -10440,6 +10705,7 @@ export interface IndicesDataStream {
|
|||||||
lifecycle?: IndicesDataStreamLifecycleWithRollover
|
lifecycle?: IndicesDataStreamLifecycleWithRollover
|
||||||
name: DataStreamName
|
name: DataStreamName
|
||||||
replicated?: boolean
|
replicated?: boolean
|
||||||
|
rollover_on_write: boolean
|
||||||
status: HealthStatus
|
status: HealthStatus
|
||||||
system?: boolean
|
system?: boolean
|
||||||
template: Name
|
template: Name
|
||||||
@ -10450,8 +10716,8 @@ export interface IndicesDataStreamIndex {
|
|||||||
index_name: IndexName
|
index_name: IndexName
|
||||||
index_uuid: Uuid
|
index_uuid: Uuid
|
||||||
ilm_policy?: Name
|
ilm_policy?: Name
|
||||||
managed_by: IndicesManagedBy
|
managed_by?: IndicesManagedBy
|
||||||
prefer_ilm: boolean
|
prefer_ilm?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IndicesDataStreamLifecycle {
|
export interface IndicesDataStreamLifecycle {
|
||||||
@ -10499,6 +10765,12 @@ export interface IndicesDownsamplingRound {
|
|||||||
config: IndicesDownsampleConfig
|
config: IndicesDownsampleConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IndicesFailureStore {
|
||||||
|
enabled: boolean
|
||||||
|
indices: IndicesDataStreamIndex[]
|
||||||
|
rollover_on_write: boolean
|
||||||
|
}
|
||||||
|
|
||||||
export interface IndicesFielddataFrequencyFilter {
|
export interface IndicesFielddataFrequencyFilter {
|
||||||
max: double
|
max: double
|
||||||
min: double
|
min: double
|
||||||
@ -13924,7 +14196,7 @@ export interface MlPerPartitionCategorization {
|
|||||||
stop_on_warn?: boolean
|
stop_on_warn?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MlPredictedValue = string | double | boolean | integer
|
export type MlPredictedValue = ScalarValue | ScalarValue[]
|
||||||
|
|
||||||
export interface MlQuestionAnsweringInferenceOptions {
|
export interface MlQuestionAnsweringInferenceOptions {
|
||||||
num_top_classes?: integer
|
num_top_classes?: integer
|
||||||
@ -16049,13 +16321,6 @@ export interface NodesGetRepositoriesMeteringInfoResponseBase extends NodesNodes
|
|||||||
nodes: Record<string, NodesRepositoryMeteringInformation>
|
nodes: Record<string, NodesRepositoryMeteringInformation>
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesHotThreadsHotThread {
|
|
||||||
hosts: Host[]
|
|
||||||
node_id: Id
|
|
||||||
node_name: Name
|
|
||||||
threads: string[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface NodesHotThreadsRequest extends RequestBase {
|
export interface NodesHotThreadsRequest extends RequestBase {
|
||||||
node_id?: NodeIds
|
node_id?: NodeIds
|
||||||
ignore_idle_threads?: boolean
|
ignore_idle_threads?: boolean
|
||||||
@ -16069,7 +16334,6 @@ export interface NodesHotThreadsRequest extends RequestBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesHotThreadsResponse {
|
export interface NodesHotThreadsResponse {
|
||||||
hot_threads: NodesHotThreadsHotThread[]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NodesInfoDeprecationIndexing {
|
export interface NodesInfoDeprecationIndexing {
|
||||||
@ -16510,7 +16774,7 @@ export interface QueryRulesQueryRuleCriteria {
|
|||||||
|
|
||||||
export type QueryRulesQueryRuleCriteriaType = 'global' | 'exact' | 'exact_fuzzy' | 'fuzzy' | 'prefix' | 'suffix' | 'contains' | 'lt' | 'lte' | 'gt' | 'gte' | 'always'
|
export type QueryRulesQueryRuleCriteriaType = 'global' | 'exact' | 'exact_fuzzy' | 'fuzzy' | 'prefix' | 'suffix' | 'contains' | 'lt' | 'lte' | 'gt' | 'gte' | 'always'
|
||||||
|
|
||||||
export type QueryRulesQueryRuleType = 'pinned'
|
export type QueryRulesQueryRuleType = 'pinned' | 'exclude'
|
||||||
|
|
||||||
export interface QueryRulesQueryRuleset {
|
export interface QueryRulesQueryRuleset {
|
||||||
ruleset_id: Id
|
ruleset_id: Id
|
||||||
|
|||||||
Reference in New Issue
Block a user