Get Continuous Integration (CI) Serverless Compliance Policy
GET/api/v32.07/policies/compliance/ci/serverless
x-prisma-cloud-target-env: {"permission":"policyServerless"}
Retrieves the compliance policy for serverless functions built in your Continuous Integration (CI) pipeline. A policy consists of ordered rules.
This endpoint maps to the policy table in Defend > Compliance > Functions > CI in the Console UI.
cURL Request
Refer to the following example cURL command:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
https://<CONSOLE>/api/v<VERSION>/policies/compliance/ci/serverless
A successful response contains a list of compliance rules in the policy.
Responses
- 200
- default
Policy represents a policy that should be enforced by the Auditor
- application/json
- Schema
- Example (auto)
Schema
Internal identifier.
PolicyType represents the type of the policy
Possible values: [containerVulnerability,containerCompliance,ciImagesVulnerability,ciImagesCompliance,hostVulnerability,hostCompliance,vmVulnerability,vmCompliance,serverlessCompliance,ciServerlessCompliance,serverlessVulnerability,ciServerlessVulnerability,containerRuntime,appEmbeddedRuntime,containerAppFirewall,hostAppFirewall,outOfBandAppFirewall,agentlessAppFirewall,serverObserverAppFirewall,appEmbeddedAppFirewall,serverlessAppFirewall,networkFirewall,secrets,hostRuntime,serverlessRuntime,kubernetesAudit,trust,admission,codeRepoCompliance,ciCodeRepoCompliance,ciCodeRepoVulnerability,codeRepoVulnerability
]
rules object[]
{
"_id": "string",
"policyType": [
"containerVulnerability",
"containerCompliance",
"ciImagesVulnerability",
"ciImagesCompliance",
"hostVulnerability",
"hostCompliance",
"vmVulnerability",
"vmCompliance",
"serverlessCompliance",
"ciServerlessCompliance",
"serverlessVulnerability",
"ciServerlessVulnerability",
"containerRuntime",
"appEmbeddedRuntime",
"containerAppFirewall",
"hostAppFirewall",
"outOfBandAppFirewall",
"agentlessAppFirewall",
"serverObserverAppFirewall",
"appEmbeddedAppFirewall",
"serverlessAppFirewall",
"networkFirewall",
"secrets",
"hostRuntime",
"serverlessRuntime",
"kubernetesAudit",
"trust",
"admission",
"codeRepoCompliance",
"ciCodeRepoCompliance",
"ciCodeRepoVulnerability",
"codeRepoVulnerability"
],
"rules": [
{
"action": [
"string"
],
"alertThreshold": {
"disabled": true,
"value": 0
},
"allCompliance": true,
"auditAllowed": true,
"blockMsg": "string",
"blockThreshold": {
"enabled": true,
"value": 0
},
"collections": [
{
"accountIDs": [
"string"
],
"appIDs": [
"string"
],
"clusters": [
"string"
],
"color": "string",
"containers": [
"string"
],
"description": "string",
"functions": [
"string"
],
"hosts": [
"string"
],
"images": [
"string"
],
"labels": [
"string"
],
"modified": "2024-07-29T15:51:28.071Z",
"name": "string",
"namespaces": [
"string"
],
"owner": "string",
"prisma": true,
"system": true
}
],
"condition": {
"device": "string",
"readonly": true,
"vulnerabilities": [
{
"block": true,
"id": 0
}
]
},
"createPR": true,
"cveRules": [
{
"description": "string",
"effect": [
"ignore",
"alert",
"block"
],
"expiration": {
"date": "2024-07-29T15:51:28.071Z",
"enabled": true
},
"id": "string"
}
],
"disabled": true,
"effect": [
"allow",
"deny",
"block",
"alert"
],
"excludeBaseImageVulns": true,
"graceDays": 0,
"graceDaysPolicy": {
"critical": 0,
"enabled": true,
"high": 0,
"low": 0,
"medium": 0
},
"group": [
"string"
],
"license": {
"alertThreshold": {
"enabled": true,
"value": 0
},
"blockThreshold": {
"enabled": true,
"value": 0
},
"critical": [
"string"
],
"high": [
"string"
],
"low": [
"string"
],
"medium": [
"string"
]
},
"modified": "2024-07-29T15:51:28.071Z",
"name": "string",
"notes": "string",
"onlyFixed": true,
"owner": "string",
"pkgTypesThresholds": [
{
"alertThreshold": {
"disabled": true,
"value": 0
},
"blockThreshold": {
"enabled": true,
"value": 0
},
"type": [
"nodejs",
"gem",
"python",
"jar",
"package",
"windows",
"binary",
"nuget",
"go",
"app",
"unknown"
]
}
],
"previousName": "string",
"principal": [
"string"
],
"riskFactorsEffects": [
{
"effect": [
"ignore",
"alert",
"block"
],
"riskFactor": [
"Critical severity",
"High severity",
"Medium severity",
"Has fix",
"Remote execution",
"DoS - Low",
"DoS - High",
"Recent vulnerability",
"Exploit exists - in the wild",
"Exploit exists - POC",
"Attack complexity: low",
"Attack vector: network",
"Reachable from the internet",
"Listening ports",
"Container is running as root",
"No mandatory security profile applied",
"Running as privileged container",
"Package in use",
"Sensitive information",
"Root mount",
"Runtime socket",
"Host access"
]
}
],
"tags": [
{
"description": "string",
"effect": [
"ignore",
"alert",
"block"
],
"expiration": {
"date": "2024-07-29T15:51:28.071Z",
"enabled": true
},
"name": "string"
}
],
"verbose": true
}
]
}
- curl
- python
- go
- nodejs
- csharp
- php
- CURL
curl -L 'https://pan.dev/api/v32.07/policies/compliance/ci/serverless' \
-H 'Accept: application/json'