Console API
  1. Network ACLs
Console API
  • User
    • User Info
      GET
  • Tenant / Regions
    • Get Regions & Tenant info
      GET
    • Get Tenant Info
      GET
  • VPC
    • Get VPC List
      GET
    • Rename VPC
      PUT
    • Create VPC
      POST
  • Images
    • Get images
      GET
  • Flavors
    • Get flavors
      GET
  • Storage Policy
    • List
      GET
  • Instances
    • List
      GET
    • Detail
      GET
    • Security Group
      GET
    • Create instance
      POST
    • Power off
      POST
    • Reboot
      POST
    • Power on
      POST
    • Terminate
      POST
    • Resize
      POST
    • Lock Termination
      POST
    • Rename
      POST
    • Manage tag
      POST
  • Subnet
    • List
    • Create
    • Rename
    • Delete
    • Manage tags
  • Security group
    • Security Group List
    • Security Group Detail
    • Rule Types
    • Create Security Group
    • Create Rule
    • Apply to private ip
    • Delete Rule
    • Delete security group
    • Manage tag
  • Floating IP
    • List
    • Allocate
    • Connect to instance
    • Disconnect
    • Release
    • Manage tag
  • Activity Logs
    • List
  • Tags
    • Lists
  • Iam
    • Add user to user group
    • Get all user groups
    • Create user group
    • Update user group
    • Get roles
    • Get user vpcs
  • Billing
    • Bill
      • Get bills by date
      • Get Bills by paging
      • Bill Info
      • Bill service types
  • Project
    • Get projects
  • S3
    • Get bucket policy
    • List buckets
    • Get s3 service enabled
  • IP Access
    • API Portal Access Log
  • Baremetal
    • server
      • Create a baremetal server
      • Get list server
      • Get server detail
      • get server console url
      • Rename a specific server (Rename on portal only)
      • Power on a specific server
      • Power off a specific server
      • Delete specific server id
    • subnets
      • List subnets
      • Create a subnet
      • Get available subnets
      • Delete a subnet
      • Update a subnet
    • images
      • List images
      • List custom images
      • Register a new image
      • Get presigned upload URLs
      • Complete image upload
      • Delete an image
      • Sync an image
    • server_package
      • Get list server types. This part will be represent all server type that user can deploy We using server type name as the rule of selecting server on maas System ex. In maas we have serveral server names (H100.1, H100.2, H100.3, H100.4, H100.5, H100.6, H10
    • api-internal
      • Associate a new floating IP to HPC server
    • Network ACLs
      • Retrieve the list of Network ACLs for a VPC
        GET
      • Get details of a specific Network ACL
        GET
      • Update a Network ACL
        PATCH
      • Update firewall rules for a firewall policy
        PUT
      • List all firewall policies of a Network ACL
        GET
  1. Network ACLs

Retrieve the list of Network ACLs for a VPC

GET
/api/v2/vmware/vpc/{vpc_id}/hpc/network-acls
Returns the list of Network ACLs belonging to a specific VPC.

Request

Authorization
or
Path Params

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v2/vmware/vpc//hpc/network-acls'

Responses

🟢200OK
application/json
Successful response - returns the list of Network ACLs.
Body

Example
{
    "data": [
        {
            "id": "e20b0f28-a814-4af1-b85c-c0998a8c3393",
            "name": "Subnet-test",
            "description": "",
            "subnet": "Subnet-test (10.100.38.0/24)",
            "number_of_inbound_rules": 0,
            "number_of_outbound_rules": 1,
            "status": "Active",
            "created_at": "2025-06-06T02:04:59",
            "updated_at": "2025-06-06T02:04:59"
        }
    ],
    "total": 4
}
Modified at 2025-08-19 04:33:30
Previous
Associate a new floating IP to HPC server
Next
Get details of a specific Network ACL
Built with