import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Pathway } from '../types'; export type PathwayRetrieveParams = { /** * * @type { string } * @memberof PathwayRetrieveApi */ slug: string; /** * Filter rules of this category (number) * @type { Array } * @memberof PathwayRetrieveApi */ category?: Array; /** * Is this an Ansible system? * @type { boolean } * @memberof PathwayRetrieveApi */ filterSystemProfileAnsible?: boolean; /** * Is this a Microsoft SQL system? * @type { boolean } * @memberof PathwayRetrieveApi */ filterSystemProfileMssql?: boolean; /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof PathwayRetrieveApi */ filterSystemProfileSapSidsContains?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof PathwayRetrieveApi */ filterSystemProfileSapSystem?: boolean; /** * List of Inventory host group names * @type { Array } * @memberof PathwayRetrieveApi */ groups?: Array; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof PathwayRetrieveApi */ 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 PathwayRetrieveApi */ text?: string; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const PathwayRetrieveCategoryEnum: { readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; }; export type PathwayRetrieveCategoryEnum = typeof PathwayRetrieveCategoryEnum[keyof typeof PathwayRetrieveCategoryEnum]; export type PathwayRetrieveReturnType = Pathway; /** * This returns an individual pathway based on slug. Will display the same information as is provided in the list view. * @summary Returns an individual Pathway based on slug * @param {PathwayRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const pathwayRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([PathwayRetrieveParams] | [string, Array, boolean, boolean, Array, boolean, Array, Array, string, AxiosRequestConfig])) => Promise>; export default pathwayRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map