VPCs
Explore this section for comprehensive information on endpoints related to the deployment, management, and operation of Virtual Pri within our cloud software API environment.
Success
Bad Request
Unauthorized
Forbidden
Server Error
GET /api/v1/vpcs/GetVpcs HTTP/1.1
Host:
Accept: */*
{
"items": [
{
"id": "text",
"name": "text",
"cluster": "text",
"tenancyName": "text",
"ipRange": "text",
"createdAt": "2025-08-30T15:02:17.379Z",
"blockIntraVpcComms": true,
"isDefault": true
}
]
}
Unique identifier for a resource within the cluster
The cluster you're operating on
Msc1
Success
Bad Request
Unauthorized
Forbidden
Server Error
GET /api/v1/vpcs/GetVpc?Id=text&Cluster=Msc1 HTTP/1.1
Host:
Accept: */*
{
"id": "text",
"name": "text",
"cluster": "text",
"tenancyName": "text",
"ipRange": "text",
"createdAt": "2025-08-30T15:02:17.379Z",
"blockIntraVpcComms": true,
"isDefault": true
}
name of the VPC. should start with {tenancyName}- in case of creating default VPC, name should be {tenancyName}
if set to true, this VPC will block any intra-VPC communications if ommited, default is false
false
if set to true, this VPC will be the default VPC for the cluster only one VPC can be default per cluster. if omitted, default is false
false
The cluster you're operating on
Msc1
Success
Bad Request
Unauthorized
Forbidden
Server Error
POST /api/v1/vpcs/CreateVpc HTTP/1.1
Host:
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 77
{
"name": "text",
"blockIntraVpcComms": false,
"isDefault": false,
"cluster": "Msc1"
}
{
"id": "text",
"name": "text",
"cluster": "text",
"tenancyName": "text",
"ipRange": "text",
"createdAt": "2025-08-30T15:02:17.379Z",
"blockIntraVpcComms": true,
"isDefault": true
}
Unique identifier for a resource within the cluster
The cluster you're operating on
Msc1
Success
Bad Request
Unauthorized
Forbidden
Server Error
DELETE /api/v1/vpcs/DestroyVpc?Id=text&Cluster=Msc1 HTTP/1.1
Host:
Accept: */*
{
"id": "text",
"name": "text",
"cluster": "text",
"tenancyName": "text",
"ipRange": "text",
"createdAt": "2025-08-30T15:02:17.379Z",
"blockIntraVpcComms": true,
"isDefault": true
}
Last updated