@aws-sdk/client-securityhub 3.536.0 → 3.547.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/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +2 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/BatchGetAutomationRulesCommand.d.ts +2 -2
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +1 -0
- package/dist-types/commands/BatchUpdateAutomationRulesCommand.d.ts +2 -2
- package/dist-types/commands/CreateAutomationRuleCommand.d.ts +2 -2
- package/dist-types/commands/CreateInsightCommand.d.ts +5 -5
- package/dist-types/commands/GetFindingsCommand.d.ts +6 -5
- package/dist-types/commands/GetInsightsCommand.d.ts +5 -5
- package/dist-types/commands/UpdateFindingsCommand.d.ts +5 -5
- package/dist-types/commands/UpdateInsightCommand.d.ts +5 -5
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +984 -120
- package/dist-types/models/models_1.d.ts +927 -113
- package/dist-types/models/models_2.d.ts +495 -56
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/package.json +5 -5
|
@@ -6,5 +6,4 @@ export { SecurityHubExtensionConfiguration } from "./extensionConfiguration";
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./models";
|
|
9
|
-
import "@aws-sdk/util-endpoints";
|
|
10
9
|
export { SecurityHubServiceException } from "./models/SecurityHubServiceException";
|
|
@@ -283,9 +283,9 @@ export interface StringFilter {
|
|
|
283
283
|
export interface NumberFilter {
|
|
284
284
|
Gte?: number;
|
|
285
285
|
Lte?: number;
|
|
286
|
+
Eq?: number;
|
|
286
287
|
Gt?: number;
|
|
287
288
|
Lt?: number;
|
|
288
|
-
Eq?: number;
|
|
289
289
|
}
|
|
290
290
|
export declare const DateRangeUnit: {
|
|
291
291
|
readonly DAYS: "DAYS";
|
|
@@ -520,6 +520,7 @@ export interface Vulnerability {
|
|
|
520
520
|
FixAvailable?: VulnerabilityFixAvailable;
|
|
521
521
|
EpssScore?: number;
|
|
522
522
|
ExploitAvailable?: VulnerabilityExploitAvailable;
|
|
523
|
+
LastKnownExploitAt?: string;
|
|
523
524
|
CodeVulnerabilities?: VulnerabilityCodeVulnerabilities[];
|
|
524
525
|
}
|
|
525
526
|
export interface Workflow {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-securityhub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.547.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-securityhub",
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
24
|
"@aws-sdk/core": "3.535.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
31
|
"@aws-sdk/types": "3.535.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.2.0",
|