import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedPathwayList } from '../types'; export type PathwayListParams = { /** * Filter rules of this category (number) * @type { Array } * @memberof PathwayListApi */ category?: Array; /** * Is this an Ansible system? * @type { boolean } * @memberof PathwayListApi */ filterSystemProfileAnsible?: boolean; /** * Is this a Microsoft SQL system? * @type { boolean } * @memberof PathwayListApi */ filterSystemProfileMssql?: boolean; /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof PathwayListApi */ filterSystemProfileSapSidsContains?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof PathwayListApi */ filterSystemProfileSapSystem?: boolean; /** * List of Inventory host group names * @type { Array } * @memberof PathwayListApi */ groups?: Array; /** * Display only pathways where there are incidents. * @type { boolean } * @memberof PathwayListApi */ hasIncident?: boolean; /** * Display pathways even if they aren\'t impacting systems currently * @type { boolean } * @memberof PathwayListApi */ impacting?: boolean; /** * Number of results to return per page. * @type { number } * @memberof PathwayListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof PathwayListApi */ offset?: number; /** * Display only pathways where reboot is required. * @type { boolean } * @memberof PathwayListApi */ rebootRequired?: boolean; /** * Order by this field * @type { PathwayListSortEnum } * @memberof PathwayListApi */ sort?: PathwayListSortEnum; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof PathwayListApi */ tags?: 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 PathwayListApi */ text?: string; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const PathwayListCategoryEnum: { readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; }; export type PathwayListCategoryEnum = typeof PathwayListCategoryEnum[keyof typeof PathwayListCategoryEnum]; /** * @export * @enum {string} */ export declare const PathwayListSortEnum: { readonly NotImpactedSystemsCount: "-impacted_systems_count"; readonly NotName: "-name"; readonly NotRecommendationLevel: "-recommendation_level"; readonly ImpactedSystemsCount: "impacted_systems_count"; readonly Name: "name"; readonly RecommendationLevel: "recommendation_level"; }; export type PathwayListSortEnum = typeof PathwayListSortEnum[keyof typeof PathwayListSortEnum]; export type PathwayListReturnType = PaginatedPathwayList; /** * This returns a list of all Pathways. Will display the same information as is provided in the retrieve view, but has all Pathways listed. * @summary Return all pathways * @param {PathwayListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const pathwayListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([PathwayListParams] | [Array, boolean, boolean, Array, boolean, Array, boolean, boolean, number, number, boolean, PathwayListSortEnum, Array, string, AxiosRequestConfig])) => Promise>; export default pathwayListParamCreator; //# sourceMappingURL=index.d.ts.map