Skip to content

Commit 07297d3

Browse files
author
awstools
committedFeb 7, 2025
feat(client-ecr): Adds support to handle the new basic scanning daily quota.
1 parent 91fce74 commit 07297d3

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed
 

‎clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface DescribeImageScanFindingsCommandOutput extends DescribeImageSca
5555
* // imageTag: "STRING_VALUE",
5656
* // },
5757
* // imageScanStatus: { // ImageScanStatus
58-
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE",
58+
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE" || "LIMIT_EXCEEDED",
5959
* // description: "STRING_VALUE",
6060
* // },
6161
* // imageScanFindings: { // ImageScanFindings

‎clients/client-ecr/src/commands/DescribeImagesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M
7070
* // imageSizeInBytes: Number("long"),
7171
* // imagePushedAt: new Date("TIMESTAMP"),
7272
* // imageScanStatus: { // ImageScanStatus
73-
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE",
73+
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE" || "LIMIT_EXCEEDED",
7474
* // description: "STRING_VALUE",
7575
* // },
7676
* // imageScanFindingsSummary: { // ImageScanFindingsSummary

‎clients/client-ecr/src/commands/StartImageScanCommand.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ export interface StartImageScanCommandInput extends StartImageScanRequest {}
2828
export interface StartImageScanCommandOutput extends StartImageScanResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Starts an image vulnerability scan. An image scan can only be started once per 24
31+
* <p>Starts a basic image vulnerability scan.</p>
32+
* <p> A basic image scan can only be started once per 24
3233
* hours on an individual image. This limit includes if an image was scanned on initial
33-
* push. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html">Image scanning</a> in the
34+
* push. You can start up to 100,000 basic scans per 24 hours. This limit includes both scans on initial push
35+
* and scans initiated by the StartImageScan API. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning-basic.html">Basic scanning</a> in the
3436
* <i>Amazon Elastic Container Registry User Guide</i>.</p>
3537
* @example
3638
* Use a bare-bones client and the command you need to make an API call.
@@ -56,7 +58,7 @@ export interface StartImageScanCommandOutput extends StartImageScanResponse, __M
5658
* // imageTag: "STRING_VALUE",
5759
* // },
5860
* // imageScanStatus: { // ImageScanStatus
59-
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE",
61+
* // status: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "UNSUPPORTED_IMAGE" || "ACTIVE" || "PENDING" || "SCAN_ELIGIBILITY_EXPIRED" || "FINDINGS_UNAVAILABLE" || "LIMIT_EXCEEDED",
6062
* // description: "STRING_VALUE",
6163
* // },
6264
* // };

‎clients/client-ecr/src/models/models_0.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2185,6 +2185,7 @@ export const ScanStatus = {
21852185
FAILED: "FAILED",
21862186
FINDINGS_UNAVAILABLE: "FINDINGS_UNAVAILABLE",
21872187
IN_PROGRESS: "IN_PROGRESS",
2188+
LIMIT_EXCEEDED: "LIMIT_EXCEEDED",
21882189
PENDING: "PENDING",
21892190
SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",
21902191
UNSUPPORTED_IMAGE: "UNSUPPORTED_IMAGE",

‎codegen/sdk-codegen/aws-models/ecr.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -7360,6 +7360,12 @@
73607360
"traits": {
73617361
"smithy.api#enumValue": "FINDINGS_UNAVAILABLE"
73627362
}
7363+
},
7364+
"LIMIT_EXCEEDED": {
7365+
"target": "smithy.api#Unit",
7366+
"traits": {
7367+
"smithy.api#enumValue": "LIMIT_EXCEEDED"
7368+
}
73637369
}
73647370
}
73657371
},
@@ -7650,7 +7656,7 @@
76507656
}
76517657
],
76527658
"traits": {
7653-
"smithy.api#documentation": "<p>Starts an image vulnerability scan. An image scan can only be started once per 24\n hours on an individual image. This limit includes if an image was scanned on initial\n push. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html\">Image scanning</a> in the\n <i>Amazon Elastic Container Registry User Guide</i>.</p>"
7659+
"smithy.api#documentation": "<p>Starts a basic image vulnerability scan.</p>\n <p> A basic image scan can only be started once per 24\n hours on an individual image. This limit includes if an image was scanned on initial\n push. You can start up to 100,000 basic scans per 24 hours. This limit includes both scans on initial push\n and scans initiated by the StartImageScan API. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning-basic.html\">Basic scanning</a> in the\n <i>Amazon Elastic Container Registry User Guide</i>.</p>"
76547660
}
76557661
},
76567662
"com.amazonaws.ecr#StartImageScanRequest": {

0 commit comments

Comments
 (0)