proxmox-backup-manger verify-job CLI
Add missing command line interface to manage verification jobs.
This commit is contained in:
parent
6f6b69946e
commit
4a874665eb
|
@ -358,6 +358,7 @@ fn main() {
|
||||||
.insert("cert", cert_mgmt_cli())
|
.insert("cert", cert_mgmt_cli())
|
||||||
.insert("subscription", subscription_commands())
|
.insert("subscription", subscription_commands())
|
||||||
.insert("sync-job", sync_job_commands())
|
.insert("sync-job", sync_job_commands())
|
||||||
|
.insert("verify-job", verify_job_commands())
|
||||||
.insert("task", task_mgmt_cli())
|
.insert("task", task_mgmt_cli())
|
||||||
.insert(
|
.insert(
|
||||||
"pull",
|
"pull",
|
||||||
|
|
|
@ -12,6 +12,8 @@ mod remote;
|
||||||
pub use remote::*;
|
pub use remote::*;
|
||||||
mod sync;
|
mod sync;
|
||||||
pub use sync::*;
|
pub use sync::*;
|
||||||
|
mod verify;
|
||||||
|
pub use verify::*;
|
||||||
mod user;
|
mod user;
|
||||||
pub use user::*;
|
pub use user::*;
|
||||||
mod subscription;
|
mod subscription;
|
||||||
|
|
|
@ -0,0 +1,104 @@
|
||||||
|
use anyhow::Error;
|
||||||
|
use serde_json::Value;
|
||||||
|
|
||||||
|
use proxmox::api::{api, cli::*, RpcEnvironment, ApiHandler};
|
||||||
|
|
||||||
|
use proxmox_backup::config;
|
||||||
|
use proxmox_backup::api2::{self, types::* };
|
||||||
|
|
||||||
|
#[api(
|
||||||
|
input: {
|
||||||
|
properties: {
|
||||||
|
"output-format": {
|
||||||
|
schema: OUTPUT_FORMAT,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)]
|
||||||
|
/// List all verification jobs
|
||||||
|
fn list_verification_jobs(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
||||||
|
|
||||||
|
let output_format = get_output_format(¶m);
|
||||||
|
|
||||||
|
let info = &api2::config::verify::API_METHOD_LIST_VERIFICATION_JOBS;
|
||||||
|
let mut data = match info.handler {
|
||||||
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let options = default_table_format_options()
|
||||||
|
.column(ColumnConfig::new("id"))
|
||||||
|
.column(ColumnConfig::new("store"))
|
||||||
|
.column(ColumnConfig::new("schedule"))
|
||||||
|
.column(ColumnConfig::new("ignore-verified"))
|
||||||
|
.column(ColumnConfig::new("outdated-after"))
|
||||||
|
.column(ColumnConfig::new("comment"));
|
||||||
|
|
||||||
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
||||||
|
|
||||||
|
Ok(Value::Null)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[api(
|
||||||
|
input: {
|
||||||
|
properties: {
|
||||||
|
id: {
|
||||||
|
schema: JOB_ID_SCHEMA,
|
||||||
|
},
|
||||||
|
"output-format": {
|
||||||
|
schema: OUTPUT_FORMAT,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)]
|
||||||
|
/// Show verification job configuration
|
||||||
|
fn show_verification_job(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
||||||
|
|
||||||
|
let output_format = get_output_format(¶m);
|
||||||
|
|
||||||
|
let info = &api2::config::verify::API_METHOD_READ_VERIFICATION_JOB;
|
||||||
|
let mut data = match info.handler {
|
||||||
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let options = default_table_format_options();
|
||||||
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
||||||
|
|
||||||
|
Ok(Value::Null)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn verify_job_commands() -> CommandLineInterface {
|
||||||
|
|
||||||
|
let cmd_def = CliCommandMap::new()
|
||||||
|
.insert("list", CliCommand::new(&API_METHOD_LIST_VERIFICATION_JOBS))
|
||||||
|
.insert("show",
|
||||||
|
CliCommand::new(&API_METHOD_SHOW_VERIFICATION_JOB)
|
||||||
|
.arg_param(&["id"])
|
||||||
|
.completion_cb("id", config::verify::complete_verification_job_id)
|
||||||
|
)
|
||||||
|
.insert("create",
|
||||||
|
CliCommand::new(&api2::config::verify::API_METHOD_CREATE_VERIFICATION_JOB)
|
||||||
|
.arg_param(&["id"])
|
||||||
|
.completion_cb("id", config::verify::complete_verification_job_id)
|
||||||
|
.completion_cb("schedule", config::datastore::complete_calendar_event)
|
||||||
|
.completion_cb("store", config::datastore::complete_datastore_name)
|
||||||
|
)
|
||||||
|
.insert("update",
|
||||||
|
CliCommand::new(&api2::config::verify::API_METHOD_UPDATE_VERIFICATION_JOB)
|
||||||
|
.arg_param(&["id"])
|
||||||
|
.completion_cb("id", config::verify::complete_verification_job_id)
|
||||||
|
.completion_cb("schedule", config::datastore::complete_calendar_event)
|
||||||
|
.completion_cb("store", config::datastore::complete_datastore_name)
|
||||||
|
.completion_cb("remote-store", crate::complete_remote_datastore_name)
|
||||||
|
)
|
||||||
|
.insert("remove",
|
||||||
|
CliCommand::new(&api2::config::verify::API_METHOD_DELETE_VERIFICATION_JOB)
|
||||||
|
.arg_param(&["id"])
|
||||||
|
.completion_cb("id", config::verify::complete_verification_job_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
cmd_def.into()
|
||||||
|
}
|
Loading…
Reference in New Issue