/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export class MonitorDiscoveryService { constructor(public readonly httpRequest: BaseHttpRequest) {} /** * @returns void * @throws ApiError */ public getByQuery(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/discovery/getByQuery', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public groupDataSourcesForSchedule(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/discovery/groupDataSourcesForSchedule', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getIntelForDiscovery(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/discovery/getIntelForDiscovery', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public executeCyphonQuery(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/discovery/executeCyphonQuery', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public summarizeCyphonResults(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/discovery/summarizeCyphonResults', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } }