File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -13018,6 +13018,8 @@ export interface IngestInferenceProcessor extends IngestProcessorBase {
13018
13018
target_field?: Field
13019
13019
field_map?: Record<Field, any>
13020
13020
inference_config?: IngestInferenceConfig
13021
+ input_output?: IngestInputConfig[]
13022
+ ignore_missing?: boolean
13021
13023
}
13022
13024
13023
13025
export interface IngestIngest {
@@ -13026,6 +13028,11 @@ export interface IngestIngest {
13026
13028
pipeline?: Name
13027
13029
}
13028
13030
13031
+ export interface IngestInputConfig {
13032
+ input_field: string
13033
+ output_field: string
13034
+ }
13035
+
13029
13036
export interface IngestIpLocationProcessor extends IngestProcessorBase {
13030
13037
database_file?: string
13031
13038
field: Field
Original file line number Diff line number Diff line change @@ -13266,6 +13266,8 @@ export interface IngestInferenceProcessor extends IngestProcessorBase {
13266
13266
target_field?: Field
13267
13267
field_map?: Record<Field, any>
13268
13268
inference_config?: IngestInferenceConfig
13269
+ input_output?: IngestInputConfig[]
13270
+ ignore_missing?: boolean
13269
13271
}
13270
13272
13271
13273
export interface IngestIngest {
@@ -13274,6 +13276,11 @@ export interface IngestIngest {
13274
13276
pipeline?: Name
13275
13277
}
13276
13278
13279
+ export interface IngestInputConfig {
13280
+ input_field: string
13281
+ output_field: string
13282
+ }
13283
+
13277
13284
export interface IngestIpLocationProcessor extends IngestProcessorBase {
13278
13285
database_file?: string
13279
13286
field: Field
You can’t perform that action at this time.
0 commit comments