import type { StorageManagementContext as Client } from "../index.js"; import type { _ListQueueResource, ListQueue, StorageQueue } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { QueueDeleteOptionalParams, QueueUpdateOptionalParams, QueueCreateOptionalParams, QueueGetOptionalParams, QueueListOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _$deleteSend(context: Client, resourceGroupName: string, accountName: string, queueName: string, options?: QueueDeleteOptionalParams): StreamableMethod; export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise; /** Deletes the queue with the specified queue name, under the specified account if it exists. */ export declare function $delete(context: Client, resourceGroupName: string, accountName: string, queueName: string, options?: QueueDeleteOptionalParams): Promise; export declare function _updateSend(context: Client, resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueUpdateOptionalParams): StreamableMethod; export declare function _updateDeserialize(result: PathUncheckedResponse): Promise; /** Creates a new queue with the specified queue name, under the specified account. */ export declare function update(context: Client, resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueUpdateOptionalParams): Promise; export declare function _createSend(context: Client, resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueCreateOptionalParams): StreamableMethod; export declare function _createDeserialize(result: PathUncheckedResponse): Promise; /** Creates a new queue with the specified queue name, under the specified account. */ export declare function create(context: Client, resourceGroupName: string, accountName: string, queueName: string, queue: StorageQueue, options?: QueueCreateOptionalParams): Promise; export declare function _getSend(context: Client, resourceGroupName: string, accountName: string, queueName: string, options?: QueueGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Gets the queue with the specified queue name, under the specified account if it exists. */ export declare function get(context: Client, resourceGroupName: string, accountName: string, queueName: string, options?: QueueGetOptionalParams): Promise; export declare function _listSend(context: Client, resourceGroupName: string, accountName: string, options?: QueueListOptionalParams): StreamableMethod; export declare function _listDeserialize(result: PathUncheckedResponse): Promise<_ListQueueResource>; /** Gets a list of all the queues under the specified storage account */ export declare function list(context: Client, resourceGroupName: string, accountName: string, options?: QueueListOptionalParams): PagedAsyncIterableIterator; //# sourceMappingURL=operations.d.ts.map