mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security Solution][Data Views] - Update bulk actions data views index param to be snake_case (#138429)
## Summary Overlooked a param name - should be snake case per our APIs. `overwriteDataViews` --> `overwrite_data_views`
This commit is contained in:
parent
2dfc992191
commit
6da6f18b2d
5 changed files with 9 additions and 9 deletions
|
@ -401,7 +401,7 @@ const bulkActionEditPayloadIndexPatterns = t.intersection([
|
|||
]),
|
||||
value: index,
|
||||
}),
|
||||
t.exact(t.partial({ overwriteDataViews: t.boolean })),
|
||||
t.exact(t.partial({ overwrite_data_views: t.boolean })),
|
||||
]);
|
||||
|
||||
export type BulkActionEditPayloadIndexPatterns = t.TypeOf<
|
||||
|
|
|
@ -118,7 +118,7 @@ const IndexPatternsFormComponent = ({
|
|||
const payload = {
|
||||
value: data.index,
|
||||
type: data.overwrite ? BulkActionEditType.set_index_patterns : editAction,
|
||||
overwriteDataViews: data.overwriteDataViews,
|
||||
overwrite_data_views: data.overwriteDataViews,
|
||||
};
|
||||
|
||||
onConfirm(payload);
|
||||
|
|
|
@ -99,28 +99,28 @@ describe('ruleParamsModifier', () => {
|
|||
expect(editedRuleParams).toHaveProperty('index', ['index']);
|
||||
});
|
||||
|
||||
test('should set dataViewId to undefined if overwriteDataViews=true on set_index_patterns action', () => {
|
||||
test('should set dataViewId to undefined if overwrite_data_views=true on set_index_patterns action', () => {
|
||||
const editedRuleParams = ruleParamsModifier(
|
||||
{ dataViewId: 'test-data-view', index: ['test-*'] } as RuleAlertType['params'],
|
||||
[
|
||||
{
|
||||
type: BulkActionEditType.set_index_patterns,
|
||||
value: ['index'],
|
||||
overwriteDataViews: true,
|
||||
overwrite_data_views: true,
|
||||
},
|
||||
]
|
||||
);
|
||||
expect(editedRuleParams).toHaveProperty('dataViewId', undefined);
|
||||
});
|
||||
|
||||
test('should set dataViewId to undefined if overwriteDataViews=true on add_index_patterns action', () => {
|
||||
test('should set dataViewId to undefined if overwrite_data_views=true on add_index_patterns action', () => {
|
||||
const editedRuleParams = ruleParamsModifier(
|
||||
{ dataViewId: 'test-data-view', index: ['test-*'] } as RuleAlertType['params'],
|
||||
[
|
||||
{
|
||||
type: BulkActionEditType.add_index_patterns,
|
||||
value: ['index'],
|
||||
overwriteDataViews: true,
|
||||
overwrite_data_views: true,
|
||||
},
|
||||
]
|
||||
);
|
||||
|
|
|
@ -35,7 +35,7 @@ const applyBulkActionEditToRuleParams = (
|
|||
"Index patterns can't be added. Machine learning rule doesn't have index patterns property"
|
||||
);
|
||||
|
||||
if (action.overwriteDataViews) {
|
||||
if (action.overwrite_data_views) {
|
||||
ruleParams.dataViewId = undefined;
|
||||
}
|
||||
|
||||
|
@ -59,7 +59,7 @@ const applyBulkActionEditToRuleParams = (
|
|||
"Index patterns can't be overwritten. Machine learning rule doesn't have index patterns property"
|
||||
);
|
||||
|
||||
if (action.overwriteDataViews) {
|
||||
if (action.overwrite_data_views) {
|
||||
ruleParams.dataViewId = undefined;
|
||||
}
|
||||
|
||||
|
|
|
@ -580,7 +580,7 @@ export default ({ getService }: FtrProviderContext): void => {
|
|||
{
|
||||
type: BulkActionEditType.add_index_patterns,
|
||||
value: ['initial-index-*'],
|
||||
overwriteDataViews: true,
|
||||
overwrite_data_views: true,
|
||||
},
|
||||
],
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue