Palo Alto Networks · Schema

UpdateManagedTenantRequest

UpdateManagedTenantRequest schema from Prisma Cloud: Managed Security Service Provider (MSSP)

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
tenantGroupId string
companyName string
licenseInfo object
modules array
View JSON Schema on GitHub

JSON Schema

prisma-cloud-mssp-api-update-managed-tenant-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateManagedTenantRequest",
  "description": "UpdateManagedTenantRequest schema from Prisma Cloud: Managed Security Service Provider (MSSP)",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-cloud-mssp-api-update-managed-tenant-request-schema.json",
  "type": "object",
  "properties": {
    "tenantGroupId": {
      "type": "string",
      "format": "uuid"
    },
    "companyName": {
      "maxLength": 63,
      "minLength": 3,
      "type": "string"
    },
    "licenseInfo": {
      "required": [
        "allocatedCredits",
        "licensePoolId"
      ],
      "type": "object",
      "properties": {
        "licensePoolId": {
          "type": "string"
        },
        "allocatedCredits": {
          "minimum": 1,
          "type": "integer",
          "format": "int32"
        }
      }
    },
    "modules": {
      "type": "array",
      "items": {
        "required": [
          "enabled",
          "featureName"
        ],
        "type": "object",
        "properties": {
          "featureName": {
            "pattern": "iam-security",
            "type": "string"
          },
          "enabled": {
            "type": "boolean"
          },
          "additionalData": {
            "type": "object",
            "additionalProperties": {
              "type": "object"
            }
          }
        }
      }
    }
  }
}