From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 1F0DB79FF6 for ; Thu, 6 May 2021 14:20:11 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 1C646206BE for ; Thu, 6 May 2021 14:20:11 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id EA1BC2068C for ; Thu, 6 May 2021 14:20:09 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id C568446394 for ; Thu, 6 May 2021 14:20:09 +0200 (CEST) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Thu, 6 May 2021 14:20:06 +0200 Message-Id: <20210506122008.11297-6-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210506122008.11297-1-d.csapak@proxmox.com> References: <20210506122008.11297-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.019 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox-tape.rs] Subject: [pbs-devel] [PATCH proxmox-backup v3 5/7] bin/proxmox-tape: add optional snapshots to restore command X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2021 12:20:11 -0000 and add the appropriate completion helper Signed-off-by: Dominik Csapak --- src/bin/proxmox-tape.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/bin/proxmox-tape.rs b/src/bin/proxmox-tape.rs index e18f334c..46bd4ecc 100644 --- a/src/bin/proxmox-tape.rs +++ b/src/bin/proxmox-tape.rs @@ -34,6 +34,7 @@ use proxmox_backup::{ MEDIA_LABEL_SCHEMA, MEDIA_POOL_NAME_SCHEMA, Userid, + TAPE_RESTORE_SNAPSHOT_SCHEMA, }, }, config::{ @@ -51,6 +52,7 @@ use proxmox_backup::{ }, complete_media_label_text, complete_media_set_uuid, + complete_media_set_snapshots, file_formats::{ PROXMOX_BACKUP_CONTENT_HEADER_MAGIC_1_0, MediaContentHeader, @@ -886,6 +888,14 @@ async fn backup(mut param: Value) -> Result<(), Error> { type: Userid, optional: true, }, + "snapshots": { + description: "List of snapshots.", + type: Array, + optional: true, + items: { + schema: TAPE_RESTORE_SNAPSHOT_SCHEMA, + }, + }, owner: { type: Authid, optional: true, @@ -977,9 +987,10 @@ fn main() { .insert( "restore", CliCommand::new(&API_METHOD_RESTORE) - .arg_param(&["media-set", "store"]) + .arg_param(&["media-set", "store", "snapshots"]) .completion_cb("store", complete_datastore_name) .completion_cb("media-set", complete_media_set_uuid) + .completion_cb("snapshots", complete_media_set_snapshots) ) .insert( "barcode-label", -- 2.20.1