View TAS Droplets Scan Progress
x-prisma-cloud-target-env: {"permission":"monitorImages","saas":true,"self-hosted":true}
x-public: true
Returns the details of the TAS Droplets ongoing scan.
cURL Request
Refer to the following cURL command:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/tas-droplets/progress"
Responses
- 200
- default
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
discovery boolean
Discovery indicates whether the scan is in discovery phase.
error string
Error is the error that happened during scan.
hostname string
Hostname is the hostname for which the progress apply.
id string
ID is the ID of the entity being scanned.
scanTime date-time
ScanTime is the time of scan.
scanned integer
Scanned is the number of entities for which the scan completed.
title string
Title is the progress title (set by the scanning process).
total integer
Total is the total amount of entities that should be scanned.
type shared.ScanType
Possible values: [image,ciImage,container,host,agentlessHost,registry,serverlessScan,ciServerless,vm,tas,ciTas,cloudDiscovery,serverlessRadar,serverlessAutoDeploy,hostAutoDeploy,codeRepo,ciCodeRepo
]
ScanType displays the components for an ongoing scan
[
{
"discovery": true,
"error": "string",
"hostname": "string",
"id": "string",
"scanTime": "2023-09-22T04:08:04.977Z",
"scanned": 0,
"title": "string",
"total": 0,
"type": [
"image",
"ciImage",
"container",
"host",
"agentlessHost",
"registry",
"serverlessScan",
"ciServerless",
"vm",
"tas",
"ciTas",
"cloudDiscovery",
"serverlessRadar",
"serverlessAutoDeploy",
"hostAutoDeploy",
"codeRepo",
"ciCodeRepo"
]
}
]
Loading...