import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedHostAckList } from '../types'; export type HostackListParams = { /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof HostackListApi */ filterSystemProfileSapSidsContains?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof HostackListApi */ filterSystemProfileSapSystem?: boolean; /** * List of Inventory host group names * @type { Array } * @memberof HostackListApi */ groups?: Array; /** * Number of results to return per page. * @type { number } * @memberof HostackListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof HostackListApi */ offset?: number; /** * Display host acknowledgement of this/these rules * @type { Array } * @memberof HostackListApi */ ruleId?: Array; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof HostackListApi */ tags?: Array; options?: AxiosRequestConfig; }; export type HostackListReturnType = PaginatedHostAckList; /** * HostAcks acknowledge (and therefore hide) a rule from view in an account for a specific system. Hostacks are retrieved, edited and deleted by the \'id\' field. * @param {HostackListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const hostackListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([HostackListParams] | [Array, boolean, Array, number, number, Array, Array, AxiosRequestConfig])) => Promise>; export default hostackListParamCreator; //# sourceMappingURL=index.d.ts.map