import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Report } from '../types'; export type SystemReportsListParams = { /** * A UUID string identifying this inventory host. * @type { string } * @memberof SystemReportsListApi */ uuid: string; /** * Is this an Ansible system? * @type { boolean } * @memberof SystemReportsListApi */ filterSystemProfileAnsible?: boolean; /** * Is this a Microsoft SQL system? * @type { boolean } * @memberof SystemReportsListApi */ filterSystemProfileMssql?: boolean; /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof SystemReportsListApi */ filterSystemProfileSapSidsContains?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof SystemReportsListApi */ filterSystemProfileSapSystem?: boolean; /** * List of Inventory host group names * @type { Array } * @memberof SystemReportsListApi */ groups?: Array; /** * Display only systems with this type (\'all\' = both types) * @type { SystemReportsListSystemTypeEnum } * @memberof SystemReportsListApi */ systemType?: SystemReportsListSystemTypeEnum; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof SystemReportsListApi */ tags?: Array; /** * Search for systems with this updater type * @type { Array } * @memberof SystemReportsListApi */ updateMethod?: Array; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const SystemReportsListSystemTypeEnum: { readonly All: "all"; readonly Bootc: "bootc"; readonly Conventional: "conventional"; readonly Edge: "edge"; }; export type SystemReportsListSystemTypeEnum = typeof SystemReportsListSystemTypeEnum[keyof typeof SystemReportsListSystemTypeEnum]; /** * @export * @enum {string} */ export declare const SystemReportsListUpdateMethodEnum: { readonly Dnfyum: "dnfyum"; readonly Ostree: "ostree"; }; export type SystemReportsListUpdateMethodEnum = typeof SystemReportsListUpdateMethodEnum[keyof typeof SystemReportsListUpdateMethodEnum]; export type SystemReportsListReturnType = Array; /** * Returns the list of latest reports for an Inventory Host ID. Returns reports that: * are in the user\'s account * have an active, not-deleted rule * where the rule has not been acked by this account If the host ID is not found, return an empty list. * @param {SystemReportsListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const systemReportsListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([SystemReportsListParams] | [string, boolean, boolean, Array, boolean, Array, SystemReportsListSystemTypeEnum, Array, Array, AxiosRequestConfig])) => Promise>; export default systemReportsListParamCreator; //# sourceMappingURL=index.d.ts.map