import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Topic } from '../types'; export type TopicListParams = { /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof TopicListApi */ filterSystemProfileSapSidsContains?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof TopicListApi */ filterSystemProfileSapSystem?: boolean; /** * List of Inventory host group names * @type { Array } * @memberof TopicListApi */ groups?: Array; /** * Display topics that are disabled as well as enabled * @type { boolean } * @memberof TopicListApi */ showDisabled?: boolean; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof TopicListApi */ tags?: Array; /** * Search for systems with this updater type * @type { Array } * @memberof TopicListApi */ updateMethod?: Array; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const TopicListUpdateMethodEnum: { readonly Dnfyum: "dnfyum"; readonly Ostree: "ostree"; }; export type TopicListUpdateMethodEnum = typeof TopicListUpdateMethodEnum[keyof typeof TopicListUpdateMethodEnum]; export type TopicListReturnType = Array; /** * List the rule topics and their impacted systems counts. Normally this only shows enabled topics, but if the \'show_disabled\' parameter is set to True then this will show disabled topics as well. * @param {TopicListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const topicListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([TopicListParams] | [Array, boolean, Array, boolean, Array, Array, AxiosRequestConfig])) => Promise>; export default topicListParamCreator; //# sourceMappingURL=index.d.ts.map