mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Reverts https://github.com/elastic/kibana/pull/168553 Seeing these errors when updating existing alerts as data mappings ``` [2023-10-13T11:06:44.254-04:00][ERROR][plugins.alerting] ResponseError: illegal_argument_exception Root causes: illegal_argument_exception: can't merge a non-nested mapping [faas.trigger] with a nested mapping at KibanaTransport.request (/Users/ying/Code/kibana_prs/node_modules/@elastic/transport/src/Transport.ts:535:17) at processTicksAndRejections (node:internal/process/task_queues:95:5) ``` Needs further investigation as ECS mappings should be backwards compatible
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
/**
|
|
* Fields related to Windows Registry operations.
|
|
*/
|
|
export interface EcsRegistry {
|
|
data?: {
|
|
/**
|
|
* Original bytes written with base64 encoding.
|
|
* For Windows registry operations, such as SetValueEx and RegQueryValueEx, this corresponds to the data pointed by `lp_data`. This is optional but provides better recoverability and should be populated for REG_BINARY encoded values.
|
|
*/
|
|
bytes?: string;
|
|
/**
|
|
* Content when writing string types.
|
|
* Populated as an array when writing string data to the registry. For single string registry types (REG_SZ, REG_EXPAND_SZ), this should be an array with one string. For sequences of string with REG_MULTI_SZ, this array will be variable length. For numeric data, such as REG_DWORD and REG_QWORD, this should be populated with the decimal representation (e.g `"1"`).
|
|
*/
|
|
strings?: string[];
|
|
/**
|
|
* Standard registry type for encoding contents
|
|
*/
|
|
type?: string;
|
|
};
|
|
|
|
/**
|
|
* Abbreviated name for the hive.
|
|
*/
|
|
hive?: string;
|
|
/**
|
|
* Hive-relative path of keys.
|
|
*/
|
|
key?: string;
|
|
/**
|
|
* Full path, including hive, key and value
|
|
*/
|
|
path?: string;
|
|
/**
|
|
* Name of the value written.
|
|
*/
|
|
value?: string;
|
|
}
|