import type { StorageManagementContext as Client } from "../index.js"; import type { EncryptionScope, _EncryptionScopeListResult } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { EncryptionScopesListOptionalParams, EncryptionScopesPatchOptionalParams, EncryptionScopesPutOptionalParams, EncryptionScopesGetOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _listSend(context: Client, resourceGroupName: string, accountName: string, options?: EncryptionScopesListOptionalParams): StreamableMethod; export declare function _listDeserialize(result: PathUncheckedResponse): Promise<_EncryptionScopeListResult>; /** Lists all the encryption scopes available under the specified storage account. */ export declare function list(context: Client, resourceGroupName: string, accountName: string, options?: EncryptionScopesListOptionalParams): PagedAsyncIterableIterator; export declare function _patchSend(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPatchOptionalParams): StreamableMethod; export declare function _patchDeserialize(result: PathUncheckedResponse): Promise; /** Update encryption scope properties as specified in the request body. Update fails if the specified encryption scope does not already exist. */ export declare function patch(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPatchOptionalParams): Promise; export declare function _putSend(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPutOptionalParams): StreamableMethod; export declare function _putDeserialize(result: PathUncheckedResponse): Promise; /** Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope is already created and a subsequent request is issued with different properties, the encryption scope properties will be updated per the specified request. */ export declare function put(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, encryptionScope: EncryptionScope, options?: EncryptionScopesPutOptionalParams): Promise; export declare function _getSend(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, options?: EncryptionScopesGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Returns the properties for the specified encryption scope. */ export declare function get(context: Client, resourceGroupName: string, accountName: string, encryptionScopeName: string, options?: EncryptionScopesGetOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map