Aruba · Schema

Gateway

A gateway device managed by Aruba Central providing routing, VPN, and SD-WAN functionality.

CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless

Properties

Name Type Description
serial string Serial number of the gateway.
name string Name of the gateway.
macaddr string MAC address of the gateway.
model string Hardware model.
status string Operational status.
ip_address string IP address of the gateway.
firmware_version string Firmware version.
group_name string Configuration group.
site string Site assignment.
uptime integer Uptime in seconds.
client_count integer Number of connected clients.
View JSON Schema on GitHub

JSON Schema

aruba-gateway-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Gateway",
  "title": "Gateway",
  "type": "object",
  "description": "A gateway device managed by Aruba Central providing routing, VPN, and SD-WAN functionality.",
  "properties": {
    "serial": {
      "type": "string",
      "description": "Serial number of the gateway.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Name of the gateway.",
      "example": "Example Title"
    },
    "macaddr": {
      "type": "string",
      "description": "MAC address of the gateway.",
      "example": "example_value"
    },
    "model": {
      "type": "string",
      "description": "Hardware model.",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "description": "Operational status.",
      "enum": [
        "Up",
        "Down"
      ],
      "example": "Up"
    },
    "ip_address": {
      "type": "string",
      "format": "ipv4",
      "description": "IP address of the gateway.",
      "example": "example_value"
    },
    "firmware_version": {
      "type": "string",
      "description": "Firmware version.",
      "example": "example_value"
    },
    "group_name": {
      "type": "string",
      "description": "Configuration group.",
      "example": "example_value"
    },
    "site": {
      "type": "string",
      "description": "Site assignment.",
      "example": "example_value"
    },
    "uptime": {
      "type": "integer",
      "format": "int64",
      "description": "Uptime in seconds.",
      "example": 10
    },
    "client_count": {
      "type": "integer",
      "description": "Number of connected clients.",
      "example": 10
    }
  }
}