Aruba · Schema

GatewayListResponse

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless

Properties

Name Type Description
total integer Total number of gateways.
count integer Number of gateways returned.
gateways array
View JSON Schema on GitHub

JSON Schema

aruba-gatewaylistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GatewayListResponse",
  "title": "GatewayListResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of gateways.",
      "example": 10
    },
    "count": {
      "type": "integer",
      "description": "Number of gateways returned.",
      "example": 10
    },
    "gateways": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Gateway"
      },
      "example": []
    }
  }
}