@aws-sdk/client-guardduty 3.908.0 → 3.911.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/ruleset.js +1 -1
- package/dist-cjs/index.js +6 -1
- package/dist-es/commands/UpdateFindingsFeedbackCommand.js +2 -1
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_1.js +4 -0
- package/dist-types/models/models_0.d.ts +11 -11
- package/dist-types/models/models_1.d.ts +13 -9
- package/dist-types/ts3.4/models/models_1.d.ts +3 -0
- package/package.json +33 -33
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
4
|
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
5
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, "type": "
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, "type": "string" }, j = { [u]: true, "default": false, "type": "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
6
6
|
const _data = { version: "1.0", parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i }, rules: [{ conditions: [{ [v]: b, [w]: [k] }], rules: [{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: k, properties: n, headers: n }, type: e }], type: f }, { conditions: [{ [v]: b, [w]: t }], rules: [{ conditions: [{ [v]: "aws.partition", [w]: t, assign: g }], rules: [{ conditions: [l, m], rules: [{ conditions: [{ [v]: c, [w]: [a, o] }, q], rules: [{ endpoint: { url: "https://guardduty-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: r, rules: [{ conditions: [{ [v]: c, [w]: [o, a] }], rules: [{ conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }], endpoint: { url: "https://guardduty.{Region}.amazonaws.com", properties: n, headers: n }, type: e }, { endpoint: { url: "https://guardduty-fips.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: s, rules: [{ conditions: [q], rules: [{ endpoint: { url: "https://guardduty.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { endpoint: { url: "https://guardduty.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }] };
|
|
7
7
|
exports.ruleSet = _data;
|
package/dist-cjs/index.js
CHANGED
|
@@ -6118,6 +6118,10 @@ const ListMembersResponseFilterSensitiveLog = (obj) => ({
|
|
|
6118
6118
|
...obj,
|
|
6119
6119
|
...(obj.Members && { Members: obj.Members.map((item) => MemberFilterSensitiveLog(item)) }),
|
|
6120
6120
|
});
|
|
6121
|
+
const UpdateFindingsFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
6122
|
+
...obj,
|
|
6123
|
+
...(obj.Comments && { Comments: smithyClient.SENSITIVE_STRING }),
|
|
6124
|
+
});
|
|
6121
6125
|
|
|
6122
6126
|
class GetFindingsCommand extends smithyClient.Command
|
|
6123
6127
|
.classBuilder()
|
|
@@ -6776,7 +6780,7 @@ class UpdateFindingsFeedbackCommand extends smithyClient.Command
|
|
|
6776
6780
|
})
|
|
6777
6781
|
.s("GuardDutyAPIService", "UpdateFindingsFeedback", {})
|
|
6778
6782
|
.n("GuardDutyClient", "UpdateFindingsFeedbackCommand")
|
|
6779
|
-
.f(
|
|
6783
|
+
.f(UpdateFindingsFeedbackRequestFilterSensitiveLog, void 0)
|
|
6780
6784
|
.ser(se_UpdateFindingsFeedbackCommand)
|
|
6781
6785
|
.de(de_UpdateFindingsFeedbackCommand)
|
|
6782
6786
|
.build() {
|
|
@@ -7227,6 +7231,7 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
7227
7231
|
exports.UpdateDetectorCommand = UpdateDetectorCommand;
|
|
7228
7232
|
exports.UpdateFilterCommand = UpdateFilterCommand;
|
|
7229
7233
|
exports.UpdateFindingsFeedbackCommand = UpdateFindingsFeedbackCommand;
|
|
7234
|
+
exports.UpdateFindingsFeedbackRequestFilterSensitiveLog = UpdateFindingsFeedbackRequestFilterSensitiveLog;
|
|
7230
7235
|
exports.UpdateIPSetCommand = UpdateIPSetCommand;
|
|
7231
7236
|
exports.UpdateMalwareProtectionPlanCommand = UpdateMalwareProtectionPlanCommand;
|
|
7232
7237
|
exports.UpdateMalwareScanSettingsCommand = UpdateMalwareScanSettingsCommand;
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateFindingsFeedbackRequestFilterSensitiveLog, } from "../models/models_1";
|
|
5
6
|
import { de_UpdateFindingsFeedbackCommand, se_UpdateFindingsFeedbackCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateFindingsFeedbackCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateFindingsFeedbackCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("GuardDutyAPIService", "UpdateFindingsFeedback", {})
|
|
17
18
|
.n("GuardDutyClient", "UpdateFindingsFeedbackCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(UpdateFindingsFeedbackRequestFilterSensitiveLog, void 0)
|
|
19
20
|
.ser(se_UpdateFindingsFeedbackCommand)
|
|
20
21
|
.de(de_UpdateFindingsFeedbackCommand)
|
|
21
22
|
.build() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, "type": "
|
|
2
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, "type": "string" }, j = { [u]: true, "default": false, "type": "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
3
3
|
const _data = { version: "1.0", parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i }, rules: [{ conditions: [{ [v]: b, [w]: [k] }], rules: [{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: k, properties: n, headers: n }, type: e }], type: f }, { conditions: [{ [v]: b, [w]: t }], rules: [{ conditions: [{ [v]: "aws.partition", [w]: t, assign: g }], rules: [{ conditions: [l, m], rules: [{ conditions: [{ [v]: c, [w]: [a, o] }, q], rules: [{ endpoint: { url: "https://guardduty-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: r, rules: [{ conditions: [{ [v]: c, [w]: [o, a] }], rules: [{ conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }], endpoint: { url: "https://guardduty.{Region}.amazonaws.com", properties: n, headers: n }, type: e }, { endpoint: { url: "https://guardduty-fips.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: s, rules: [{ conditions: [q], rules: [{ endpoint: { url: "https://guardduty.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: n, headers: n }, type: e }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { endpoint: { url: "https://guardduty.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }] };
|
|
4
4
|
export const ruleSet = _data;
|
|
@@ -93,3 +93,7 @@ export const ListMembersResponseFilterSensitiveLog = (obj) => ({
|
|
|
93
93
|
...obj,
|
|
94
94
|
...(obj.Members && { Members: obj.Members.map((item) => MemberFilterSensitiveLog(item)) }),
|
|
95
95
|
});
|
|
96
|
+
export const UpdateFindingsFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
97
|
+
...obj,
|
|
98
|
+
...(obj.Comments && { Comments: SENSITIVE_STRING }),
|
|
99
|
+
});
|
|
@@ -370,7 +370,7 @@ export interface AccountFreeTrialInfo {
|
|
|
370
370
|
/**
|
|
371
371
|
* <p>Describes the data source enabled for the GuardDuty member account.</p>
|
|
372
372
|
*
|
|
373
|
-
* @deprecated
|
|
373
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
376
|
DataSources?: DataSourcesFreeTrial | undefined;
|
|
@@ -1471,7 +1471,7 @@ export interface Condition {
|
|
|
1471
1471
|
* <p>Represents the <i>equal</i> condition to be applied to a single field when
|
|
1472
1472
|
* querying for findings.</p>
|
|
1473
1473
|
*
|
|
1474
|
-
* @deprecated
|
|
1474
|
+
* @deprecated deprecated
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
1477
|
Eq?: string[] | undefined;
|
|
@@ -1479,7 +1479,7 @@ export interface Condition {
|
|
|
1479
1479
|
* <p>Represents the <i>not equal</i> condition to be applied to a single field
|
|
1480
1480
|
* when querying for findings.</p>
|
|
1481
1481
|
*
|
|
1482
|
-
* @deprecated
|
|
1482
|
+
* @deprecated deprecated
|
|
1483
1483
|
* @public
|
|
1484
1484
|
*/
|
|
1485
1485
|
Neq?: string[] | undefined;
|
|
@@ -1487,7 +1487,7 @@ export interface Condition {
|
|
|
1487
1487
|
* <p>Represents a <i>greater than</i> condition to be applied to a single field
|
|
1488
1488
|
* when querying for findings.</p>
|
|
1489
1489
|
*
|
|
1490
|
-
* @deprecated
|
|
1490
|
+
* @deprecated deprecated
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
1493
|
Gt?: number | undefined;
|
|
@@ -1495,7 +1495,7 @@ export interface Condition {
|
|
|
1495
1495
|
* <p>Represents a <i>greater than or equal</i> condition to be applied to a
|
|
1496
1496
|
* single field when querying for findings.</p>
|
|
1497
1497
|
*
|
|
1498
|
-
* @deprecated
|
|
1498
|
+
* @deprecated deprecated
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
1501
|
Gte?: number | undefined;
|
|
@@ -1503,7 +1503,7 @@ export interface Condition {
|
|
|
1503
1503
|
* <p>Represents a <i>less than</i> condition to be applied to a single field when
|
|
1504
1504
|
* querying for findings.</p>
|
|
1505
1505
|
*
|
|
1506
|
-
* @deprecated
|
|
1506
|
+
* @deprecated deprecated
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
1509
|
Lt?: number | undefined;
|
|
@@ -1511,7 +1511,7 @@ export interface Condition {
|
|
|
1511
1511
|
* <p>Represents a <i>less than or equal</i> condition to be applied to a single
|
|
1512
1512
|
* field when querying for findings.</p>
|
|
1513
1513
|
*
|
|
1514
|
-
* @deprecated
|
|
1514
|
+
* @deprecated deprecated
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
1517
|
Lte?: number | undefined;
|
|
@@ -2286,7 +2286,7 @@ export interface CreateDetectorRequest {
|
|
|
2286
2286
|
* available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more
|
|
2287
2287
|
* information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_regions.html">Regions and endpoints</a>.</p>
|
|
2288
2288
|
*
|
|
2289
|
-
* @deprecated
|
|
2289
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
2290
2290
|
* @public
|
|
2291
2291
|
*/
|
|
2292
2292
|
DataSources?: DataSourceConfigurations | undefined;
|
|
@@ -4361,7 +4361,7 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
4361
4361
|
* <p>Even though this is still supported, we recommend using
|
|
4362
4362
|
* <code>AutoEnableOrganizationMembers</code> to achieve the similar results.</p>
|
|
4363
4363
|
*
|
|
4364
|
-
* @deprecated
|
|
4364
|
+
* @deprecated This field is deprecated, use AutoEnableOrganizationMembers instead
|
|
4365
4365
|
* @public
|
|
4366
4366
|
*/
|
|
4367
4367
|
AutoEnable?: boolean | undefined;
|
|
@@ -4374,7 +4374,7 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
4374
4374
|
/**
|
|
4375
4375
|
* <p>Describes which data sources are enabled automatically for member accounts.</p>
|
|
4376
4376
|
*
|
|
4377
|
-
* @deprecated
|
|
4377
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
4378
4378
|
* @public
|
|
4379
4379
|
*/
|
|
4380
4380
|
DataSources?: OrganizationDataSourceConfigurationsResult | undefined;
|
|
@@ -7265,7 +7265,7 @@ export interface FindingStatistics {
|
|
|
7265
7265
|
/**
|
|
7266
7266
|
* <p>Represents a list of map of severity to count statistics for a set of findings.</p>
|
|
7267
7267
|
*
|
|
7268
|
-
* @deprecated
|
|
7268
|
+
* @deprecated This parameter is deprecated. Please set GroupBy to 'SEVERITY' to return GroupedBySeverity instead.
|
|
7269
7269
|
* @public
|
|
7270
7270
|
*/
|
|
7271
7271
|
CountBySeverity?: Record<string, number> | undefined;
|
|
@@ -107,7 +107,7 @@ export interface GetDetectorResponse {
|
|
|
107
107
|
/**
|
|
108
108
|
* <p>Describes which data sources are enabled for the detector.</p>
|
|
109
109
|
*
|
|
110
|
-
* @deprecated
|
|
110
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
113
|
DataSources?: DataSourceConfigurationsResult | undefined;
|
|
@@ -238,7 +238,7 @@ export interface GetFindingsStatisticsRequest {
|
|
|
238
238
|
/**
|
|
239
239
|
* <p>The types of finding statistics to retrieve.</p>
|
|
240
240
|
*
|
|
241
|
-
* @deprecated
|
|
241
|
+
* @deprecated This parameter is deprecated, please use GroupBy instead
|
|
242
242
|
* @public
|
|
243
243
|
*/
|
|
244
244
|
FindingStatisticTypes?: FindingStatisticType[] | undefined;
|
|
@@ -676,7 +676,7 @@ export interface MemberDataSourceConfiguration {
|
|
|
676
676
|
/**
|
|
677
677
|
* <p>Contains information on the status of data sources for the account.</p>
|
|
678
678
|
*
|
|
679
|
-
* @deprecated
|
|
679
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
682
|
DataSources?: DataSourceConfigurationsResult | undefined;
|
|
@@ -1202,7 +1202,7 @@ export interface UsageCriteria {
|
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>The data sources to aggregate usage statistics from.</p>
|
|
1204
1204
|
*
|
|
1205
|
-
* @deprecated
|
|
1205
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
1206
1206
|
* @public
|
|
1207
1207
|
*/
|
|
1208
1208
|
DataSources?: DataSource[] | undefined;
|
|
@@ -1941,7 +1941,7 @@ export interface ListMalwareProtectionPlansRequest {
|
|
|
1941
1941
|
* of this parameter to null on your first call to the list action.
|
|
1942
1942
|
* For subsequent calls to the action, fill nextToken in the request
|
|
1943
1943
|
* with the value of <code>NextToken</code> from the previous response to
|
|
1944
|
-
* continue listing data.</p>
|
|
1944
|
+
* continue listing data. The default page size is 100 plans.</p>
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
1947
|
NextToken?: string | undefined;
|
|
@@ -2423,7 +2423,7 @@ export interface UpdateDetectorRequest {
|
|
|
2423
2423
|
* available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more
|
|
2424
2424
|
* information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_regions.html">Regions and endpoints</a>.</p>
|
|
2425
2425
|
*
|
|
2426
|
-
* @deprecated
|
|
2426
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
2427
2427
|
* @public
|
|
2428
2428
|
*/
|
|
2429
2429
|
DataSources?: DataSourceConfigurations | undefined;
|
|
@@ -2702,7 +2702,7 @@ export interface UpdateMemberDetectorsRequest {
|
|
|
2702
2702
|
/**
|
|
2703
2703
|
* <p>Describes which data sources will be updated.</p>
|
|
2704
2704
|
*
|
|
2705
|
-
* @deprecated
|
|
2705
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
2706
2706
|
* @public
|
|
2707
2707
|
*/
|
|
2708
2708
|
DataSources?: DataSourceConfigurations | undefined;
|
|
@@ -2928,14 +2928,14 @@ export interface UpdateOrganizationConfigurationRequest {
|
|
|
2928
2928
|
* <code>AutoEnableOrganizationMembers</code> to achieve the similar results. You must provide a
|
|
2929
2929
|
* value for either <code>autoEnableOrganizationMembers</code> or <code>autoEnable</code>.</p>
|
|
2930
2930
|
*
|
|
2931
|
-
* @deprecated
|
|
2931
|
+
* @deprecated This field is deprecated, use AutoEnableOrganizationMembers instead
|
|
2932
2932
|
* @public
|
|
2933
2933
|
*/
|
|
2934
2934
|
AutoEnable?: boolean | undefined;
|
|
2935
2935
|
/**
|
|
2936
2936
|
* <p>Describes which data sources will be updated.</p>
|
|
2937
2937
|
*
|
|
2938
|
-
* @deprecated
|
|
2938
|
+
* @deprecated This parameter is deprecated, use Features instead
|
|
2939
2939
|
* @public
|
|
2940
2940
|
*/
|
|
2941
2941
|
DataSources?: OrganizationDataSourceConfigurations | undefined;
|
|
@@ -3166,3 +3166,7 @@ export declare const GetMembersResponseFilterSensitiveLog: (obj: GetMembersRespo
|
|
|
3166
3166
|
* @internal
|
|
3167
3167
|
*/
|
|
3168
3168
|
export declare const ListMembersResponseFilterSensitiveLog: (obj: ListMembersResponse) => any;
|
|
3169
|
+
/**
|
|
3170
|
+
* @internal
|
|
3171
|
+
*/
|
|
3172
|
+
export declare const UpdateFindingsFeedbackRequestFilterSensitiveLog: (obj: UpdateFindingsFeedbackRequest) => any;
|
|
@@ -756,3 +756,6 @@ export declare const GetMembersResponseFilterSensitiveLog: (
|
|
|
756
756
|
export declare const ListMembersResponseFilterSensitiveLog: (
|
|
757
757
|
obj: ListMembersResponse
|
|
758
758
|
) => any;
|
|
759
|
+
export declare const UpdateFindingsFeedbackRequestFilterSensitiveLog: (
|
|
760
|
+
obj: UpdateFindingsFeedbackRequest
|
|
761
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-guardduty",
|
|
3
3
|
"description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.911.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-guardduty",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.3.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.911.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.911.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.911.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
30
|
+
"@aws-sdk/types": "3.910.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.911.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
35
|
+
"@smithy/core": "^3.16.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
37
|
+
"@smithy/hash-node": "^4.2.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
47
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
48
|
+
"@smithy/types": "^4.7.1",
|
|
49
|
+
"@smithy/url-parser": "^4.2.2",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
57
|
+
"@smithy/util-retry": "^4.2.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"@smithy/uuid": "^1.1.0",
|
|
60
60
|
"tslib": "^2.6.2"
|