@aws-sdk/client-shield 3.1075.0 → 3.1076.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 +1536 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -51
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ShieldServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -169
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1138
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultShieldHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "shield",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultShieldHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1323 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const l = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [l]: "Endpoint" }, h = { [l]: d }, i = {}, j = { "authSchemes": [{ "name": "sigv4", "signingName": "shield", "signingRegion": "us-east-1" }] }, k = [{ [l]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, k],
|
|
80
|
+
["aws.partition", k, d],
|
|
81
|
+
[e, [{ [l]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [l]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws"]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://shield.us-east-1.amazonaws.com", j],
|
|
93
|
+
["https://shield-fips.us-east-1.amazonaws.com", j],
|
|
94
|
+
["https://shield-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
95
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
96
|
+
["https://shield-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://shield.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://shield.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 14, 3,
|
|
109
|
+
1, 4, r + 13,
|
|
110
|
+
2, 5, r + 13,
|
|
111
|
+
3, 9, 6,
|
|
112
|
+
4, 8, 7,
|
|
113
|
+
6, r + 4, r + 12,
|
|
114
|
+
5, r + 10, r + 11,
|
|
115
|
+
4, 12, 10,
|
|
116
|
+
6, r + 5, 11,
|
|
117
|
+
7, r + 8, r + 9,
|
|
118
|
+
5, 13, r + 7,
|
|
119
|
+
7, r + 6, r + 7,
|
|
120
|
+
3, r + 1, 15,
|
|
121
|
+
4, r + 2, r + 3,
|
|
122
|
+
]);
|
|
123
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
124
|
+
|
|
125
|
+
const cache = new EndpointCache({
|
|
126
|
+
size: 50,
|
|
127
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
128
|
+
});
|
|
129
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
130
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
131
|
+
endpointParams: endpointParams,
|
|
132
|
+
logger: context.logger,
|
|
133
|
+
}));
|
|
134
|
+
};
|
|
135
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
136
|
+
|
|
137
|
+
class ShieldServiceException extends ServiceException {
|
|
138
|
+
constructor(options) {
|
|
139
|
+
super(options);
|
|
140
|
+
Object.setPrototypeOf(this, ShieldServiceException.prototype);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
class AccessDeniedException extends ShieldServiceException {
|
|
145
|
+
name = "AccessDeniedException";
|
|
146
|
+
$fault = "client";
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "AccessDeniedException",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
class AccessDeniedForDependencyException extends ShieldServiceException {
|
|
157
|
+
name = "AccessDeniedForDependencyException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "AccessDeniedForDependencyException",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
Object.setPrototypeOf(this, AccessDeniedForDependencyException.prototype);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class InternalErrorException extends ShieldServiceException {
|
|
169
|
+
name = "InternalErrorException";
|
|
170
|
+
$fault = "server";
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InternalErrorException",
|
|
174
|
+
$fault: "server",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class InvalidOperationException extends ShieldServiceException {
|
|
181
|
+
name = "InvalidOperationException";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "InvalidOperationException",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
class InvalidParameterException extends ShieldServiceException {
|
|
193
|
+
name = "InvalidParameterException";
|
|
194
|
+
$fault = "client";
|
|
195
|
+
reason;
|
|
196
|
+
fields;
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "InvalidParameterException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
204
|
+
this.reason = opts.reason;
|
|
205
|
+
this.fields = opts.fields;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
class LimitsExceededException extends ShieldServiceException {
|
|
209
|
+
name = "LimitsExceededException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
Type;
|
|
212
|
+
Limit;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "LimitsExceededException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, LimitsExceededException.prototype);
|
|
220
|
+
this.Type = opts.Type;
|
|
221
|
+
this.Limit = opts.Limit;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
class NoAssociatedRoleException extends ShieldServiceException {
|
|
225
|
+
name = "NoAssociatedRoleException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "NoAssociatedRoleException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, NoAssociatedRoleException.prototype);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
class OptimisticLockException extends ShieldServiceException {
|
|
237
|
+
name = "OptimisticLockException";
|
|
238
|
+
$fault = "client";
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "OptimisticLockException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, OptimisticLockException.prototype);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
class ResourceNotFoundException extends ShieldServiceException {
|
|
249
|
+
name = "ResourceNotFoundException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
resourceType;
|
|
252
|
+
constructor(opts) {
|
|
253
|
+
super({
|
|
254
|
+
name: "ResourceNotFoundException",
|
|
255
|
+
$fault: "client",
|
|
256
|
+
...opts,
|
|
257
|
+
});
|
|
258
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
259
|
+
this.resourceType = opts.resourceType;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
class InvalidResourceException extends ShieldServiceException {
|
|
263
|
+
name = "InvalidResourceException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "InvalidResourceException",
|
|
268
|
+
$fault: "client",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
Object.setPrototypeOf(this, InvalidResourceException.prototype);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
class ResourceAlreadyExistsException extends ShieldServiceException {
|
|
275
|
+
name = "ResourceAlreadyExistsException";
|
|
276
|
+
$fault = "client";
|
|
277
|
+
resourceType;
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "ResourceAlreadyExistsException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
285
|
+
this.resourceType = opts.resourceType;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
class LockedSubscriptionException extends ShieldServiceException {
|
|
289
|
+
name = "LockedSubscriptionException";
|
|
290
|
+
$fault = "client";
|
|
291
|
+
constructor(opts) {
|
|
292
|
+
super({
|
|
293
|
+
name: "LockedSubscriptionException",
|
|
294
|
+
$fault: "client",
|
|
295
|
+
...opts,
|
|
296
|
+
});
|
|
297
|
+
Object.setPrototypeOf(this, LockedSubscriptionException.prototype);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
class InvalidPaginationTokenException extends ShieldServiceException {
|
|
301
|
+
name = "InvalidPaginationTokenException";
|
|
302
|
+
$fault = "client";
|
|
303
|
+
constructor(opts) {
|
|
304
|
+
super({
|
|
305
|
+
name: "InvalidPaginationTokenException",
|
|
306
|
+
$fault: "client",
|
|
307
|
+
...opts,
|
|
308
|
+
});
|
|
309
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
const _A = "Action";
|
|
314
|
+
const _AC = "AttackCounters";
|
|
315
|
+
const _ACt = "AttackCount";
|
|
316
|
+
const _AD = "AttackDetail";
|
|
317
|
+
const _ADE = "AccessDeniedException";
|
|
318
|
+
const _ADFDE = "AccessDeniedForDependencyException";
|
|
319
|
+
const _ADRTLB = "AssociateDRTLogBucket";
|
|
320
|
+
const _ADRTLBR = "AssociateDRTLogBucketRequest";
|
|
321
|
+
const _ADRTLBRs = "AssociateDRTLogBucketResponse";
|
|
322
|
+
const _ADRTR = "AssociateDRTRole";
|
|
323
|
+
const _ADRTRR = "AssociateDRTRoleRequest";
|
|
324
|
+
const _ADRTRRs = "AssociateDRTRoleResponse";
|
|
325
|
+
const _AHC = "AssociateHealthCheck";
|
|
326
|
+
const _AHCR = "AssociateHealthCheckRequest";
|
|
327
|
+
const _AHCRs = "AssociateHealthCheckResponse";
|
|
328
|
+
const _AI = "AttackId";
|
|
329
|
+
const _AL = "AttackLayer";
|
|
330
|
+
const _ALARC = "ApplicationLayerAutomaticResponseConfiguration";
|
|
331
|
+
const _AP = "AttackProperties";
|
|
332
|
+
const _APED = "AssociateProactiveEngagementDetails";
|
|
333
|
+
const _APEDR = "AssociateProactiveEngagementDetailsRequest";
|
|
334
|
+
const _APEDRs = "AssociateProactiveEngagementDetailsResponse";
|
|
335
|
+
const _API = "AttackPropertyIdentifier";
|
|
336
|
+
const _APL = "ArbitraryPatternLimits";
|
|
337
|
+
const _APt = "AttackProperty";
|
|
338
|
+
const _AR = "AutoRenew";
|
|
339
|
+
const _AS = "AttackSummary";
|
|
340
|
+
const _ASDI = "AttackStatisticsDataItem";
|
|
341
|
+
const _ASDL = "AttackStatisticsDataList";
|
|
342
|
+
const _ASt = "AttackSummaries";
|
|
343
|
+
const _AV = "AttackVolume";
|
|
344
|
+
const _AVD = "AttackVectorDescription";
|
|
345
|
+
const _AVDL = "AttackVectorDescriptionList";
|
|
346
|
+
const _AVS = "AttackVolumeStatistics";
|
|
347
|
+
const _AVt = "AttackVectors";
|
|
348
|
+
const _Ag = "Aggregation";
|
|
349
|
+
const _Agg = "Aggregations";
|
|
350
|
+
const _At = "Attack";
|
|
351
|
+
const _Av = "Average";
|
|
352
|
+
const _B = "Block";
|
|
353
|
+
const _BA = "BlockAction";
|
|
354
|
+
const _BPS = "BitsPerSecond";
|
|
355
|
+
const _C = "Contributor";
|
|
356
|
+
const _CA = "CountAction";
|
|
357
|
+
const _CN = "ContactNotes";
|
|
358
|
+
const _CP = "CreateProtection";
|
|
359
|
+
const _CPG = "CreateProtectionGroup";
|
|
360
|
+
const _CPGR = "CreateProtectionGroupRequest";
|
|
361
|
+
const _CPGRr = "CreateProtectionGroupResponse";
|
|
362
|
+
const _CPR = "CreateProtectionRequest";
|
|
363
|
+
const _CPRr = "CreateProtectionResponse";
|
|
364
|
+
const _CS = "CreateSubscription";
|
|
365
|
+
const _CSR = "CreateSubscriptionRequest";
|
|
366
|
+
const _CSRr = "CreateSubscriptionResponse";
|
|
367
|
+
const _Co = "Count";
|
|
368
|
+
const _Cou = "Counters";
|
|
369
|
+
const _DA = "DescribeAttack";
|
|
370
|
+
const _DALAR = "DisableApplicationLayerAutomaticResponse";
|
|
371
|
+
const _DALARR = "DisableApplicationLayerAutomaticResponseRequest";
|
|
372
|
+
const _DALARRi = "DisableApplicationLayerAutomaticResponseResponse";
|
|
373
|
+
const _DAR = "DescribeAttackRequest";
|
|
374
|
+
const _DARe = "DescribeAttackResponse";
|
|
375
|
+
const _DAS = "DescribeAttackStatistics";
|
|
376
|
+
const _DASR = "DescribeAttackStatisticsRequest";
|
|
377
|
+
const _DASRe = "DescribeAttackStatisticsResponse";
|
|
378
|
+
const _DDRTA = "DescribeDRTAccess";
|
|
379
|
+
const _DDRTAR = "DescribeDRTAccessRequest";
|
|
380
|
+
const _DDRTARe = "DescribeDRTAccessResponse";
|
|
381
|
+
const _DDRTLB = "DisassociateDRTLogBucket";
|
|
382
|
+
const _DDRTLBR = "DisassociateDRTLogBucketRequest";
|
|
383
|
+
const _DDRTLBRi = "DisassociateDRTLogBucketResponse";
|
|
384
|
+
const _DDRTR = "DisassociateDRTRole";
|
|
385
|
+
const _DDRTRR = "DisassociateDRTRoleRequest";
|
|
386
|
+
const _DDRTRRi = "DisassociateDRTRoleResponse";
|
|
387
|
+
const _DECS = "DescribeEmergencyContactSettings";
|
|
388
|
+
const _DECSR = "DescribeEmergencyContactSettingsRequest";
|
|
389
|
+
const _DECSRe = "DescribeEmergencyContactSettingsResponse";
|
|
390
|
+
const _DHC = "DisassociateHealthCheck";
|
|
391
|
+
const _DHCR = "DisassociateHealthCheckRequest";
|
|
392
|
+
const _DHCRi = "DisassociateHealthCheckResponse";
|
|
393
|
+
const _DI = "DataItems";
|
|
394
|
+
const _DP = "DeleteProtection";
|
|
395
|
+
const _DPE = "DisableProactiveEngagement";
|
|
396
|
+
const _DPER = "DisableProactiveEngagementRequest";
|
|
397
|
+
const _DPERi = "DisableProactiveEngagementResponse";
|
|
398
|
+
const _DPG = "DeleteProtectionGroup";
|
|
399
|
+
const _DPGR = "DeleteProtectionGroupRequest";
|
|
400
|
+
const _DPGRe = "DeleteProtectionGroupResponse";
|
|
401
|
+
const _DPGRes = "DescribeProtectionGroupRequest";
|
|
402
|
+
const _DPGResc = "DescribeProtectionGroupResponse";
|
|
403
|
+
const _DPGe = "DescribeProtectionGroup";
|
|
404
|
+
const _DPR = "DeleteProtectionRequest";
|
|
405
|
+
const _DPRe = "DeleteProtectionResponse";
|
|
406
|
+
const _DPRes = "DescribeProtectionRequest";
|
|
407
|
+
const _DPResc = "DescribeProtectionResponse";
|
|
408
|
+
const _DPe = "DescribeProtection";
|
|
409
|
+
const _DS = "DeleteSubscription";
|
|
410
|
+
const _DSR = "DeleteSubscriptionRequest";
|
|
411
|
+
const _DSRe = "DeleteSubscriptionResponse";
|
|
412
|
+
const _DSRes = "DescribeSubscriptionRequest";
|
|
413
|
+
const _DSResc = "DescribeSubscriptionResponse";
|
|
414
|
+
const _DSe = "DescribeSubscription";
|
|
415
|
+
const _EA = "EmailAddress";
|
|
416
|
+
const _EALAR = "EnableApplicationLayerAutomaticResponse";
|
|
417
|
+
const _EALARR = "EnableApplicationLayerAutomaticResponseRequest";
|
|
418
|
+
const _EALARRn = "EnableApplicationLayerAutomaticResponseResponse";
|
|
419
|
+
const _EC = "EmergencyContact";
|
|
420
|
+
const _ECL = "EmergencyContactList";
|
|
421
|
+
const _EPE = "EnableProactiveEngagement";
|
|
422
|
+
const _EPER = "EnableProactiveEngagementRequest";
|
|
423
|
+
const _EPERn = "EnableProactiveEngagementResponse";
|
|
424
|
+
const _ET = "EndTime";
|
|
425
|
+
const _FI = "FromInclusive";
|
|
426
|
+
const _GSS = "GetSubscriptionState";
|
|
427
|
+
const _GSSR = "GetSubscriptionStateRequest";
|
|
428
|
+
const _GSSRe = "GetSubscriptionStateResponse";
|
|
429
|
+
const _HCA = "HealthCheckArn";
|
|
430
|
+
const _HCI = "HealthCheckIds";
|
|
431
|
+
const _I = "Id";
|
|
432
|
+
const _IEE = "InternalErrorException";
|
|
433
|
+
const _IF = "InclusionFilters";
|
|
434
|
+
const _IOE = "InvalidOperationException";
|
|
435
|
+
const _IPE = "InvalidParameterException";
|
|
436
|
+
const _IPF = "InclusionProtectionFilters";
|
|
437
|
+
const _IPGF = "InclusionProtectionGroupFilters";
|
|
438
|
+
const _IPTE = "InvalidPaginationTokenException";
|
|
439
|
+
const _IRE = "InvalidResourceException";
|
|
440
|
+
const _K = "Key";
|
|
441
|
+
const _L = "Limit";
|
|
442
|
+
const _LA = "ListAttacks";
|
|
443
|
+
const _LAR = "ListAttacksRequest";
|
|
444
|
+
const _LARi = "ListAttacksResponse";
|
|
445
|
+
const _LB = "LogBucket";
|
|
446
|
+
const _LBL = "LogBucketList";
|
|
447
|
+
const _LEE = "LimitsExceededException";
|
|
448
|
+
const _LP = "ListProtections";
|
|
449
|
+
const _LPG = "ListProtectionGroups";
|
|
450
|
+
const _LPGR = "ListProtectionGroupsRequest";
|
|
451
|
+
const _LPGRi = "ListProtectionGroupsResponse";
|
|
452
|
+
const _LPR = "ListProtectionsRequest";
|
|
453
|
+
const _LPRi = "ListProtectionsResponse";
|
|
454
|
+
const _LRIPG = "ListResourcesInProtectionGroup";
|
|
455
|
+
const _LRIPGR = "ListResourcesInProtectionGroupRequest";
|
|
456
|
+
const _LRIPGRi = "ListResourcesInProtectionGroupResponse";
|
|
457
|
+
const _LSE = "LockedSubscriptionException";
|
|
458
|
+
const _LTFR = "ListTagsForResource";
|
|
459
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
460
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
461
|
+
const _Li = "Limits";
|
|
462
|
+
const _M = "Mitigations";
|
|
463
|
+
const _ML = "MitigationList";
|
|
464
|
+
const _MM = "MaxMembers";
|
|
465
|
+
const _MN = "MitigationName";
|
|
466
|
+
const _MPG = "MaxProtectionGroups";
|
|
467
|
+
const _MR = "MaxResults";
|
|
468
|
+
const _Ma = "Max";
|
|
469
|
+
const _Me = "Members";
|
|
470
|
+
const _Mi = "Mitigation";
|
|
471
|
+
const _N = "Name";
|
|
472
|
+
const _NARE = "NoAssociatedRoleException";
|
|
473
|
+
const _NT = "NextToken";
|
|
474
|
+
const _N_ = "N";
|
|
475
|
+
const _OLE = "OptimisticLockException";
|
|
476
|
+
const _P = "Pattern";
|
|
477
|
+
const _PA = "ProtectionArn";
|
|
478
|
+
const _PES = "ProactiveEngagementStatus";
|
|
479
|
+
const _PG = "ProtectionGroup";
|
|
480
|
+
const _PGA = "ProtectionGroupArn";
|
|
481
|
+
const _PGAPL = "ProtectionGroupArbitraryPatternLimits";
|
|
482
|
+
const _PGI = "ProtectionGroupId";
|
|
483
|
+
const _PGIr = "ProtectionGroupIds";
|
|
484
|
+
const _PGL = "ProtectionGroupLimits";
|
|
485
|
+
const _PGPTL = "ProtectionGroupPatternTypeLimits";
|
|
486
|
+
const _PGr = "ProtectionGroups";
|
|
487
|
+
const _PI = "ProtectionId";
|
|
488
|
+
const _PL = "ProtectionLimits";
|
|
489
|
+
const _PN = "PhoneNumber";
|
|
490
|
+
const _PNr = "ProtectionNames";
|
|
491
|
+
const _PPS = "PacketsPerSecond";
|
|
492
|
+
const _PRTL = "ProtectedResourceTypeLimits";
|
|
493
|
+
const _PTL = "PatternTypeLimits";
|
|
494
|
+
const _Pa = "Patterns";
|
|
495
|
+
const _Pr = "Protection";
|
|
496
|
+
const _Pro = "Protections";
|
|
497
|
+
const _RA = "RoleArn";
|
|
498
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
499
|
+
const _RARN = "ResourceARN";
|
|
500
|
+
const _RAe = "ResourceArn";
|
|
501
|
+
const _RAes = "ResourceArns";
|
|
502
|
+
const _RAesp = "ResponseAction";
|
|
503
|
+
const _RNFE = "ResourceNotFoundException";
|
|
504
|
+
const _RPS = "RequestsPerSecond";
|
|
505
|
+
const _RT = "ResourceType";
|
|
506
|
+
const _RTe = "ResourceTypes";
|
|
507
|
+
const _S = "Status";
|
|
508
|
+
const _SA = "SubscriptionArn";
|
|
509
|
+
const _SAV = "SummarizedAttackVector";
|
|
510
|
+
const _SAVL = "SummarizedAttackVectorList";
|
|
511
|
+
const _SC = "SummarizedCounter";
|
|
512
|
+
const _SCL = "SummarizedCounterList";
|
|
513
|
+
const _SL = "SubscriptionLimits";
|
|
514
|
+
const _SR = "SubResources";
|
|
515
|
+
const _SRS = "SubResourceSummary";
|
|
516
|
+
const _SRSL = "SubResourceSummaryList";
|
|
517
|
+
const _SS = "SubscriptionState";
|
|
518
|
+
const _ST = "StartTime";
|
|
519
|
+
const _Su = "Subscription";
|
|
520
|
+
const _Sum = "Sum";
|
|
521
|
+
const _T = "Type";
|
|
522
|
+
const _TC = "TopContributors";
|
|
523
|
+
const _TCIS = "TimeCommitmentInSeconds";
|
|
524
|
+
const _TE = "ToExclusive";
|
|
525
|
+
const _TK = "TagKeys";
|
|
526
|
+
const _TL = "TagList";
|
|
527
|
+
const _TR = "TimeRange";
|
|
528
|
+
const _TRR = "TagResourceRequest";
|
|
529
|
+
const _TRRa = "TagResourceResponse";
|
|
530
|
+
const _TRa = "TagResource";
|
|
531
|
+
const _Ta = "Tags";
|
|
532
|
+
const _Tag = "Tag";
|
|
533
|
+
const _To = "Total";
|
|
534
|
+
const _U = "Unit";
|
|
535
|
+
const _UALAR = "UpdateApplicationLayerAutomaticResponse";
|
|
536
|
+
const _UALARR = "UpdateApplicationLayerAutomaticResponseRequest";
|
|
537
|
+
const _UALARRp = "UpdateApplicationLayerAutomaticResponseResponse";
|
|
538
|
+
const _UECS = "UpdateEmergencyContactSettings";
|
|
539
|
+
const _UECSR = "UpdateEmergencyContactSettingsRequest";
|
|
540
|
+
const _UECSRp = "UpdateEmergencyContactSettingsResponse";
|
|
541
|
+
const _UPG = "UpdateProtectionGroup";
|
|
542
|
+
const _UPGR = "UpdateProtectionGroupRequest";
|
|
543
|
+
const _UPGRp = "UpdateProtectionGroupResponse";
|
|
544
|
+
const _UR = "UntagResource";
|
|
545
|
+
const _URR = "UntagResourceRequest";
|
|
546
|
+
const _URRn = "UntagResourceResponse";
|
|
547
|
+
const _US = "UpdateSubscription";
|
|
548
|
+
const _USR = "UpdateSubscriptionRequest";
|
|
549
|
+
const _USRp = "UpdateSubscriptionResponse";
|
|
550
|
+
const _V = "Value";
|
|
551
|
+
const _VC = "VectorCounters";
|
|
552
|
+
const _VEF = "ValidationExceptionField";
|
|
553
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
554
|
+
const _VT = "VectorType";
|
|
555
|
+
const _c = "client";
|
|
556
|
+
const _e = "error";
|
|
557
|
+
const _f = "fields";
|
|
558
|
+
const _m = "message";
|
|
559
|
+
const _n = "name";
|
|
560
|
+
const _r = "reason";
|
|
561
|
+
const _rT = "resourceType";
|
|
562
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.shield";
|
|
563
|
+
const _se = "server";
|
|
564
|
+
const n0 = "com.amazonaws.shield";
|
|
565
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
566
|
+
var ShieldServiceException$ = [-3, _s, "ShieldServiceException", 0, [], []];
|
|
567
|
+
_s_registry.registerError(ShieldServiceException$, ShieldServiceException);
|
|
568
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
569
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
570
|
+
{ [_e]: _c },
|
|
571
|
+
[_m],
|
|
572
|
+
[0]
|
|
573
|
+
];
|
|
574
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
575
|
+
var AccessDeniedForDependencyException$ = [-3, n0, _ADFDE,
|
|
576
|
+
{ [_e]: _c },
|
|
577
|
+
[_m],
|
|
578
|
+
[0]
|
|
579
|
+
];
|
|
580
|
+
n0_registry.registerError(AccessDeniedForDependencyException$, AccessDeniedForDependencyException);
|
|
581
|
+
var InternalErrorException$ = [-3, n0, _IEE,
|
|
582
|
+
{ [_e]: _se },
|
|
583
|
+
[_m],
|
|
584
|
+
[0]
|
|
585
|
+
];
|
|
586
|
+
n0_registry.registerError(InternalErrorException$, InternalErrorException);
|
|
587
|
+
var InvalidOperationException$ = [-3, n0, _IOE,
|
|
588
|
+
{ [_e]: _c },
|
|
589
|
+
[_m],
|
|
590
|
+
[0]
|
|
591
|
+
];
|
|
592
|
+
n0_registry.registerError(InvalidOperationException$, InvalidOperationException);
|
|
593
|
+
var InvalidPaginationTokenException$ = [-3, n0, _IPTE,
|
|
594
|
+
{ [_e]: _c },
|
|
595
|
+
[_m],
|
|
596
|
+
[0]
|
|
597
|
+
];
|
|
598
|
+
n0_registry.registerError(InvalidPaginationTokenException$, InvalidPaginationTokenException);
|
|
599
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
600
|
+
{ [_e]: _c },
|
|
601
|
+
[_m, _r, _f],
|
|
602
|
+
[0, 0, () => ValidationExceptionFieldList]
|
|
603
|
+
];
|
|
604
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
605
|
+
var InvalidResourceException$ = [-3, n0, _IRE,
|
|
606
|
+
{ [_e]: _c },
|
|
607
|
+
[_m],
|
|
608
|
+
[0]
|
|
609
|
+
];
|
|
610
|
+
n0_registry.registerError(InvalidResourceException$, InvalidResourceException);
|
|
611
|
+
var LimitsExceededException$ = [-3, n0, _LEE,
|
|
612
|
+
{ [_e]: _c },
|
|
613
|
+
[_m, _T, _L],
|
|
614
|
+
[0, 0, 1]
|
|
615
|
+
];
|
|
616
|
+
n0_registry.registerError(LimitsExceededException$, LimitsExceededException);
|
|
617
|
+
var LockedSubscriptionException$ = [-3, n0, _LSE,
|
|
618
|
+
{ [_e]: _c },
|
|
619
|
+
[_m],
|
|
620
|
+
[0]
|
|
621
|
+
];
|
|
622
|
+
n0_registry.registerError(LockedSubscriptionException$, LockedSubscriptionException);
|
|
623
|
+
var NoAssociatedRoleException$ = [-3, n0, _NARE,
|
|
624
|
+
{ [_e]: _c },
|
|
625
|
+
[_m],
|
|
626
|
+
[0]
|
|
627
|
+
];
|
|
628
|
+
n0_registry.registerError(NoAssociatedRoleException$, NoAssociatedRoleException);
|
|
629
|
+
var OptimisticLockException$ = [-3, n0, _OLE,
|
|
630
|
+
{ [_e]: _c },
|
|
631
|
+
[_m],
|
|
632
|
+
[0]
|
|
633
|
+
];
|
|
634
|
+
n0_registry.registerError(OptimisticLockException$, OptimisticLockException);
|
|
635
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
636
|
+
{ [_e]: _c },
|
|
637
|
+
[_m, _rT],
|
|
638
|
+
[0, 0]
|
|
639
|
+
];
|
|
640
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
641
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
642
|
+
{ [_e]: _c },
|
|
643
|
+
[_m, _rT],
|
|
644
|
+
[0, 0]
|
|
645
|
+
];
|
|
646
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
647
|
+
const errorTypeRegistries = [
|
|
648
|
+
_s_registry,
|
|
649
|
+
n0_registry,
|
|
650
|
+
];
|
|
651
|
+
var ApplicationLayerAutomaticResponseConfiguration$ = [3, n0, _ALARC,
|
|
652
|
+
0,
|
|
653
|
+
[_S, _A],
|
|
654
|
+
[0, () => ResponseAction$], 2
|
|
655
|
+
];
|
|
656
|
+
var AssociateDRTLogBucketRequest$ = [3, n0, _ADRTLBR,
|
|
657
|
+
0,
|
|
658
|
+
[_LB],
|
|
659
|
+
[0], 1
|
|
660
|
+
];
|
|
661
|
+
var AssociateDRTLogBucketResponse$ = [3, n0, _ADRTLBRs,
|
|
662
|
+
0,
|
|
663
|
+
[],
|
|
664
|
+
[]
|
|
665
|
+
];
|
|
666
|
+
var AssociateDRTRoleRequest$ = [3, n0, _ADRTRR,
|
|
667
|
+
0,
|
|
668
|
+
[_RA],
|
|
669
|
+
[0], 1
|
|
670
|
+
];
|
|
671
|
+
var AssociateDRTRoleResponse$ = [3, n0, _ADRTRRs,
|
|
672
|
+
0,
|
|
673
|
+
[],
|
|
674
|
+
[]
|
|
675
|
+
];
|
|
676
|
+
var AssociateHealthCheckRequest$ = [3, n0, _AHCR,
|
|
677
|
+
0,
|
|
678
|
+
[_PI, _HCA],
|
|
679
|
+
[0, 0], 2
|
|
680
|
+
];
|
|
681
|
+
var AssociateHealthCheckResponse$ = [3, n0, _AHCRs,
|
|
682
|
+
0,
|
|
683
|
+
[],
|
|
684
|
+
[]
|
|
685
|
+
];
|
|
686
|
+
var AssociateProactiveEngagementDetailsRequest$ = [3, n0, _APEDR,
|
|
687
|
+
0,
|
|
688
|
+
[_ECL],
|
|
689
|
+
[() => EmergencyContactList], 1
|
|
690
|
+
];
|
|
691
|
+
var AssociateProactiveEngagementDetailsResponse$ = [3, n0, _APEDRs,
|
|
692
|
+
0,
|
|
693
|
+
[],
|
|
694
|
+
[]
|
|
695
|
+
];
|
|
696
|
+
var AttackDetail$ = [3, n0, _AD,
|
|
697
|
+
0,
|
|
698
|
+
[_AI, _RAe, _SR, _ST, _ET, _AC, _AP, _M],
|
|
699
|
+
[0, 0, () => SubResourceSummaryList, 4, 4, () => SummarizedCounterList, () => AttackProperties, () => MitigationList]
|
|
700
|
+
];
|
|
701
|
+
var AttackProperty$ = [3, n0, _APt,
|
|
702
|
+
0,
|
|
703
|
+
[_AL, _API, _TC, _U, _To],
|
|
704
|
+
[0, 0, () => TopContributors, 0, 1]
|
|
705
|
+
];
|
|
706
|
+
var AttackStatisticsDataItem$ = [3, n0, _ASDI,
|
|
707
|
+
0,
|
|
708
|
+
[_ACt, _AV],
|
|
709
|
+
[1, () => AttackVolume$], 1
|
|
710
|
+
];
|
|
711
|
+
var AttackSummary$ = [3, n0, _AS,
|
|
712
|
+
0,
|
|
713
|
+
[_AI, _RAe, _ST, _ET, _AVt],
|
|
714
|
+
[0, 0, 4, 4, () => AttackVectorDescriptionList]
|
|
715
|
+
];
|
|
716
|
+
var AttackVectorDescription$ = [3, n0, _AVD,
|
|
717
|
+
0,
|
|
718
|
+
[_VT],
|
|
719
|
+
[0], 1
|
|
720
|
+
];
|
|
721
|
+
var AttackVolume$ = [3, n0, _AV,
|
|
722
|
+
0,
|
|
723
|
+
[_BPS, _PPS, _RPS],
|
|
724
|
+
[() => AttackVolumeStatistics$, () => AttackVolumeStatistics$, () => AttackVolumeStatistics$]
|
|
725
|
+
];
|
|
726
|
+
var AttackVolumeStatistics$ = [3, n0, _AVS,
|
|
727
|
+
0,
|
|
728
|
+
[_Ma],
|
|
729
|
+
[1], 1
|
|
730
|
+
];
|
|
731
|
+
var BlockAction$ = [3, n0, _BA,
|
|
732
|
+
0,
|
|
733
|
+
[],
|
|
734
|
+
[]
|
|
735
|
+
];
|
|
736
|
+
var Contributor$ = [3, n0, _C,
|
|
737
|
+
0,
|
|
738
|
+
[_N, _V],
|
|
739
|
+
[0, 1]
|
|
740
|
+
];
|
|
741
|
+
var CountAction$ = [3, n0, _CA,
|
|
742
|
+
0,
|
|
743
|
+
[],
|
|
744
|
+
[]
|
|
745
|
+
];
|
|
746
|
+
var CreateProtectionGroupRequest$ = [3, n0, _CPGR,
|
|
747
|
+
0,
|
|
748
|
+
[_PGI, _Ag, _P, _RT, _Me, _Ta],
|
|
749
|
+
[0, 0, 0, 0, 64 | 0, () => TagList], 3
|
|
750
|
+
];
|
|
751
|
+
var CreateProtectionGroupResponse$ = [3, n0, _CPGRr,
|
|
752
|
+
0,
|
|
753
|
+
[],
|
|
754
|
+
[]
|
|
755
|
+
];
|
|
756
|
+
var CreateProtectionRequest$ = [3, n0, _CPR,
|
|
757
|
+
0,
|
|
758
|
+
[_N, _RAe, _Ta],
|
|
759
|
+
[0, 0, () => TagList], 2
|
|
760
|
+
];
|
|
761
|
+
var CreateProtectionResponse$ = [3, n0, _CPRr,
|
|
762
|
+
0,
|
|
763
|
+
[_PI],
|
|
764
|
+
[0]
|
|
765
|
+
];
|
|
766
|
+
var CreateSubscriptionRequest$ = [3, n0, _CSR,
|
|
767
|
+
0,
|
|
768
|
+
[],
|
|
769
|
+
[]
|
|
770
|
+
];
|
|
771
|
+
var CreateSubscriptionResponse$ = [3, n0, _CSRr,
|
|
772
|
+
0,
|
|
773
|
+
[],
|
|
774
|
+
[]
|
|
775
|
+
];
|
|
776
|
+
var DeleteProtectionGroupRequest$ = [3, n0, _DPGR,
|
|
777
|
+
0,
|
|
778
|
+
[_PGI],
|
|
779
|
+
[0], 1
|
|
780
|
+
];
|
|
781
|
+
var DeleteProtectionGroupResponse$ = [3, n0, _DPGRe,
|
|
782
|
+
0,
|
|
783
|
+
[],
|
|
784
|
+
[]
|
|
785
|
+
];
|
|
786
|
+
var DeleteProtectionRequest$ = [3, n0, _DPR,
|
|
787
|
+
0,
|
|
788
|
+
[_PI],
|
|
789
|
+
[0], 1
|
|
790
|
+
];
|
|
791
|
+
var DeleteProtectionResponse$ = [3, n0, _DPRe,
|
|
792
|
+
0,
|
|
793
|
+
[],
|
|
794
|
+
[]
|
|
795
|
+
];
|
|
796
|
+
var DeleteSubscriptionRequest$ = [3, n0, _DSR,
|
|
797
|
+
0,
|
|
798
|
+
[],
|
|
799
|
+
[]
|
|
800
|
+
];
|
|
801
|
+
var DeleteSubscriptionResponse$ = [3, n0, _DSRe,
|
|
802
|
+
0,
|
|
803
|
+
[],
|
|
804
|
+
[]
|
|
805
|
+
];
|
|
806
|
+
var DescribeAttackRequest$ = [3, n0, _DAR,
|
|
807
|
+
0,
|
|
808
|
+
[_AI],
|
|
809
|
+
[0], 1
|
|
810
|
+
];
|
|
811
|
+
var DescribeAttackResponse$ = [3, n0, _DARe,
|
|
812
|
+
0,
|
|
813
|
+
[_At],
|
|
814
|
+
[() => AttackDetail$]
|
|
815
|
+
];
|
|
816
|
+
var DescribeAttackStatisticsRequest$ = [3, n0, _DASR,
|
|
817
|
+
0,
|
|
818
|
+
[],
|
|
819
|
+
[]
|
|
820
|
+
];
|
|
821
|
+
var DescribeAttackStatisticsResponse$ = [3, n0, _DASRe,
|
|
822
|
+
0,
|
|
823
|
+
[_TR, _DI],
|
|
824
|
+
[() => TimeRange$, () => AttackStatisticsDataList], 2
|
|
825
|
+
];
|
|
826
|
+
var DescribeDRTAccessRequest$ = [3, n0, _DDRTAR,
|
|
827
|
+
0,
|
|
828
|
+
[],
|
|
829
|
+
[]
|
|
830
|
+
];
|
|
831
|
+
var DescribeDRTAccessResponse$ = [3, n0, _DDRTARe,
|
|
832
|
+
0,
|
|
833
|
+
[_RA, _LBL],
|
|
834
|
+
[0, 64 | 0]
|
|
835
|
+
];
|
|
836
|
+
var DescribeEmergencyContactSettingsRequest$ = [3, n0, _DECSR,
|
|
837
|
+
0,
|
|
838
|
+
[],
|
|
839
|
+
[]
|
|
840
|
+
];
|
|
841
|
+
var DescribeEmergencyContactSettingsResponse$ = [3, n0, _DECSRe,
|
|
842
|
+
0,
|
|
843
|
+
[_ECL],
|
|
844
|
+
[() => EmergencyContactList]
|
|
845
|
+
];
|
|
846
|
+
var DescribeProtectionGroupRequest$ = [3, n0, _DPGRes,
|
|
847
|
+
0,
|
|
848
|
+
[_PGI],
|
|
849
|
+
[0], 1
|
|
850
|
+
];
|
|
851
|
+
var DescribeProtectionGroupResponse$ = [3, n0, _DPGResc,
|
|
852
|
+
0,
|
|
853
|
+
[_PG],
|
|
854
|
+
[() => ProtectionGroup$], 1
|
|
855
|
+
];
|
|
856
|
+
var DescribeProtectionRequest$ = [3, n0, _DPRes,
|
|
857
|
+
0,
|
|
858
|
+
[_PI, _RAe],
|
|
859
|
+
[0, 0]
|
|
860
|
+
];
|
|
861
|
+
var DescribeProtectionResponse$ = [3, n0, _DPResc,
|
|
862
|
+
0,
|
|
863
|
+
[_Pr],
|
|
864
|
+
[() => Protection$]
|
|
865
|
+
];
|
|
866
|
+
var DescribeSubscriptionRequest$ = [3, n0, _DSRes,
|
|
867
|
+
0,
|
|
868
|
+
[],
|
|
869
|
+
[]
|
|
870
|
+
];
|
|
871
|
+
var DescribeSubscriptionResponse$ = [3, n0, _DSResc,
|
|
872
|
+
0,
|
|
873
|
+
[_Su],
|
|
874
|
+
[() => Subscription$]
|
|
875
|
+
];
|
|
876
|
+
var DisableApplicationLayerAutomaticResponseRequest$ = [3, n0, _DALARR,
|
|
877
|
+
0,
|
|
878
|
+
[_RAe],
|
|
879
|
+
[0], 1
|
|
880
|
+
];
|
|
881
|
+
var DisableApplicationLayerAutomaticResponseResponse$ = [3, n0, _DALARRi,
|
|
882
|
+
0,
|
|
883
|
+
[],
|
|
884
|
+
[]
|
|
885
|
+
];
|
|
886
|
+
var DisableProactiveEngagementRequest$ = [3, n0, _DPER,
|
|
887
|
+
0,
|
|
888
|
+
[],
|
|
889
|
+
[]
|
|
890
|
+
];
|
|
891
|
+
var DisableProactiveEngagementResponse$ = [3, n0, _DPERi,
|
|
892
|
+
0,
|
|
893
|
+
[],
|
|
894
|
+
[]
|
|
895
|
+
];
|
|
896
|
+
var DisassociateDRTLogBucketRequest$ = [3, n0, _DDRTLBR,
|
|
897
|
+
0,
|
|
898
|
+
[_LB],
|
|
899
|
+
[0], 1
|
|
900
|
+
];
|
|
901
|
+
var DisassociateDRTLogBucketResponse$ = [3, n0, _DDRTLBRi,
|
|
902
|
+
0,
|
|
903
|
+
[],
|
|
904
|
+
[]
|
|
905
|
+
];
|
|
906
|
+
var DisassociateDRTRoleRequest$ = [3, n0, _DDRTRR,
|
|
907
|
+
0,
|
|
908
|
+
[],
|
|
909
|
+
[]
|
|
910
|
+
];
|
|
911
|
+
var DisassociateDRTRoleResponse$ = [3, n0, _DDRTRRi,
|
|
912
|
+
0,
|
|
913
|
+
[],
|
|
914
|
+
[]
|
|
915
|
+
];
|
|
916
|
+
var DisassociateHealthCheckRequest$ = [3, n0, _DHCR,
|
|
917
|
+
0,
|
|
918
|
+
[_PI, _HCA],
|
|
919
|
+
[0, 0], 2
|
|
920
|
+
];
|
|
921
|
+
var DisassociateHealthCheckResponse$ = [3, n0, _DHCRi,
|
|
922
|
+
0,
|
|
923
|
+
[],
|
|
924
|
+
[]
|
|
925
|
+
];
|
|
926
|
+
var EmergencyContact$ = [3, n0, _EC,
|
|
927
|
+
0,
|
|
928
|
+
[_EA, _PN, _CN],
|
|
929
|
+
[0, 0, 0], 1
|
|
930
|
+
];
|
|
931
|
+
var EnableApplicationLayerAutomaticResponseRequest$ = [3, n0, _EALARR,
|
|
932
|
+
0,
|
|
933
|
+
[_RAe, _A],
|
|
934
|
+
[0, () => ResponseAction$], 2
|
|
935
|
+
];
|
|
936
|
+
var EnableApplicationLayerAutomaticResponseResponse$ = [3, n0, _EALARRn,
|
|
937
|
+
0,
|
|
938
|
+
[],
|
|
939
|
+
[]
|
|
940
|
+
];
|
|
941
|
+
var EnableProactiveEngagementRequest$ = [3, n0, _EPER,
|
|
942
|
+
0,
|
|
943
|
+
[],
|
|
944
|
+
[]
|
|
945
|
+
];
|
|
946
|
+
var EnableProactiveEngagementResponse$ = [3, n0, _EPERn,
|
|
947
|
+
0,
|
|
948
|
+
[],
|
|
949
|
+
[]
|
|
950
|
+
];
|
|
951
|
+
var GetSubscriptionStateRequest$ = [3, n0, _GSSR,
|
|
952
|
+
0,
|
|
953
|
+
[],
|
|
954
|
+
[]
|
|
955
|
+
];
|
|
956
|
+
var GetSubscriptionStateResponse$ = [3, n0, _GSSRe,
|
|
957
|
+
0,
|
|
958
|
+
[_SS],
|
|
959
|
+
[0], 1
|
|
960
|
+
];
|
|
961
|
+
var InclusionProtectionFilters$ = [3, n0, _IPF,
|
|
962
|
+
0,
|
|
963
|
+
[_RAes, _PNr, _RTe],
|
|
964
|
+
[64 | 0, 64 | 0, 64 | 0]
|
|
965
|
+
];
|
|
966
|
+
var InclusionProtectionGroupFilters$ = [3, n0, _IPGF,
|
|
967
|
+
0,
|
|
968
|
+
[_PGIr, _Pa, _RTe, _Agg],
|
|
969
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
970
|
+
];
|
|
971
|
+
var Limit$ = [3, n0, _L,
|
|
972
|
+
0,
|
|
973
|
+
[_T, _Ma],
|
|
974
|
+
[0, 1]
|
|
975
|
+
];
|
|
976
|
+
var ListAttacksRequest$ = [3, n0, _LAR,
|
|
977
|
+
0,
|
|
978
|
+
[_RAes, _ST, _ET, _NT, _MR],
|
|
979
|
+
[64 | 0, () => TimeRange$, () => TimeRange$, 0, 1]
|
|
980
|
+
];
|
|
981
|
+
var ListAttacksResponse$ = [3, n0, _LARi,
|
|
982
|
+
0,
|
|
983
|
+
[_ASt, _NT],
|
|
984
|
+
[() => AttackSummaries, 0]
|
|
985
|
+
];
|
|
986
|
+
var ListProtectionGroupsRequest$ = [3, n0, _LPGR,
|
|
987
|
+
0,
|
|
988
|
+
[_NT, _MR, _IF],
|
|
989
|
+
[0, 1, () => InclusionProtectionGroupFilters$]
|
|
990
|
+
];
|
|
991
|
+
var ListProtectionGroupsResponse$ = [3, n0, _LPGRi,
|
|
992
|
+
0,
|
|
993
|
+
[_PGr, _NT],
|
|
994
|
+
[() => ProtectionGroups, 0], 1
|
|
995
|
+
];
|
|
996
|
+
var ListProtectionsRequest$ = [3, n0, _LPR,
|
|
997
|
+
0,
|
|
998
|
+
[_NT, _MR, _IF],
|
|
999
|
+
[0, 1, () => InclusionProtectionFilters$]
|
|
1000
|
+
];
|
|
1001
|
+
var ListProtectionsResponse$ = [3, n0, _LPRi,
|
|
1002
|
+
0,
|
|
1003
|
+
[_Pro, _NT],
|
|
1004
|
+
[() => Protections, 0]
|
|
1005
|
+
];
|
|
1006
|
+
var ListResourcesInProtectionGroupRequest$ = [3, n0, _LRIPGR,
|
|
1007
|
+
0,
|
|
1008
|
+
[_PGI, _NT, _MR],
|
|
1009
|
+
[0, 0, 1], 1
|
|
1010
|
+
];
|
|
1011
|
+
var ListResourcesInProtectionGroupResponse$ = [3, n0, _LRIPGRi,
|
|
1012
|
+
0,
|
|
1013
|
+
[_RAes, _NT],
|
|
1014
|
+
[64 | 0, 0], 1
|
|
1015
|
+
];
|
|
1016
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_RARN],
|
|
1019
|
+
[0], 1
|
|
1020
|
+
];
|
|
1021
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1022
|
+
0,
|
|
1023
|
+
[_Ta],
|
|
1024
|
+
[() => TagList]
|
|
1025
|
+
];
|
|
1026
|
+
var Mitigation$ = [3, n0, _Mi,
|
|
1027
|
+
0,
|
|
1028
|
+
[_MN],
|
|
1029
|
+
[0]
|
|
1030
|
+
];
|
|
1031
|
+
var Protection$ = [3, n0, _Pr,
|
|
1032
|
+
0,
|
|
1033
|
+
[_I, _N, _RAe, _HCI, _PA, _ALARC],
|
|
1034
|
+
[0, 0, 0, 64 | 0, 0, () => ApplicationLayerAutomaticResponseConfiguration$]
|
|
1035
|
+
];
|
|
1036
|
+
var ProtectionGroup$ = [3, n0, _PG,
|
|
1037
|
+
0,
|
|
1038
|
+
[_PGI, _Ag, _P, _Me, _RT, _PGA],
|
|
1039
|
+
[0, 0, 0, 64 | 0, 0, 0], 4
|
|
1040
|
+
];
|
|
1041
|
+
var ProtectionGroupArbitraryPatternLimits$ = [3, n0, _PGAPL,
|
|
1042
|
+
0,
|
|
1043
|
+
[_MM],
|
|
1044
|
+
[1], 1
|
|
1045
|
+
];
|
|
1046
|
+
var ProtectionGroupLimits$ = [3, n0, _PGL,
|
|
1047
|
+
0,
|
|
1048
|
+
[_MPG, _PTL],
|
|
1049
|
+
[1, () => ProtectionGroupPatternTypeLimits$], 2
|
|
1050
|
+
];
|
|
1051
|
+
var ProtectionGroupPatternTypeLimits$ = [3, n0, _PGPTL,
|
|
1052
|
+
0,
|
|
1053
|
+
[_APL],
|
|
1054
|
+
[() => ProtectionGroupArbitraryPatternLimits$], 1
|
|
1055
|
+
];
|
|
1056
|
+
var ProtectionLimits$ = [3, n0, _PL,
|
|
1057
|
+
0,
|
|
1058
|
+
[_PRTL],
|
|
1059
|
+
[() => Limits], 1
|
|
1060
|
+
];
|
|
1061
|
+
var ResponseAction$ = [3, n0, _RAesp,
|
|
1062
|
+
0,
|
|
1063
|
+
[_B, _Co],
|
|
1064
|
+
[() => BlockAction$, () => CountAction$]
|
|
1065
|
+
];
|
|
1066
|
+
var SubResourceSummary$ = [3, n0, _SRS,
|
|
1067
|
+
0,
|
|
1068
|
+
[_T, _I, _AVt, _Cou],
|
|
1069
|
+
[0, 0, () => SummarizedAttackVectorList, () => SummarizedCounterList]
|
|
1070
|
+
];
|
|
1071
|
+
var Subscription$ = [3, n0, _Su,
|
|
1072
|
+
0,
|
|
1073
|
+
[_SL, _ST, _ET, _TCIS, _AR, _Li, _PES, _SA],
|
|
1074
|
+
[() => SubscriptionLimits$, 4, 4, 1, 0, () => Limits, 0, 0], 1
|
|
1075
|
+
];
|
|
1076
|
+
var SubscriptionLimits$ = [3, n0, _SL,
|
|
1077
|
+
0,
|
|
1078
|
+
[_PL, _PGL],
|
|
1079
|
+
[() => ProtectionLimits$, () => ProtectionGroupLimits$], 2
|
|
1080
|
+
];
|
|
1081
|
+
var SummarizedAttackVector$ = [3, n0, _SAV,
|
|
1082
|
+
0,
|
|
1083
|
+
[_VT, _VC],
|
|
1084
|
+
[0, () => SummarizedCounterList], 1
|
|
1085
|
+
];
|
|
1086
|
+
var SummarizedCounter$ = [3, n0, _SC,
|
|
1087
|
+
0,
|
|
1088
|
+
[_N, _Ma, _Av, _Sum, _N_, _U],
|
|
1089
|
+
[0, 1, 1, 1, 1, 0]
|
|
1090
|
+
];
|
|
1091
|
+
var Tag$ = [3, n0, _Tag,
|
|
1092
|
+
0,
|
|
1093
|
+
[_K, _V],
|
|
1094
|
+
[0, 0]
|
|
1095
|
+
];
|
|
1096
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1097
|
+
0,
|
|
1098
|
+
[_RARN, _Ta],
|
|
1099
|
+
[0, () => TagList], 2
|
|
1100
|
+
];
|
|
1101
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1102
|
+
0,
|
|
1103
|
+
[],
|
|
1104
|
+
[]
|
|
1105
|
+
];
|
|
1106
|
+
var TimeRange$ = [3, n0, _TR,
|
|
1107
|
+
0,
|
|
1108
|
+
[_FI, _TE],
|
|
1109
|
+
[4, 4]
|
|
1110
|
+
];
|
|
1111
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1112
|
+
0,
|
|
1113
|
+
[_RARN, _TK],
|
|
1114
|
+
[0, 64 | 0], 2
|
|
1115
|
+
];
|
|
1116
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1117
|
+
0,
|
|
1118
|
+
[],
|
|
1119
|
+
[]
|
|
1120
|
+
];
|
|
1121
|
+
var UpdateApplicationLayerAutomaticResponseRequest$ = [3, n0, _UALARR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_RAe, _A],
|
|
1124
|
+
[0, () => ResponseAction$], 2
|
|
1125
|
+
];
|
|
1126
|
+
var UpdateApplicationLayerAutomaticResponseResponse$ = [3, n0, _UALARRp,
|
|
1127
|
+
0,
|
|
1128
|
+
[],
|
|
1129
|
+
[]
|
|
1130
|
+
];
|
|
1131
|
+
var UpdateEmergencyContactSettingsRequest$ = [3, n0, _UECSR,
|
|
1132
|
+
0,
|
|
1133
|
+
[_ECL],
|
|
1134
|
+
[() => EmergencyContactList]
|
|
1135
|
+
];
|
|
1136
|
+
var UpdateEmergencyContactSettingsResponse$ = [3, n0, _UECSRp,
|
|
1137
|
+
0,
|
|
1138
|
+
[],
|
|
1139
|
+
[]
|
|
1140
|
+
];
|
|
1141
|
+
var UpdateProtectionGroupRequest$ = [3, n0, _UPGR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_PGI, _Ag, _P, _RT, _Me],
|
|
1144
|
+
[0, 0, 0, 0, 64 | 0], 3
|
|
1145
|
+
];
|
|
1146
|
+
var UpdateProtectionGroupResponse$ = [3, n0, _UPGRp,
|
|
1147
|
+
0,
|
|
1148
|
+
[],
|
|
1149
|
+
[]
|
|
1150
|
+
];
|
|
1151
|
+
var UpdateSubscriptionRequest$ = [3, n0, _USR,
|
|
1152
|
+
0,
|
|
1153
|
+
[_AR],
|
|
1154
|
+
[0]
|
|
1155
|
+
];
|
|
1156
|
+
var UpdateSubscriptionResponse$ = [3, n0, _USRp,
|
|
1157
|
+
0,
|
|
1158
|
+
[],
|
|
1159
|
+
[]
|
|
1160
|
+
];
|
|
1161
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1162
|
+
0,
|
|
1163
|
+
[_n, _m],
|
|
1164
|
+
[0, 0], 2
|
|
1165
|
+
];
|
|
1166
|
+
var AttackProperties = [1, n0, _AP,
|
|
1167
|
+
0, () => AttackProperty$
|
|
1168
|
+
];
|
|
1169
|
+
var AttackStatisticsDataList = [1, n0, _ASDL,
|
|
1170
|
+
0, () => AttackStatisticsDataItem$
|
|
1171
|
+
];
|
|
1172
|
+
var AttackSummaries = [1, n0, _ASt,
|
|
1173
|
+
0, () => AttackSummary$
|
|
1174
|
+
];
|
|
1175
|
+
var AttackVectorDescriptionList = [1, n0, _AVDL,
|
|
1176
|
+
0, () => AttackVectorDescription$
|
|
1177
|
+
];
|
|
1178
|
+
var EmergencyContactList = [1, n0, _ECL,
|
|
1179
|
+
0, () => EmergencyContact$
|
|
1180
|
+
];
|
|
1181
|
+
var Limits = [1, n0, _Li,
|
|
1182
|
+
0, () => Limit$
|
|
1183
|
+
];
|
|
1184
|
+
var MitigationList = [1, n0, _ML,
|
|
1185
|
+
0, () => Mitigation$
|
|
1186
|
+
];
|
|
1187
|
+
var ProtectionGroups = [1, n0, _PGr,
|
|
1188
|
+
0, () => ProtectionGroup$
|
|
1189
|
+
];
|
|
1190
|
+
var Protections = [1, n0, _Pro,
|
|
1191
|
+
0, () => Protection$
|
|
1192
|
+
];
|
|
1193
|
+
var SubResourceSummaryList = [1, n0, _SRSL,
|
|
1194
|
+
0, () => SubResourceSummary$
|
|
1195
|
+
];
|
|
1196
|
+
var SummarizedAttackVectorList = [1, n0, _SAVL,
|
|
1197
|
+
0, () => SummarizedAttackVector$
|
|
1198
|
+
];
|
|
1199
|
+
var SummarizedCounterList = [1, n0, _SCL,
|
|
1200
|
+
0, () => SummarizedCounter$
|
|
1201
|
+
];
|
|
1202
|
+
var TagList = [1, n0, _TL,
|
|
1203
|
+
0, () => Tag$
|
|
1204
|
+
];
|
|
1205
|
+
var TopContributors = [1, n0, _TC,
|
|
1206
|
+
0, () => Contributor$
|
|
1207
|
+
];
|
|
1208
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1209
|
+
0, () => ValidationExceptionField$
|
|
1210
|
+
];
|
|
1211
|
+
var AssociateDRTLogBucket$ = [9, n0, _ADRTLB,
|
|
1212
|
+
0, () => AssociateDRTLogBucketRequest$, () => AssociateDRTLogBucketResponse$
|
|
1213
|
+
];
|
|
1214
|
+
var AssociateDRTRole$ = [9, n0, _ADRTR,
|
|
1215
|
+
0, () => AssociateDRTRoleRequest$, () => AssociateDRTRoleResponse$
|
|
1216
|
+
];
|
|
1217
|
+
var AssociateHealthCheck$ = [9, n0, _AHC,
|
|
1218
|
+
0, () => AssociateHealthCheckRequest$, () => AssociateHealthCheckResponse$
|
|
1219
|
+
];
|
|
1220
|
+
var AssociateProactiveEngagementDetails$ = [9, n0, _APED,
|
|
1221
|
+
0, () => AssociateProactiveEngagementDetailsRequest$, () => AssociateProactiveEngagementDetailsResponse$
|
|
1222
|
+
];
|
|
1223
|
+
var CreateProtection$ = [9, n0, _CP,
|
|
1224
|
+
0, () => CreateProtectionRequest$, () => CreateProtectionResponse$
|
|
1225
|
+
];
|
|
1226
|
+
var CreateProtectionGroup$ = [9, n0, _CPG,
|
|
1227
|
+
0, () => CreateProtectionGroupRequest$, () => CreateProtectionGroupResponse$
|
|
1228
|
+
];
|
|
1229
|
+
var CreateSubscription$ = [9, n0, _CS,
|
|
1230
|
+
0, () => CreateSubscriptionRequest$, () => CreateSubscriptionResponse$
|
|
1231
|
+
];
|
|
1232
|
+
var DeleteProtection$ = [9, n0, _DP,
|
|
1233
|
+
0, () => DeleteProtectionRequest$, () => DeleteProtectionResponse$
|
|
1234
|
+
];
|
|
1235
|
+
var DeleteProtectionGroup$ = [9, n0, _DPG,
|
|
1236
|
+
0, () => DeleteProtectionGroupRequest$, () => DeleteProtectionGroupResponse$
|
|
1237
|
+
];
|
|
1238
|
+
var DeleteSubscription$ = [9, n0, _DS,
|
|
1239
|
+
0, () => DeleteSubscriptionRequest$, () => DeleteSubscriptionResponse$
|
|
1240
|
+
];
|
|
1241
|
+
var DescribeAttack$ = [9, n0, _DA,
|
|
1242
|
+
0, () => DescribeAttackRequest$, () => DescribeAttackResponse$
|
|
1243
|
+
];
|
|
1244
|
+
var DescribeAttackStatistics$ = [9, n0, _DAS,
|
|
1245
|
+
0, () => DescribeAttackStatisticsRequest$, () => DescribeAttackStatisticsResponse$
|
|
1246
|
+
];
|
|
1247
|
+
var DescribeDRTAccess$ = [9, n0, _DDRTA,
|
|
1248
|
+
0, () => DescribeDRTAccessRequest$, () => DescribeDRTAccessResponse$
|
|
1249
|
+
];
|
|
1250
|
+
var DescribeEmergencyContactSettings$ = [9, n0, _DECS,
|
|
1251
|
+
0, () => DescribeEmergencyContactSettingsRequest$, () => DescribeEmergencyContactSettingsResponse$
|
|
1252
|
+
];
|
|
1253
|
+
var DescribeProtection$ = [9, n0, _DPe,
|
|
1254
|
+
0, () => DescribeProtectionRequest$, () => DescribeProtectionResponse$
|
|
1255
|
+
];
|
|
1256
|
+
var DescribeProtectionGroup$ = [9, n0, _DPGe,
|
|
1257
|
+
0, () => DescribeProtectionGroupRequest$, () => DescribeProtectionGroupResponse$
|
|
1258
|
+
];
|
|
1259
|
+
var DescribeSubscription$ = [9, n0, _DSe,
|
|
1260
|
+
0, () => DescribeSubscriptionRequest$, () => DescribeSubscriptionResponse$
|
|
1261
|
+
];
|
|
1262
|
+
var DisableApplicationLayerAutomaticResponse$ = [9, n0, _DALAR,
|
|
1263
|
+
0, () => DisableApplicationLayerAutomaticResponseRequest$, () => DisableApplicationLayerAutomaticResponseResponse$
|
|
1264
|
+
];
|
|
1265
|
+
var DisableProactiveEngagement$ = [9, n0, _DPE,
|
|
1266
|
+
0, () => DisableProactiveEngagementRequest$, () => DisableProactiveEngagementResponse$
|
|
1267
|
+
];
|
|
1268
|
+
var DisassociateDRTLogBucket$ = [9, n0, _DDRTLB,
|
|
1269
|
+
0, () => DisassociateDRTLogBucketRequest$, () => DisassociateDRTLogBucketResponse$
|
|
1270
|
+
];
|
|
1271
|
+
var DisassociateDRTRole$ = [9, n0, _DDRTR,
|
|
1272
|
+
0, () => DisassociateDRTRoleRequest$, () => DisassociateDRTRoleResponse$
|
|
1273
|
+
];
|
|
1274
|
+
var DisassociateHealthCheck$ = [9, n0, _DHC,
|
|
1275
|
+
0, () => DisassociateHealthCheckRequest$, () => DisassociateHealthCheckResponse$
|
|
1276
|
+
];
|
|
1277
|
+
var EnableApplicationLayerAutomaticResponse$ = [9, n0, _EALAR,
|
|
1278
|
+
0, () => EnableApplicationLayerAutomaticResponseRequest$, () => EnableApplicationLayerAutomaticResponseResponse$
|
|
1279
|
+
];
|
|
1280
|
+
var EnableProactiveEngagement$ = [9, n0, _EPE,
|
|
1281
|
+
0, () => EnableProactiveEngagementRequest$, () => EnableProactiveEngagementResponse$
|
|
1282
|
+
];
|
|
1283
|
+
var GetSubscriptionState$ = [9, n0, _GSS,
|
|
1284
|
+
0, () => GetSubscriptionStateRequest$, () => GetSubscriptionStateResponse$
|
|
1285
|
+
];
|
|
1286
|
+
var ListAttacks$ = [9, n0, _LA,
|
|
1287
|
+
0, () => ListAttacksRequest$, () => ListAttacksResponse$
|
|
1288
|
+
];
|
|
1289
|
+
var ListProtectionGroups$ = [9, n0, _LPG,
|
|
1290
|
+
0, () => ListProtectionGroupsRequest$, () => ListProtectionGroupsResponse$
|
|
1291
|
+
];
|
|
1292
|
+
var ListProtections$ = [9, n0, _LP,
|
|
1293
|
+
0, () => ListProtectionsRequest$, () => ListProtectionsResponse$
|
|
1294
|
+
];
|
|
1295
|
+
var ListResourcesInProtectionGroup$ = [9, n0, _LRIPG,
|
|
1296
|
+
0, () => ListResourcesInProtectionGroupRequest$, () => ListResourcesInProtectionGroupResponse$
|
|
1297
|
+
];
|
|
1298
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1299
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1300
|
+
];
|
|
1301
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1302
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1303
|
+
];
|
|
1304
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1305
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1306
|
+
];
|
|
1307
|
+
var UpdateApplicationLayerAutomaticResponse$ = [9, n0, _UALAR,
|
|
1308
|
+
0, () => UpdateApplicationLayerAutomaticResponseRequest$, () => UpdateApplicationLayerAutomaticResponseResponse$
|
|
1309
|
+
];
|
|
1310
|
+
var UpdateEmergencyContactSettings$ = [9, n0, _UECS,
|
|
1311
|
+
0, () => UpdateEmergencyContactSettingsRequest$, () => UpdateEmergencyContactSettingsResponse$
|
|
1312
|
+
];
|
|
1313
|
+
var UpdateProtectionGroup$ = [9, n0, _UPG,
|
|
1314
|
+
0, () => UpdateProtectionGroupRequest$, () => UpdateProtectionGroupResponse$
|
|
1315
|
+
];
|
|
1316
|
+
var UpdateSubscription$ = [9, n0, _US,
|
|
1317
|
+
0, () => UpdateSubscriptionRequest$, () => UpdateSubscriptionResponse$
|
|
1318
|
+
];
|
|
1319
|
+
|
|
1320
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1321
|
+
return {
|
|
1322
|
+
apiVersion: "2016-06-02",
|
|
1323
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1324
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1325
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1326
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1327
|
+
extensions: config?.extensions ?? [],
|
|
1328
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultShieldHttpAuthSchemeProvider,
|
|
1329
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1330
|
+
{
|
|
1331
|
+
schemeId: "aws.auth#sigv4",
|
|
1332
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1333
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1334
|
+
},
|
|
1335
|
+
],
|
|
1336
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1337
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1338
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1339
|
+
defaultNamespace: "com.amazonaws.shield",
|
|
1340
|
+
errorTypeRegistries,
|
|
1341
|
+
xmlNamespace: "http://ddp.amazonaws.com/doc/2016-06-02/",
|
|
1342
|
+
version: "2016-06-02",
|
|
1343
|
+
serviceTarget: "AWSShield_20160616",
|
|
1344
|
+
},
|
|
1345
|
+
serviceId: config?.serviceId ?? "Shield",
|
|
1346
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1347
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1348
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1349
|
+
};
|
|
1350
|
+
};
|
|
1351
|
+
|
|
1352
|
+
const getRuntimeConfig = (config) => {
|
|
1353
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1354
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1355
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1356
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1357
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1358
|
+
const loaderConfig = {
|
|
1359
|
+
profile: config?.profile,
|
|
1360
|
+
logger: clientSharedValues.logger,
|
|
1361
|
+
};
|
|
1362
|
+
return {
|
|
1363
|
+
...clientSharedValues,
|
|
1364
|
+
...config,
|
|
1365
|
+
runtime: "node",
|
|
1366
|
+
defaultsMode,
|
|
1367
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1368
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1369
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1370
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1371
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1372
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1373
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1374
|
+
retryMode: config?.retryMode ??
|
|
1375
|
+
loadConfig({
|
|
1376
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1377
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1378
|
+
}, config),
|
|
1379
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1380
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1381
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1382
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1383
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1384
|
+
};
|
|
1385
|
+
};
|
|
1386
|
+
|
|
34
1387
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1388
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1389
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -663,56 +2016,224 @@ const SubscriptionState = {
|
|
|
663
2016
|
INACTIVE: "INACTIVE",
|
|
664
2017
|
};
|
|
665
2018
|
|
|
2019
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2020
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2021
|
+
exports.AccessDeniedForDependencyException = AccessDeniedForDependencyException;
|
|
2022
|
+
exports.AccessDeniedForDependencyException$ = AccessDeniedForDependencyException$;
|
|
2023
|
+
exports.ApplicationLayerAutomaticResponseConfiguration$ = ApplicationLayerAutomaticResponseConfiguration$;
|
|
666
2024
|
exports.ApplicationLayerAutomaticResponseStatus = ApplicationLayerAutomaticResponseStatus;
|
|
2025
|
+
exports.AssociateDRTLogBucket$ = AssociateDRTLogBucket$;
|
|
667
2026
|
exports.AssociateDRTLogBucketCommand = AssociateDRTLogBucketCommand;
|
|
2027
|
+
exports.AssociateDRTLogBucketRequest$ = AssociateDRTLogBucketRequest$;
|
|
2028
|
+
exports.AssociateDRTLogBucketResponse$ = AssociateDRTLogBucketResponse$;
|
|
2029
|
+
exports.AssociateDRTRole$ = AssociateDRTRole$;
|
|
668
2030
|
exports.AssociateDRTRoleCommand = AssociateDRTRoleCommand;
|
|
2031
|
+
exports.AssociateDRTRoleRequest$ = AssociateDRTRoleRequest$;
|
|
2032
|
+
exports.AssociateDRTRoleResponse$ = AssociateDRTRoleResponse$;
|
|
2033
|
+
exports.AssociateHealthCheck$ = AssociateHealthCheck$;
|
|
669
2034
|
exports.AssociateHealthCheckCommand = AssociateHealthCheckCommand;
|
|
2035
|
+
exports.AssociateHealthCheckRequest$ = AssociateHealthCheckRequest$;
|
|
2036
|
+
exports.AssociateHealthCheckResponse$ = AssociateHealthCheckResponse$;
|
|
2037
|
+
exports.AssociateProactiveEngagementDetails$ = AssociateProactiveEngagementDetails$;
|
|
670
2038
|
exports.AssociateProactiveEngagementDetailsCommand = AssociateProactiveEngagementDetailsCommand;
|
|
2039
|
+
exports.AssociateProactiveEngagementDetailsRequest$ = AssociateProactiveEngagementDetailsRequest$;
|
|
2040
|
+
exports.AssociateProactiveEngagementDetailsResponse$ = AssociateProactiveEngagementDetailsResponse$;
|
|
2041
|
+
exports.AttackDetail$ = AttackDetail$;
|
|
671
2042
|
exports.AttackLayer = AttackLayer;
|
|
2043
|
+
exports.AttackProperty$ = AttackProperty$;
|
|
672
2044
|
exports.AttackPropertyIdentifier = AttackPropertyIdentifier;
|
|
2045
|
+
exports.AttackStatisticsDataItem$ = AttackStatisticsDataItem$;
|
|
2046
|
+
exports.AttackSummary$ = AttackSummary$;
|
|
2047
|
+
exports.AttackVectorDescription$ = AttackVectorDescription$;
|
|
2048
|
+
exports.AttackVolume$ = AttackVolume$;
|
|
2049
|
+
exports.AttackVolumeStatistics$ = AttackVolumeStatistics$;
|
|
673
2050
|
exports.AutoRenew = AutoRenew;
|
|
2051
|
+
exports.BlockAction$ = BlockAction$;
|
|
2052
|
+
exports.Contributor$ = Contributor$;
|
|
2053
|
+
exports.CountAction$ = CountAction$;
|
|
2054
|
+
exports.CreateProtection$ = CreateProtection$;
|
|
674
2055
|
exports.CreateProtectionCommand = CreateProtectionCommand;
|
|
2056
|
+
exports.CreateProtectionGroup$ = CreateProtectionGroup$;
|
|
675
2057
|
exports.CreateProtectionGroupCommand = CreateProtectionGroupCommand;
|
|
2058
|
+
exports.CreateProtectionGroupRequest$ = CreateProtectionGroupRequest$;
|
|
2059
|
+
exports.CreateProtectionGroupResponse$ = CreateProtectionGroupResponse$;
|
|
2060
|
+
exports.CreateProtectionRequest$ = CreateProtectionRequest$;
|
|
2061
|
+
exports.CreateProtectionResponse$ = CreateProtectionResponse$;
|
|
2062
|
+
exports.CreateSubscription$ = CreateSubscription$;
|
|
676
2063
|
exports.CreateSubscriptionCommand = CreateSubscriptionCommand;
|
|
2064
|
+
exports.CreateSubscriptionRequest$ = CreateSubscriptionRequest$;
|
|
2065
|
+
exports.CreateSubscriptionResponse$ = CreateSubscriptionResponse$;
|
|
2066
|
+
exports.DeleteProtection$ = DeleteProtection$;
|
|
677
2067
|
exports.DeleteProtectionCommand = DeleteProtectionCommand;
|
|
2068
|
+
exports.DeleteProtectionGroup$ = DeleteProtectionGroup$;
|
|
678
2069
|
exports.DeleteProtectionGroupCommand = DeleteProtectionGroupCommand;
|
|
2070
|
+
exports.DeleteProtectionGroupRequest$ = DeleteProtectionGroupRequest$;
|
|
2071
|
+
exports.DeleteProtectionGroupResponse$ = DeleteProtectionGroupResponse$;
|
|
2072
|
+
exports.DeleteProtectionRequest$ = DeleteProtectionRequest$;
|
|
2073
|
+
exports.DeleteProtectionResponse$ = DeleteProtectionResponse$;
|
|
2074
|
+
exports.DeleteSubscription$ = DeleteSubscription$;
|
|
679
2075
|
exports.DeleteSubscriptionCommand = DeleteSubscriptionCommand;
|
|
2076
|
+
exports.DeleteSubscriptionRequest$ = DeleteSubscriptionRequest$;
|
|
2077
|
+
exports.DeleteSubscriptionResponse$ = DeleteSubscriptionResponse$;
|
|
2078
|
+
exports.DescribeAttack$ = DescribeAttack$;
|
|
680
2079
|
exports.DescribeAttackCommand = DescribeAttackCommand;
|
|
2080
|
+
exports.DescribeAttackRequest$ = DescribeAttackRequest$;
|
|
2081
|
+
exports.DescribeAttackResponse$ = DescribeAttackResponse$;
|
|
2082
|
+
exports.DescribeAttackStatistics$ = DescribeAttackStatistics$;
|
|
681
2083
|
exports.DescribeAttackStatisticsCommand = DescribeAttackStatisticsCommand;
|
|
2084
|
+
exports.DescribeAttackStatisticsRequest$ = DescribeAttackStatisticsRequest$;
|
|
2085
|
+
exports.DescribeAttackStatisticsResponse$ = DescribeAttackStatisticsResponse$;
|
|
2086
|
+
exports.DescribeDRTAccess$ = DescribeDRTAccess$;
|
|
682
2087
|
exports.DescribeDRTAccessCommand = DescribeDRTAccessCommand;
|
|
2088
|
+
exports.DescribeDRTAccessRequest$ = DescribeDRTAccessRequest$;
|
|
2089
|
+
exports.DescribeDRTAccessResponse$ = DescribeDRTAccessResponse$;
|
|
2090
|
+
exports.DescribeEmergencyContactSettings$ = DescribeEmergencyContactSettings$;
|
|
683
2091
|
exports.DescribeEmergencyContactSettingsCommand = DescribeEmergencyContactSettingsCommand;
|
|
2092
|
+
exports.DescribeEmergencyContactSettingsRequest$ = DescribeEmergencyContactSettingsRequest$;
|
|
2093
|
+
exports.DescribeEmergencyContactSettingsResponse$ = DescribeEmergencyContactSettingsResponse$;
|
|
2094
|
+
exports.DescribeProtection$ = DescribeProtection$;
|
|
684
2095
|
exports.DescribeProtectionCommand = DescribeProtectionCommand;
|
|
2096
|
+
exports.DescribeProtectionGroup$ = DescribeProtectionGroup$;
|
|
685
2097
|
exports.DescribeProtectionGroupCommand = DescribeProtectionGroupCommand;
|
|
2098
|
+
exports.DescribeProtectionGroupRequest$ = DescribeProtectionGroupRequest$;
|
|
2099
|
+
exports.DescribeProtectionGroupResponse$ = DescribeProtectionGroupResponse$;
|
|
2100
|
+
exports.DescribeProtectionRequest$ = DescribeProtectionRequest$;
|
|
2101
|
+
exports.DescribeProtectionResponse$ = DescribeProtectionResponse$;
|
|
2102
|
+
exports.DescribeSubscription$ = DescribeSubscription$;
|
|
686
2103
|
exports.DescribeSubscriptionCommand = DescribeSubscriptionCommand;
|
|
2104
|
+
exports.DescribeSubscriptionRequest$ = DescribeSubscriptionRequest$;
|
|
2105
|
+
exports.DescribeSubscriptionResponse$ = DescribeSubscriptionResponse$;
|
|
2106
|
+
exports.DisableApplicationLayerAutomaticResponse$ = DisableApplicationLayerAutomaticResponse$;
|
|
687
2107
|
exports.DisableApplicationLayerAutomaticResponseCommand = DisableApplicationLayerAutomaticResponseCommand;
|
|
2108
|
+
exports.DisableApplicationLayerAutomaticResponseRequest$ = DisableApplicationLayerAutomaticResponseRequest$;
|
|
2109
|
+
exports.DisableApplicationLayerAutomaticResponseResponse$ = DisableApplicationLayerAutomaticResponseResponse$;
|
|
2110
|
+
exports.DisableProactiveEngagement$ = DisableProactiveEngagement$;
|
|
688
2111
|
exports.DisableProactiveEngagementCommand = DisableProactiveEngagementCommand;
|
|
2112
|
+
exports.DisableProactiveEngagementRequest$ = DisableProactiveEngagementRequest$;
|
|
2113
|
+
exports.DisableProactiveEngagementResponse$ = DisableProactiveEngagementResponse$;
|
|
2114
|
+
exports.DisassociateDRTLogBucket$ = DisassociateDRTLogBucket$;
|
|
689
2115
|
exports.DisassociateDRTLogBucketCommand = DisassociateDRTLogBucketCommand;
|
|
2116
|
+
exports.DisassociateDRTLogBucketRequest$ = DisassociateDRTLogBucketRequest$;
|
|
2117
|
+
exports.DisassociateDRTLogBucketResponse$ = DisassociateDRTLogBucketResponse$;
|
|
2118
|
+
exports.DisassociateDRTRole$ = DisassociateDRTRole$;
|
|
690
2119
|
exports.DisassociateDRTRoleCommand = DisassociateDRTRoleCommand;
|
|
2120
|
+
exports.DisassociateDRTRoleRequest$ = DisassociateDRTRoleRequest$;
|
|
2121
|
+
exports.DisassociateDRTRoleResponse$ = DisassociateDRTRoleResponse$;
|
|
2122
|
+
exports.DisassociateHealthCheck$ = DisassociateHealthCheck$;
|
|
691
2123
|
exports.DisassociateHealthCheckCommand = DisassociateHealthCheckCommand;
|
|
2124
|
+
exports.DisassociateHealthCheckRequest$ = DisassociateHealthCheckRequest$;
|
|
2125
|
+
exports.DisassociateHealthCheckResponse$ = DisassociateHealthCheckResponse$;
|
|
2126
|
+
exports.EmergencyContact$ = EmergencyContact$;
|
|
2127
|
+
exports.EnableApplicationLayerAutomaticResponse$ = EnableApplicationLayerAutomaticResponse$;
|
|
692
2128
|
exports.EnableApplicationLayerAutomaticResponseCommand = EnableApplicationLayerAutomaticResponseCommand;
|
|
2129
|
+
exports.EnableApplicationLayerAutomaticResponseRequest$ = EnableApplicationLayerAutomaticResponseRequest$;
|
|
2130
|
+
exports.EnableApplicationLayerAutomaticResponseResponse$ = EnableApplicationLayerAutomaticResponseResponse$;
|
|
2131
|
+
exports.EnableProactiveEngagement$ = EnableProactiveEngagement$;
|
|
693
2132
|
exports.EnableProactiveEngagementCommand = EnableProactiveEngagementCommand;
|
|
2133
|
+
exports.EnableProactiveEngagementRequest$ = EnableProactiveEngagementRequest$;
|
|
2134
|
+
exports.EnableProactiveEngagementResponse$ = EnableProactiveEngagementResponse$;
|
|
2135
|
+
exports.GetSubscriptionState$ = GetSubscriptionState$;
|
|
694
2136
|
exports.GetSubscriptionStateCommand = GetSubscriptionStateCommand;
|
|
2137
|
+
exports.GetSubscriptionStateRequest$ = GetSubscriptionStateRequest$;
|
|
2138
|
+
exports.GetSubscriptionStateResponse$ = GetSubscriptionStateResponse$;
|
|
2139
|
+
exports.InclusionProtectionFilters$ = InclusionProtectionFilters$;
|
|
2140
|
+
exports.InclusionProtectionGroupFilters$ = InclusionProtectionGroupFilters$;
|
|
2141
|
+
exports.InternalErrorException = InternalErrorException;
|
|
2142
|
+
exports.InternalErrorException$ = InternalErrorException$;
|
|
2143
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
2144
|
+
exports.InvalidOperationException$ = InvalidOperationException$;
|
|
2145
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
2146
|
+
exports.InvalidPaginationTokenException$ = InvalidPaginationTokenException$;
|
|
2147
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2148
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2149
|
+
exports.InvalidResourceException = InvalidResourceException;
|
|
2150
|
+
exports.InvalidResourceException$ = InvalidResourceException$;
|
|
2151
|
+
exports.Limit$ = Limit$;
|
|
2152
|
+
exports.LimitsExceededException = LimitsExceededException;
|
|
2153
|
+
exports.LimitsExceededException$ = LimitsExceededException$;
|
|
2154
|
+
exports.ListAttacks$ = ListAttacks$;
|
|
695
2155
|
exports.ListAttacksCommand = ListAttacksCommand;
|
|
2156
|
+
exports.ListAttacksRequest$ = ListAttacksRequest$;
|
|
2157
|
+
exports.ListAttacksResponse$ = ListAttacksResponse$;
|
|
2158
|
+
exports.ListProtectionGroups$ = ListProtectionGroups$;
|
|
696
2159
|
exports.ListProtectionGroupsCommand = ListProtectionGroupsCommand;
|
|
2160
|
+
exports.ListProtectionGroupsRequest$ = ListProtectionGroupsRequest$;
|
|
2161
|
+
exports.ListProtectionGroupsResponse$ = ListProtectionGroupsResponse$;
|
|
2162
|
+
exports.ListProtections$ = ListProtections$;
|
|
697
2163
|
exports.ListProtectionsCommand = ListProtectionsCommand;
|
|
2164
|
+
exports.ListProtectionsRequest$ = ListProtectionsRequest$;
|
|
2165
|
+
exports.ListProtectionsResponse$ = ListProtectionsResponse$;
|
|
2166
|
+
exports.ListResourcesInProtectionGroup$ = ListResourcesInProtectionGroup$;
|
|
698
2167
|
exports.ListResourcesInProtectionGroupCommand = ListResourcesInProtectionGroupCommand;
|
|
2168
|
+
exports.ListResourcesInProtectionGroupRequest$ = ListResourcesInProtectionGroupRequest$;
|
|
2169
|
+
exports.ListResourcesInProtectionGroupResponse$ = ListResourcesInProtectionGroupResponse$;
|
|
2170
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
699
2171
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2172
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2173
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2174
|
+
exports.LockedSubscriptionException = LockedSubscriptionException;
|
|
2175
|
+
exports.LockedSubscriptionException$ = LockedSubscriptionException$;
|
|
2176
|
+
exports.Mitigation$ = Mitigation$;
|
|
2177
|
+
exports.NoAssociatedRoleException = NoAssociatedRoleException;
|
|
2178
|
+
exports.NoAssociatedRoleException$ = NoAssociatedRoleException$;
|
|
2179
|
+
exports.OptimisticLockException = OptimisticLockException;
|
|
2180
|
+
exports.OptimisticLockException$ = OptimisticLockException$;
|
|
700
2181
|
exports.ProactiveEngagementStatus = ProactiveEngagementStatus;
|
|
701
2182
|
exports.ProtectedResourceType = ProtectedResourceType;
|
|
2183
|
+
exports.Protection$ = Protection$;
|
|
2184
|
+
exports.ProtectionGroup$ = ProtectionGroup$;
|
|
702
2185
|
exports.ProtectionGroupAggregation = ProtectionGroupAggregation;
|
|
2186
|
+
exports.ProtectionGroupArbitraryPatternLimits$ = ProtectionGroupArbitraryPatternLimits$;
|
|
2187
|
+
exports.ProtectionGroupLimits$ = ProtectionGroupLimits$;
|
|
703
2188
|
exports.ProtectionGroupPattern = ProtectionGroupPattern;
|
|
2189
|
+
exports.ProtectionGroupPatternTypeLimits$ = ProtectionGroupPatternTypeLimits$;
|
|
2190
|
+
exports.ProtectionLimits$ = ProtectionLimits$;
|
|
2191
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
2192
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
2193
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2194
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2195
|
+
exports.ResponseAction$ = ResponseAction$;
|
|
704
2196
|
exports.Shield = Shield;
|
|
705
2197
|
exports.ShieldClient = ShieldClient;
|
|
2198
|
+
exports.ShieldServiceException = ShieldServiceException;
|
|
2199
|
+
exports.ShieldServiceException$ = ShieldServiceException$;
|
|
2200
|
+
exports.SubResourceSummary$ = SubResourceSummary$;
|
|
706
2201
|
exports.SubResourceType = SubResourceType;
|
|
2202
|
+
exports.Subscription$ = Subscription$;
|
|
2203
|
+
exports.SubscriptionLimits$ = SubscriptionLimits$;
|
|
707
2204
|
exports.SubscriptionState = SubscriptionState;
|
|
2205
|
+
exports.SummarizedAttackVector$ = SummarizedAttackVector$;
|
|
2206
|
+
exports.SummarizedCounter$ = SummarizedCounter$;
|
|
2207
|
+
exports.Tag$ = Tag$;
|
|
2208
|
+
exports.TagResource$ = TagResource$;
|
|
708
2209
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2210
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2211
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2212
|
+
exports.TimeRange$ = TimeRange$;
|
|
709
2213
|
exports.Unit = Unit;
|
|
2214
|
+
exports.UntagResource$ = UntagResource$;
|
|
710
2215
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2216
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2217
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2218
|
+
exports.UpdateApplicationLayerAutomaticResponse$ = UpdateApplicationLayerAutomaticResponse$;
|
|
711
2219
|
exports.UpdateApplicationLayerAutomaticResponseCommand = UpdateApplicationLayerAutomaticResponseCommand;
|
|
2220
|
+
exports.UpdateApplicationLayerAutomaticResponseRequest$ = UpdateApplicationLayerAutomaticResponseRequest$;
|
|
2221
|
+
exports.UpdateApplicationLayerAutomaticResponseResponse$ = UpdateApplicationLayerAutomaticResponseResponse$;
|
|
2222
|
+
exports.UpdateEmergencyContactSettings$ = UpdateEmergencyContactSettings$;
|
|
712
2223
|
exports.UpdateEmergencyContactSettingsCommand = UpdateEmergencyContactSettingsCommand;
|
|
2224
|
+
exports.UpdateEmergencyContactSettingsRequest$ = UpdateEmergencyContactSettingsRequest$;
|
|
2225
|
+
exports.UpdateEmergencyContactSettingsResponse$ = UpdateEmergencyContactSettingsResponse$;
|
|
2226
|
+
exports.UpdateProtectionGroup$ = UpdateProtectionGroup$;
|
|
713
2227
|
exports.UpdateProtectionGroupCommand = UpdateProtectionGroupCommand;
|
|
2228
|
+
exports.UpdateProtectionGroupRequest$ = UpdateProtectionGroupRequest$;
|
|
2229
|
+
exports.UpdateProtectionGroupResponse$ = UpdateProtectionGroupResponse$;
|
|
2230
|
+
exports.UpdateSubscription$ = UpdateSubscription$;
|
|
714
2231
|
exports.UpdateSubscriptionCommand = UpdateSubscriptionCommand;
|
|
2232
|
+
exports.UpdateSubscriptionRequest$ = UpdateSubscriptionRequest$;
|
|
2233
|
+
exports.UpdateSubscriptionResponse$ = UpdateSubscriptionResponse$;
|
|
2234
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
715
2235
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2236
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
716
2237
|
exports.paginateListAttacks = paginateListAttacks;
|
|
717
2238
|
exports.paginateListProtectionGroups = paginateListProtectionGroups;
|
|
718
2239
|
exports.paginateListProtections = paginateListProtections;
|