change some guest agent commands to GET api calls

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2018-02-15 14:04:51 +01:00 committed by Thomas Lamprecht
parent ad1f73b9e4
commit e6bd703b4e

View File

@ -17,10 +17,10 @@ my $guest_agent_commands = {
method => 'POST',
},
'get-time' => {
method => 'POST',
method => 'GET',
},
'info' => {
method => 'POST',
method => 'GET',
},
'fsfreeze-status' => {
method => 'POST',
@ -35,19 +35,19 @@ my $guest_agent_commands = {
method => 'POST',
},
'network-get-interfaces' => {
method => 'POST',
method => 'GET',
},
'get-vcpus' => {
method => 'POST',
method => 'GET',
},
'get-fsinfo' => {
method => 'POST',
method => 'GET',
},
'get-memory-blocks' => {
method => 'POST',
method => 'GET',
},
'get-memory-block-info' => {
method => 'POST',
method => 'GET',
},
'suspend-hybrid' => {
method => 'POST',