import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { JobCredentials } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { JobCredential, JobCredentialsListByAgentOptionalParams, JobCredentialsGetOptionalParams, JobCredentialsGetResponse, JobCredentialsCreateOrUpdateOptionalParams, JobCredentialsCreateOrUpdateResponse, JobCredentialsDeleteOptionalParams } from "../models"; /** Class containing JobCredentials operations. */ export declare class JobCredentialsImpl implements JobCredentials { private readonly client; /** * Initialize a new instance of the class JobCredentials class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Gets a list of jobs credentials. * @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 options The options parameters. */ listByAgent(resourceGroupName: string, serverName: string, jobAgentName: string, options?: JobCredentialsListByAgentOptionalParams): PagedAsyncIterableIterator; private listByAgentPagingPage; private listByAgentPagingAll; /** * Gets a list of jobs credentials. * @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 options The options parameters. */ private _listByAgent; /** * Gets a jobs credential. * @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 credentialName The name of the credential. * @param options The options parameters. */ get(resourceGroupName: string, serverName: string, jobAgentName: string, credentialName: string, options?: JobCredentialsGetOptionalParams): Promise; /** * Creates or updates a job credential. * @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 credentialName The name of the credential. * @param parameters The requested job credential state. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, serverName: string, jobAgentName: string, credentialName: string, parameters: JobCredential, options?: JobCredentialsCreateOrUpdateOptionalParams): Promise; /** * Deletes a job credential. * @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 credentialName The name of the credential. * @param options The options parameters. */ delete(resourceGroupName: string, serverName: string, jobAgentName: string, credentialName: string, options?: JobCredentialsDeleteOptionalParams): Promise; /** * ListByAgentNext * @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 nextLink The nextLink from the previous successful call to the ListByAgent method. * @param options The options parameters. */ private _listByAgentNext; } //# sourceMappingURL=jobCredentials.d.ts.map