X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;ds=sidebyside;f=pveclient;h=7688ffe7670cc335d25676280724bf519aa76b69;hb=c2bcfdb264f39e38f6e8ab4203b66eef0b95ab74;hp=d13b7eb685001153d305999f4f1d65b408b6c4a3;hpb=2767c2b92faad106cc412c16741ed5b5ca00b61f;p=pve-client.git diff --git a/pveclient b/pveclient index d13b7eb..7688ffe 100755 --- a/pveclient +++ b/pveclient @@ -51,7 +51,7 @@ sub call_api_method { use base qw(PVE::APIClient::CLIHandler); sub read_password { - return PVE::APIClient::PTY::read_password("Remote password: ") + return PVE::APIClient::PTY::read_password("Remote password: ") } @@ -108,14 +108,15 @@ $path_properties->{api_path} = { my $format_result = sub { my ($data) = @_; - PVE::APIClient::Helpers::print_result($data, $path_returns); + my $format = PVE::APIClient::Helpers::get_output_format(); + PVE::APIClient::CLIHandler::print_api_result($format, $data, $path_returns); }; __PACKAGE__->register_method ({ name => 'pveclient_get', path => 'pveclient_get', method => 'GET', - description => "call API GET on .", + description => "Call API GET on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -131,7 +132,7 @@ __PACKAGE__->register_method ({ name => 'pveclient_set', path => 'pveclient_set', method => 'PUT', - description => "call API PUT on .", + description => "Call API PUT on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -147,7 +148,7 @@ __PACKAGE__->register_method ({ name => 'pveclient_create', path => 'pveclient_create', method => 'PUSH', - description => "call API PUSH on .", + description => "Call API PUSH on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -163,7 +164,7 @@ __PACKAGE__->register_method ({ name => 'pveclient_delete', path => 'pveclient_delete', method => 'DELETE', - description => "call API DELETE on .", + description => "Call API DELETE on .", parameters => { additionalProperties => 0, properties => $path_properties,