pgdump from rust for superadmin2

This commit is contained in:
Priec
2026-08-09 22:57:14 +02:00
parent e65b22d863
commit d9165696ed
4 changed files with 11 additions and 1 deletions

View File

@@ -48,6 +48,10 @@ message BackupOperationResponse {
string output = 5;
int64 started_at_unix_seconds = 6;
int64 finished_at_unix_seconds = 7;
// Set when an operation produced a file, which today means a succeeded dump.
// The path is on the server host, not the caller's machine.
string artifact_path = 8;
string artifact_sha256 = 9;
}
message BackupInfoResponse {

Binary file not shown.

View File

@@ -25,6 +25,12 @@ pub struct BackupOperationResponse {
pub started_at_unix_seconds: i64,
#[prost(int64, tag = "7")]
pub finished_at_unix_seconds: i64,
/// Set when an operation produced a file, which today means a succeeded dump.
/// The path is on the server host, not the caller's machine.
#[prost(string, tag = "8")]
pub artifact_path: ::prost::alloc::string::String,
#[prost(string, tag = "9")]
pub artifact_sha256: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct BackupInfoResponse {

2
server

Submodule server updated: 8eedcdfa34...648c62c031