UNPKG

@zowe/zos-jobs-for-zowe-sdk

Version:
44 lines 1.09 kB
/** * Interface for search jobs z/OSMF API * @export * @interface ISearchJobsParms */ export interface ISearchJobsParms { /** * job name for the job you want to search * @type {string} * @memberof ISearchJobsParms */ jobName: string; /** * The string to search for * @type {string} * @memberof ISearchJobsParms */ searchString?: string; /** * The regular expression to search for * @type {string} * @memberof ISearchJobsParms */ searchRegex?: string; /** * specify this option as `false` when wanting a case sensitive search * @type {boolean} * @memberof ISearchJobsParms */ caseInsensitive?: boolean; /** * specify this option to limit the number of search hits per file * @type {number} * @memberof ISearchJobsParms */ searchLimit?: number; /** * specify this option to limit the number of file searched * @type {number} * @memberof ISearchJobsParms */ fileLimit?: number; } //# sourceMappingURL=ISearchJobsParms.d.ts.map