Palo Alto Networks · JSON Structure

Prisma Access Api Remote Network Structure

RemoteNetwork schema from Palo Alto Networks Prisma Access Configuration API

Type: object Properties: 8 Required: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

RemoteNetwork is a JSON Structure definition published by Palo Alto Networks, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name region license_type spn_name ecmp_load_balancing subnets folder

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-access-api-remote-network-structure.json",
  "name": "RemoteNetwork",
  "description": "RemoteNetwork schema from Palo Alto Networks Prisma Access Configuration API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the remote network."
    },
    "name": {
      "type": "string",
      "description": "Name of the remote network."
    },
    "region": {
      "type": "string",
      "description": "Prisma Access compute region (e.g., us-east-1, eu-west-1)."
    },
    "license_type": {
      "type": "string",
      "description": "License type assigned to this remote network.",
      "enum": [
        "FWAAS-AGGREGATE",
        "FWAAS-BYOL"
      ]
    },
    "spn_name": {
      "type": "string",
      "description": "Service provider node name for the Prisma Access gateway location."
    },
    "ecmp_load_balancing": {
      "type": "string",
      "description": "Enable or disable ECMP load balancing.",
      "enum": [
        "enable",
        "disable"
      ]
    },
    "subnets": {
      "type": "array",
      "description": "Local subnets at the remote network site.",
      "items": {
        "type": "string"
      }
    },
    "folder": {
      "type": "string",
      "description": "Folder containing this remote network."
    }
  },
  "required": [
    "name",
    "region"
  ]
}