Container Registry API, gRPC: ScannerService.Scan
Executes scanning of specified image.
gRPC request
rpc Scan (ScanRequest) returns (operation.Operation)
ScanRequest
{
"imageId": "string"
}
Field |
Description |
imageId |
string Required field. ID of the Image to be scanned for vulnerabilities. |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"scanResultId": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"imageId": "string",
"scannedAt": "google.protobuf.Timestamp",
"status": "Status",
"vulnerabilities": {
"critical": "int64",
"high": "int64",
"medium": "int64",
"low": "int64",
"negligible": "int64",
"undefined": "int64"
}
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
ScanMetadata
Field |
Description |
scanResultId |
string ID of the ScanResult that is being created. |
ScanResult
A ScanResult resource.
Field |
Description |
id |
string Output only. ID of the ScanResult. |
imageId |
string Output only. ID of the Image that the ScanResult belongs to. |
scannedAt |
Output only. The timestamp in RFC3339 |
status |
enum Status Output only. The status of the ScanResult.
|
vulnerabilities |
Output only. Summary information about vulnerabilities found. |
VulnerabilityStats
A VulnerabilityStats resource.
Field |
Description |
critical |
int64 Count of CRITICAL vulnerabilities. |
high |
int64 Count of HIGH vulnerabilities. |
medium |
int64 Count of MEDIUM vulnerabilities. |
low |
int64 Count of LOW vulnerabilities. |
negligible |
int64 Count of NEGLIGIBLE vulnerabilities. |
undefined |
int64 Count of other vulnerabilities. |