Get Firewall Groups

Get Firewall Groups

Get all firewall groups. Results can be filtered by name and context (_context). Supported contexts are:

  • Org Vdc Network ID (_context==networkId) - Returns all the firewall groups which the specified network is a member of.
  • Edge Gateway ID (_context==edgeGatewayId) - Returns all the firewall groups which are available to the specific edge gateway.
  • Network Provider ID (_context==networkProviderId) - Returns all the firewall groups which are available under a specific network provider. This context requires system admin privilege.

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/firewallGroups/summaries
COPY
Query Parameters
string
filter
Optional

Filter for a query. FIQL format.

string
sortAsc
Optional

Field to use for ascending sort

string
sortDesc
Optional

Field to use for descending sort

integer
page
Required

Page to fetch, zero offset.

integer
pageSize
Required

Results per page to fetch.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns FirewallGroups of type(s) application/json;version=37.0
This response body class contains all of the following: Page , InlineFirewallGroups1
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "associations": [
        {
            "entityId": "string",
            "associationId": "string"
        }
    ],
    "values": [
        {
            "orgRef": {
                "name": "string",
                "id": "string"
            },
            "edgeGatewayRef": {
                "name": "string",
                "id": "string"
            },
            "ownerRef": {
                "name": "string",
                "id": "string"
            },
            "networkProviderScope": "string",
            "id": "string",
            "name": "string",
            "description": "string",
            "typeValue": "string"
        }
    ]
}