import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CredentialOperations } from "../operationsInterfaces/index.js"; import { DataFactoryManagementClient } from "../dataFactoryManagementClient.js"; import { CredentialResource, CredentialOperationsListByFactoryOptionalParams, CredentialOperationsCreateOrUpdateOptionalParams, CredentialOperationsCreateOrUpdateResponse, CredentialOperationsGetOptionalParams, CredentialOperationsGetResponse, CredentialOperationsDeleteOptionalParams } from "../models/index.js"; /** Class containing CredentialOperations operations. */ export declare class CredentialOperationsImpl implements CredentialOperations { private readonly client; /** * Initialize a new instance of the class CredentialOperations class. * @param client Reference to the service client */ constructor(client: DataFactoryManagementClient); /** * List credentials. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param options The options parameters. */ listByFactory(resourceGroupName: string, factoryName: string, options?: CredentialOperationsListByFactoryOptionalParams): PagedAsyncIterableIterator; private listByFactoryPagingPage; private listByFactoryPagingAll; /** * List credentials. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param options The options parameters. */ private _listByFactory; /** * Creates or updates a credential. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param credentialName Credential name * @param credential Credential resource definition. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, factoryName: string, credentialName: string, credential: CredentialResource, options?: CredentialOperationsCreateOrUpdateOptionalParams): Promise; /** * Gets a credential. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param credentialName Credential name * @param options The options parameters. */ get(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsGetOptionalParams): Promise; /** * Deletes a credential. * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param credentialName Credential name * @param options The options parameters. */ delete(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsDeleteOptionalParams): Promise; /** * ListByFactoryNext * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param nextLink The nextLink from the previous successful call to the ListByFactory method. * @param options The options parameters. */ private _listByFactoryNext; } //# sourceMappingURL=credentialOperations.d.ts.map