Introduction
Deploying virtual machine from OVA or OVF images has been one of the core features of the RESTful API. Now, you are able to upload any Open Virtualization Format archives in your personal space at https://vskeys-tor.eis.utoronto.ca and use it to deploy one or many virtual machines.
It is also possible to export an existent virtual machine (Virtual Machine - Attributes) to OVF and then use this OVF to deploy new ones.
On this page:
The following table shows a brief description and HTTP methods allowed to interact with Open Virtualization Format images:
Resource | URI | Description | GET | POST | PUT | PATCH | OPTIONS |
---|---|---|---|---|---|---|---|
Images | /image | OVF/OVA Virtual Machine images available from VSKEY-STOR. |
OPTIONS HTTP method
Remember, you can also show what methods are allowed and description, parameters, etc. by making an OPTIONS HTTP request to /v2/image.
http OPTIONS "https://vss-api.eis.utoronto.ca/v2/image" curl -X OPTIONS "https://vss-api.eis.utoronto.ca/v2/image"
List
In order to list available OVA/OVF images you should make a GET request to the endpoint /v2/image passing your access token. As a result, you will get list of images available in your VSKEY-STOR space in form of JSON objects with the following attributes:
Name | Type | Description |
---|---|---|
name | string | OVA/OVF image file name |
The following examples implements HTTPie and CURL to list available OVA/OVF images:
http GET "https://vss-api.eis.utoronto.ca/v2/image" "Authorization: Bearer $TK" curl -H "Authorization: Bearer $TK" -X GET "https://vss-api.eis.utoronto.ca/v2/image"
The attribute value you will use to deploy new virtual machines using an image is path.