kibana/x-pack/test/api_integration/services/ml.ts
Brandon Kobel 4584a8b570
Elastic License 2.0 (#90099)
* Updating everything except the license headers themselves

* Applying ESLint rules

* Manually replacing the stragglers
2021-02-03 18:12:39 -08:00

33 lines
1.5 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; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { FtrProviderContext } from '../../functional/ftr_provider_context';
import { MachineLearningAPIProvider } from '../../functional/services/ml/api';
import { MachineLearningCommonAPIProvider } from '../../functional/services/ml/common_api';
import { MachineLearningCommonConfigsProvider } from '../../functional/services/ml/common_config';
import { MachineLearningSecurityCommonProvider } from '../../functional/services/ml/security_common';
import { MachineLearningTestExecutionProvider } from '../../functional/services/ml/test_execution';
import { MachineLearningTestResourcesProvider } from '../../functional/services/ml/test_resources';
export function MachineLearningProvider(context: FtrProviderContext) {
const api = MachineLearningAPIProvider(context);
const commonAPI = MachineLearningCommonAPIProvider(context);
const commonConfig = MachineLearningCommonConfigsProvider(context);
const securityCommon = MachineLearningSecurityCommonProvider(context);
const testExecution = MachineLearningTestExecutionProvider(context);
const testResources = MachineLearningTestResourcesProvider(context);
return {
api,
commonAPI,
commonConfig,
securityCommon,
testExecution,
testResources,
};
}