Summary
`airs runtime dlp patterns get ` and `airs runtime dlp profiles get ` return `AISEC_CLIENT_SIDE_ERROR:API error 400` against live tenants. Root cause is server-side at `https://api.dlp.paloaltonetworks.com\` — reproducible via raw `curl` with the same OAuth token. Filed upstream: cdot65/prisma-airs-sdk#162.
Workaround
Use `list` and filter client-side:
```bash
airs runtime dlp patterns list --output json | jq '.content[] | select(.id == "...")'
airs runtime dlp profiles list --output json | jq '.content[] | select(.id == "...")'
```
Tracking
- Upstream: cdot65/prisma-airs-sdk#162
- Surfaced during PR #78 live validation matrix
- Known-issue notes added to `docs/runtime/dlp/{patterns,profiles}.md`
Close once SDK#162 resolves and the CLI commands work end-to-end again.
Summary
`airs runtime dlp patterns get ` and `airs runtime dlp profiles get ` return `AISEC_CLIENT_SIDE_ERROR:API error 400` against live tenants. Root cause is server-side at `https://api.dlp.paloaltonetworks.com\` — reproducible via raw `curl` with the same OAuth token. Filed upstream: cdot65/prisma-airs-sdk#162.
Workaround
Use `list` and filter client-side:
```bash
airs runtime dlp patterns list --output json | jq '.content[] | select(.id == "...")'
airs runtime dlp profiles list --output json | jq '.content[] | select(.id == "...")'
```
Tracking
Close once SDK#162 resolves and the CLI commands work end-to-end again.