]> git.proxmox.com Git - pve-client.git/commitdiff
Add create and destroy subcommands to the lxc command
authorRené Jochum <r.jochum@proxmox.com>
Tue, 19 Jun 2018 15:46:50 +0000 (17:46 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 20 Jun 2018 04:42:49 +0000 (06:42 +0200)
PVE/APIClient/Commands/lxc.pm
PVE/APIClient/Helpers.pm

index 9e73b45f16df1b2c39a7fe44ca29d7d492ae3801..2309ec04e359fafc19df2f0ff8e63b86d9e32443 100644 (file)
@@ -15,6 +15,8 @@ use PVE::APIClient::JSONSchema qw(get_standard_option);
 use PVE::APIClient::CLIHandler;
 use PVE::APIClient::PTY;
 
+use PVE::APIClient::Helpers;
+
 use base qw(PVE::APIClient::CLIHandler);
 use PVE::APIClient::Config;
 
@@ -415,7 +417,72 @@ __PACKAGE__->register_method ({
        return undef;
     }});
 
+__PACKAGE__->register_method ({
+    name => 'create',
+    path => 'create',
+    method => 'POST',
+    description => "Create a container",
+    parameters => {
+       additionalProperties => 0,
+       properties => PVE::APIClient::Helpers::merge_api_definition_properties(
+           '/nodes/{node}/lxc', 'POST', {
+               remote => get_standard_option('pveclient-remote-name'),
+               vmid => get_standard_option('pve-vmid'),
+               node => get_standard_option('pve-node'),
+       }),
+    },
+    returns => { type => 'null'},
+    code => sub {
+       my ($param) = @_;
+
+       my $remote = PVE::APIClient::Tools::extract_param($param, 'remote');
+       my $vmid = $param->{vmid};
+       my $node = PVE::APIClient::Tools::extract_param($param, 'node');
+
+       my $config = PVE::APIClient::Config->load();
+       my $conn = PVE::APIClient::Config->remote_conn($config, $remote);
+
+       my $upid = $conn->post("/nodes/$node/lxc", $param);
+
+       print PVE::APIClient::Helpers::poll_task($conn, $node, $upid) . "\n";
+
+       return undef;
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'destroy',
+    path => 'destroy',
+    method => 'DELETE',
+    description => "Destroy a container",
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           remote => get_standard_option('pveclient-remote-name'),
+           vmid => get_standard_option('pve-vmid'),
+       },
+    },
+    returns => { type => 'null'},
+    code => sub {
+       my ($param) = @_;
+
+       my $remote = PVE::APIClient::Tools::extract_param($param, 'remote');
+       my $vmid = PVE::APIClient::Tools::extract_param($param, 'vmid');
+
+       my $config = PVE::APIClient::Config->load();
+       my $conn = PVE::APIClient::Config->remote_conn($config, $remote);
+
+       my $resource = PVE::APIClient::Helpers::get_vmid_resource($conn, $vmid);
+
+       my $upid = $conn->delete("/nodes/$resource->{node}/lxc/$resource->{vmid}", $param);
+
+       print PVE::APIClient::Helpers::poll_task($conn, $resource->{node}, $upid) . "\n";
+
+       return undef;
+    }});
+
 our $cmddef = {
+    create => [ __PACKAGE__, 'create', ['remote', 'vmid', 'node']],
+    destroy => [ __PACKAGE__, 'destroy', ['remote', 'vmid']],
     enter => [ __PACKAGE__, 'enter', ['remote', 'vmid']],
 };
 
index fda9bf5812780d4e4d7f03d428a8469eb5e678eb..30b847533564d0240c15831173dee9d73c4f36fb 100644 (file)
@@ -218,6 +218,14 @@ sub complete_api_call_options {
     &$print_result(@option_list);
 }
 
+sub merge_api_definition_properties {
+    my ($path, $method, $properties) = @_;
+
+    my $info = PVE::APIClient::Helpers::find_method_info($path, $method);
+
+    return { %{$info->{parameters}->{properties}}, %$properties };
+}
+
 sub complete_api_path {
     my ($text) = @_;