File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 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 {
1301813018 target_field?: Field
1301913019 field_map?: Record<Field, any>
1302013020 inference_config?: IngestInferenceConfig
13021+ input_output?: IngestInputConfig[]
13022+ ignore_missing?: boolean
1302113023}
1302213024
1302313025export interface IngestIngest {
@@ -13026,6 +13028,11 @@ export interface IngestIngest {
1302613028 pipeline?: Name
1302713029}
1302813030
13031+ export interface IngestInputConfig {
13032+ input_field: string
13033+ output_field: string
13034+ }
13035+
1302913036export interface IngestIpLocationProcessor extends IngestProcessorBase {
1303013037 database_file?: string
1303113038 field: Field
Original file line number Diff line number Diff line change @@ -13266,6 +13266,8 @@ export interface IngestInferenceProcessor extends IngestProcessorBase {
1326613266 target_field?: Field
1326713267 field_map?: Record<Field, any>
1326813268 inference_config?: IngestInferenceConfig
13269+ input_output?: IngestInputConfig[]
13270+ ignore_missing?: boolean
1326913271}
1327013272
1327113273export interface IngestIngest {
@@ -13274,6 +13276,11 @@ export interface IngestIngest {
1327413276 pipeline?: Name
1327513277}
1327613278
13279+ export interface IngestInputConfig {
13280+ input_field: string
13281+ output_field: string
13282+ }
13283+
1327713284export interface IngestIpLocationProcessor extends IngestProcessorBase {
1327813285 database_file?: string
1327913286 field: Field
You can’t perform that action at this time.
0 commit comments