X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=src%2FPVE%2FCLIHandler.pm;h=9933df704e34c0b9a616a5160716efd0bad6fe5a;hp=1c754e46f7a44f28cf91777c9a3f10237b6bb1ac;hb=c1e843677d135a943c8f89f76dbceca7e0a88784;hpb=db5b22d16a5add33f8189fe546e3c18d72b669fd diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm index 1c754e4..9933df7 100644 --- a/src/PVE/CLIHandler.pm +++ b/src/PVE/CLIHandler.pm @@ -540,7 +540,7 @@ sub print_api_list { } sub print_api_result { - my ($format, $data, $result_schema) = @_; + my ($format, $data, $result_schema, $props_to_print) = @_; return if $result_schema->{type} eq 'null'; @@ -549,14 +549,20 @@ sub print_api_result { } elsif ($format eq 'text') { my $type = $result_schema->{type}; if ($type eq 'object') { - foreach my $key (sort keys %$data) { - print $key . ": " . data_to_text($data->{$key}) . "\n"; + if (defined($props_to_print)) { + foreach my $key (@$props_to_print) { + print $key . ": " . data_to_text($data->{$key}) . "\n"; + } + } else { + foreach my $key (sort keys %$data) { + print $key . ": " . data_to_text($data->{$key}) . "\n"; + } } } elsif ($type eq 'array') { return if !scalar(@$data); my $item_type = $result_schema->{items}->{type}; if ($item_type eq 'object') { - print_api_list($data, $result_schema); + print_api_list($data, $result_schema, $props_to_print); } else { foreach my $entry (@$data) { print data_to_text($entry) . "\n";