"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.createCasesClient = exports.CasesClient = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _client = require("./cases/client"); var _client2 = require("./attachments/client"); var _client3 = require("./user_actions/client"); var _client_internal = require("./client_internal"); var _client4 = require("./configure/client"); var _client5 = require("./metrics/client"); /* * 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. */ /** * Client wrapper that contains accessor methods for individual entities within the cases system. */ class CasesClient { constructor(args) { (0, _defineProperty2.default)(this, "_casesClientInternal", void 0); (0, _defineProperty2.default)(this, "_cases", void 0); (0, _defineProperty2.default)(this, "_attachments", void 0); (0, _defineProperty2.default)(this, "_userActions", void 0); (0, _defineProperty2.default)(this, "_configure", void 0); (0, _defineProperty2.default)(this, "_metrics", void 0); this._casesClientInternal = (0, _client_internal.createCasesClientInternal)(args); this._cases = (0, _client.createCasesSubClient)(args, this, this._casesClientInternal); this._attachments = (0, _client2.createAttachmentsSubClient)(args, this, this._casesClientInternal); this._userActions = (0, _client3.createUserActionsSubClient)(args, this); this._configure = (0, _client4.createConfigurationSubClient)(args, this._casesClientInternal); this._metrics = (0, _client5.createMetricsSubClient)(args, this); } /** * Retrieves an interface for interacting with cases entities. */ get cases() { return this._cases; } /** * Retrieves an interface for interacting with attachments (comments) entities. */ get attachments() { return this._attachments; } /** * Retrieves an interface for interacting with the user actions associated with the plugin entities. */ get userActions() { return this._userActions; } /** * Retrieves an interface for interacting with the configuration of external connectors for the plugin entities. */ get configure() { return this._configure; } /** * Retrieves an interface for retrieving metrics related to the cases entities. */ get metrics() { return this._metrics; } } /** * Creates a {@link CasesClient} for interacting with the cases entities * * @param args arguments for initializing the cases client * @returns a {@link CasesClient} * * @ignore */ exports.CasesClient = CasesClient; const createCasesClient = args => { return new CasesClient(args); }; exports.createCasesClient = createCasesClient;