import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { JobTargetExecutions } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { JobExecution, JobTargetExecutionsListByJobExecutionOptionalParams, JobTargetExecutionsListByStepOptionalParams, JobTargetExecutionsGetOptionalParams, JobTargetExecutionsGetResponse } from "../models"; /** Class containing JobTargetExecutions operations. */ export declare class JobTargetExecutionsImpl implements JobTargetExecutions { private readonly client; /** * Initialize a new instance of the class JobTargetExecutions class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Lists target executions for all steps of a job execution. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param options The options parameters. */ listByJobExecution(resourceGroupName: string, serverName: string, jobAgentName: string, jobName: string, jobExecutionId: string, options?: JobTargetExecutionsListByJobExecutionOptionalParams): PagedAsyncIterableIterator; private listByJobExecutionPagingPage; private listByJobExecutionPagingAll; /** * Lists the target executions of a job step execution. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param stepName The name of the step. * @param options The options parameters. */ listByStep(resourceGroupName: string, serverName: string, jobAgentName: string, jobName: string, jobExecutionId: string, stepName: string, options?: JobTargetExecutionsListByStepOptionalParams): PagedAsyncIterableIterator; private listByStepPagingPage; private listByStepPagingAll; /** * Lists target executions for all steps of a job execution. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param options The options parameters. */ private _listByJobExecution; /** * Lists the target executions of a job step execution. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param stepName The name of the step. * @param options The options parameters. */ private _listByStep; /** * Gets a target execution. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The unique id of the job execution * @param stepName The name of the step. * @param targetId The target id. * @param options The options parameters. */ get(resourceGroupName: string, serverName: string, jobAgentName: string, jobName: string, jobExecutionId: string, stepName: string, targetId: string, options?: JobTargetExecutionsGetOptionalParams): Promise; /** * ListByJobExecutionNext * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param nextLink The nextLink from the previous successful call to the ListByJobExecution method. * @param options The options parameters. */ private _listByJobExecutionNext; /** * ListByStepNext * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param jobAgentName The name of the job agent. * @param jobName The name of the job to get. * @param jobExecutionId The id of the job execution * @param stepName The name of the step. * @param nextLink The nextLink from the previous successful call to the ListByStep method. * @param options The options parameters. */ private _listByStepNext; } //# sourceMappingURL=jobTargetExecutions.d.ts.map