import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedRuleForAccountList } from '../types'; export type PathwayRulesListParams = { /** * * @type { string } * @memberof PathwayRulesListApi */ slug: string; /** * Filter rules of this category (number) * @type { Array } * @memberof PathwayRulesListApi */ category?: Array; /** * Number of results to return per page. * @type { number } * @memberof PathwayRulesListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof PathwayRulesListApi */ offset?: number; /** * 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 PathwayRulesListApi */ text?: string; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const PathwayRulesListCategoryEnum: { readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; }; export type PathwayRulesListCategoryEnum = typeof PathwayRulesListCategoryEnum[keyof typeof PathwayRulesListCategoryEnum]; export type PathwayRulesListReturnType = PaginatedRuleForAccountList; /** * This view will retrieve/list in paginated format, all rules for a specific Pathway. This does not take into account acks or host asks. The Specific Pathway is requested by its slug * @summary Get all rules in a Pathway * @param {PathwayRulesListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const pathwayRulesListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([PathwayRulesListParams] | [string, Array, number, number, string, AxiosRequestConfig])) => Promise>; export default pathwayRulesListParamCreator; //# sourceMappingURL=index.d.ts.map