Skip to content

Auto-generated code for 8.9 #1977

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
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
17 changes: 13 additions & 4 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5712,7 +5712,7 @@ export interface QueryDslQueryContainer {
term?: Partial<Record<Field, QueryDslTermQuery | FieldValue>>
terms?: QueryDslTermsQuery
terms_set?: Partial<Record<Field, QueryDslTermsSetQuery>>
text_expansion?: QueryDslTextExpansionQuery | Field
text_expansion?: Partial<Record<Field, QueryDslTextExpansionQuery>>
wildcard?: Partial<Record<Field, QueryDslWildcardQuery | string>>
wrapper?: QueryDslWrapperQuery
type?: QueryDslTypeQuery
Expand Down Expand Up @@ -5927,7 +5927,6 @@ export interface QueryDslTermsSetQuery extends QueryDslQueryBase {
}

export interface QueryDslTextExpansionQuery extends QueryDslQueryBase {
value: Field
model_id: string
model_text: string
}
Expand Down Expand Up @@ -9609,7 +9608,7 @@ export interface IndicesIndexSettingsKeys {
queries?: IndicesQueries
similarity?: IndicesSettingsSimilarity
mapping?: IndicesMappingLimitSettings
'indexing.slowlog'?: IndicesSlowlogSettings
'indexing.slowlog'?: IndicesIndexingSlowlogSettings
indexing_pressure?: IndicesIndexingPressure
store?: IndicesStorage
}
Expand Down Expand Up @@ -9687,6 +9686,17 @@ export interface IndicesIndexingPressureMemory {
limit?: integer
}

export interface IndicesIndexingSlowlogSettings {
level?: string
source?: integer
reformat?: boolean
threshold?: IndicesIndexingSlowlogTresholds
}

export interface IndicesIndexingSlowlogTresholds {
index?: IndicesSlowlogTresholdLevels
}

export interface IndicesMappingLimitSettings {
coerce?: boolean
total_fields?: IndicesMappingLimitSettingsTotalFields
Expand Down Expand Up @@ -9840,7 +9850,6 @@ export interface IndicesSlowlogTresholdLevels {
export interface IndicesSlowlogTresholds {
query?: IndicesSlowlogTresholdLevels
fetch?: IndicesSlowlogTresholdLevels
index?: IndicesSlowlogTresholdLevels
}

export interface IndicesSoftDeletes {
Expand Down
17 changes: 13 additions & 4 deletions src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5785,7 +5785,7 @@ export interface QueryDslQueryContainer {
term?: Partial<Record<Field, QueryDslTermQuery | FieldValue>>
terms?: QueryDslTermsQuery
terms_set?: Partial<Record<Field, QueryDslTermsSetQuery>>
text_expansion?: QueryDslTextExpansionQuery | Field
text_expansion?: Partial<Record<Field, QueryDslTextExpansionQuery>>
wildcard?: Partial<Record<Field, QueryDslWildcardQuery | string>>
wrapper?: QueryDslWrapperQuery
type?: QueryDslTypeQuery
Expand Down Expand Up @@ -6000,7 +6000,6 @@ export interface QueryDslTermsSetQuery extends QueryDslQueryBase {
}

export interface QueryDslTextExpansionQuery extends QueryDslQueryBase {
value: Field
model_id: string
model_text: string
}
Expand Down Expand Up @@ -9732,7 +9731,7 @@ export interface IndicesIndexSettingsKeys {
queries?: IndicesQueries
similarity?: IndicesSettingsSimilarity
mapping?: IndicesMappingLimitSettings
'indexing.slowlog'?: IndicesSlowlogSettings
'indexing.slowlog'?: IndicesIndexingSlowlogSettings
indexing_pressure?: IndicesIndexingPressure
store?: IndicesStorage
}
Expand Down Expand Up @@ -9810,6 +9809,17 @@ export interface IndicesIndexingPressureMemory {
limit?: integer
}

export interface IndicesIndexingSlowlogSettings {
level?: string
source?: integer
reformat?: boolean
threshold?: IndicesIndexingSlowlogTresholds
}

export interface IndicesIndexingSlowlogTresholds {
index?: IndicesSlowlogTresholdLevels
}

export interface IndicesMappingLimitSettings {
coerce?: boolean
total_fields?: IndicesMappingLimitSettingsTotalFields
Expand Down Expand Up @@ -9963,7 +9973,6 @@ export interface IndicesSlowlogTresholdLevels {
export interface IndicesSlowlogTresholds {
query?: IndicesSlowlogTresholdLevels
fetch?: IndicesSlowlogTresholdLevels
index?: IndicesSlowlogTresholdLevels
}

export interface IndicesSoftDeletes {
Expand Down