@aws-sdk/client-shield 3.37.0 → 3.38.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/CHANGELOG.md +12 -0
- package/dist-cjs/commands/index.js +36 -0
- package/dist-cjs/index.js +4 -40
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-es/commands/index.js +33 -0
- package/dist-es/index.js +4 -40
- package/dist-es/pagination/index.js +5 -0
- package/dist-types/commands/index.d.ts +33 -0
- package/dist-types/index.d.ts +4 -40
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/commands/index.d.ts +33 -0
- package/dist-types/ts3.4/index.d.ts +4 -40
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
|
|
12
|
+
* **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./AssociateDRTLogBucketCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./AssociateDRTRoleCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./AssociateHealthCheckCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./AssociateProactiveEngagementDetailsCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateProtectionCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateProtectionGroupCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateSubscriptionCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./DeleteProtectionCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./DeleteProtectionGroupCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./DeleteSubscriptionCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DescribeAttackCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DescribeAttackStatisticsCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DescribeDRTAccessCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DescribeEmergencyContactSettingsCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./DescribeProtectionCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./DescribeProtectionGroupCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./DescribeSubscriptionCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./DisableProactiveEngagementCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DisassociateDRTLogBucketCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./DisassociateDRTRoleCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./DisassociateHealthCheckCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./EnableProactiveEngagementCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./GetSubscriptionStateCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./ListAttacksCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./ListProtectionGroupsCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./ListProtectionsCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./ListResourcesInProtectionGroupCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./UpdateEmergencyContactSettingsCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./UpdateProtectionGroupCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./UpdateSubscriptionCommand"), exports);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,44 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./ShieldClient"), exports);
|
|
5
4
|
tslib_1.__exportStar(require("./Shield"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
7
|
-
tslib_1.__exportStar(require("./commands
|
|
8
|
-
tslib_1.__exportStar(require("./
|
|
9
|
-
tslib_1.__exportStar(require("./
|
|
10
|
-
tslib_1.__exportStar(require("./commands/CreateProtectionCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./commands/CreateProtectionGroupCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./commands/CreateSubscriptionCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./commands/DeleteProtectionCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./commands/DeleteProtectionGroupCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./commands/DeleteSubscriptionCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./commands/DescribeAttackCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./commands/DescribeAttackStatisticsCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./commands/DescribeDRTAccessCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./commands/DescribeEmergencyContactSettingsCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./commands/DescribeProtectionCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./commands/DescribeProtectionGroupCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./commands/DescribeSubscriptionCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./commands/DisableProactiveEngagementCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./commands/DisassociateDRTLogBucketCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./commands/DisassociateDRTRoleCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./commands/DisassociateHealthCheckCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./commands/EnableProactiveEngagementCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./commands/GetSubscriptionStateCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./commands/ListAttacksCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./pagination/ListAttacksPaginator"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./commands/ListProtectionGroupsCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./pagination/ListProtectionGroupsPaginator"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./commands/ListProtectionsCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./pagination/ListProtectionsPaginator"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./commands/ListResourcesInProtectionGroupCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./pagination/ListResourcesInProtectionGroupPaginator"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./commands/ListTagsForResourceCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./commands/TagResourceCommand"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./commands/UntagResourceCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./commands/UpdateEmergencyContactSettingsCommand"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./commands/UpdateProtectionGroupCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./commands/UpdateSubscriptionCommand"), exports);
|
|
43
|
-
tslib_1.__exportStar(require("./pagination/Interfaces"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./models/index"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./ShieldClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./ListAttacksPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ListProtectionGroupsPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./ListProtectionsPaginator"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./ListResourcesInProtectionGroupPaginator"), exports);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from "./AssociateDRTLogBucketCommand";
|
|
2
|
+
export * from "./AssociateDRTRoleCommand";
|
|
3
|
+
export * from "./AssociateHealthCheckCommand";
|
|
4
|
+
export * from "./AssociateProactiveEngagementDetailsCommand";
|
|
5
|
+
export * from "./CreateProtectionCommand";
|
|
6
|
+
export * from "./CreateProtectionGroupCommand";
|
|
7
|
+
export * from "./CreateSubscriptionCommand";
|
|
8
|
+
export * from "./DeleteProtectionCommand";
|
|
9
|
+
export * from "./DeleteProtectionGroupCommand";
|
|
10
|
+
export * from "./DeleteSubscriptionCommand";
|
|
11
|
+
export * from "./DescribeAttackCommand";
|
|
12
|
+
export * from "./DescribeAttackStatisticsCommand";
|
|
13
|
+
export * from "./DescribeDRTAccessCommand";
|
|
14
|
+
export * from "./DescribeEmergencyContactSettingsCommand";
|
|
15
|
+
export * from "./DescribeProtectionCommand";
|
|
16
|
+
export * from "./DescribeProtectionGroupCommand";
|
|
17
|
+
export * from "./DescribeSubscriptionCommand";
|
|
18
|
+
export * from "./DisableProactiveEngagementCommand";
|
|
19
|
+
export * from "./DisassociateDRTLogBucketCommand";
|
|
20
|
+
export * from "./DisassociateDRTRoleCommand";
|
|
21
|
+
export * from "./DisassociateHealthCheckCommand";
|
|
22
|
+
export * from "./EnableProactiveEngagementCommand";
|
|
23
|
+
export * from "./GetSubscriptionStateCommand";
|
|
24
|
+
export * from "./ListAttacksCommand";
|
|
25
|
+
export * from "./ListProtectionGroupsCommand";
|
|
26
|
+
export * from "./ListProtectionsCommand";
|
|
27
|
+
export * from "./ListResourcesInProtectionGroupCommand";
|
|
28
|
+
export * from "./ListTagsForResourceCommand";
|
|
29
|
+
export * from "./TagResourceCommand";
|
|
30
|
+
export * from "./UntagResourceCommand";
|
|
31
|
+
export * from "./UpdateEmergencyContactSettingsCommand";
|
|
32
|
+
export * from "./UpdateProtectionGroupCommand";
|
|
33
|
+
export * from "./UpdateSubscriptionCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -1,41 +1,5 @@
|
|
|
1
|
-
export * from "./ShieldClient";
|
|
2
1
|
export * from "./Shield";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateProtectionCommand";
|
|
8
|
-
export * from "./commands/CreateProtectionGroupCommand";
|
|
9
|
-
export * from "./commands/CreateSubscriptionCommand";
|
|
10
|
-
export * from "./commands/DeleteProtectionCommand";
|
|
11
|
-
export * from "./commands/DeleteProtectionGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteSubscriptionCommand";
|
|
13
|
-
export * from "./commands/DescribeAttackCommand";
|
|
14
|
-
export * from "./commands/DescribeAttackStatisticsCommand";
|
|
15
|
-
export * from "./commands/DescribeDRTAccessCommand";
|
|
16
|
-
export * from "./commands/DescribeEmergencyContactSettingsCommand";
|
|
17
|
-
export * from "./commands/DescribeProtectionCommand";
|
|
18
|
-
export * from "./commands/DescribeProtectionGroupCommand";
|
|
19
|
-
export * from "./commands/DescribeSubscriptionCommand";
|
|
20
|
-
export * from "./commands/DisableProactiveEngagementCommand";
|
|
21
|
-
export * from "./commands/DisassociateDRTLogBucketCommand";
|
|
22
|
-
export * from "./commands/DisassociateDRTRoleCommand";
|
|
23
|
-
export * from "./commands/DisassociateHealthCheckCommand";
|
|
24
|
-
export * from "./commands/EnableProactiveEngagementCommand";
|
|
25
|
-
export * from "./commands/GetSubscriptionStateCommand";
|
|
26
|
-
export * from "./commands/ListAttacksCommand";
|
|
27
|
-
export * from "./pagination/ListAttacksPaginator";
|
|
28
|
-
export * from "./commands/ListProtectionGroupsCommand";
|
|
29
|
-
export * from "./pagination/ListProtectionGroupsPaginator";
|
|
30
|
-
export * from "./commands/ListProtectionsCommand";
|
|
31
|
-
export * from "./pagination/ListProtectionsPaginator";
|
|
32
|
-
export * from "./commands/ListResourcesInProtectionGroupCommand";
|
|
33
|
-
export * from "./pagination/ListResourcesInProtectionGroupPaginator";
|
|
34
|
-
export * from "./commands/ListTagsForResourceCommand";
|
|
35
|
-
export * from "./commands/TagResourceCommand";
|
|
36
|
-
export * from "./commands/UntagResourceCommand";
|
|
37
|
-
export * from "./commands/UpdateEmergencyContactSettingsCommand";
|
|
38
|
-
export * from "./commands/UpdateProtectionGroupCommand";
|
|
39
|
-
export * from "./commands/UpdateSubscriptionCommand";
|
|
40
|
-
export * from "./pagination/Interfaces";
|
|
41
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./ShieldClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from "./AssociateDRTLogBucketCommand";
|
|
2
|
+
export * from "./AssociateDRTRoleCommand";
|
|
3
|
+
export * from "./AssociateHealthCheckCommand";
|
|
4
|
+
export * from "./AssociateProactiveEngagementDetailsCommand";
|
|
5
|
+
export * from "./CreateProtectionCommand";
|
|
6
|
+
export * from "./CreateProtectionGroupCommand";
|
|
7
|
+
export * from "./CreateSubscriptionCommand";
|
|
8
|
+
export * from "./DeleteProtectionCommand";
|
|
9
|
+
export * from "./DeleteProtectionGroupCommand";
|
|
10
|
+
export * from "./DeleteSubscriptionCommand";
|
|
11
|
+
export * from "./DescribeAttackCommand";
|
|
12
|
+
export * from "./DescribeAttackStatisticsCommand";
|
|
13
|
+
export * from "./DescribeDRTAccessCommand";
|
|
14
|
+
export * from "./DescribeEmergencyContactSettingsCommand";
|
|
15
|
+
export * from "./DescribeProtectionCommand";
|
|
16
|
+
export * from "./DescribeProtectionGroupCommand";
|
|
17
|
+
export * from "./DescribeSubscriptionCommand";
|
|
18
|
+
export * from "./DisableProactiveEngagementCommand";
|
|
19
|
+
export * from "./DisassociateDRTLogBucketCommand";
|
|
20
|
+
export * from "./DisassociateDRTRoleCommand";
|
|
21
|
+
export * from "./DisassociateHealthCheckCommand";
|
|
22
|
+
export * from "./EnableProactiveEngagementCommand";
|
|
23
|
+
export * from "./GetSubscriptionStateCommand";
|
|
24
|
+
export * from "./ListAttacksCommand";
|
|
25
|
+
export * from "./ListProtectionGroupsCommand";
|
|
26
|
+
export * from "./ListProtectionsCommand";
|
|
27
|
+
export * from "./ListResourcesInProtectionGroupCommand";
|
|
28
|
+
export * from "./ListTagsForResourceCommand";
|
|
29
|
+
export * from "./TagResourceCommand";
|
|
30
|
+
export * from "./UntagResourceCommand";
|
|
31
|
+
export * from "./UpdateEmergencyContactSettingsCommand";
|
|
32
|
+
export * from "./UpdateProtectionGroupCommand";
|
|
33
|
+
export * from "./UpdateSubscriptionCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,41 +1,5 @@
|
|
|
1
|
-
export * from "./ShieldClient";
|
|
2
1
|
export * from "./Shield";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateProtectionCommand";
|
|
8
|
-
export * from "./commands/CreateProtectionGroupCommand";
|
|
9
|
-
export * from "./commands/CreateSubscriptionCommand";
|
|
10
|
-
export * from "./commands/DeleteProtectionCommand";
|
|
11
|
-
export * from "./commands/DeleteProtectionGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteSubscriptionCommand";
|
|
13
|
-
export * from "./commands/DescribeAttackCommand";
|
|
14
|
-
export * from "./commands/DescribeAttackStatisticsCommand";
|
|
15
|
-
export * from "./commands/DescribeDRTAccessCommand";
|
|
16
|
-
export * from "./commands/DescribeEmergencyContactSettingsCommand";
|
|
17
|
-
export * from "./commands/DescribeProtectionCommand";
|
|
18
|
-
export * from "./commands/DescribeProtectionGroupCommand";
|
|
19
|
-
export * from "./commands/DescribeSubscriptionCommand";
|
|
20
|
-
export * from "./commands/DisableProactiveEngagementCommand";
|
|
21
|
-
export * from "./commands/DisassociateDRTLogBucketCommand";
|
|
22
|
-
export * from "./commands/DisassociateDRTRoleCommand";
|
|
23
|
-
export * from "./commands/DisassociateHealthCheckCommand";
|
|
24
|
-
export * from "./commands/EnableProactiveEngagementCommand";
|
|
25
|
-
export * from "./commands/GetSubscriptionStateCommand";
|
|
26
|
-
export * from "./commands/ListAttacksCommand";
|
|
27
|
-
export * from "./pagination/ListAttacksPaginator";
|
|
28
|
-
export * from "./commands/ListProtectionGroupsCommand";
|
|
29
|
-
export * from "./pagination/ListProtectionGroupsPaginator";
|
|
30
|
-
export * from "./commands/ListProtectionsCommand";
|
|
31
|
-
export * from "./pagination/ListProtectionsPaginator";
|
|
32
|
-
export * from "./commands/ListResourcesInProtectionGroupCommand";
|
|
33
|
-
export * from "./pagination/ListResourcesInProtectionGroupPaginator";
|
|
34
|
-
export * from "./commands/ListTagsForResourceCommand";
|
|
35
|
-
export * from "./commands/TagResourceCommand";
|
|
36
|
-
export * from "./commands/UntagResourceCommand";
|
|
37
|
-
export * from "./commands/UpdateEmergencyContactSettingsCommand";
|
|
38
|
-
export * from "./commands/UpdateProtectionGroupCommand";
|
|
39
|
-
export * from "./commands/UpdateSubscriptionCommand";
|
|
40
|
-
export * from "./pagination/Interfaces";
|
|
41
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./ShieldClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from "./AssociateDRTLogBucketCommand";
|
|
2
|
+
export * from "./AssociateDRTRoleCommand";
|
|
3
|
+
export * from "./AssociateHealthCheckCommand";
|
|
4
|
+
export * from "./AssociateProactiveEngagementDetailsCommand";
|
|
5
|
+
export * from "./CreateProtectionCommand";
|
|
6
|
+
export * from "./CreateProtectionGroupCommand";
|
|
7
|
+
export * from "./CreateSubscriptionCommand";
|
|
8
|
+
export * from "./DeleteProtectionCommand";
|
|
9
|
+
export * from "./DeleteProtectionGroupCommand";
|
|
10
|
+
export * from "./DeleteSubscriptionCommand";
|
|
11
|
+
export * from "./DescribeAttackCommand";
|
|
12
|
+
export * from "./DescribeAttackStatisticsCommand";
|
|
13
|
+
export * from "./DescribeDRTAccessCommand";
|
|
14
|
+
export * from "./DescribeEmergencyContactSettingsCommand";
|
|
15
|
+
export * from "./DescribeProtectionCommand";
|
|
16
|
+
export * from "./DescribeProtectionGroupCommand";
|
|
17
|
+
export * from "./DescribeSubscriptionCommand";
|
|
18
|
+
export * from "./DisableProactiveEngagementCommand";
|
|
19
|
+
export * from "./DisassociateDRTLogBucketCommand";
|
|
20
|
+
export * from "./DisassociateDRTRoleCommand";
|
|
21
|
+
export * from "./DisassociateHealthCheckCommand";
|
|
22
|
+
export * from "./EnableProactiveEngagementCommand";
|
|
23
|
+
export * from "./GetSubscriptionStateCommand";
|
|
24
|
+
export * from "./ListAttacksCommand";
|
|
25
|
+
export * from "./ListProtectionGroupsCommand";
|
|
26
|
+
export * from "./ListProtectionsCommand";
|
|
27
|
+
export * from "./ListResourcesInProtectionGroupCommand";
|
|
28
|
+
export * from "./ListTagsForResourceCommand";
|
|
29
|
+
export * from "./TagResourceCommand";
|
|
30
|
+
export * from "./UntagResourceCommand";
|
|
31
|
+
export * from "./UpdateEmergencyContactSettingsCommand";
|
|
32
|
+
export * from "./UpdateProtectionGroupCommand";
|
|
33
|
+
export * from "./UpdateSubscriptionCommand";
|
|
@@ -1,41 +1,5 @@
|
|
|
1
|
-
export * from "./ShieldClient";
|
|
2
1
|
export * from "./Shield";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateProtectionCommand";
|
|
8
|
-
export * from "./commands/CreateProtectionGroupCommand";
|
|
9
|
-
export * from "./commands/CreateSubscriptionCommand";
|
|
10
|
-
export * from "./commands/DeleteProtectionCommand";
|
|
11
|
-
export * from "./commands/DeleteProtectionGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteSubscriptionCommand";
|
|
13
|
-
export * from "./commands/DescribeAttackCommand";
|
|
14
|
-
export * from "./commands/DescribeAttackStatisticsCommand";
|
|
15
|
-
export * from "./commands/DescribeDRTAccessCommand";
|
|
16
|
-
export * from "./commands/DescribeEmergencyContactSettingsCommand";
|
|
17
|
-
export * from "./commands/DescribeProtectionCommand";
|
|
18
|
-
export * from "./commands/DescribeProtectionGroupCommand";
|
|
19
|
-
export * from "./commands/DescribeSubscriptionCommand";
|
|
20
|
-
export * from "./commands/DisableProactiveEngagementCommand";
|
|
21
|
-
export * from "./commands/DisassociateDRTLogBucketCommand";
|
|
22
|
-
export * from "./commands/DisassociateDRTRoleCommand";
|
|
23
|
-
export * from "./commands/DisassociateHealthCheckCommand";
|
|
24
|
-
export * from "./commands/EnableProactiveEngagementCommand";
|
|
25
|
-
export * from "./commands/GetSubscriptionStateCommand";
|
|
26
|
-
export * from "./commands/ListAttacksCommand";
|
|
27
|
-
export * from "./pagination/ListAttacksPaginator";
|
|
28
|
-
export * from "./commands/ListProtectionGroupsCommand";
|
|
29
|
-
export * from "./pagination/ListProtectionGroupsPaginator";
|
|
30
|
-
export * from "./commands/ListProtectionsCommand";
|
|
31
|
-
export * from "./pagination/ListProtectionsPaginator";
|
|
32
|
-
export * from "./commands/ListResourcesInProtectionGroupCommand";
|
|
33
|
-
export * from "./pagination/ListResourcesInProtectionGroupPaginator";
|
|
34
|
-
export * from "./commands/ListTagsForResourceCommand";
|
|
35
|
-
export * from "./commands/TagResourceCommand";
|
|
36
|
-
export * from "./commands/UntagResourceCommand";
|
|
37
|
-
export * from "./commands/UpdateEmergencyContactSettingsCommand";
|
|
38
|
-
export * from "./commands/UpdateProtectionGroupCommand";
|
|
39
|
-
export * from "./commands/UpdateSubscriptionCommand";
|
|
40
|
-
export * from "./pagination/Interfaces";
|
|
41
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./ShieldClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-shield",
|
|
3
3
|
"description": "AWS SDK for JavaScript Shield Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.38.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.38.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.38.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.38.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.38.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.38.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.38.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.38.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.38.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.38.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.38.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.38.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.38.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.38.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.38.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.38.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.38.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.38.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.38.0",
|
|
42
|
+
"@aws-sdk/types": "3.38.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.38.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.38.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.38.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.38.0",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"downlevel-dts": "0.7.0",
|
|
58
58
|
"jest": "^26.1.0",
|