import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { RuleSystemsExport } from '../types'; export type PathwayReportsRetrieveParams = { /** * * @type { string } * @memberof PathwayReportsRetrieveApi */ slug: string; /** * Filter rules of this category (number) * @type { Array } * @memberof PathwayReportsRetrieveApi */ category?: Array; /** * List of Inventory host group names * @type { Array } * @memberof PathwayReportsRetrieveApi */ groups?: Array; /** * Display Pathway Reports of this/these systems * @type { Array } * @memberof PathwayReportsRetrieveApi */ hostId?: Array; /** * Display Pathway Reports of this/these rules * @type { Array } * @memberof PathwayReportsRetrieveApi */ ruleId?: Array; /** * Filter pathway names with this text. If viewing details for a pathway for rules, reports and systems, additional filter on their text fields * @type { string } * @memberof PathwayReportsRetrieveApi */ text?: string; /** * Search for systems with this updater type * @type { Array } * @memberof PathwayReportsRetrieveApi */ updateMethod?: Array; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const PathwayReportsRetrieveCategoryEnum: { readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; }; export type PathwayReportsRetrieveCategoryEnum = typeof PathwayReportsRetrieveCategoryEnum[keyof typeof PathwayReportsRetrieveCategoryEnum]; /** * @export * @enum {string} */ export declare const PathwayReportsRetrieveUpdateMethodEnum: { readonly Dnfyum: "dnfyum"; readonly Ostree: "ostree"; }; export type PathwayReportsRetrieveUpdateMethodEnum = typeof PathwayReportsRetrieveUpdateMethodEnum[keyof typeof PathwayReportsRetrieveUpdateMethodEnum]; export type PathwayReportsRetrieveReturnType = RuleSystemsExport; /** * Each rule is listed once, with the systems currently reporting an incidence of that rule in a list. * @summary Get the list of systems for each rule in this pathway * @param {PathwayReportsRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const pathwayReportsRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([PathwayReportsRetrieveParams] | [string, Array, Array, Array, Array, string, Array, AxiosRequestConfig])) => Promise>; export default pathwayReportsRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map