Palo Alto Networks · JSON Structure

Prisma Cloud Compute Api Runtime Policy Structure

RuntimePolicy schema from Palo Alto Networks Prisma Cloud Compute API

Type: object Properties: 1
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

RuntimePolicy is a JSON Structure definition published by Palo Alto Networks, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

rules

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-cloud-compute-api-runtime-policy-structure.json",
  "name": "RuntimePolicy",
  "description": "RuntimePolicy schema from Palo Alto Networks Prisma Cloud Compute API",
  "type": "object",
  "properties": {
    "rules": {
      "type": "array",
      "description": "Container runtime defense rules.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "collections": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "processes": {
            "type": "object",
            "properties": {
              "effect": {
                "type": "string",
                "enum": [
                  "ignore",
                  "alert",
                  "block"
                ]
              },
              "whitelist": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "blacklist": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            }
          },
          "network": {
            "type": "object",
            "properties": {
              "effect": {
                "type": "string",
                "enum": [
                  "ignore",
                  "alert",
                  "block"
                ]
              }
            }
          },
          "filesystem": {
            "type": "object",
            "properties": {
              "effect": {
                "type": "string",
                "enum": [
                  "ignore",
                  "alert",
                  "block"
                ]
              }
            }
          }
        }
      }
    }
  }
}