@aws-sdk/client-shield 3.296.0 → 3.297.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-types/Shield.d.ts +37 -0
- package/dist-types/ShieldClient.d.ts +24 -4
- package/dist-types/commands/AssociateDRTLogBucketCommand.d.ts +16 -0
- package/dist-types/commands/AssociateDRTRoleCommand.d.ts +16 -0
- package/dist-types/commands/AssociateHealthCheckCommand.d.ts +16 -0
- package/dist-types/commands/AssociateProactiveEngagementDetailsCommand.d.ts +16 -0
- package/dist-types/commands/CreateProtectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateProtectionGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProtectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProtectionGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAttackCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAttackStatisticsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDRTAccessCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEmergencyContactSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProtectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProtectionGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +16 -0
- package/dist-types/commands/DisableProactiveEngagementCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateDRTLogBucketCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateDRTRoleCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateHealthCheckCommand.d.ts +16 -0
- package/dist-types/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +16 -0
- package/dist-types/commands/EnableProactiveEngagementCommand.d.ts +16 -0
- package/dist-types/commands/GetSubscriptionStateCommand.d.ts +16 -0
- package/dist-types/commands/ListAttacksCommand.d.ts +16 -0
- package/dist-types/commands/ListProtectionGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListProtectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesInProtectionGroupCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEmergencyContactSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProtectionGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubscriptionCommand.d.ts +16 -0
- package/dist-types/models/ShieldServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +298 -2
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAttacksPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtectionGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourcesInProtectionGroupPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAttacksCommandInput, ListAttacksCommandOutput } from "../commands/ListAttacksCommand";
|
|
3
3
|
import { ShieldPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAttacks(config: ShieldPaginationConfiguration, input: ListAttacksCommandInput, ...additionalArguments: any): Paginator<ListAttacksCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListProtectionGroupsCommandInput, ListProtectionGroupsCommandOutput } from "../commands/ListProtectionGroupsCommand";
|
|
3
3
|
import { ShieldPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListProtectionGroups(config: ShieldPaginationConfiguration, input: ListProtectionGroupsCommandInput, ...additionalArguments: any): Paginator<ListProtectionGroupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListProtectionsCommandInput, ListProtectionsCommandOutput } from "../commands/ListProtectionsCommand";
|
|
3
3
|
import { ShieldPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListProtections(config: ShieldPaginationConfiguration, input: ListProtectionsCommandInput, ...additionalArguments: any): Paginator<ListProtectionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListResourcesInProtectionGroupCommandInput, ListResourcesInProtectionGroupCommandOutput } from "../commands/ListResourcesInProtectionGroupCommand";
|
|
3
3
|
import { ShieldPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListResourcesInProtectionGroup(config: ShieldPaginationConfiguration, input: ListResourcesInProtectionGroupCommandInput, ...additionalArguments: any): Paginator<ListResourcesInProtectionGroupCommandOutput>;
|
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.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
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.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|