Skip to main content

VPC Offering

VPC offerings define the feature set available to a VPC.

Resource base path: /restapi/vpcoffering

MethodPathDescription
GET/restapi/vpcoffering/vpcOfferingListVPC Offering List
note

apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.


VPC Offering List

VPC Offering List.

GET /restapi/vpcoffering/vpcOfferingList

Parameters

ParameterInTypeRequiredDescription
zoneUuidquerystring✅ YesUUID of the zone the resource belongs to.
uuidquerystringNoUUID of the resource.

Example request

curl -X GET \
"https://portal.your-domain.com/restapi/vpcoffering/vpcOfferingList?zoneUuid=a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"

Responses

CodeDescription
200Successful operation.
401Invalid authentication credentials.
550Permission denied.
{
"listVpcOfferingResponse": [
{
"displayText": "string",
"name": "example-name",
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"count": 1
}