/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { JobAgent, JobAgentsListByServerOptionalParams, JobAgentsGetOptionalParams, JobAgentsGetResponse, JobAgentsCreateOrUpdateOptionalParams, JobAgentsCreateOrUpdateResponse, JobAgentsDeleteOptionalParams, JobAgentUpdate, JobAgentsUpdateOptionalParams, JobAgentsUpdateResponse } from "../models"; /// /** Interface representing a JobAgents. */ export interface JobAgents { /** * Gets a list of job agents in a server. * @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 options The options parameters. */ listByServer( resourceGroupName: string, serverName: string, options?: JobAgentsListByServerOptionalParams ): PagedAsyncIterableIterator; /** * Gets a job agent. * @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 to be retrieved. * @param options The options parameters. */ get( resourceGroupName: string, serverName: string, jobAgentName: string, options?: JobAgentsGetOptionalParams ): Promise; /** * Creates or updates a job agent. * @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 to be created or updated. * @param parameters The requested job agent resource state. * @param options The options parameters. */ beginCreateOrUpdate( resourceGroupName: string, serverName: string, jobAgentName: string, parameters: JobAgent, options?: JobAgentsCreateOrUpdateOptionalParams ): Promise< SimplePollerLike< OperationState, JobAgentsCreateOrUpdateResponse > >; /** * Creates or updates a job agent. * @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 to be created or updated. * @param parameters The requested job agent resource state. * @param options The options parameters. */ beginCreateOrUpdateAndWait( resourceGroupName: string, serverName: string, jobAgentName: string, parameters: JobAgent, options?: JobAgentsCreateOrUpdateOptionalParams ): Promise; /** * Deletes a job agent. * @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 to be deleted. * @param options The options parameters. */ beginDelete( resourceGroupName: string, serverName: string, jobAgentName: string, options?: JobAgentsDeleteOptionalParams ): Promise, void>>; /** * Deletes a job agent. * @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 to be deleted. * @param options The options parameters. */ beginDeleteAndWait( resourceGroupName: string, serverName: string, jobAgentName: string, options?: JobAgentsDeleteOptionalParams ): Promise; /** * Updates a job agent. * @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 to be updated. * @param parameters The update to the job agent. * @param options The options parameters. */ beginUpdate( resourceGroupName: string, serverName: string, jobAgentName: string, parameters: JobAgentUpdate, options?: JobAgentsUpdateOptionalParams ): Promise< SimplePollerLike< OperationState, JobAgentsUpdateResponse > >; /** * Updates a job agent. * @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 to be updated. * @param parameters The update to the job agent. * @param options The options parameters. */ beginUpdateAndWait( resourceGroupName: string, serverName: string, jobAgentName: string, parameters: JobAgentUpdate, options?: JobAgentsUpdateOptionalParams ): Promise; }