A.4.3. cURL을 사용한 PUT 요청
예 A.3. PUT
요청
다음
PUT
요청은 가상 머신 리소스의 메모리를 업데이트합니다. PUT
요청은 본문이 필요합니다.
PUT /ovirt-engine/api/vms/082c794b-771f-452f-83c9-b2b5a19c0399 HTTP/1.1 Accept: application/xml Content-type: application/xml <vm> <memory>1073741824</memory> </vm>
메서드(
PUT
), 헤더(Accept: application/xml
및 Content-type: application/xml
), URI://( https:///ovirt-engine/api/vms/082c794b-771f-4521c9-b2b19c0399
)를 다음 cURL 명령에 맞게 조정하십시오.
$ curl -X PUT -H "Accept: application/xml" -H "Content-type: application/xml" -u [USER:PASS] --cacert [CERT] -d "<vm><memory>1073741824</memory></vm>" https://[RHEVM-Host]:443//ovirt-engine/api/vms/082c794b-771f-452f-83c9-b2b5a19c039
REST API는 새 메모리 구성으로 가상 머신을 업데이트합니다.