import { TriggerRuns } from "../operationsInterfaces/index.js"; import { DataFactoryManagementClient } from "../dataFactoryManagementClient.js"; import { TriggerRunsRerunOptionalParams, TriggerRunsCancelOptionalParams, RunFilterParameters, TriggerRunsQueryByFactoryOptionalParams, TriggerRunsQueryByFactoryResponse } from "../models/index.js"; /** Class containing TriggerRuns operations. */ export declare class TriggerRunsImpl implements TriggerRuns { private readonly client; /** * Initialize a new instance of the class TriggerRuns class. * @param client Reference to the service client */ constructor(client: DataFactoryManagementClient); /** * Rerun single trigger instance by runId. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param triggerName The trigger name. * @param runId The pipeline run identifier. * @param options The options parameters. */ rerun(resourceGroupName: string, factoryName: string, triggerName: string, runId: string, options?: TriggerRunsRerunOptionalParams): Promise; /** * Cancel a single trigger instance by runId. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param triggerName The trigger name. * @param runId The pipeline run identifier. * @param options The options parameters. */ cancel(resourceGroupName: string, factoryName: string, triggerName: string, runId: string, options?: TriggerRunsCancelOptionalParams): Promise; /** * Query trigger runs. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param filterParameters Parameters to filter the pipeline run. * @param options The options parameters. */ queryByFactory(resourceGroupName: string, factoryName: string, filterParameters: RunFilterParameters, options?: TriggerRunsQueryByFactoryOptionalParams): Promise; } //# sourceMappingURL=triggerRuns.d.ts.map