import type { StorageManagementContext as Client } from "../index.js"; import type { Connector, ConnectorUpdate, _ConnectorListResult, TestExistingConnectionRequest, TestConnectionResponse } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { ConnectorsTestExistingConnectionOptionalParams, ConnectorsListByStorageAccountOptionalParams, ConnectorsDeleteOptionalParams, ConnectorsUpdateOptionalParams, ConnectorsCreateOptionalParams, ConnectorsGetOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; import type { PollerLike, OperationState } from "@azure/core-lro"; export declare function _testExistingConnectionSend(context: Client, resourceGroupName: string, accountName: string, connectorName: string, body: TestExistingConnectionRequest, options?: ConnectorsTestExistingConnectionOptionalParams): StreamableMethod; export declare function _testExistingConnectionDeserialize(result: PathUncheckedResponse): Promise; /** * This method is used to verify that the connection to the backing data store works. * This API is designed to be used for monitoring and debugging purposes. From the caller’s perspective, * this method does the following: Calls List on the backing data store, attempting to list up to one blob/object/etc. * If the above succeeds, and if a blob/object/etc is found, calls Get on that object, attempting to download one byte. */ export declare function testExistingConnection(context: Client, resourceGroupName: string, accountName: string, connectorName: string, body: TestExistingConnectionRequest, options?: ConnectorsTestExistingConnectionOptionalParams): PollerLike, TestConnectionResponse>; export declare function _listByStorageAccountSend(context: Client, resourceGroupName: string, accountName: string, options?: ConnectorsListByStorageAccountOptionalParams): StreamableMethod; export declare function _listByStorageAccountDeserialize(result: PathUncheckedResponse): Promise<_ConnectorListResult>; /** List all Storage Connectors in a Storage Account. */ export declare function listByStorageAccount(context: Client, resourceGroupName: string, accountName: string, options?: ConnectorsListByStorageAccountOptionalParams): PagedAsyncIterableIterator; export declare function _$deleteSend(context: Client, resourceGroupName: string, accountName: string, connectorName: string, options?: ConnectorsDeleteOptionalParams): StreamableMethod; export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise; /** Delete a Storage Connector. */ export declare function $delete(context: Client, resourceGroupName: string, accountName: string, connectorName: string, options?: ConnectorsDeleteOptionalParams): PollerLike, void>; export declare function _updateSend(context: Client, resourceGroupName: string, accountName: string, connectorName: string, properties: ConnectorUpdate, options?: ConnectorsUpdateOptionalParams): StreamableMethod; export declare function _updateDeserialize(result: PathUncheckedResponse): Promise; /** Update a Storage Connector. */ export declare function update(context: Client, resourceGroupName: string, accountName: string, connectorName: string, properties: ConnectorUpdate, options?: ConnectorsUpdateOptionalParams): PollerLike, Connector>; export declare function _createSend(context: Client, resourceGroupName: string, accountName: string, connectorName: string, resource: Connector, options?: ConnectorsCreateOptionalParams): StreamableMethod; export declare function _createDeserialize(result: PathUncheckedResponse): Promise; /** Create a Storage Connector if it does not already exist; otherwise, error out. This API will not allow you to replace an already existing resource. */ export declare function create(context: Client, resourceGroupName: string, accountName: string, connectorName: string, resource: Connector, options?: ConnectorsCreateOptionalParams): PollerLike, Connector>; export declare function _getSend(context: Client, resourceGroupName: string, accountName: string, connectorName: string, options?: ConnectorsGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Get the specified Storage Connector. */ export declare function get(context: Client, resourceGroupName: string, accountName: string, connectorName: string, options?: ConnectorsGetOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map