Authagonal.Backup
0.2.2
dotnet add package Authagonal.Backup --version 0.2.2
NuGet\Install-Package Authagonal.Backup -Version 0.2.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Authagonal.Backup" Version="0.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Authagonal.Backup" Version="0.2.2" />
<PackageReference Include="Authagonal.Backup" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Authagonal.Backup --version 0.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Authagonal.Backup, 0.2.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Authagonal.Backup@0.2.2
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Authagonal.Backup&version=0.2.2
#tool nuget:?package=Authagonal.Backup&version=0.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Authagonal.Backup
Programmatic backup, restore, merge, and rollup for Authagonal's Azure Table Storage data. This is the library that backs the Authagonal.Backup CLI — use it directly when you need the same operations from inside a host process (background services, custom orchestration).
Quick start
using Authagonal.Backup;
using Azure.Data.Tables;
var serviceClient = new TableServiceClient(connectionString);
// Backup
var backupOptions = new BackupOptions
{
Tables = BackupDefaults.AllTables,
Incremental = false,
Gzip = true,
};
var target = new FileSystemBackupTarget("./backups");
var backup = new BackupService(serviceClient, target, backupOptions);
await backup.RunAsync(ct);
// Restore
var restoreOptions = new RestoreOptions { Mode = RestoreMode.Upsert };
var source = new FileSystemBackupSource("./backups/20260426-120000");
var restore = new RestoreService(serviceClient, source, restoreOptions);
var result = await restore.RunAsync(ct);
Surface
| Type | Purpose |
|---|---|
BackupService |
Reads tables, writes JSONL (optionally gzipped) plus a _manifest.json with per-file SHA-256 hashes |
RestoreService |
Verifies hashes, decompresses gzip, writes back into Table Storage in Upsert / Merge / Clean modes |
MergeService |
Combines multiple backup sets into one |
RollupService |
Folds incrementals into a fresh full backup |
IBackupSource / IBackupTarget |
Abstractions for plugging in non-filesystem stores |
FileSystemBackupSource / FileSystemBackupTarget |
Default filesystem implementations |
BackupManifest / TableBackupInfo |
The serialized manifest schema |
BackupDefaults |
Default table list — every persistent Authagonal table, transient ones excluded |
BackupOptions / RestoreOptions / RestoreMode |
Per-run configuration |
See also
- Backup & Restore docs — full CLI reference, scheduling, Docker images.
Packages
| Package | Description |
|---|---|
| Authagonal.Core | Core models, interfaces, and abstractions |
| Authagonal.Storage | Azure Table Storage backend |
| Authagonal.Backup | Backup/restore/merge/rollup library and CLI |
| Authagonal.Server | Full auth server — endpoints, middleware, services, login UI |
Links
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Azure.Data.Tables (>= 12.11.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.2 | 0 | 4/26/2026 |
| 0.2.1 | 0 | 4/26/2026 |
| 0.2.0 | 0 | 4/26/2026 |
| 0.1.99 | 0 | 4/26/2026 |
| 0.1.98 | 0 | 4/26/2026 |
| 0.1.94 | 84 | 4/21/2026 |
| 0.1.93 | 131 | 4/21/2026 |
| 0.1.92 | 80 | 4/21/2026 |
| 0.1.91 | 98 | 4/20/2026 |
| 0.1.90 | 86 | 4/20/2026 |
| 0.1.89 | 90 | 4/18/2026 |
| 0.1.88 | 113 | 4/18/2026 |
| 0.1.87 | 94 | 4/18/2026 |
| 0.1.86 | 98 | 4/17/2026 |
| 0.1.85 | 89 | 4/17/2026 |
| 0.1.84 | 99 | 4/16/2026 |
| 0.1.83 | 94 | 4/16/2026 |
| 0.1.82 | 113 | 4/14/2026 |
| 0.1.81 | 93 | 4/14/2026 |
| 0.1.79 | 93 | 4/14/2026 |
Loading failed