import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PlaybookRunsList } from '../types'; export type ListPlaybookRunsParams = { /** * Remediation identifier * @type { string } * @memberof ListPlaybookRunsApi */ id: string; /** * Maximum number of results to return * @type { number } * @memberof ListPlaybookRunsApi */ limit?: number; /** * Indicates the starting position of the query relative to the complete set of items that match the query * @type { number } * @memberof ListPlaybookRunsApi */ offset?: number; /** * Sort Order for Playbook Run * @type { ListPlaybookRunsSortEnum } * @memberof ListPlaybookRunsApi */ sort?: ListPlaybookRunsSortEnum; options?: AxiosRequestConfig; }; /** * @export * @enum {string} */ export declare const ListPlaybookRunsSortEnum: { readonly UpdatedAt: "updated_at"; readonly NotUpdatedAt: "-updated_at"; }; export type ListPlaybookRunsSortEnum = typeof ListPlaybookRunsSortEnum[keyof typeof ListPlaybookRunsSortEnum]; export type ListPlaybookRunsReturnType = PlaybookRunsList; /** * List of executions of this remediation * @summary List of executions of this remediation * @param {ListPlaybookRunsParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const listPlaybookRunsParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([ListPlaybookRunsParams] | [string, number, number, ListPlaybookRunsSortEnum, AxiosRequestConfig])) => Promise>; export default listPlaybookRunsParamCreator; //# sourceMappingURL=index.d.ts.map