import type { StorageManagementContext as Client } from "../index.js"; import type { LocalUser, _LocalUsers, LocalUserKeys, LocalUserRegeneratePasswordResult } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { LocalUsersRegeneratePasswordOptionalParams, LocalUsersListKeysOptionalParams, LocalUsersListOptionalParams, LocalUsersDeleteOptionalParams, LocalUsersCreateOrUpdateOptionalParams, LocalUsersGetOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _regeneratePasswordSend(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersRegeneratePasswordOptionalParams): StreamableMethod; export declare function _regeneratePasswordDeserialize(result: PathUncheckedResponse): Promise; /** Regenerate the local user SSH password. */ export declare function regeneratePassword(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersRegeneratePasswordOptionalParams): Promise; export declare function _listKeysSend(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersListKeysOptionalParams): StreamableMethod; export declare function _listKeysDeserialize(result: PathUncheckedResponse): Promise; /** List SSH authorized keys and shared key of the local user. */ export declare function listKeys(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersListKeysOptionalParams): Promise; export declare function _listSend(context: Client, resourceGroupName: string, accountName: string, options?: LocalUsersListOptionalParams): StreamableMethod; export declare function _listDeserialize(result: PathUncheckedResponse): Promise<_LocalUsers>; /** List the local users associated with the storage account. */ export declare function list(context: Client, resourceGroupName: string, accountName: string, options?: LocalUsersListOptionalParams): PagedAsyncIterableIterator; export declare function _$deleteSend(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersDeleteOptionalParams): StreamableMethod; export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise; /** Deletes the local user associated with the specified storage account. */ export declare function $delete(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersDeleteOptionalParams): Promise; export declare function _createOrUpdateSend(context: Client, resourceGroupName: string, accountName: string, username: string, properties: LocalUser, options?: LocalUsersCreateOrUpdateOptionalParams): StreamableMethod; export declare function _createOrUpdateDeserialize(result: PathUncheckedResponse): Promise; /** Create or update the properties of a local user associated with the storage account. Properties for NFSv3 enablement and extended groups cannot be set with other properties. */ export declare function createOrUpdate(context: Client, resourceGroupName: string, accountName: string, username: string, properties: LocalUser, options?: LocalUsersCreateOrUpdateOptionalParams): Promise; export declare function _getSend(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Get the local user of the storage account by username. */ export declare function get(context: Client, resourceGroupName: string, accountName: string, username: string, options?: LocalUsersGetOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map