{ "id": "integrationAssistant", "client": { "classes": [], "functions": [], "interfaces": [], "enums": [], "misc": [], "objects": [], "setup": { "parentPluginId": "integrationAssistant", "id": "def-public.IntegrationAssistantPluginSetup", "type": "Interface", "tags": [], "label": "IntegrationAssistantPluginSetup", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true }, "start": { "parentPluginId": "integrationAssistant", "id": "def-public.IntegrationAssistantPluginStart", "type": "Interface", "tags": [], "label": "IntegrationAssistantPluginStart", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-public.IntegrationAssistantPluginStart.components", "type": "Object", "tags": [], "label": "components", "description": [], "signature": [ "{ CreateIntegration: ", "CreateIntegrationComponent", "; CreateIntegrationCardButton: ", "CreateIntegrationCardButtonComponent", "; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/public/types.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "integrationAssistant", "id": "def-public.IntegrationAssistantPluginStart.renderUpselling", "type": "Function", "tags": [], "label": "renderUpselling", "description": [ "\nSets the upselling to be rendered in the UI.\nIf defined, the section will be displayed and it will prevent\nthe user from interacting with the rest of the UI." ], "signature": [ "(upselling: React.ReactNode) => void" ], "path": "x-pack/platform/plugins/shared/integration_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-public.IntegrationAssistantPluginStart.renderUpselling.$1", "type": "CompoundType", "tags": [], "label": "upselling", "description": [], "signature": [ "React.ReactNode" ], "path": "x-pack/platform/plugins/shared/integration_assistant/public/types.ts", "deprecated": false, "trackAdoption": false, "isRequired": false } ], "returnComment": [] } ], "lifecycle": "start", "initialIsOpen": true } }, "server": { "classes": [], "functions": [], "interfaces": [], "enums": [], "misc": [], "objects": [], "setup": { "parentPluginId": "integrationAssistant", "id": "def-server.IntegrationAssistantPluginSetup", "type": "Interface", "tags": [], "label": "IntegrationAssistantPluginSetup", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-server.IntegrationAssistantPluginSetup.setIsAvailable", "type": "Function", "tags": [], "label": "setIsAvailable", "description": [], "signature": [ "(isAvailable: boolean) => void" ], "path": "x-pack/platform/plugins/shared/integration_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-server.IntegrationAssistantPluginSetup.setIsAvailable.$1", "type": "boolean", "tags": [], "label": "isAvailable", "description": [], "signature": [ "boolean" ], "path": "x-pack/platform/plugins/shared/integration_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "isRequired": true } ], "returnComment": [] } ], "lifecycle": "setup", "initialIsOpen": true }, "start": { "parentPluginId": "integrationAssistant", "id": "def-server.IntegrationAssistantPluginStart", "type": "Interface", "tags": [], "label": "IntegrationAssistantPluginStart", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/server/types.ts", "deprecated": false, "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true } }, "common": { "classes": [], "functions": [ { "parentPluginId": "integrationAssistant", "id": "def-common.partialShuffleArray", "type": "Function", "tags": [], "label": "partialShuffleArray", "description": [ "\nPartially shuffles an array using the modified Fisher-Yates algorithm.\n\nThe array is partially shuffled in place, meaning that:\n - the first `start` elements are kept in their place;\n - the slice from `start` to `end` is filled with the sample from the remaining element;\n - the sample is guaranteed to be reasonably unbiased (any bias only come from the random function).\nWe do not make any guarantees regarding the order of elements after `end`.\n\nReproducibility:\n - the result is deterministic for the given random seed.\n\nPerformance:\n - we perform exactly `end-start` operations, each including:\n - a random number generation; and\n - possibly an array element swap; also\n - we use constant extra memory.\n\nImplementation notes:\n1. A naïve implementation would be to shuffle the whole array starting from `start`. We\n simply modify the modern version of Fisher-Yates algorithm doing it to stop once we reach\n the `end`, so the results returned on the slice from `start` to `end` are statistically\n indistinguishable from the results returned by the naïve implementation.\n2. Thus due to the properties of the original Fisher-Yates shuffle, the sampling would be\n unbiased, meaning that the probability of any given shuffle order is the same as that of\n any other, provided the random function has no bias itself, that is, is uniform.\n3. The actual pseudorandom function we use (from `seedrandom`), plus the modulo operation,\n are not perfectly uniform, but are good enough, so the bias are negligible for our purposes.\n\nReference:\n - https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle, especially bias description.\n\nExamples:\n - shuffle the whole array: partialShuffleArray(arr)\n - shuffle the first 5 elements: partialShuffleArray(arr, 0, 5)\n - keep the first element, shuffle the rest: partialShuffleArray(arr, 1)\n - shuffle the last 5 elements: partialShuffleArray(arr, arr.length - 5)\n" ], "signature": [ "(arr: T[], start: number, end: number, seed: string) => void" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/utils.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-common.partialShuffleArray.$1", "type": "Array", "tags": [], "label": "arr", "description": [ "- The array to be partially shuffled." ], "signature": [ "T[]" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/utils.ts", "deprecated": false, "trackAdoption": false, "isRequired": true }, { "parentPluginId": "integrationAssistant", "id": "def-common.partialShuffleArray.$2", "type": "number", "tags": [], "label": "start", "description": [ "- The number of elements in the beginning of the array to keep in place." ], "signature": [ "number" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/utils.ts", "deprecated": false, "trackAdoption": false, "isRequired": true }, { "parentPluginId": "integrationAssistant", "id": "def-common.partialShuffleArray.$3", "type": "number", "tags": [], "label": "end", "description": [ "- The number of elements to be shuffled." ], "signature": [ "number" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/utils.ts", "deprecated": false, "trackAdoption": false, "isRequired": true }, { "parentPluginId": "integrationAssistant", "id": "def-common.partialShuffleArray.$4", "type": "string", "tags": [], "label": "seed", "description": [], "signature": [ "string" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/utils.ts", "deprecated": false, "trackAdoption": false, "isRequired": true } ], "returnComment": [], "initialIsOpen": false } ], "interfaces": [ { "parentPluginId": "integrationAssistant", "id": "def-common.ESProcessorItem", "type": "Interface", "tags": [], "label": "ESProcessorItem", "description": [ "\nProcessor item for the Elasticsearch processor." ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/processor_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "integrationAssistant", "id": "def-common.ESProcessorItem.Unnamed", "type": "IndexSignature", "tags": [], "label": "[key: string]: ESProcessorOptions", "description": [], "signature": [ "[key: string]: ", "ESProcessorOptions" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/processor_attributes.gen.ts", "deprecated": false, "trackAdoption": false } ], "initialIsOpen": false } ], "enums": [], "misc": [ { "parentPluginId": "integrationAssistant", "id": "def-common.ANALYZE_API_PATH", "type": "string", "tags": [], "label": "ANALYZE_API_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.ANALYZE_LOGS_PATH", "type": "string", "tags": [], "label": "ANALYZE_LOGS_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeApiRequestBody", "type": "Type", "tags": [], "label": "AnalyzeApiRequestBody", "description": [], "signature": [ "{ connectorId: string; dataStreamTitle: string; pathOptions: {} & { [k: string]: unknown; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_api/analyze_api_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeApiResponse", "type": "Type", "tags": [], "label": "AnalyzeApiResponse", "description": [], "signature": [ "{ results: { suggestedPaths: string[]; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_api/analyze_api_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeLogsRequestBody", "type": "Type", "tags": [], "label": "AnalyzeLogsRequestBody", "description": [], "signature": [ "{ connectorId: string; packageName: string; dataStreamName: string; packageTitle: string; dataStreamTitle: string; logSamples: string[]; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_logs/analyze_logs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeLogsResponse", "type": "Type", "tags": [], "label": "AnalyzeLogsResponse", "description": [], "signature": [ "{ results: { samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; parsedSamples: string[]; }; additionalProcessors?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_logs/analyze_logs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.BuildIntegrationRequestBody", "type": "Type", "tags": [], "label": "BuildIntegrationRequestBody", "description": [], "signature": [ "{ integration: { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/build_integration/build_integration.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CATEGORIZATION_GRAPH_PATH", "type": "string", "tags": [], "label": "CATEGORIZATION_GRAPH_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CategorizationRequestBody", "type": "Type", "tags": [], "label": "CategorizationRequestBody", "description": [], "signature": [ "{ connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/categorization/categorization_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CategorizationResponse", "type": "Type", "tags": [], "label": "CategorizationResponse", "description": [], "signature": [ "{ results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/categorization/categorization_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CEL_INPUT_GRAPH_PATH", "type": "string", "tags": [], "label": "CEL_INPUT_GRAPH_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelAuthType", "type": "Type", "tags": [], "label": "CelAuthType", "description": [ "\nThe type of auth utilized for the input." ], "signature": [ "\"basic\" | \"digest\" | \"oauth2\" | \"header\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/cel_input_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInput", "type": "Type", "tags": [], "label": "CelInput", "description": [ "\nOptional CEL input details." ], "signature": [ "{ url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/cel_input_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInputRequestBody", "type": "Type", "tags": [], "label": "CelInputRequestBody", "description": [], "signature": [ "{ connectorId: string; dataStreamTitle: string; celDetails: { path: string; auth: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; openApiDetails?: { schemas: string; operation: string; auth?: string | undefined; } | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/cel/cel_input_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInputResponse", "type": "Type", "tags": [], "label": "CelInputResponse", "description": [], "signature": [ "{ results: { configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/cel/cel_input_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CHECK_PIPELINE_PATH", "type": "string", "tags": [], "label": "CHECK_PIPELINE_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CheckPipelineRequestBody", "type": "Type", "tags": [], "label": "CheckPipelineRequestBody", "description": [], "signature": [ "{ rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/check_pipeline/check_pipeline.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CheckPipelineResponse", "type": "Type", "tags": [], "label": "CheckPipelineResponse", "description": [], "signature": [ "{ results: { docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/check_pipeline/check_pipeline.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.DataStream", "type": "Type", "tags": [], "label": "DataStream", "description": [ "\nThe dataStream object." ], "signature": [ "{ name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Docs", "type": "Type", "tags": [], "label": "Docs", "description": [ "\nAn array of processed documents." ], "signature": [ "Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.ECS_GRAPH_PATH", "type": "string", "tags": [], "label": "ECS_GRAPH_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.EcsMappingRequestBody", "type": "Type", "tags": [], "label": "EcsMappingRequestBody", "description": [], "signature": [ "{ connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; mapping?: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\"> | undefined; additionalProcessors?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/ecs/ecs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.EcsMappingResponse", "type": "Type", "tags": [], "label": "EcsMappingResponse", "description": [], "signature": [ "{ results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; mapping: {} & { [k: string]: unknown; }; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/ecs/ecs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.InputType", "type": "Type", "tags": [], "label": "InputType", "description": [ "\nThe input type for the dataStream to pull logs from." ], "signature": [ "\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Integration", "type": "Type", "tags": [], "label": "Integration", "description": [ "\nThe integration object." ], "signature": [ "{ name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.INTEGRATION_ASSISTANT_APP_ROUTE", "type": "string", "tags": [], "label": "INTEGRATION_ASSISTANT_APP_ROUTE", "description": [], "signature": [ "\"/app/integration_assistant\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.INTEGRATION_ASSISTANT_BASE_PATH", "type": "string", "tags": [], "label": "INTEGRATION_ASSISTANT_BASE_PATH", "description": [], "signature": [ "\"/internal/automatic_import\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.INTEGRATION_BUILDER_PATH", "type": "string", "tags": [], "label": "INTEGRATION_BUILDER_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.LangSmithOptions", "type": "Type", "tags": [], "label": "LangSmithOptions", "description": [ "\nThe LangSmith options object." ], "signature": [ "{ apiKey: string; projectName: string; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Pipeline", "type": "Type", "tags": [], "label": "Pipeline", "description": [ "\nThe pipeline object." ], "signature": [ "{ processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.PLUGIN_ID", "type": "string", "tags": [], "label": "PLUGIN_ID", "description": [], "signature": [ "\"integrationAssistant\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.RELATED_GRAPH_PATH", "type": "string", "tags": [], "label": "RELATED_GRAPH_PATH", "description": [], "path": "x-pack/platform/plugins/shared/integration_assistant/common/constants.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.RelatedRequestBody", "type": "Type", "tags": [], "label": "RelatedRequestBody", "description": [], "signature": [ "{ connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/related/related_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.RelatedResponse", "type": "Type", "tags": [], "label": "RelatedResponse", "description": [], "signature": [ "{ results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/related/related_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.SamplesFormat", "type": "Type", "tags": [], "label": "SamplesFormat", "description": [ "\nFormat of the provided log samples." ], "signature": [ "{ name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.SamplesFormatName", "type": "Type", "tags": [], "label": "SamplesFormatName", "description": [ "\nThe name of the log samples format." ], "signature": [ "\"ndjson\" | \"json\" | \"csv\" | \"structured\" | \"unstructured\" | \"unsupported\" | \"cef\" | \"leef\" | \"fix\"" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false } ], "objects": [ { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeApiRequestBody", "type": "Object", "tags": [], "label": "AnalyzeApiRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ dataStreamTitle: Zod.ZodString; pathOptions: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; connectorId: Zod.ZodString; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; dataStreamTitle: string; pathOptions: {} & { [k: string]: unknown; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }, { connectorId: string; dataStreamTitle: string; pathOptions: {} & { [k: string]: unknown; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_api/analyze_api_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeApiResponse", "type": "Object", "tags": [], "label": "AnalyzeApiResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ suggestedPaths: Zod.ZodArray; }, \"strip\", Zod.ZodTypeAny, { suggestedPaths: string[]; }, { suggestedPaths: string[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { suggestedPaths: string[]; }; }, { results: { suggestedPaths: string[]; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_api/analyze_api_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeLogsRequestBody", "type": "Object", "tags": [], "label": "AnalyzeLogsRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ packageName: Zod.ZodString; dataStreamName: Zod.ZodString; packageTitle: Zod.ZodString; dataStreamTitle: Zod.ZodString; logSamples: Zod.ZodArray; connectorId: Zod.ZodString; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; packageName: string; dataStreamName: string; packageTitle: string; dataStreamTitle: string; logSamples: string[]; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }, { connectorId: string; packageName: string; dataStreamName: string; packageTitle: string; dataStreamTitle: string; logSamples: string[]; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_logs/analyze_logs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.AnalyzeLogsResponse", "type": "Object", "tags": [], "label": "AnalyzeLogsResponse", "description": [], "signature": [ "Zod.ZodObject<{ additionalProcessors: Zod.ZodOptional, \"many\">>; results: Zod.ZodObject<{ samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; parsedSamples: Zod.ZodArray; }, \"strip\", Zod.ZodTypeAny, { samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; parsedSamples: string[]; }, { samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; parsedSamples: string[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; parsedSamples: string[]; }; additionalProcessors?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { results: { samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; parsedSamples: string[]; }; additionalProcessors?: ", "ESProcessorItemInput", "[] | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/analyze_logs/analyze_logs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.BuildIntegrationRequestBody", "type": "Object", "tags": [], "label": "BuildIntegrationRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ integration: Zod.ZodObject<{ name: Zod.ZodString; title: Zod.ZodString; description: Zod.ZodString; dataStreams: Zod.ZodArray, \"many\">; rawSamples: Zod.ZodArray; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; celInput: Zod.ZodOptional; configFields: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; needsAuthConfigBlock: Zod.ZodBoolean; program: Zod.ZodString; stateSettings: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; redactVars: Zod.ZodArray; url: Zod.ZodString; }, \"strip\", Zod.ZodTypeAny, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }>>; }, \"strip\", Zod.ZodTypeAny, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }>, \"many\">; logo: Zod.ZodOptional; }, \"strip\", Zod.ZodTypeAny, { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }, { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }>; }, \"strip\", Zod.ZodTypeAny, { integration: { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }; }, { integration: { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/build_integration/build_integration.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CategorizationRequestBody", "type": "Object", "tags": [], "label": "CategorizationRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ packageName: Zod.ZodString; dataStreamName: Zod.ZodString; rawSamples: Zod.ZodArray; currentPipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; connectorId: Zod.ZodString; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/categorization/categorization_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CategorizationResponse", "type": "Object", "tags": [], "label": "CategorizationResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; }, \"strip\", Zod.ZodTypeAny, { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }, { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }, { results: { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/categorization/categorization_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelAuthType", "type": "Object", "tags": [], "label": "CelAuthType", "description": [], "signature": [ "Zod.ZodEnum<[\"basic\", \"digest\", \"oauth2\", \"header\"]>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/cel_input_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInput", "type": "Object", "tags": [], "label": "CelInput", "description": [], "signature": [ "Zod.ZodObject<{ authType: Zod.ZodEnum<[\"basic\", \"digest\", \"oauth2\", \"header\"]>; configFields: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; needsAuthConfigBlock: Zod.ZodBoolean; program: Zod.ZodString; stateSettings: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; redactVars: Zod.ZodArray; url: Zod.ZodString; }, \"strip\", Zod.ZodTypeAny, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/cel_input_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInputRequestBody", "type": "Object", "tags": [], "label": "CelInputRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ dataStreamTitle: Zod.ZodString; celDetails: Zod.ZodObject<{ path: Zod.ZodString; auth: Zod.ZodEnum<[\"basic\", \"digest\", \"oauth2\", \"header\"]>; openApiDetails: Zod.ZodOptional; }, \"strip\", Zod.ZodTypeAny, { schemas: string; operation: string; auth?: string | undefined; }, { schemas: string; operation: string; auth?: string | undefined; }>>; }, \"strip\", Zod.ZodTypeAny, { path: string; auth: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; openApiDetails?: { schemas: string; operation: string; auth?: string | undefined; } | undefined; }, { path: string; auth: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; openApiDetails?: { schemas: string; operation: string; auth?: string | undefined; } | undefined; }>; connectorId: Zod.ZodString; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; dataStreamTitle: string; celDetails: { path: string; auth: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; openApiDetails?: { schemas: string; operation: string; auth?: string | undefined; } | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }, { connectorId: string; dataStreamTitle: string; celDetails: { path: string; auth: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; openApiDetails?: { schemas: string; operation: string; auth?: string | undefined; } | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/cel/cel_input_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CelInputResponse", "type": "Object", "tags": [], "label": "CelInputResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ configFields: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; program: Zod.ZodString; needsAuthConfigBlock: Zod.ZodBoolean; stateSettings: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; redactVars: Zod.ZodArray; }, \"strip\", Zod.ZodTypeAny, { configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }, { configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }; }, { results: { configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/cel/cel_input_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CheckPipelineRequestBody", "type": "Object", "tags": [], "label": "CheckPipelineRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ rawSamples: Zod.ZodArray; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; }, \"strip\", Zod.ZodTypeAny, { rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; }, { rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/check_pipeline/check_pipeline.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.CheckPipelineResponse", "type": "Object", "tags": [], "label": "CheckPipelineResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; }, \"strip\", Zod.ZodTypeAny, { docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }, { docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }, { results: { docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/check_pipeline/check_pipeline.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.DataStream", "type": "Object", "tags": [], "label": "DataStream", "description": [], "signature": [ "Zod.ZodObject<{ name: Zod.ZodString; title: Zod.ZodString; description: Zod.ZodString; inputTypes: Zod.ZodArray, \"many\">; rawSamples: Zod.ZodArray; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; celInput: Zod.ZodOptional; configFields: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; needsAuthConfigBlock: Zod.ZodBoolean; program: Zod.ZodString; stateSettings: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; redactVars: Zod.ZodArray; url: Zod.ZodString; }, \"strip\", Zod.ZodTypeAny, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }>>; }, \"strip\", Zod.ZodTypeAny, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Docs", "type": "Object", "tags": [], "label": "Docs", "description": [], "signature": [ "Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.EcsMappingRequestBody", "type": "Object", "tags": [], "label": "EcsMappingRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ packageName: Zod.ZodString; dataStreamName: Zod.ZodString; rawSamples: Zod.ZodArray; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; mapping: Zod.ZodOptional, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>>; additionalProcessors: Zod.ZodOptional, \"many\">>; connectorId: Zod.ZodString; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; mapping?: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\"> | undefined; additionalProcessors?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; mapping?: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\"> | undefined; additionalProcessors?: ", "ESProcessorItemInput", "[] | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/ecs/ecs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.EcsMappingResponse", "type": "Object", "tags": [], "label": "EcsMappingResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ mapping: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; }, \"strip\", Zod.ZodTypeAny, { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; mapping: {} & { [k: string]: unknown; }; }, { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; mapping: {} & { [k: string]: unknown; }; }>; }, \"strip\", Zod.ZodTypeAny, { results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; mapping: {} & { [k: string]: unknown; }; }; }, { results: { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; mapping: {} & { [k: string]: unknown; }; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/ecs/ecs_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.ESProcessorItem", "type": "Object", "tags": [], "label": "ESProcessorItem", "description": [], "signature": [ "Zod.ZodType<", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, ", Zod.ZodTypeDef, ", "ESProcessorItemInput", ">" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/processor_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.InputType", "type": "Object", "tags": [], "label": "InputType", "description": [], "signature": [ "Zod.ZodEnum<[\"aws-cloudwatch\", \"aws-s3\", \"azure-blob-storage\", \"azure-eventhub\", \"cel\", \"cloudfoundry\", \"filestream\", \"gcp-pubsub\", \"gcs\", \"http_endpoint\", \"journald\", \"kafka\", \"tcp\", \"udp\"]>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Integration", "type": "Object", "tags": [], "label": "Integration", "description": [], "signature": [ "Zod.ZodObject<{ name: Zod.ZodString; title: Zod.ZodString; description: Zod.ZodString; dataStreams: Zod.ZodArray, \"many\">; rawSamples: Zod.ZodArray; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; celInput: Zod.ZodOptional; configFields: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; needsAuthConfigBlock: Zod.ZodBoolean; program: Zod.ZodString; stateSettings: Zod.ZodObject<{}, \"strip\", Zod.ZodUnknown, Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>; redactVars: Zod.ZodArray; url: Zod.ZodString; }, \"strip\", Zod.ZodTypeAny, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }, { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; }>>; }, \"strip\", Zod.ZodTypeAny, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }, { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }>, \"many\">; logo: Zod.ZodOptional; }, \"strip\", Zod.ZodTypeAny, { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }, { name: string; title: string; description: string; dataStreams: { name: string; title: string; description: string; inputTypes: (\"kafka\" | \"aws-cloudwatch\" | \"aws-s3\" | \"azure-blob-storage\" | \"azure-eventhub\" | \"cel\" | \"cloudfoundry\" | \"filestream\" | \"gcp-pubsub\" | \"gcs\" | \"http_endpoint\" | \"journald\" | \"tcp\" | \"udp\")[]; rawSamples: string[]; pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; celInput?: { url: string; authType: \"basic\" | \"header\" | \"digest\" | \"oauth2\"; configFields: {} & { [k: string]: unknown; }; needsAuthConfigBlock: boolean; program: string; stateSettings: {} & { [k: string]: unknown; }; redactVars: string[]; } | undefined; }[]; logo?: string | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.LangSmithOptions", "type": "Object", "tags": [], "label": "LangSmithOptions", "description": [], "signature": [ "Zod.ZodObject<{ projectName: Zod.ZodString; apiKey: Zod.ZodString; }, \"strip\", Zod.ZodTypeAny, { apiKey: string; projectName: string; }, { apiKey: string; projectName: string; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.Pipeline", "type": "Object", "tags": [], "label": "Pipeline", "description": [], "signature": [ "Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.RelatedRequestBody", "type": "Object", "tags": [], "label": "RelatedRequestBody", "description": [], "signature": [ "Zod.ZodObject<{ packageName: Zod.ZodString; dataStreamName: Zod.ZodString; rawSamples: Zod.ZodArray; currentPipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; connectorId: Zod.ZodString; samplesFormat: Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>; langSmithOptions: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }, { connectorId: string; packageName: string; rawSamples: string[]; samplesFormat: { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }; dataStreamName: string; currentPipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; langSmithOptions?: { apiKey: string; projectName: string; } | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/related/related_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.RelatedResponse", "type": "Object", "tags": [], "label": "RelatedResponse", "description": [], "signature": [ "Zod.ZodObject<{ results: Zod.ZodObject<{ docs: Zod.ZodArray, Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">>, \"many\">; pipeline: Zod.ZodObject<{ name: Zod.ZodOptional; description: Zod.ZodOptional; version: Zod.ZodOptional; processors: Zod.ZodArray, \"many\">; on_failure: Zod.ZodOptional, \"many\">>; }, \"strip\", Zod.ZodTypeAny, { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }, { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }>; }, \"strip\", Zod.ZodTypeAny, { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }, { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }>; }, \"strip\", Zod.ZodTypeAny, { results: { pipeline: { processors: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", { "pluginId": "integrationAssistant", "scope": "common", "docId": "kibIntegrationAssistantPluginApi", "section": "def-common.ESProcessorItem", "text": "ESProcessorItem" }, "[] | undefined; }; docs: Zod.objectOutputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }, { results: { pipeline: { processors: ", "ESProcessorItemInput", "[]; version?: number | undefined; name?: string | undefined; description?: string | undefined; on_failure?: ", "ESProcessorItemInput", "[] | undefined; }; docs: Zod.objectInputType<{}, Zod.ZodUnknown, \"strip\">[]; }; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/related/related_route.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.SamplesFormat", "type": "Object", "tags": [], "label": "SamplesFormat", "description": [], "signature": [ "Zod.ZodObject<{ name: Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>; multiline: Zod.ZodOptional; header: Zod.ZodOptional; columns: Zod.ZodOptional>; json_path: Zod.ZodOptional>; }, \"strip\", Zod.ZodTypeAny, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }, { name: \"unsupported\" | \"json\" | \"ndjson\" | \"csv\" | \"structured\" | \"unstructured\" | \"cef\" | \"leef\" | \"fix\"; columns?: string[] | undefined; header?: boolean | undefined; multiline?: boolean | undefined; json_path?: string[] | undefined; }>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false }, { "parentPluginId": "integrationAssistant", "id": "def-common.SamplesFormatName", "type": "Object", "tags": [], "label": "SamplesFormatName", "description": [], "signature": [ "Zod.ZodEnum<[\"ndjson\", \"json\", \"csv\", \"structured\", \"unstructured\", \"unsupported\", \"cef\", \"leef\", \"fix\"]>" ], "path": "x-pack/platform/plugins/shared/integration_assistant/common/api/model/common_attributes.gen.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false } ] } }