@aws-sdk/client-shield 3.952.0 → 3.953.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/index.js +507 -347
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AssociateDRTLogBucketCommand.js +2 -2
- package/dist-es/commands/AssociateDRTRoleCommand.js +2 -2
- package/dist-es/commands/AssociateHealthCheckCommand.js +2 -2
- package/dist-es/commands/AssociateProactiveEngagementDetailsCommand.js +2 -2
- package/dist-es/commands/CreateProtectionCommand.js +2 -2
- package/dist-es/commands/CreateProtectionGroupCommand.js +2 -2
- package/dist-es/commands/CreateSubscriptionCommand.js +2 -2
- package/dist-es/commands/DeleteProtectionCommand.js +2 -2
- package/dist-es/commands/DeleteProtectionGroupCommand.js +2 -2
- package/dist-es/commands/DeleteSubscriptionCommand.js +2 -2
- package/dist-es/commands/DescribeAttackCommand.js +2 -2
- package/dist-es/commands/DescribeAttackStatisticsCommand.js +2 -2
- package/dist-es/commands/DescribeDRTAccessCommand.js +2 -2
- package/dist-es/commands/DescribeEmergencyContactSettingsCommand.js +2 -2
- package/dist-es/commands/DescribeProtectionCommand.js +2 -2
- package/dist-es/commands/DescribeProtectionGroupCommand.js +2 -2
- package/dist-es/commands/DescribeSubscriptionCommand.js +2 -2
- package/dist-es/commands/DisableApplicationLayerAutomaticResponseCommand.js +2 -2
- package/dist-es/commands/DisableProactiveEngagementCommand.js +2 -2
- package/dist-es/commands/DisassociateDRTLogBucketCommand.js +2 -2
- package/dist-es/commands/DisassociateDRTRoleCommand.js +2 -2
- package/dist-es/commands/DisassociateHealthCheckCommand.js +2 -2
- package/dist-es/commands/EnableApplicationLayerAutomaticResponseCommand.js +2 -2
- package/dist-es/commands/EnableProactiveEngagementCommand.js +2 -2
- package/dist-es/commands/GetSubscriptionStateCommand.js +2 -2
- package/dist-es/commands/ListAttacksCommand.js +2 -2
- package/dist-es/commands/ListProtectionGroupsCommand.js +2 -2
- package/dist-es/commands/ListProtectionsCommand.js +2 -2
- package/dist-es/commands/ListResourcesInProtectionGroupCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationLayerAutomaticResponseCommand.js +2 -2
- package/dist-es/commands/UpdateEmergencyContactSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateProtectionGroupCommand.js +2 -2
- package/dist-es/commands/UpdateSubscriptionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +287 -280
- package/dist-types/ShieldClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +154 -181
- package/dist-types/ts3.4/ShieldClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +153 -181
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.shield",
|
|
32
|
+
xmlNamespace: "http://ddp.amazonaws.com/doc/2016-06-02/",
|
|
33
|
+
version: "2016-06-02",
|
|
34
|
+
serviceTarget: "AWSShield_20160616",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "Shield",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateDRTLogBucket } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateDRTLogBucket$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateDRTLogBucketCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateDRTLogBucketCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "AssociateDRTLogBucket", {})
|
|
13
13
|
.n("ShieldClient", "AssociateDRTLogBucketCommand")
|
|
14
|
-
.sc(AssociateDRTLogBucket)
|
|
14
|
+
.sc(AssociateDRTLogBucket$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateDRTRole } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateDRTRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateDRTRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateDRTRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "AssociateDRTRole", {})
|
|
13
13
|
.n("ShieldClient", "AssociateDRTRoleCommand")
|
|
14
|
-
.sc(AssociateDRTRole)
|
|
14
|
+
.sc(AssociateDRTRole$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateHealthCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateHealthCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateHealthCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateHealthCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "AssociateHealthCheck", {})
|
|
13
13
|
.n("ShieldClient", "AssociateHealthCheckCommand")
|
|
14
|
-
.sc(AssociateHealthCheck)
|
|
14
|
+
.sc(AssociateHealthCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateProactiveEngagementDetails } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateProactiveEngagementDetails$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateProactiveEngagementDetailsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateProactiveEngagementDetailsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "AssociateProactiveEngagementDetails", {})
|
|
13
13
|
.n("ShieldClient", "AssociateProactiveEngagementDetailsCommand")
|
|
14
|
-
.sc(AssociateProactiveEngagementDetails)
|
|
14
|
+
.sc(AssociateProactiveEngagementDetails$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateProtection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProtection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProtectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProtectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "CreateProtection", {})
|
|
13
13
|
.n("ShieldClient", "CreateProtectionCommand")
|
|
14
|
-
.sc(CreateProtection)
|
|
14
|
+
.sc(CreateProtection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateProtectionGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProtectionGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProtectionGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProtectionGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "CreateProtectionGroup", {})
|
|
13
13
|
.n("ShieldClient", "CreateProtectionGroupCommand")
|
|
14
|
-
.sc(CreateProtectionGroup)
|
|
14
|
+
.sc(CreateProtectionGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "CreateSubscription", {})
|
|
13
13
|
.n("ShieldClient", "CreateSubscriptionCommand")
|
|
14
|
-
.sc(CreateSubscription)
|
|
14
|
+
.sc(CreateSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProtection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProtection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProtectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProtectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DeleteProtection", {})
|
|
13
13
|
.n("ShieldClient", "DeleteProtectionCommand")
|
|
14
|
-
.sc(DeleteProtection)
|
|
14
|
+
.sc(DeleteProtection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProtectionGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProtectionGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProtectionGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProtectionGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DeleteProtectionGroup", {})
|
|
13
13
|
.n("ShieldClient", "DeleteProtectionGroupCommand")
|
|
14
|
-
.sc(DeleteProtectionGroup)
|
|
14
|
+
.sc(DeleteProtectionGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DeleteSubscription", {})
|
|
13
13
|
.n("ShieldClient", "DeleteSubscriptionCommand")
|
|
14
|
-
.sc(DeleteSubscription)
|
|
14
|
+
.sc(DeleteSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAttack } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAttack$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAttackCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAttackCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeAttack", {})
|
|
13
13
|
.n("ShieldClient", "DescribeAttackCommand")
|
|
14
|
-
.sc(DescribeAttack)
|
|
14
|
+
.sc(DescribeAttack$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAttackStatistics } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAttackStatistics$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAttackStatisticsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAttackStatisticsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeAttackStatistics", {})
|
|
13
13
|
.n("ShieldClient", "DescribeAttackStatisticsCommand")
|
|
14
|
-
.sc(DescribeAttackStatistics)
|
|
14
|
+
.sc(DescribeAttackStatistics$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDRTAccess } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDRTAccess$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDRTAccessCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDRTAccessCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeDRTAccess", {})
|
|
13
13
|
.n("ShieldClient", "DescribeDRTAccessCommand")
|
|
14
|
-
.sc(DescribeDRTAccess)
|
|
14
|
+
.sc(DescribeDRTAccess$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEmergencyContactSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEmergencyContactSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEmergencyContactSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEmergencyContactSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeEmergencyContactSettings", {})
|
|
13
13
|
.n("ShieldClient", "DescribeEmergencyContactSettingsCommand")
|
|
14
|
-
.sc(DescribeEmergencyContactSettings)
|
|
14
|
+
.sc(DescribeEmergencyContactSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeProtection } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeProtection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeProtectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeProtectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeProtection", {})
|
|
13
13
|
.n("ShieldClient", "DescribeProtectionCommand")
|
|
14
|
-
.sc(DescribeProtection)
|
|
14
|
+
.sc(DescribeProtection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeProtectionGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeProtectionGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeProtectionGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeProtectionGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeProtectionGroup", {})
|
|
13
13
|
.n("ShieldClient", "DescribeProtectionGroupCommand")
|
|
14
|
-
.sc(DescribeProtectionGroup)
|
|
14
|
+
.sc(DescribeProtectionGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DescribeSubscription", {})
|
|
13
13
|
.n("ShieldClient", "DescribeSubscriptionCommand")
|
|
14
|
-
.sc(DescribeSubscription)
|
|
14
|
+
.sc(DescribeSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableApplicationLayerAutomaticResponse } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableApplicationLayerAutomaticResponse$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableApplicationLayerAutomaticResponseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableApplicationLayerAutomaticResponseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DisableApplicationLayerAutomaticResponse", {})
|
|
13
13
|
.n("ShieldClient", "DisableApplicationLayerAutomaticResponseCommand")
|
|
14
|
-
.sc(DisableApplicationLayerAutomaticResponse)
|
|
14
|
+
.sc(DisableApplicationLayerAutomaticResponse$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableProactiveEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableProactiveEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableProactiveEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableProactiveEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DisableProactiveEngagement", {})
|
|
13
13
|
.n("ShieldClient", "DisableProactiveEngagementCommand")
|
|
14
|
-
.sc(DisableProactiveEngagement)
|
|
14
|
+
.sc(DisableProactiveEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateDRTLogBucket } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateDRTLogBucket$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateDRTLogBucketCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateDRTLogBucketCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DisassociateDRTLogBucket", {})
|
|
13
13
|
.n("ShieldClient", "DisassociateDRTLogBucketCommand")
|
|
14
|
-
.sc(DisassociateDRTLogBucket)
|
|
14
|
+
.sc(DisassociateDRTLogBucket$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateDRTRole } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateDRTRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateDRTRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateDRTRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DisassociateDRTRole", {})
|
|
13
13
|
.n("ShieldClient", "DisassociateDRTRoleCommand")
|
|
14
|
-
.sc(DisassociateDRTRole)
|
|
14
|
+
.sc(DisassociateDRTRole$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateHealthCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateHealthCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateHealthCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateHealthCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "DisassociateHealthCheck", {})
|
|
13
13
|
.n("ShieldClient", "DisassociateHealthCheckCommand")
|
|
14
|
-
.sc(DisassociateHealthCheck)
|
|
14
|
+
.sc(DisassociateHealthCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableApplicationLayerAutomaticResponse } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableApplicationLayerAutomaticResponse$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableApplicationLayerAutomaticResponseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableApplicationLayerAutomaticResponseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "EnableApplicationLayerAutomaticResponse", {})
|
|
13
13
|
.n("ShieldClient", "EnableApplicationLayerAutomaticResponseCommand")
|
|
14
|
-
.sc(EnableApplicationLayerAutomaticResponse)
|
|
14
|
+
.sc(EnableApplicationLayerAutomaticResponse$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableProactiveEngagement } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableProactiveEngagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableProactiveEngagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableProactiveEngagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "EnableProactiveEngagement", {})
|
|
13
13
|
.n("ShieldClient", "EnableProactiveEngagementCommand")
|
|
14
|
-
.sc(EnableProactiveEngagement)
|
|
14
|
+
.sc(EnableProactiveEngagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSubscriptionState } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSubscriptionState$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSubscriptionStateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSubscriptionStateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "GetSubscriptionState", {})
|
|
13
13
|
.n("ShieldClient", "GetSubscriptionStateCommand")
|
|
14
|
-
.sc(GetSubscriptionState)
|
|
14
|
+
.sc(GetSubscriptionState$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAttacks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAttacks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAttacksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAttacksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "ListAttacks", {})
|
|
13
13
|
.n("ShieldClient", "ListAttacksCommand")
|
|
14
|
-
.sc(ListAttacks)
|
|
14
|
+
.sc(ListAttacks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProtectionGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProtectionGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProtectionGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProtectionGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "ListProtectionGroups", {})
|
|
13
13
|
.n("ShieldClient", "ListProtectionGroupsCommand")
|
|
14
|
-
.sc(ListProtectionGroups)
|
|
14
|
+
.sc(ListProtectionGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProtections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProtections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProtectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProtectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "ListProtections", {})
|
|
13
13
|
.n("ShieldClient", "ListProtectionsCommand")
|
|
14
|
-
.sc(ListProtections)
|
|
14
|
+
.sc(ListProtections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourcesInProtectionGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourcesInProtectionGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourcesInProtectionGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourcesInProtectionGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "ListResourcesInProtectionGroup", {})
|
|
13
13
|
.n("ShieldClient", "ListResourcesInProtectionGroupCommand")
|
|
14
|
-
.sc(ListResourcesInProtectionGroup)
|
|
14
|
+
.sc(ListResourcesInProtectionGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "ListTagsForResource", {})
|
|
13
13
|
.n("ShieldClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "TagResource", {})
|
|
13
13
|
.n("ShieldClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "UntagResource", {})
|
|
13
13
|
.n("ShieldClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplicationLayerAutomaticResponse } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplicationLayerAutomaticResponse$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationLayerAutomaticResponseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationLayerAutomaticResponseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "UpdateApplicationLayerAutomaticResponse", {})
|
|
13
13
|
.n("ShieldClient", "UpdateApplicationLayerAutomaticResponseCommand")
|
|
14
|
-
.sc(UpdateApplicationLayerAutomaticResponse)
|
|
14
|
+
.sc(UpdateApplicationLayerAutomaticResponse$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateEmergencyContactSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEmergencyContactSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEmergencyContactSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEmergencyContactSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "UpdateEmergencyContactSettings", {})
|
|
13
13
|
.n("ShieldClient", "UpdateEmergencyContactSettingsCommand")
|
|
14
|
-
.sc(UpdateEmergencyContactSettings)
|
|
14
|
+
.sc(UpdateEmergencyContactSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProtectionGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProtectionGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProtectionGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProtectionGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSShield_20160616", "UpdateProtectionGroup", {})
|
|
13
13
|
.n("ShieldClient", "UpdateProtectionGroupCommand")
|
|
14
|
-
.sc(UpdateProtectionGroup)
|
|
14
|
+
.sc(UpdateProtectionGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|