This page provides a comprehensive list of endpoints available in the Project Nova API. Navigate through the sections below to understand the functionalities and usage of each endpoint.
List of Endpoints
- /nova/projects - List all projects.
- /nova/projects/{id} - Retrieve information about a specific project.
- /nova/servers - List all servers.
- /nova/servers/{id} - Retrieve information about a specific server.
- /nova/images - List all images.
- /nova/images/{id} - Retrieve information about a specific image.
- /nova/flavors - List all flavors.
- /nova/flavors/{id} - Retrieve information about a specific flavor.
Detailed Information
/nova/projects
This endpoint allows you to list all projects. Projects are collections of resources, such as servers, images, and flavors.
GET /nova/projects
/nova/projects/{id}
This endpoint provides information about a specific project. Replace {id}
with the actual project ID.
GET /nova/projects/{id}
/nova/servers
This endpoint lists all servers. Servers are instances of virtual machines in Project Nova.
GET /nova/servers
/nova/servers/{id}
This endpoint provides information about a specific server. Replace {id}
with the actual server ID.
GET /nova/servers/{id}
/nova/images
This endpoint lists all images available in Project Nova.
GET /nova/images
/nova/images/{id}
This endpoint provides information about a specific image. Replace {id}
with the actual image ID.
GET /nova/images/{id}
/nova/flavors
This endpoint lists all flavors available in Project Nova. Flavors define the hardware resources allocated to a server.
GET /nova/flavors
/nova/flavors/{id}
This endpoint provides information about a specific flavor. Replace {id}
with the actual flavor ID.
GET /nova/flavors/{id}
For more detailed information and examples, please refer to our API Documentation.