@aws-sdk/client-inspector2 3.810.0 → 3.814.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +169 -15
- package/dist-es/Inspector2.js +2 -0
- package/dist-es/commands/GetClustersForImageCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +15 -11
- package/dist-es/models/models_1.js +11 -0
- package/dist-es/pagination/GetClustersForImagePaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +118 -3
- package/dist-types/Inspector2.d.ts +7 -0
- package/dist-types/Inspector2Client.d.ts +3 -2
- package/dist-types/commands/CreateFilterCommand.d.ts +13 -6
- package/dist-types/commands/CreateFindingsReportCommand.d.ts +13 -6
- package/dist-types/commands/GetClustersForImageCommand.d.ts +116 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/GetFindingsReportStatusCommand.d.ts +13 -6
- package/dist-types/commands/GetSbomExportCommand.d.ts +2 -1
- package/dist-types/commands/ListAccountPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListCisScanConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListCisScanResultsAggregatedByChecksCommand.d.ts +1 -1
- package/dist-types/commands/ListCoverageCommand.d.ts +14 -0
- package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +12 -0
- package/dist-types/commands/ListFiltersCommand.d.ts +13 -6
- package/dist-types/commands/ListFindingAggregationsCommand.d.ts +14 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +15 -6
- package/dist-types/commands/UpdateConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFilterCommand.d.ts +13 -6
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +309 -269
- package/dist-types/models/models_1.d.ts +238 -1
- package/dist-types/pagination/GetClustersForImagePaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Inspector2.d.ts +17 -0
- package/dist-types/ts3.4/Inspector2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetClustersForImageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSbomExportCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAccountPermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCisScanConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCisScanResultsAggregatedByChecksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +94 -71
- package/dist-types/ts3.4/models/models_1.d.ts +73 -0
- package/dist-types/ts3.4/pagination/GetClustersForImagePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +5 -5
|
@@ -116,6 +116,18 @@ declare const ListFindingsCommand_base: {
|
|
|
116
116
|
* ecrImageRepositoryName: "<StringFilterList>",
|
|
117
117
|
* ecrImageTags: "<StringFilterList>",
|
|
118
118
|
* ecrImageHash: "<StringFilterList>",
|
|
119
|
+
* ecrImageLastInUseAt: [
|
|
120
|
+
* {
|
|
121
|
+
* startInclusive: new Date("TIMESTAMP"),
|
|
122
|
+
* endInclusive: new Date("TIMESTAMP"),
|
|
123
|
+
* },
|
|
124
|
+
* ],
|
|
125
|
+
* ecrImageInUseCount: [
|
|
126
|
+
* {
|
|
127
|
+
* upperInclusive: Number("double"),
|
|
128
|
+
* lowerInclusive: Number("double"),
|
|
129
|
+
* },
|
|
130
|
+
* ],
|
|
119
131
|
* portRange: [ // PortRangeFilterList
|
|
120
132
|
* { // PortRangeFilter
|
|
121
133
|
* beginInclusive: Number("int"),
|
|
@@ -148,12 +160,7 @@ declare const ListFindingsCommand_base: {
|
|
|
148
160
|
* lambdaFunctionName: "<StringFilterList>",
|
|
149
161
|
* lambdaFunctionLayers: "<StringFilterList>",
|
|
150
162
|
* lambdaFunctionRuntime: "<StringFilterList>",
|
|
151
|
-
* lambdaFunctionLastModifiedAt:
|
|
152
|
-
* {
|
|
153
|
-
* startInclusive: new Date("TIMESTAMP"),
|
|
154
|
-
* endInclusive: new Date("TIMESTAMP"),
|
|
155
|
-
* },
|
|
156
|
-
* ],
|
|
163
|
+
* lambdaFunctionLastModifiedAt: "<DateFilterList>",
|
|
157
164
|
* lambdaFunctionExecutionRoleArn: "<StringFilterList>",
|
|
158
165
|
* exploitAvailable: "<StringFilterList>",
|
|
159
166
|
* codeVulnerabilityDetectorName: "<StringFilterList>",
|
|
@@ -230,6 +237,8 @@ declare const ListFindingsCommand_base: {
|
|
|
230
237
|
* // imageHash: "STRING_VALUE", // required
|
|
231
238
|
* // registry: "STRING_VALUE", // required
|
|
232
239
|
* // platform: "STRING_VALUE",
|
|
240
|
+
* // lastInUseAt: new Date("TIMESTAMP"),
|
|
241
|
+
* // inUseCount: Number("long"),
|
|
233
242
|
* // },
|
|
234
243
|
* // awsLambdaFunction: { // AwsLambdaFunctionDetails
|
|
235
244
|
* // functionName: "STRING_VALUE", // required
|
|
@@ -38,6 +38,7 @@ declare const UpdateConfigurationCommand_base: {
|
|
|
38
38
|
* ecrConfiguration: { // EcrConfiguration
|
|
39
39
|
* rescanDuration: "STRING_VALUE", // required
|
|
40
40
|
* pullDateRescanDuration: "STRING_VALUE",
|
|
41
|
+
* pullDateRescanMode: "STRING_VALUE",
|
|
41
42
|
* },
|
|
42
43
|
* ec2Configuration: { // Ec2Configuration
|
|
43
44
|
* scanMode: "STRING_VALUE", // required
|
|
@@ -116,6 +116,18 @@ declare const UpdateFilterCommand_base: {
|
|
|
116
116
|
* ecrImageRepositoryName: "<StringFilterList>",
|
|
117
117
|
* ecrImageTags: "<StringFilterList>",
|
|
118
118
|
* ecrImageHash: "<StringFilterList>",
|
|
119
|
+
* ecrImageLastInUseAt: [
|
|
120
|
+
* {
|
|
121
|
+
* startInclusive: new Date("TIMESTAMP"),
|
|
122
|
+
* endInclusive: new Date("TIMESTAMP"),
|
|
123
|
+
* },
|
|
124
|
+
* ],
|
|
125
|
+
* ecrImageInUseCount: [
|
|
126
|
+
* {
|
|
127
|
+
* upperInclusive: Number("double"),
|
|
128
|
+
* lowerInclusive: Number("double"),
|
|
129
|
+
* },
|
|
130
|
+
* ],
|
|
119
131
|
* portRange: [ // PortRangeFilterList
|
|
120
132
|
* { // PortRangeFilter
|
|
121
133
|
* beginInclusive: Number("int"),
|
|
@@ -148,12 +160,7 @@ declare const UpdateFilterCommand_base: {
|
|
|
148
160
|
* lambdaFunctionName: "<StringFilterList>",
|
|
149
161
|
* lambdaFunctionLayers: "<StringFilterList>",
|
|
150
162
|
* lambdaFunctionRuntime: "<StringFilterList>",
|
|
151
|
-
* lambdaFunctionLastModifiedAt:
|
|
152
|
-
* {
|
|
153
|
-
* startInclusive: new Date("TIMESTAMP"),
|
|
154
|
-
* endInclusive: new Date("TIMESTAMP"),
|
|
155
|
-
* },
|
|
156
|
-
* ],
|
|
163
|
+
* lambdaFunctionLastModifiedAt: "<DateFilterList>",
|
|
157
164
|
* lambdaFunctionExecutionRoleArn: "<StringFilterList>",
|
|
158
165
|
* exploitAvailable: "<StringFilterList>",
|
|
159
166
|
* codeVulnerabilityDetectorName: "<StringFilterList>",
|
|
@@ -21,6 +21,7 @@ export * from "./EnableCommand";
|
|
|
21
21
|
export * from "./EnableDelegatedAdminAccountCommand";
|
|
22
22
|
export * from "./GetCisScanReportCommand";
|
|
23
23
|
export * from "./GetCisScanResultDetailsCommand";
|
|
24
|
+
export * from "./GetClustersForImageCommand";
|
|
24
25
|
export * from "./GetConfigurationCommand";
|
|
25
26
|
export * from "./GetDelegatedAdminAccountCommand";
|
|
26
27
|
export * from "./GetEc2DeepInspectionConfigurationCommand";
|