@aws-sdk/client-shield 3.926.0 → 3.928.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 +1129 -1338
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/ShieldClient.js +2 -0
- package/dist-es/commands/AssociateDRTLogBucketCommand.js +3 -9
- package/dist-es/commands/AssociateDRTRoleCommand.js +3 -9
- package/dist-es/commands/AssociateHealthCheckCommand.js +3 -9
- package/dist-es/commands/AssociateProactiveEngagementDetailsCommand.js +3 -9
- package/dist-es/commands/CreateProtectionCommand.js +3 -9
- package/dist-es/commands/CreateProtectionGroupCommand.js +3 -9
- package/dist-es/commands/CreateSubscriptionCommand.js +3 -9
- package/dist-es/commands/DeleteProtectionCommand.js +3 -9
- package/dist-es/commands/DeleteProtectionGroupCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriptionCommand.js +3 -9
- package/dist-es/commands/DescribeAttackCommand.js +3 -9
- package/dist-es/commands/DescribeAttackStatisticsCommand.js +3 -9
- package/dist-es/commands/DescribeDRTAccessCommand.js +3 -9
- package/dist-es/commands/DescribeEmergencyContactSettingsCommand.js +3 -9
- package/dist-es/commands/DescribeProtectionCommand.js +3 -9
- package/dist-es/commands/DescribeProtectionGroupCommand.js +3 -9
- package/dist-es/commands/DescribeSubscriptionCommand.js +3 -9
- package/dist-es/commands/DisableApplicationLayerAutomaticResponseCommand.js +3 -9
- package/dist-es/commands/DisableProactiveEngagementCommand.js +3 -9
- package/dist-es/commands/DisassociateDRTLogBucketCommand.js +3 -9
- package/dist-es/commands/DisassociateDRTRoleCommand.js +3 -9
- package/dist-es/commands/DisassociateHealthCheckCommand.js +3 -9
- package/dist-es/commands/EnableApplicationLayerAutomaticResponseCommand.js +3 -9
- package/dist-es/commands/EnableProactiveEngagementCommand.js +3 -9
- package/dist-es/commands/GetSubscriptionStateCommand.js +3 -9
- package/dist-es/commands/ListAttacksCommand.js +3 -9
- package/dist-es/commands/ListProtectionGroupsCommand.js +3 -9
- package/dist-es/commands/ListProtectionsCommand.js +3 -9
- package/dist-es/commands/ListResourcesInProtectionGroupCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationLayerAutomaticResponseCommand.js +3 -9
- package/dist-es/commands/UpdateEmergencyContactSettingsCommand.js +3 -9
- package/dist-es/commands/UpdateProtectionGroupCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriptionCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1029 -0
- package/dist-types/ShieldClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +182 -0
- package/dist-types/ts3.4/ShieldClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +187 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -1051
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -326
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -437
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class ShieldClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class ShieldClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class ShieldServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let ShieldServiceException$1 = class ShieldServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, ShieldServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends ShieldServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends ShieldServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ class AccessDeniedException extends ShieldServiceException {
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
class AccessDeniedForDependencyException extends ShieldServiceException {
|
|
131
|
+
};
|
|
132
|
+
let AccessDeniedForDependencyException$1 = class AccessDeniedForDependencyException extends ShieldServiceException$1 {
|
|
133
133
|
name = "AccessDeniedForDependencyException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,12 +140,12 @@ class AccessDeniedForDependencyException extends ShieldServiceException {
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, AccessDeniedForDependencyException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
143
|
+
};
|
|
144
144
|
const ApplicationLayerAutomaticResponseStatus = {
|
|
145
145
|
DISABLED: "DISABLED",
|
|
146
146
|
ENABLED: "ENABLED",
|
|
147
147
|
};
|
|
148
|
-
class InternalErrorException extends ShieldServiceException {
|
|
148
|
+
let InternalErrorException$1 = class InternalErrorException extends ShieldServiceException$1 {
|
|
149
149
|
name = "InternalErrorException";
|
|
150
150
|
$fault = "server";
|
|
151
151
|
constructor(opts) {
|
|
@@ -156,8 +156,8 @@ class InternalErrorException extends ShieldServiceException {
|
|
|
156
156
|
});
|
|
157
157
|
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
158
158
|
}
|
|
159
|
-
}
|
|
160
|
-
class InvalidOperationException extends ShieldServiceException {
|
|
159
|
+
};
|
|
160
|
+
let InvalidOperationException$1 = class InvalidOperationException extends ShieldServiceException$1 {
|
|
161
161
|
name = "InvalidOperationException";
|
|
162
162
|
$fault = "client";
|
|
163
163
|
constructor(opts) {
|
|
@@ -168,12 +168,12 @@ class InvalidOperationException extends ShieldServiceException {
|
|
|
168
168
|
});
|
|
169
169
|
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
170
170
|
}
|
|
171
|
-
}
|
|
171
|
+
};
|
|
172
172
|
const ValidationExceptionReason = {
|
|
173
173
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
174
174
|
OTHER: "OTHER",
|
|
175
175
|
};
|
|
176
|
-
class InvalidParameterException extends ShieldServiceException {
|
|
176
|
+
let InvalidParameterException$1 = class InvalidParameterException extends ShieldServiceException$1 {
|
|
177
177
|
name = "InvalidParameterException";
|
|
178
178
|
$fault = "client";
|
|
179
179
|
reason;
|
|
@@ -188,8 +188,8 @@ class InvalidParameterException extends ShieldServiceException {
|
|
|
188
188
|
this.reason = opts.reason;
|
|
189
189
|
this.fields = opts.fields;
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
class LimitsExceededException extends ShieldServiceException {
|
|
191
|
+
};
|
|
192
|
+
let LimitsExceededException$1 = class LimitsExceededException extends ShieldServiceException$1 {
|
|
193
193
|
name = "LimitsExceededException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
Type;
|
|
@@ -204,8 +204,8 @@ class LimitsExceededException extends ShieldServiceException {
|
|
|
204
204
|
this.Type = opts.Type;
|
|
205
205
|
this.Limit = opts.Limit;
|
|
206
206
|
}
|
|
207
|
-
}
|
|
208
|
-
class NoAssociatedRoleException extends ShieldServiceException {
|
|
207
|
+
};
|
|
208
|
+
let NoAssociatedRoleException$1 = class NoAssociatedRoleException extends ShieldServiceException$1 {
|
|
209
209
|
name = "NoAssociatedRoleException";
|
|
210
210
|
$fault = "client";
|
|
211
211
|
constructor(opts) {
|
|
@@ -216,8 +216,8 @@ class NoAssociatedRoleException extends ShieldServiceException {
|
|
|
216
216
|
});
|
|
217
217
|
Object.setPrototypeOf(this, NoAssociatedRoleException.prototype);
|
|
218
218
|
}
|
|
219
|
-
}
|
|
220
|
-
class OptimisticLockException extends ShieldServiceException {
|
|
219
|
+
};
|
|
220
|
+
let OptimisticLockException$1 = class OptimisticLockException extends ShieldServiceException$1 {
|
|
221
221
|
name = "OptimisticLockException";
|
|
222
222
|
$fault = "client";
|
|
223
223
|
constructor(opts) {
|
|
@@ -228,8 +228,8 @@ class OptimisticLockException extends ShieldServiceException {
|
|
|
228
228
|
});
|
|
229
229
|
Object.setPrototypeOf(this, OptimisticLockException.prototype);
|
|
230
230
|
}
|
|
231
|
-
}
|
|
232
|
-
class ResourceNotFoundException extends ShieldServiceException {
|
|
231
|
+
};
|
|
232
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ShieldServiceException$1 {
|
|
233
233
|
name = "ResourceNotFoundException";
|
|
234
234
|
$fault = "client";
|
|
235
235
|
resourceType;
|
|
@@ -242,8 +242,8 @@ class ResourceNotFoundException extends ShieldServiceException {
|
|
|
242
242
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
243
243
|
this.resourceType = opts.resourceType;
|
|
244
244
|
}
|
|
245
|
-
}
|
|
246
|
-
class InvalidResourceException extends ShieldServiceException {
|
|
245
|
+
};
|
|
246
|
+
let InvalidResourceException$1 = class InvalidResourceException extends ShieldServiceException$1 {
|
|
247
247
|
name = "InvalidResourceException";
|
|
248
248
|
$fault = "client";
|
|
249
249
|
constructor(opts) {
|
|
@@ -254,7 +254,7 @@ class InvalidResourceException extends ShieldServiceException {
|
|
|
254
254
|
});
|
|
255
255
|
Object.setPrototypeOf(this, InvalidResourceException.prototype);
|
|
256
256
|
}
|
|
257
|
-
}
|
|
257
|
+
};
|
|
258
258
|
const AttackLayer = {
|
|
259
259
|
APPLICATION: "APPLICATION",
|
|
260
260
|
NETWORK: "NETWORK",
|
|
@@ -283,7 +283,7 @@ const AutoRenew = {
|
|
|
283
283
|
DISABLED: "DISABLED",
|
|
284
284
|
ENABLED: "ENABLED",
|
|
285
285
|
};
|
|
286
|
-
class ResourceAlreadyExistsException extends ShieldServiceException {
|
|
286
|
+
let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException extends ShieldServiceException$1 {
|
|
287
287
|
name = "ResourceAlreadyExistsException";
|
|
288
288
|
$fault = "client";
|
|
289
289
|
resourceType;
|
|
@@ -296,7 +296,7 @@ class ResourceAlreadyExistsException extends ShieldServiceException {
|
|
|
296
296
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
297
297
|
this.resourceType = opts.resourceType;
|
|
298
298
|
}
|
|
299
|
-
}
|
|
299
|
+
};
|
|
300
300
|
const ProtectionGroupAggregation = {
|
|
301
301
|
MAX: "MAX",
|
|
302
302
|
MEAN: "MEAN",
|
|
@@ -315,7 +315,7 @@ const ProtectedResourceType = {
|
|
|
315
315
|
GLOBAL_ACCELERATOR: "GLOBAL_ACCELERATOR",
|
|
316
316
|
ROUTE_53_HOSTED_ZONE: "ROUTE_53_HOSTED_ZONE",
|
|
317
317
|
};
|
|
318
|
-
class LockedSubscriptionException extends ShieldServiceException {
|
|
318
|
+
let LockedSubscriptionException$1 = class LockedSubscriptionException extends ShieldServiceException$1 {
|
|
319
319
|
name = "LockedSubscriptionException";
|
|
320
320
|
$fault = "client";
|
|
321
321
|
constructor(opts) {
|
|
@@ -326,7 +326,7 @@ class LockedSubscriptionException extends ShieldServiceException {
|
|
|
326
326
|
});
|
|
327
327
|
Object.setPrototypeOf(this, LockedSubscriptionException.prototype);
|
|
328
328
|
}
|
|
329
|
-
}
|
|
329
|
+
};
|
|
330
330
|
const ProactiveEngagementStatus = {
|
|
331
331
|
DISABLED: "DISABLED",
|
|
332
332
|
ENABLED: "ENABLED",
|
|
@@ -336,7 +336,7 @@ const SubscriptionState = {
|
|
|
336
336
|
ACTIVE: "ACTIVE",
|
|
337
337
|
INACTIVE: "INACTIVE",
|
|
338
338
|
};
|
|
339
|
-
class InvalidPaginationTokenException extends ShieldServiceException {
|
|
339
|
+
let InvalidPaginationTokenException$1 = class InvalidPaginationTokenException extends ShieldServiceException$1 {
|
|
340
340
|
name = "InvalidPaginationTokenException";
|
|
341
341
|
$fault = "client";
|
|
342
342
|
constructor(opts) {
|
|
@@ -347,1065 +347,1031 @@ class InvalidPaginationTokenException extends ShieldServiceException {
|
|
|
347
347
|
});
|
|
348
348
|
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
349
349
|
}
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
const se_AssociateDRTLogBucketCommand = async (input, context) => {
|
|
353
|
-
const headers = sharedHeaders("AssociateDRTLogBucket");
|
|
354
|
-
let body;
|
|
355
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
356
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
357
|
-
};
|
|
358
|
-
const se_AssociateDRTRoleCommand = async (input, context) => {
|
|
359
|
-
const headers = sharedHeaders("AssociateDRTRole");
|
|
360
|
-
let body;
|
|
361
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
362
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
363
|
-
};
|
|
364
|
-
const se_AssociateHealthCheckCommand = async (input, context) => {
|
|
365
|
-
const headers = sharedHeaders("AssociateHealthCheck");
|
|
366
|
-
let body;
|
|
367
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
368
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
369
|
-
};
|
|
370
|
-
const se_AssociateProactiveEngagementDetailsCommand = async (input, context) => {
|
|
371
|
-
const headers = sharedHeaders("AssociateProactiveEngagementDetails");
|
|
372
|
-
let body;
|
|
373
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
374
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
375
|
-
};
|
|
376
|
-
const se_CreateProtectionCommand = async (input, context) => {
|
|
377
|
-
const headers = sharedHeaders("CreateProtection");
|
|
378
|
-
let body;
|
|
379
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
380
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
381
|
-
};
|
|
382
|
-
const se_CreateProtectionGroupCommand = async (input, context) => {
|
|
383
|
-
const headers = sharedHeaders("CreateProtectionGroup");
|
|
384
|
-
let body;
|
|
385
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
386
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
387
|
-
};
|
|
388
|
-
const se_CreateSubscriptionCommand = async (input, context) => {
|
|
389
|
-
const headers = sharedHeaders("CreateSubscription");
|
|
390
|
-
let body;
|
|
391
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
392
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
393
|
-
};
|
|
394
|
-
const se_DeleteProtectionCommand = async (input, context) => {
|
|
395
|
-
const headers = sharedHeaders("DeleteProtection");
|
|
396
|
-
let body;
|
|
397
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
398
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
399
|
-
};
|
|
400
|
-
const se_DeleteProtectionGroupCommand = async (input, context) => {
|
|
401
|
-
const headers = sharedHeaders("DeleteProtectionGroup");
|
|
402
|
-
let body;
|
|
403
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
404
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
405
|
-
};
|
|
406
|
-
const se_DeleteSubscriptionCommand = async (input, context) => {
|
|
407
|
-
const headers = sharedHeaders("DeleteSubscription");
|
|
408
|
-
let body;
|
|
409
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
410
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
411
|
-
};
|
|
412
|
-
const se_DescribeAttackCommand = async (input, context) => {
|
|
413
|
-
const headers = sharedHeaders("DescribeAttack");
|
|
414
|
-
let body;
|
|
415
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
416
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
417
|
-
};
|
|
418
|
-
const se_DescribeAttackStatisticsCommand = async (input, context) => {
|
|
419
|
-
const headers = sharedHeaders("DescribeAttackStatistics");
|
|
420
|
-
let body;
|
|
421
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
422
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
423
|
-
};
|
|
424
|
-
const se_DescribeDRTAccessCommand = async (input, context) => {
|
|
425
|
-
const headers = sharedHeaders("DescribeDRTAccess");
|
|
426
|
-
let body;
|
|
427
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
428
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
429
|
-
};
|
|
430
|
-
const se_DescribeEmergencyContactSettingsCommand = async (input, context) => {
|
|
431
|
-
const headers = sharedHeaders("DescribeEmergencyContactSettings");
|
|
432
|
-
let body;
|
|
433
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
434
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
435
|
-
};
|
|
436
|
-
const se_DescribeProtectionCommand = async (input, context) => {
|
|
437
|
-
const headers = sharedHeaders("DescribeProtection");
|
|
438
|
-
let body;
|
|
439
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
440
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
441
|
-
};
|
|
442
|
-
const se_DescribeProtectionGroupCommand = async (input, context) => {
|
|
443
|
-
const headers = sharedHeaders("DescribeProtectionGroup");
|
|
444
|
-
let body;
|
|
445
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
446
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
447
|
-
};
|
|
448
|
-
const se_DescribeSubscriptionCommand = async (input, context) => {
|
|
449
|
-
const headers = sharedHeaders("DescribeSubscription");
|
|
450
|
-
let body;
|
|
451
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
452
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
453
|
-
};
|
|
454
|
-
const se_DisableApplicationLayerAutomaticResponseCommand = async (input, context) => {
|
|
455
|
-
const headers = sharedHeaders("DisableApplicationLayerAutomaticResponse");
|
|
456
|
-
let body;
|
|
457
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
458
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
459
|
-
};
|
|
460
|
-
const se_DisableProactiveEngagementCommand = async (input, context) => {
|
|
461
|
-
const headers = sharedHeaders("DisableProactiveEngagement");
|
|
462
|
-
let body;
|
|
463
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
464
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
465
|
-
};
|
|
466
|
-
const se_DisassociateDRTLogBucketCommand = async (input, context) => {
|
|
467
|
-
const headers = sharedHeaders("DisassociateDRTLogBucket");
|
|
468
|
-
let body;
|
|
469
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
470
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
471
|
-
};
|
|
472
|
-
const se_DisassociateDRTRoleCommand = async (input, context) => {
|
|
473
|
-
const headers = sharedHeaders("DisassociateDRTRole");
|
|
474
|
-
let body;
|
|
475
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
476
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
477
|
-
};
|
|
478
|
-
const se_DisassociateHealthCheckCommand = async (input, context) => {
|
|
479
|
-
const headers = sharedHeaders("DisassociateHealthCheck");
|
|
480
|
-
let body;
|
|
481
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
482
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
483
|
-
};
|
|
484
|
-
const se_EnableApplicationLayerAutomaticResponseCommand = async (input, context) => {
|
|
485
|
-
const headers = sharedHeaders("EnableApplicationLayerAutomaticResponse");
|
|
486
|
-
let body;
|
|
487
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
488
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
489
|
-
};
|
|
490
|
-
const se_EnableProactiveEngagementCommand = async (input, context) => {
|
|
491
|
-
const headers = sharedHeaders("EnableProactiveEngagement");
|
|
492
|
-
let body;
|
|
493
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
494
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
495
|
-
};
|
|
496
|
-
const se_GetSubscriptionStateCommand = async (input, context) => {
|
|
497
|
-
const headers = sharedHeaders("GetSubscriptionState");
|
|
498
|
-
let body;
|
|
499
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
500
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
501
|
-
};
|
|
502
|
-
const se_ListAttacksCommand = async (input, context) => {
|
|
503
|
-
const headers = sharedHeaders("ListAttacks");
|
|
504
|
-
let body;
|
|
505
|
-
body = JSON.stringify(se_ListAttacksRequest(input));
|
|
506
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
507
|
-
};
|
|
508
|
-
const se_ListProtectionGroupsCommand = async (input, context) => {
|
|
509
|
-
const headers = sharedHeaders("ListProtectionGroups");
|
|
510
|
-
let body;
|
|
511
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
512
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
513
|
-
};
|
|
514
|
-
const se_ListProtectionsCommand = async (input, context) => {
|
|
515
|
-
const headers = sharedHeaders("ListProtections");
|
|
516
|
-
let body;
|
|
517
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
518
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
519
|
-
};
|
|
520
|
-
const se_ListResourcesInProtectionGroupCommand = async (input, context) => {
|
|
521
|
-
const headers = sharedHeaders("ListResourcesInProtectionGroup");
|
|
522
|
-
let body;
|
|
523
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
524
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
525
|
-
};
|
|
526
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
527
|
-
const headers = sharedHeaders("ListTagsForResource");
|
|
528
|
-
let body;
|
|
529
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
530
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
531
|
-
};
|
|
532
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
533
|
-
const headers = sharedHeaders("TagResource");
|
|
534
|
-
let body;
|
|
535
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
536
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
537
|
-
};
|
|
538
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
539
|
-
const headers = sharedHeaders("UntagResource");
|
|
540
|
-
let body;
|
|
541
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
542
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
543
|
-
};
|
|
544
|
-
const se_UpdateApplicationLayerAutomaticResponseCommand = async (input, context) => {
|
|
545
|
-
const headers = sharedHeaders("UpdateApplicationLayerAutomaticResponse");
|
|
546
|
-
let body;
|
|
547
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
548
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
549
|
-
};
|
|
550
|
-
const se_UpdateEmergencyContactSettingsCommand = async (input, context) => {
|
|
551
|
-
const headers = sharedHeaders("UpdateEmergencyContactSettings");
|
|
552
|
-
let body;
|
|
553
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
554
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
555
|
-
};
|
|
556
|
-
const se_UpdateProtectionGroupCommand = async (input, context) => {
|
|
557
|
-
const headers = sharedHeaders("UpdateProtectionGroup");
|
|
558
|
-
let body;
|
|
559
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
560
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
561
|
-
};
|
|
562
|
-
const se_UpdateSubscriptionCommand = async (input, context) => {
|
|
563
|
-
const headers = sharedHeaders("UpdateSubscription");
|
|
564
|
-
let body;
|
|
565
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
566
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
567
|
-
};
|
|
568
|
-
const de_AssociateDRTLogBucketCommand = async (output, context) => {
|
|
569
|
-
if (output.statusCode >= 300) {
|
|
570
|
-
return de_CommandError(output, context);
|
|
571
|
-
}
|
|
572
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
573
|
-
let contents = {};
|
|
574
|
-
contents = smithyClient._json(data);
|
|
575
|
-
const response = {
|
|
576
|
-
$metadata: deserializeMetadata(output),
|
|
577
|
-
...contents,
|
|
578
|
-
};
|
|
579
|
-
return response;
|
|
580
|
-
};
|
|
581
|
-
const de_AssociateDRTRoleCommand = async (output, context) => {
|
|
582
|
-
if (output.statusCode >= 300) {
|
|
583
|
-
return de_CommandError(output, context);
|
|
584
|
-
}
|
|
585
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
586
|
-
let contents = {};
|
|
587
|
-
contents = smithyClient._json(data);
|
|
588
|
-
const response = {
|
|
589
|
-
$metadata: deserializeMetadata(output),
|
|
590
|
-
...contents,
|
|
591
|
-
};
|
|
592
|
-
return response;
|
|
593
|
-
};
|
|
594
|
-
const de_AssociateHealthCheckCommand = async (output, context) => {
|
|
595
|
-
if (output.statusCode >= 300) {
|
|
596
|
-
return de_CommandError(output, context);
|
|
597
|
-
}
|
|
598
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
599
|
-
let contents = {};
|
|
600
|
-
contents = smithyClient._json(data);
|
|
601
|
-
const response = {
|
|
602
|
-
$metadata: deserializeMetadata(output),
|
|
603
|
-
...contents,
|
|
604
|
-
};
|
|
605
|
-
return response;
|
|
606
|
-
};
|
|
607
|
-
const de_AssociateProactiveEngagementDetailsCommand = async (output, context) => {
|
|
608
|
-
if (output.statusCode >= 300) {
|
|
609
|
-
return de_CommandError(output, context);
|
|
610
|
-
}
|
|
611
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
612
|
-
let contents = {};
|
|
613
|
-
contents = smithyClient._json(data);
|
|
614
|
-
const response = {
|
|
615
|
-
$metadata: deserializeMetadata(output),
|
|
616
|
-
...contents,
|
|
617
|
-
};
|
|
618
|
-
return response;
|
|
619
|
-
};
|
|
620
|
-
const de_CreateProtectionCommand = async (output, context) => {
|
|
621
|
-
if (output.statusCode >= 300) {
|
|
622
|
-
return de_CommandError(output, context);
|
|
623
|
-
}
|
|
624
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
625
|
-
let contents = {};
|
|
626
|
-
contents = smithyClient._json(data);
|
|
627
|
-
const response = {
|
|
628
|
-
$metadata: deserializeMetadata(output),
|
|
629
|
-
...contents,
|
|
630
|
-
};
|
|
631
|
-
return response;
|
|
632
|
-
};
|
|
633
|
-
const de_CreateProtectionGroupCommand = async (output, context) => {
|
|
634
|
-
if (output.statusCode >= 300) {
|
|
635
|
-
return de_CommandError(output, context);
|
|
636
|
-
}
|
|
637
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
638
|
-
let contents = {};
|
|
639
|
-
contents = smithyClient._json(data);
|
|
640
|
-
const response = {
|
|
641
|
-
$metadata: deserializeMetadata(output),
|
|
642
|
-
...contents,
|
|
643
|
-
};
|
|
644
|
-
return response;
|
|
645
|
-
};
|
|
646
|
-
const de_CreateSubscriptionCommand = async (output, context) => {
|
|
647
|
-
if (output.statusCode >= 300) {
|
|
648
|
-
return de_CommandError(output, context);
|
|
649
|
-
}
|
|
650
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
651
|
-
let contents = {};
|
|
652
|
-
contents = smithyClient._json(data);
|
|
653
|
-
const response = {
|
|
654
|
-
$metadata: deserializeMetadata(output),
|
|
655
|
-
...contents,
|
|
656
|
-
};
|
|
657
|
-
return response;
|
|
658
|
-
};
|
|
659
|
-
const de_DeleteProtectionCommand = async (output, context) => {
|
|
660
|
-
if (output.statusCode >= 300) {
|
|
661
|
-
return de_CommandError(output, context);
|
|
662
|
-
}
|
|
663
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
664
|
-
let contents = {};
|
|
665
|
-
contents = smithyClient._json(data);
|
|
666
|
-
const response = {
|
|
667
|
-
$metadata: deserializeMetadata(output),
|
|
668
|
-
...contents,
|
|
669
|
-
};
|
|
670
|
-
return response;
|
|
671
|
-
};
|
|
672
|
-
const de_DeleteProtectionGroupCommand = async (output, context) => {
|
|
673
|
-
if (output.statusCode >= 300) {
|
|
674
|
-
return de_CommandError(output, context);
|
|
675
|
-
}
|
|
676
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
677
|
-
let contents = {};
|
|
678
|
-
contents = smithyClient._json(data);
|
|
679
|
-
const response = {
|
|
680
|
-
$metadata: deserializeMetadata(output),
|
|
681
|
-
...contents,
|
|
682
|
-
};
|
|
683
|
-
return response;
|
|
684
|
-
};
|
|
685
|
-
const de_DeleteSubscriptionCommand = async (output, context) => {
|
|
686
|
-
if (output.statusCode >= 300) {
|
|
687
|
-
return de_CommandError(output, context);
|
|
688
|
-
}
|
|
689
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
690
|
-
let contents = {};
|
|
691
|
-
contents = smithyClient._json(data);
|
|
692
|
-
const response = {
|
|
693
|
-
$metadata: deserializeMetadata(output),
|
|
694
|
-
...contents,
|
|
695
|
-
};
|
|
696
|
-
return response;
|
|
697
|
-
};
|
|
698
|
-
const de_DescribeAttackCommand = async (output, context) => {
|
|
699
|
-
if (output.statusCode >= 300) {
|
|
700
|
-
return de_CommandError(output, context);
|
|
701
|
-
}
|
|
702
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
703
|
-
let contents = {};
|
|
704
|
-
contents = de_DescribeAttackResponse(data);
|
|
705
|
-
const response = {
|
|
706
|
-
$metadata: deserializeMetadata(output),
|
|
707
|
-
...contents,
|
|
708
|
-
};
|
|
709
|
-
return response;
|
|
710
|
-
};
|
|
711
|
-
const de_DescribeAttackStatisticsCommand = async (output, context) => {
|
|
712
|
-
if (output.statusCode >= 300) {
|
|
713
|
-
return de_CommandError(output, context);
|
|
714
|
-
}
|
|
715
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
716
|
-
let contents = {};
|
|
717
|
-
contents = de_DescribeAttackStatisticsResponse(data);
|
|
718
|
-
const response = {
|
|
719
|
-
$metadata: deserializeMetadata(output),
|
|
720
|
-
...contents,
|
|
721
|
-
};
|
|
722
|
-
return response;
|
|
723
|
-
};
|
|
724
|
-
const de_DescribeDRTAccessCommand = async (output, context) => {
|
|
725
|
-
if (output.statusCode >= 300) {
|
|
726
|
-
return de_CommandError(output, context);
|
|
727
|
-
}
|
|
728
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
729
|
-
let contents = {};
|
|
730
|
-
contents = smithyClient._json(data);
|
|
731
|
-
const response = {
|
|
732
|
-
$metadata: deserializeMetadata(output),
|
|
733
|
-
...contents,
|
|
734
|
-
};
|
|
735
|
-
return response;
|
|
736
|
-
};
|
|
737
|
-
const de_DescribeEmergencyContactSettingsCommand = async (output, context) => {
|
|
738
|
-
if (output.statusCode >= 300) {
|
|
739
|
-
return de_CommandError(output, context);
|
|
740
|
-
}
|
|
741
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
742
|
-
let contents = {};
|
|
743
|
-
contents = smithyClient._json(data);
|
|
744
|
-
const response = {
|
|
745
|
-
$metadata: deserializeMetadata(output),
|
|
746
|
-
...contents,
|
|
747
|
-
};
|
|
748
|
-
return response;
|
|
749
|
-
};
|
|
750
|
-
const de_DescribeProtectionCommand = async (output, context) => {
|
|
751
|
-
if (output.statusCode >= 300) {
|
|
752
|
-
return de_CommandError(output, context);
|
|
753
|
-
}
|
|
754
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
755
|
-
let contents = {};
|
|
756
|
-
contents = smithyClient._json(data);
|
|
757
|
-
const response = {
|
|
758
|
-
$metadata: deserializeMetadata(output),
|
|
759
|
-
...contents,
|
|
760
|
-
};
|
|
761
|
-
return response;
|
|
762
|
-
};
|
|
763
|
-
const de_DescribeProtectionGroupCommand = async (output, context) => {
|
|
764
|
-
if (output.statusCode >= 300) {
|
|
765
|
-
return de_CommandError(output, context);
|
|
766
|
-
}
|
|
767
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
768
|
-
let contents = {};
|
|
769
|
-
contents = smithyClient._json(data);
|
|
770
|
-
const response = {
|
|
771
|
-
$metadata: deserializeMetadata(output),
|
|
772
|
-
...contents,
|
|
773
|
-
};
|
|
774
|
-
return response;
|
|
775
|
-
};
|
|
776
|
-
const de_DescribeSubscriptionCommand = async (output, context) => {
|
|
777
|
-
if (output.statusCode >= 300) {
|
|
778
|
-
return de_CommandError(output, context);
|
|
779
|
-
}
|
|
780
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
781
|
-
let contents = {};
|
|
782
|
-
contents = de_DescribeSubscriptionResponse(data);
|
|
783
|
-
const response = {
|
|
784
|
-
$metadata: deserializeMetadata(output),
|
|
785
|
-
...contents,
|
|
786
|
-
};
|
|
787
|
-
return response;
|
|
788
|
-
};
|
|
789
|
-
const de_DisableApplicationLayerAutomaticResponseCommand = async (output, context) => {
|
|
790
|
-
if (output.statusCode >= 300) {
|
|
791
|
-
return de_CommandError(output, context);
|
|
792
|
-
}
|
|
793
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
794
|
-
let contents = {};
|
|
795
|
-
contents = smithyClient._json(data);
|
|
796
|
-
const response = {
|
|
797
|
-
$metadata: deserializeMetadata(output),
|
|
798
|
-
...contents,
|
|
799
|
-
};
|
|
800
|
-
return response;
|
|
801
|
-
};
|
|
802
|
-
const de_DisableProactiveEngagementCommand = async (output, context) => {
|
|
803
|
-
if (output.statusCode >= 300) {
|
|
804
|
-
return de_CommandError(output, context);
|
|
805
|
-
}
|
|
806
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
807
|
-
let contents = {};
|
|
808
|
-
contents = smithyClient._json(data);
|
|
809
|
-
const response = {
|
|
810
|
-
$metadata: deserializeMetadata(output),
|
|
811
|
-
...contents,
|
|
812
|
-
};
|
|
813
|
-
return response;
|
|
814
|
-
};
|
|
815
|
-
const de_DisassociateDRTLogBucketCommand = async (output, context) => {
|
|
816
|
-
if (output.statusCode >= 300) {
|
|
817
|
-
return de_CommandError(output, context);
|
|
818
|
-
}
|
|
819
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
820
|
-
let contents = {};
|
|
821
|
-
contents = smithyClient._json(data);
|
|
822
|
-
const response = {
|
|
823
|
-
$metadata: deserializeMetadata(output),
|
|
824
|
-
...contents,
|
|
825
|
-
};
|
|
826
|
-
return response;
|
|
827
|
-
};
|
|
828
|
-
const de_DisassociateDRTRoleCommand = async (output, context) => {
|
|
829
|
-
if (output.statusCode >= 300) {
|
|
830
|
-
return de_CommandError(output, context);
|
|
831
|
-
}
|
|
832
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
833
|
-
let contents = {};
|
|
834
|
-
contents = smithyClient._json(data);
|
|
835
|
-
const response = {
|
|
836
|
-
$metadata: deserializeMetadata(output),
|
|
837
|
-
...contents,
|
|
838
|
-
};
|
|
839
|
-
return response;
|
|
840
|
-
};
|
|
841
|
-
const de_DisassociateHealthCheckCommand = async (output, context) => {
|
|
842
|
-
if (output.statusCode >= 300) {
|
|
843
|
-
return de_CommandError(output, context);
|
|
844
|
-
}
|
|
845
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
846
|
-
let contents = {};
|
|
847
|
-
contents = smithyClient._json(data);
|
|
848
|
-
const response = {
|
|
849
|
-
$metadata: deserializeMetadata(output),
|
|
850
|
-
...contents,
|
|
851
|
-
};
|
|
852
|
-
return response;
|
|
853
|
-
};
|
|
854
|
-
const de_EnableApplicationLayerAutomaticResponseCommand = async (output, context) => {
|
|
855
|
-
if (output.statusCode >= 300) {
|
|
856
|
-
return de_CommandError(output, context);
|
|
857
|
-
}
|
|
858
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
859
|
-
let contents = {};
|
|
860
|
-
contents = smithyClient._json(data);
|
|
861
|
-
const response = {
|
|
862
|
-
$metadata: deserializeMetadata(output),
|
|
863
|
-
...contents,
|
|
864
|
-
};
|
|
865
|
-
return response;
|
|
866
|
-
};
|
|
867
|
-
const de_EnableProactiveEngagementCommand = async (output, context) => {
|
|
868
|
-
if (output.statusCode >= 300) {
|
|
869
|
-
return de_CommandError(output, context);
|
|
870
|
-
}
|
|
871
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
872
|
-
let contents = {};
|
|
873
|
-
contents = smithyClient._json(data);
|
|
874
|
-
const response = {
|
|
875
|
-
$metadata: deserializeMetadata(output),
|
|
876
|
-
...contents,
|
|
877
|
-
};
|
|
878
|
-
return response;
|
|
879
|
-
};
|
|
880
|
-
const de_GetSubscriptionStateCommand = async (output, context) => {
|
|
881
|
-
if (output.statusCode >= 300) {
|
|
882
|
-
return de_CommandError(output, context);
|
|
883
|
-
}
|
|
884
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
885
|
-
let contents = {};
|
|
886
|
-
contents = smithyClient._json(data);
|
|
887
|
-
const response = {
|
|
888
|
-
$metadata: deserializeMetadata(output),
|
|
889
|
-
...contents,
|
|
890
|
-
};
|
|
891
|
-
return response;
|
|
892
|
-
};
|
|
893
|
-
const de_ListAttacksCommand = async (output, context) => {
|
|
894
|
-
if (output.statusCode >= 300) {
|
|
895
|
-
return de_CommandError(output, context);
|
|
896
|
-
}
|
|
897
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
898
|
-
let contents = {};
|
|
899
|
-
contents = de_ListAttacksResponse(data);
|
|
900
|
-
const response = {
|
|
901
|
-
$metadata: deserializeMetadata(output),
|
|
902
|
-
...contents,
|
|
903
|
-
};
|
|
904
|
-
return response;
|
|
905
|
-
};
|
|
906
|
-
const de_ListProtectionGroupsCommand = async (output, context) => {
|
|
907
|
-
if (output.statusCode >= 300) {
|
|
908
|
-
return de_CommandError(output, context);
|
|
909
|
-
}
|
|
910
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
911
|
-
let contents = {};
|
|
912
|
-
contents = smithyClient._json(data);
|
|
913
|
-
const response = {
|
|
914
|
-
$metadata: deserializeMetadata(output),
|
|
915
|
-
...contents,
|
|
916
|
-
};
|
|
917
|
-
return response;
|
|
918
|
-
};
|
|
919
|
-
const de_ListProtectionsCommand = async (output, context) => {
|
|
920
|
-
if (output.statusCode >= 300) {
|
|
921
|
-
return de_CommandError(output, context);
|
|
922
|
-
}
|
|
923
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
924
|
-
let contents = {};
|
|
925
|
-
contents = smithyClient._json(data);
|
|
926
|
-
const response = {
|
|
927
|
-
$metadata: deserializeMetadata(output),
|
|
928
|
-
...contents,
|
|
929
|
-
};
|
|
930
|
-
return response;
|
|
931
|
-
};
|
|
932
|
-
const de_ListResourcesInProtectionGroupCommand = async (output, context) => {
|
|
933
|
-
if (output.statusCode >= 300) {
|
|
934
|
-
return de_CommandError(output, context);
|
|
935
|
-
}
|
|
936
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
937
|
-
let contents = {};
|
|
938
|
-
contents = smithyClient._json(data);
|
|
939
|
-
const response = {
|
|
940
|
-
$metadata: deserializeMetadata(output),
|
|
941
|
-
...contents,
|
|
942
|
-
};
|
|
943
|
-
return response;
|
|
944
|
-
};
|
|
945
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
946
|
-
if (output.statusCode >= 300) {
|
|
947
|
-
return de_CommandError(output, context);
|
|
948
|
-
}
|
|
949
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
950
|
-
let contents = {};
|
|
951
|
-
contents = smithyClient._json(data);
|
|
952
|
-
const response = {
|
|
953
|
-
$metadata: deserializeMetadata(output),
|
|
954
|
-
...contents,
|
|
955
|
-
};
|
|
956
|
-
return response;
|
|
957
|
-
};
|
|
958
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
959
|
-
if (output.statusCode >= 300) {
|
|
960
|
-
return de_CommandError(output, context);
|
|
961
|
-
}
|
|
962
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
963
|
-
let contents = {};
|
|
964
|
-
contents = smithyClient._json(data);
|
|
965
|
-
const response = {
|
|
966
|
-
$metadata: deserializeMetadata(output),
|
|
967
|
-
...contents,
|
|
968
|
-
};
|
|
969
|
-
return response;
|
|
970
|
-
};
|
|
971
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
972
|
-
if (output.statusCode >= 300) {
|
|
973
|
-
return de_CommandError(output, context);
|
|
974
|
-
}
|
|
975
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
976
|
-
let contents = {};
|
|
977
|
-
contents = smithyClient._json(data);
|
|
978
|
-
const response = {
|
|
979
|
-
$metadata: deserializeMetadata(output),
|
|
980
|
-
...contents,
|
|
981
|
-
};
|
|
982
|
-
return response;
|
|
983
|
-
};
|
|
984
|
-
const de_UpdateApplicationLayerAutomaticResponseCommand = async (output, context) => {
|
|
985
|
-
if (output.statusCode >= 300) {
|
|
986
|
-
return de_CommandError(output, context);
|
|
987
|
-
}
|
|
988
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
989
|
-
let contents = {};
|
|
990
|
-
contents = smithyClient._json(data);
|
|
991
|
-
const response = {
|
|
992
|
-
$metadata: deserializeMetadata(output),
|
|
993
|
-
...contents,
|
|
994
|
-
};
|
|
995
|
-
return response;
|
|
996
|
-
};
|
|
997
|
-
const de_UpdateEmergencyContactSettingsCommand = async (output, context) => {
|
|
998
|
-
if (output.statusCode >= 300) {
|
|
999
|
-
return de_CommandError(output, context);
|
|
1000
|
-
}
|
|
1001
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
1002
|
-
let contents = {};
|
|
1003
|
-
contents = smithyClient._json(data);
|
|
1004
|
-
const response = {
|
|
1005
|
-
$metadata: deserializeMetadata(output),
|
|
1006
|
-
...contents,
|
|
1007
|
-
};
|
|
1008
|
-
return response;
|
|
1009
|
-
};
|
|
1010
|
-
const de_UpdateProtectionGroupCommand = async (output, context) => {
|
|
1011
|
-
if (output.statusCode >= 300) {
|
|
1012
|
-
return de_CommandError(output, context);
|
|
1013
|
-
}
|
|
1014
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
1015
|
-
let contents = {};
|
|
1016
|
-
contents = smithyClient._json(data);
|
|
1017
|
-
const response = {
|
|
1018
|
-
$metadata: deserializeMetadata(output),
|
|
1019
|
-
...contents,
|
|
1020
|
-
};
|
|
1021
|
-
return response;
|
|
1022
|
-
};
|
|
1023
|
-
const de_UpdateSubscriptionCommand = async (output, context) => {
|
|
1024
|
-
if (output.statusCode >= 300) {
|
|
1025
|
-
return de_CommandError(output, context);
|
|
1026
|
-
}
|
|
1027
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
1028
|
-
let contents = {};
|
|
1029
|
-
contents = smithyClient._json(data);
|
|
1030
|
-
const response = {
|
|
1031
|
-
$metadata: deserializeMetadata(output),
|
|
1032
|
-
...contents,
|
|
1033
|
-
};
|
|
1034
|
-
return response;
|
|
1035
|
-
};
|
|
1036
|
-
const de_CommandError = async (output, context) => {
|
|
1037
|
-
const parsedOutput = {
|
|
1038
|
-
...output,
|
|
1039
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1040
|
-
};
|
|
1041
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1042
|
-
switch (errorCode) {
|
|
1043
|
-
case "AccessDeniedForDependencyException":
|
|
1044
|
-
case "com.amazonaws.shield#AccessDeniedForDependencyException":
|
|
1045
|
-
throw await de_AccessDeniedForDependencyExceptionRes(parsedOutput);
|
|
1046
|
-
case "InternalErrorException":
|
|
1047
|
-
case "com.amazonaws.shield#InternalErrorException":
|
|
1048
|
-
throw await de_InternalErrorExceptionRes(parsedOutput);
|
|
1049
|
-
case "InvalidOperationException":
|
|
1050
|
-
case "com.amazonaws.shield#InvalidOperationException":
|
|
1051
|
-
throw await de_InvalidOperationExceptionRes(parsedOutput);
|
|
1052
|
-
case "InvalidParameterException":
|
|
1053
|
-
case "com.amazonaws.shield#InvalidParameterException":
|
|
1054
|
-
throw await de_InvalidParameterExceptionRes(parsedOutput);
|
|
1055
|
-
case "LimitsExceededException":
|
|
1056
|
-
case "com.amazonaws.shield#LimitsExceededException":
|
|
1057
|
-
throw await de_LimitsExceededExceptionRes(parsedOutput);
|
|
1058
|
-
case "NoAssociatedRoleException":
|
|
1059
|
-
case "com.amazonaws.shield#NoAssociatedRoleException":
|
|
1060
|
-
throw await de_NoAssociatedRoleExceptionRes(parsedOutput);
|
|
1061
|
-
case "OptimisticLockException":
|
|
1062
|
-
case "com.amazonaws.shield#OptimisticLockException":
|
|
1063
|
-
throw await de_OptimisticLockExceptionRes(parsedOutput);
|
|
1064
|
-
case "ResourceNotFoundException":
|
|
1065
|
-
case "com.amazonaws.shield#ResourceNotFoundException":
|
|
1066
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1067
|
-
case "InvalidResourceException":
|
|
1068
|
-
case "com.amazonaws.shield#InvalidResourceException":
|
|
1069
|
-
throw await de_InvalidResourceExceptionRes(parsedOutput);
|
|
1070
|
-
case "ResourceAlreadyExistsException":
|
|
1071
|
-
case "com.amazonaws.shield#ResourceAlreadyExistsException":
|
|
1072
|
-
throw await de_ResourceAlreadyExistsExceptionRes(parsedOutput);
|
|
1073
|
-
case "LockedSubscriptionException":
|
|
1074
|
-
case "com.amazonaws.shield#LockedSubscriptionException":
|
|
1075
|
-
throw await de_LockedSubscriptionExceptionRes(parsedOutput);
|
|
1076
|
-
case "AccessDeniedException":
|
|
1077
|
-
case "com.amazonaws.shield#AccessDeniedException":
|
|
1078
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1079
|
-
case "InvalidPaginationTokenException":
|
|
1080
|
-
case "com.amazonaws.shield#InvalidPaginationTokenException":
|
|
1081
|
-
throw await de_InvalidPaginationTokenExceptionRes(parsedOutput);
|
|
1082
|
-
default:
|
|
1083
|
-
const parsedBody = parsedOutput.body;
|
|
1084
|
-
return throwDefaultError({
|
|
1085
|
-
output,
|
|
1086
|
-
parsedBody,
|
|
1087
|
-
errorCode,
|
|
1088
|
-
});
|
|
1089
|
-
}
|
|
1090
|
-
};
|
|
1091
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1092
|
-
const body = parsedOutput.body;
|
|
1093
|
-
const deserialized = smithyClient._json(body);
|
|
1094
|
-
const exception = new AccessDeniedException({
|
|
1095
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1096
|
-
...deserialized,
|
|
1097
|
-
});
|
|
1098
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1099
|
-
};
|
|
1100
|
-
const de_AccessDeniedForDependencyExceptionRes = async (parsedOutput, context) => {
|
|
1101
|
-
const body = parsedOutput.body;
|
|
1102
|
-
const deserialized = smithyClient._json(body);
|
|
1103
|
-
const exception = new AccessDeniedForDependencyException({
|
|
1104
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1105
|
-
...deserialized,
|
|
1106
|
-
});
|
|
1107
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1108
|
-
};
|
|
1109
|
-
const de_InternalErrorExceptionRes = async (parsedOutput, context) => {
|
|
1110
|
-
const body = parsedOutput.body;
|
|
1111
|
-
const deserialized = smithyClient._json(body);
|
|
1112
|
-
const exception = new InternalErrorException({
|
|
1113
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1114
|
-
...deserialized,
|
|
1115
|
-
});
|
|
1116
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1117
|
-
};
|
|
1118
|
-
const de_InvalidOperationExceptionRes = async (parsedOutput, context) => {
|
|
1119
|
-
const body = parsedOutput.body;
|
|
1120
|
-
const deserialized = smithyClient._json(body);
|
|
1121
|
-
const exception = new InvalidOperationException({
|
|
1122
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1123
|
-
...deserialized,
|
|
1124
|
-
});
|
|
1125
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1126
|
-
};
|
|
1127
|
-
const de_InvalidPaginationTokenExceptionRes = async (parsedOutput, context) => {
|
|
1128
|
-
const body = parsedOutput.body;
|
|
1129
|
-
const deserialized = smithyClient._json(body);
|
|
1130
|
-
const exception = new InvalidPaginationTokenException({
|
|
1131
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1132
|
-
...deserialized,
|
|
1133
|
-
});
|
|
1134
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1135
|
-
};
|
|
1136
|
-
const de_InvalidParameterExceptionRes = async (parsedOutput, context) => {
|
|
1137
|
-
const body = parsedOutput.body;
|
|
1138
|
-
const deserialized = smithyClient._json(body);
|
|
1139
|
-
const exception = new InvalidParameterException({
|
|
1140
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1141
|
-
...deserialized,
|
|
1142
|
-
});
|
|
1143
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1144
|
-
};
|
|
1145
|
-
const de_InvalidResourceExceptionRes = async (parsedOutput, context) => {
|
|
1146
|
-
const body = parsedOutput.body;
|
|
1147
|
-
const deserialized = smithyClient._json(body);
|
|
1148
|
-
const exception = new InvalidResourceException({
|
|
1149
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1150
|
-
...deserialized,
|
|
1151
|
-
});
|
|
1152
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1153
350
|
};
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
const
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
const
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
const
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
const
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
const
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
const
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
const
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
const
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
const
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
const
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
const
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
const
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
const
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
const
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
const
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
const
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
const
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
const
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
const
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
const
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
const
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
const
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
const
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
const
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
const
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
const
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
const
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
const
|
|
1373
|
-
const
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
351
|
+
|
|
352
|
+
const _A = "Action";
|
|
353
|
+
const _AC = "AttackCounters";
|
|
354
|
+
const _ACt = "AttackCount";
|
|
355
|
+
const _AD = "AttackDetail";
|
|
356
|
+
const _ADE = "AccessDeniedException";
|
|
357
|
+
const _ADFDE = "AccessDeniedForDependencyException";
|
|
358
|
+
const _ADRTLB = "AssociateDRTLogBucket";
|
|
359
|
+
const _ADRTLBR = "AssociateDRTLogBucketRequest";
|
|
360
|
+
const _ADRTLBRs = "AssociateDRTLogBucketResponse";
|
|
361
|
+
const _ADRTR = "AssociateDRTRole";
|
|
362
|
+
const _ADRTRR = "AssociateDRTRoleRequest";
|
|
363
|
+
const _ADRTRRs = "AssociateDRTRoleResponse";
|
|
364
|
+
const _AHC = "AssociateHealthCheck";
|
|
365
|
+
const _AHCR = "AssociateHealthCheckRequest";
|
|
366
|
+
const _AHCRs = "AssociateHealthCheckResponse";
|
|
367
|
+
const _AI = "AttackId";
|
|
368
|
+
const _AL = "AttackLayer";
|
|
369
|
+
const _ALARC = "ApplicationLayerAutomaticResponseConfiguration";
|
|
370
|
+
const _AP = "AttackProperties";
|
|
371
|
+
const _APED = "AssociateProactiveEngagementDetails";
|
|
372
|
+
const _APEDR = "AssociateProactiveEngagementDetailsRequest";
|
|
373
|
+
const _APEDRs = "AssociateProactiveEngagementDetailsResponse";
|
|
374
|
+
const _API = "AttackPropertyIdentifier";
|
|
375
|
+
const _APL = "ArbitraryPatternLimits";
|
|
376
|
+
const _APt = "AttackProperty";
|
|
377
|
+
const _AR = "AutoRenew";
|
|
378
|
+
const _AS = "AttackSummary";
|
|
379
|
+
const _ASDI = "AttackStatisticsDataItem";
|
|
380
|
+
const _ASDL = "AttackStatisticsDataList";
|
|
381
|
+
const _ASt = "AttackSummaries";
|
|
382
|
+
const _AV = "AttackVolume";
|
|
383
|
+
const _AVD = "AttackVectorDescription";
|
|
384
|
+
const _AVDL = "AttackVectorDescriptionList";
|
|
385
|
+
const _AVS = "AttackVolumeStatistics";
|
|
386
|
+
const _AVt = "AttackVectors";
|
|
387
|
+
const _Ag = "Aggregation";
|
|
388
|
+
const _Agg = "Aggregations";
|
|
389
|
+
const _At = "Attack";
|
|
390
|
+
const _Av = "Average";
|
|
391
|
+
const _B = "Block";
|
|
392
|
+
const _BA = "BlockAction";
|
|
393
|
+
const _BPS = "BitsPerSecond";
|
|
394
|
+
const _C = "Contributor";
|
|
395
|
+
const _CA = "CountAction";
|
|
396
|
+
const _CN = "ContactNotes";
|
|
397
|
+
const _CP = "CreateProtection";
|
|
398
|
+
const _CPG = "CreateProtectionGroup";
|
|
399
|
+
const _CPGR = "CreateProtectionGroupRequest";
|
|
400
|
+
const _CPGRr = "CreateProtectionGroupResponse";
|
|
401
|
+
const _CPR = "CreateProtectionRequest";
|
|
402
|
+
const _CPRr = "CreateProtectionResponse";
|
|
403
|
+
const _CS = "CreateSubscription";
|
|
404
|
+
const _CSR = "CreateSubscriptionRequest";
|
|
405
|
+
const _CSRr = "CreateSubscriptionResponse";
|
|
406
|
+
const _Co = "Count";
|
|
407
|
+
const _Cou = "Counters";
|
|
408
|
+
const _DA = "DescribeAttack";
|
|
409
|
+
const _DALAR = "DisableApplicationLayerAutomaticResponse";
|
|
410
|
+
const _DALARR = "DisableApplicationLayerAutomaticResponseRequest";
|
|
411
|
+
const _DALARRi = "DisableApplicationLayerAutomaticResponseResponse";
|
|
412
|
+
const _DAR = "DescribeAttackRequest";
|
|
413
|
+
const _DARe = "DescribeAttackResponse";
|
|
414
|
+
const _DAS = "DescribeAttackStatistics";
|
|
415
|
+
const _DASR = "DescribeAttackStatisticsRequest";
|
|
416
|
+
const _DASRe = "DescribeAttackStatisticsResponse";
|
|
417
|
+
const _DDRTA = "DescribeDRTAccess";
|
|
418
|
+
const _DDRTAR = "DescribeDRTAccessRequest";
|
|
419
|
+
const _DDRTARe = "DescribeDRTAccessResponse";
|
|
420
|
+
const _DDRTLB = "DisassociateDRTLogBucket";
|
|
421
|
+
const _DDRTLBR = "DisassociateDRTLogBucketRequest";
|
|
422
|
+
const _DDRTLBRi = "DisassociateDRTLogBucketResponse";
|
|
423
|
+
const _DDRTR = "DisassociateDRTRole";
|
|
424
|
+
const _DDRTRR = "DisassociateDRTRoleRequest";
|
|
425
|
+
const _DDRTRRi = "DisassociateDRTRoleResponse";
|
|
426
|
+
const _DECS = "DescribeEmergencyContactSettings";
|
|
427
|
+
const _DECSR = "DescribeEmergencyContactSettingsRequest";
|
|
428
|
+
const _DECSRe = "DescribeEmergencyContactSettingsResponse";
|
|
429
|
+
const _DHC = "DisassociateHealthCheck";
|
|
430
|
+
const _DHCR = "DisassociateHealthCheckRequest";
|
|
431
|
+
const _DHCRi = "DisassociateHealthCheckResponse";
|
|
432
|
+
const _DI = "DataItems";
|
|
433
|
+
const _DP = "DeleteProtection";
|
|
434
|
+
const _DPE = "DisableProactiveEngagement";
|
|
435
|
+
const _DPER = "DisableProactiveEngagementRequest";
|
|
436
|
+
const _DPERi = "DisableProactiveEngagementResponse";
|
|
437
|
+
const _DPG = "DeleteProtectionGroup";
|
|
438
|
+
const _DPGR = "DeleteProtectionGroupRequest";
|
|
439
|
+
const _DPGRe = "DeleteProtectionGroupResponse";
|
|
440
|
+
const _DPGRes = "DescribeProtectionGroupRequest";
|
|
441
|
+
const _DPGResc = "DescribeProtectionGroupResponse";
|
|
442
|
+
const _DPGe = "DescribeProtectionGroup";
|
|
443
|
+
const _DPR = "DeleteProtectionRequest";
|
|
444
|
+
const _DPRe = "DeleteProtectionResponse";
|
|
445
|
+
const _DPRes = "DescribeProtectionRequest";
|
|
446
|
+
const _DPResc = "DescribeProtectionResponse";
|
|
447
|
+
const _DPe = "DescribeProtection";
|
|
448
|
+
const _DS = "DeleteSubscription";
|
|
449
|
+
const _DSR = "DeleteSubscriptionRequest";
|
|
450
|
+
const _DSRe = "DeleteSubscriptionResponse";
|
|
451
|
+
const _DSRes = "DescribeSubscriptionRequest";
|
|
452
|
+
const _DSResc = "DescribeSubscriptionResponse";
|
|
453
|
+
const _DSe = "DescribeSubscription";
|
|
454
|
+
const _EA = "EmailAddress";
|
|
455
|
+
const _EALAR = "EnableApplicationLayerAutomaticResponse";
|
|
456
|
+
const _EALARR = "EnableApplicationLayerAutomaticResponseRequest";
|
|
457
|
+
const _EALARRn = "EnableApplicationLayerAutomaticResponseResponse";
|
|
458
|
+
const _EC = "EmergencyContact";
|
|
459
|
+
const _ECL = "EmergencyContactList";
|
|
460
|
+
const _EPE = "EnableProactiveEngagement";
|
|
461
|
+
const _EPER = "EnableProactiveEngagementRequest";
|
|
462
|
+
const _EPERn = "EnableProactiveEngagementResponse";
|
|
463
|
+
const _ET = "EndTime";
|
|
464
|
+
const _FI = "FromInclusive";
|
|
465
|
+
const _GSS = "GetSubscriptionState";
|
|
466
|
+
const _GSSR = "GetSubscriptionStateRequest";
|
|
467
|
+
const _GSSRe = "GetSubscriptionStateResponse";
|
|
468
|
+
const _HCA = "HealthCheckArn";
|
|
469
|
+
const _HCI = "HealthCheckIds";
|
|
470
|
+
const _I = "Id";
|
|
471
|
+
const _IEE = "InternalErrorException";
|
|
472
|
+
const _IF = "InclusionFilters";
|
|
473
|
+
const _IOE = "InvalidOperationException";
|
|
474
|
+
const _IPE = "InvalidParameterException";
|
|
475
|
+
const _IPF = "InclusionProtectionFilters";
|
|
476
|
+
const _IPGF = "InclusionProtectionGroupFilters";
|
|
477
|
+
const _IPTE = "InvalidPaginationTokenException";
|
|
478
|
+
const _IRE = "InvalidResourceException";
|
|
479
|
+
const _K = "Key";
|
|
480
|
+
const _L = "Limit";
|
|
481
|
+
const _LA = "ListAttacks";
|
|
482
|
+
const _LAR = "ListAttacksRequest";
|
|
483
|
+
const _LARi = "ListAttacksResponse";
|
|
484
|
+
const _LB = "LogBucket";
|
|
485
|
+
const _LBL = "LogBucketList";
|
|
486
|
+
const _LEE = "LimitsExceededException";
|
|
487
|
+
const _LP = "ListProtections";
|
|
488
|
+
const _LPG = "ListProtectionGroups";
|
|
489
|
+
const _LPGR = "ListProtectionGroupsRequest";
|
|
490
|
+
const _LPGRi = "ListProtectionGroupsResponse";
|
|
491
|
+
const _LPR = "ListProtectionsRequest";
|
|
492
|
+
const _LPRi = "ListProtectionsResponse";
|
|
493
|
+
const _LRIPG = "ListResourcesInProtectionGroup";
|
|
494
|
+
const _LRIPGR = "ListResourcesInProtectionGroupRequest";
|
|
495
|
+
const _LRIPGRi = "ListResourcesInProtectionGroupResponse";
|
|
496
|
+
const _LSE = "LockedSubscriptionException";
|
|
497
|
+
const _LTFR = "ListTagsForResource";
|
|
498
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
499
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
500
|
+
const _Li = "Limits";
|
|
501
|
+
const _M = "Mitigations";
|
|
502
|
+
const _ML = "MitigationList";
|
|
503
|
+
const _MM = "MaxMembers";
|
|
504
|
+
const _MN = "MitigationName";
|
|
505
|
+
const _MPG = "MaxProtectionGroups";
|
|
506
|
+
const _MR = "MaxResults";
|
|
507
|
+
const _Ma = "Max";
|
|
508
|
+
const _Me = "Members";
|
|
509
|
+
const _Mi = "Mitigation";
|
|
510
|
+
const _N = "Name";
|
|
511
|
+
const _NARE = "NoAssociatedRoleException";
|
|
512
|
+
const _NT = "NextToken";
|
|
513
|
+
const _N_ = "N";
|
|
514
|
+
const _OLE = "OptimisticLockException";
|
|
515
|
+
const _P = "Pattern";
|
|
516
|
+
const _PA = "ProtectionArn";
|
|
517
|
+
const _PES = "ProactiveEngagementStatus";
|
|
518
|
+
const _PG = "ProtectionGroup";
|
|
519
|
+
const _PGA = "ProtectionGroupArn";
|
|
520
|
+
const _PGAPL = "ProtectionGroupArbitraryPatternLimits";
|
|
521
|
+
const _PGI = "ProtectionGroupId";
|
|
522
|
+
const _PGIr = "ProtectionGroupIds";
|
|
523
|
+
const _PGL = "ProtectionGroupLimits";
|
|
524
|
+
const _PGPTL = "ProtectionGroupPatternTypeLimits";
|
|
525
|
+
const _PGr = "ProtectionGroups";
|
|
526
|
+
const _PI = "ProtectionId";
|
|
527
|
+
const _PL = "ProtectionLimits";
|
|
528
|
+
const _PN = "PhoneNumber";
|
|
529
|
+
const _PNr = "ProtectionNames";
|
|
530
|
+
const _PPS = "PacketsPerSecond";
|
|
531
|
+
const _PRTL = "ProtectedResourceTypeLimits";
|
|
532
|
+
const _PTL = "PatternTypeLimits";
|
|
533
|
+
const _Pa = "Patterns";
|
|
534
|
+
const _Pr = "Protection";
|
|
535
|
+
const _Pro = "Protections";
|
|
536
|
+
const _RA = "RoleArn";
|
|
537
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
538
|
+
const _RARN = "ResourceARN";
|
|
539
|
+
const _RAe = "ResourceArn";
|
|
540
|
+
const _RAes = "ResourceArns";
|
|
541
|
+
const _RAesp = "ResponseAction";
|
|
542
|
+
const _RNFE = "ResourceNotFoundException";
|
|
543
|
+
const _RPS = "RequestsPerSecond";
|
|
544
|
+
const _RT = "ResourceType";
|
|
545
|
+
const _RTe = "ResourceTypes";
|
|
546
|
+
const _S = "Status";
|
|
547
|
+
const _SA = "SubscriptionArn";
|
|
548
|
+
const _SAV = "SummarizedAttackVector";
|
|
549
|
+
const _SAVL = "SummarizedAttackVectorList";
|
|
550
|
+
const _SC = "SummarizedCounter";
|
|
551
|
+
const _SCL = "SummarizedCounterList";
|
|
552
|
+
const _SL = "SubscriptionLimits";
|
|
553
|
+
const _SR = "SubResources";
|
|
554
|
+
const _SRS = "SubResourceSummary";
|
|
555
|
+
const _SRSL = "SubResourceSummaryList";
|
|
556
|
+
const _SS = "SubscriptionState";
|
|
557
|
+
const _ST = "StartTime";
|
|
558
|
+
const _Su = "Subscription";
|
|
559
|
+
const _Sum = "Sum";
|
|
560
|
+
const _T = "Total";
|
|
561
|
+
const _TC = "TopContributors";
|
|
562
|
+
const _TCIS = "TimeCommitmentInSeconds";
|
|
563
|
+
const _TE = "ToExclusive";
|
|
564
|
+
const _TK = "TagKeys";
|
|
565
|
+
const _TL = "TagList";
|
|
566
|
+
const _TR = "TimeRange";
|
|
567
|
+
const _TRR = "TagResourceRequest";
|
|
568
|
+
const _TRRa = "TagResourceResponse";
|
|
569
|
+
const _TRa = "TagResource";
|
|
570
|
+
const _Ta = "Tags";
|
|
571
|
+
const _Tag = "Tag";
|
|
572
|
+
const _Ty = "Type";
|
|
573
|
+
const _U = "Unit";
|
|
574
|
+
const _UALAR = "UpdateApplicationLayerAutomaticResponse";
|
|
575
|
+
const _UALARR = "UpdateApplicationLayerAutomaticResponseRequest";
|
|
576
|
+
const _UALARRp = "UpdateApplicationLayerAutomaticResponseResponse";
|
|
577
|
+
const _UECS = "UpdateEmergencyContactSettings";
|
|
578
|
+
const _UECSR = "UpdateEmergencyContactSettingsRequest";
|
|
579
|
+
const _UECSRp = "UpdateEmergencyContactSettingsResponse";
|
|
580
|
+
const _UPG = "UpdateProtectionGroup";
|
|
581
|
+
const _UPGR = "UpdateProtectionGroupRequest";
|
|
582
|
+
const _UPGRp = "UpdateProtectionGroupResponse";
|
|
583
|
+
const _UR = "UntagResource";
|
|
584
|
+
const _URR = "UntagResourceRequest";
|
|
585
|
+
const _URRn = "UntagResourceResponse";
|
|
586
|
+
const _US = "UpdateSubscription";
|
|
587
|
+
const _USR = "UpdateSubscriptionRequest";
|
|
588
|
+
const _USRp = "UpdateSubscriptionResponse";
|
|
589
|
+
const _V = "Value";
|
|
590
|
+
const _VC = "VectorCounters";
|
|
591
|
+
const _VEF = "ValidationExceptionField";
|
|
592
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
593
|
+
const _VT = "VectorType";
|
|
594
|
+
const _c = "client";
|
|
595
|
+
const _e = "error";
|
|
596
|
+
const _f = "fields";
|
|
597
|
+
const _m = "message";
|
|
598
|
+
const _n = "name";
|
|
599
|
+
const _r = "reason";
|
|
600
|
+
const _rT = "resourceType";
|
|
601
|
+
const _s = "server";
|
|
602
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.shield";
|
|
603
|
+
const n0 = "com.amazonaws.shield";
|
|
604
|
+
var AccessDeniedException = [
|
|
605
|
+
-3,
|
|
606
|
+
n0,
|
|
607
|
+
_ADE,
|
|
608
|
+
{
|
|
609
|
+
[_e]: _c,
|
|
610
|
+
},
|
|
611
|
+
[_m],
|
|
612
|
+
[0],
|
|
613
|
+
];
|
|
614
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
615
|
+
var AccessDeniedForDependencyException = [
|
|
616
|
+
-3,
|
|
617
|
+
n0,
|
|
618
|
+
_ADFDE,
|
|
619
|
+
{
|
|
620
|
+
[_e]: _c,
|
|
621
|
+
},
|
|
622
|
+
[_m],
|
|
623
|
+
[0],
|
|
624
|
+
];
|
|
625
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedForDependencyException, AccessDeniedForDependencyException$1);
|
|
626
|
+
var ApplicationLayerAutomaticResponseConfiguration = [
|
|
627
|
+
3,
|
|
628
|
+
n0,
|
|
629
|
+
_ALARC,
|
|
630
|
+
0,
|
|
631
|
+
[_S, _A],
|
|
632
|
+
[0, () => ResponseAction],
|
|
633
|
+
];
|
|
634
|
+
var AssociateDRTLogBucketRequest = [3, n0, _ADRTLBR, 0, [_LB], [0]];
|
|
635
|
+
var AssociateDRTLogBucketResponse = [3, n0, _ADRTLBRs, 0, [], []];
|
|
636
|
+
var AssociateDRTRoleRequest = [3, n0, _ADRTRR, 0, [_RA], [0]];
|
|
637
|
+
var AssociateDRTRoleResponse = [3, n0, _ADRTRRs, 0, [], []];
|
|
638
|
+
var AssociateHealthCheckRequest = [3, n0, _AHCR, 0, [_PI, _HCA], [0, 0]];
|
|
639
|
+
var AssociateHealthCheckResponse = [3, n0, _AHCRs, 0, [], []];
|
|
640
|
+
var AssociateProactiveEngagementDetailsRequest = [
|
|
641
|
+
3,
|
|
642
|
+
n0,
|
|
643
|
+
_APEDR,
|
|
644
|
+
0,
|
|
645
|
+
[_ECL],
|
|
646
|
+
[() => EmergencyContactList],
|
|
647
|
+
];
|
|
648
|
+
var AssociateProactiveEngagementDetailsResponse = [3, n0, _APEDRs, 0, [], []];
|
|
649
|
+
var AttackDetail = [
|
|
650
|
+
3,
|
|
651
|
+
n0,
|
|
652
|
+
_AD,
|
|
653
|
+
0,
|
|
654
|
+
[_AI, _RAe, _SR, _ST, _ET, _AC, _AP, _M],
|
|
655
|
+
[0, 0, () => SubResourceSummaryList, 4, 4, () => SummarizedCounterList, () => AttackProperties, () => MitigationList],
|
|
656
|
+
];
|
|
657
|
+
var AttackProperty = [
|
|
658
|
+
3,
|
|
659
|
+
n0,
|
|
660
|
+
_APt,
|
|
661
|
+
0,
|
|
662
|
+
[_AL, _API, _TC, _U, _T],
|
|
663
|
+
[0, 0, () => TopContributors, 0, 1],
|
|
664
|
+
];
|
|
665
|
+
var AttackStatisticsDataItem = [3, n0, _ASDI, 0, [_AV, _ACt], [() => AttackVolume, 1]];
|
|
666
|
+
var AttackSummary = [
|
|
667
|
+
3,
|
|
668
|
+
n0,
|
|
669
|
+
_AS,
|
|
670
|
+
0,
|
|
671
|
+
[_AI, _RAe, _ST, _ET, _AVt],
|
|
672
|
+
[0, 0, 4, 4, () => AttackVectorDescriptionList],
|
|
673
|
+
];
|
|
674
|
+
var AttackVectorDescription = [3, n0, _AVD, 0, [_VT], [0]];
|
|
675
|
+
var AttackVolume = [
|
|
676
|
+
3,
|
|
677
|
+
n0,
|
|
678
|
+
_AV,
|
|
679
|
+
0,
|
|
680
|
+
[_BPS, _PPS, _RPS],
|
|
681
|
+
[() => AttackVolumeStatistics, () => AttackVolumeStatistics, () => AttackVolumeStatistics],
|
|
682
|
+
];
|
|
683
|
+
var AttackVolumeStatistics = [3, n0, _AVS, 0, [_Ma], [1]];
|
|
684
|
+
var BlockAction = [3, n0, _BA, 0, [], []];
|
|
685
|
+
var Contributor = [3, n0, _C, 0, [_N, _V], [0, 1]];
|
|
686
|
+
var CountAction = [3, n0, _CA, 0, [], []];
|
|
687
|
+
var CreateProtectionGroupRequest = [
|
|
688
|
+
3,
|
|
689
|
+
n0,
|
|
690
|
+
_CPGR,
|
|
691
|
+
0,
|
|
692
|
+
[_PGI, _Ag, _P, _RT, _Me, _Ta],
|
|
693
|
+
[0, 0, 0, 0, 64 | 0, () => TagList],
|
|
694
|
+
];
|
|
695
|
+
var CreateProtectionGroupResponse = [3, n0, _CPGRr, 0, [], []];
|
|
696
|
+
var CreateProtectionRequest = [3, n0, _CPR, 0, [_N, _RAe, _Ta], [0, 0, () => TagList]];
|
|
697
|
+
var CreateProtectionResponse = [3, n0, _CPRr, 0, [_PI], [0]];
|
|
698
|
+
var CreateSubscriptionRequest = [3, n0, _CSR, 0, [], []];
|
|
699
|
+
var CreateSubscriptionResponse = [3, n0, _CSRr, 0, [], []];
|
|
700
|
+
var DeleteProtectionGroupRequest = [3, n0, _DPGR, 0, [_PGI], [0]];
|
|
701
|
+
var DeleteProtectionGroupResponse = [3, n0, _DPGRe, 0, [], []];
|
|
702
|
+
var DeleteProtectionRequest = [3, n0, _DPR, 0, [_PI], [0]];
|
|
703
|
+
var DeleteProtectionResponse = [3, n0, _DPRe, 0, [], []];
|
|
704
|
+
var DeleteSubscriptionRequest = [3, n0, _DSR, 0, [], []];
|
|
705
|
+
var DeleteSubscriptionResponse = [3, n0, _DSRe, 0, [], []];
|
|
706
|
+
var DescribeAttackRequest = [3, n0, _DAR, 0, [_AI], [0]];
|
|
707
|
+
var DescribeAttackResponse = [3, n0, _DARe, 0, [_At], [() => AttackDetail]];
|
|
708
|
+
var DescribeAttackStatisticsRequest = [3, n0, _DASR, 0, [], []];
|
|
709
|
+
var DescribeAttackStatisticsResponse = [
|
|
710
|
+
3,
|
|
711
|
+
n0,
|
|
712
|
+
_DASRe,
|
|
713
|
+
0,
|
|
714
|
+
[_TR, _DI],
|
|
715
|
+
[() => TimeRange, () => AttackStatisticsDataList],
|
|
716
|
+
];
|
|
717
|
+
var DescribeDRTAccessRequest = [3, n0, _DDRTAR, 0, [], []];
|
|
718
|
+
var DescribeDRTAccessResponse = [3, n0, _DDRTARe, 0, [_RA, _LBL], [0, 64 | 0]];
|
|
719
|
+
var DescribeEmergencyContactSettingsRequest = [3, n0, _DECSR, 0, [], []];
|
|
720
|
+
var DescribeEmergencyContactSettingsResponse = [
|
|
721
|
+
3,
|
|
722
|
+
n0,
|
|
723
|
+
_DECSRe,
|
|
724
|
+
0,
|
|
725
|
+
[_ECL],
|
|
726
|
+
[() => EmergencyContactList],
|
|
727
|
+
];
|
|
728
|
+
var DescribeProtectionGroupRequest = [3, n0, _DPGRes, 0, [_PGI], [0]];
|
|
729
|
+
var DescribeProtectionGroupResponse = [
|
|
730
|
+
3,
|
|
731
|
+
n0,
|
|
732
|
+
_DPGResc,
|
|
733
|
+
0,
|
|
734
|
+
[_PG],
|
|
735
|
+
[() => ProtectionGroup],
|
|
736
|
+
];
|
|
737
|
+
var DescribeProtectionRequest = [3, n0, _DPRes, 0, [_PI, _RAe], [0, 0]];
|
|
738
|
+
var DescribeProtectionResponse = [3, n0, _DPResc, 0, [_Pr], [() => Protection]];
|
|
739
|
+
var DescribeSubscriptionRequest = [3, n0, _DSRes, 0, [], []];
|
|
740
|
+
var DescribeSubscriptionResponse = [3, n0, _DSResc, 0, [_Su], [() => Subscription]];
|
|
741
|
+
var DisableApplicationLayerAutomaticResponseRequest = [3, n0, _DALARR, 0, [_RAe], [0]];
|
|
742
|
+
var DisableApplicationLayerAutomaticResponseResponse = [3, n0, _DALARRi, 0, [], []];
|
|
743
|
+
var DisableProactiveEngagementRequest = [3, n0, _DPER, 0, [], []];
|
|
744
|
+
var DisableProactiveEngagementResponse = [3, n0, _DPERi, 0, [], []];
|
|
745
|
+
var DisassociateDRTLogBucketRequest = [3, n0, _DDRTLBR, 0, [_LB], [0]];
|
|
746
|
+
var DisassociateDRTLogBucketResponse = [3, n0, _DDRTLBRi, 0, [], []];
|
|
747
|
+
var DisassociateDRTRoleRequest = [3, n0, _DDRTRR, 0, [], []];
|
|
748
|
+
var DisassociateDRTRoleResponse = [3, n0, _DDRTRRi, 0, [], []];
|
|
749
|
+
var DisassociateHealthCheckRequest = [3, n0, _DHCR, 0, [_PI, _HCA], [0, 0]];
|
|
750
|
+
var DisassociateHealthCheckResponse = [3, n0, _DHCRi, 0, [], []];
|
|
751
|
+
var EmergencyContact = [3, n0, _EC, 0, [_EA, _PN, _CN], [0, 0, 0]];
|
|
752
|
+
var EnableApplicationLayerAutomaticResponseRequest = [
|
|
753
|
+
3,
|
|
754
|
+
n0,
|
|
755
|
+
_EALARR,
|
|
756
|
+
0,
|
|
757
|
+
[_RAe, _A],
|
|
758
|
+
[0, () => ResponseAction],
|
|
759
|
+
];
|
|
760
|
+
var EnableApplicationLayerAutomaticResponseResponse = [3, n0, _EALARRn, 0, [], []];
|
|
761
|
+
var EnableProactiveEngagementRequest = [3, n0, _EPER, 0, [], []];
|
|
762
|
+
var EnableProactiveEngagementResponse = [3, n0, _EPERn, 0, [], []];
|
|
763
|
+
var GetSubscriptionStateRequest = [3, n0, _GSSR, 0, [], []];
|
|
764
|
+
var GetSubscriptionStateResponse = [3, n0, _GSSRe, 0, [_SS], [0]];
|
|
765
|
+
var InclusionProtectionFilters = [
|
|
766
|
+
3,
|
|
767
|
+
n0,
|
|
768
|
+
_IPF,
|
|
769
|
+
0,
|
|
770
|
+
[_RAes, _PNr, _RTe],
|
|
771
|
+
[64 | 0, 64 | 0, 64 | 0],
|
|
772
|
+
];
|
|
773
|
+
var InclusionProtectionGroupFilters = [
|
|
774
|
+
3,
|
|
775
|
+
n0,
|
|
776
|
+
_IPGF,
|
|
777
|
+
0,
|
|
778
|
+
[_PGIr, _Pa, _RTe, _Agg],
|
|
779
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0],
|
|
780
|
+
];
|
|
781
|
+
var InternalErrorException = [
|
|
782
|
+
-3,
|
|
783
|
+
n0,
|
|
784
|
+
_IEE,
|
|
785
|
+
{
|
|
786
|
+
[_e]: _s,
|
|
787
|
+
},
|
|
788
|
+
[_m],
|
|
789
|
+
[0],
|
|
790
|
+
];
|
|
791
|
+
schema.TypeRegistry.for(n0).registerError(InternalErrorException, InternalErrorException$1);
|
|
792
|
+
var InvalidOperationException = [
|
|
793
|
+
-3,
|
|
794
|
+
n0,
|
|
795
|
+
_IOE,
|
|
796
|
+
{
|
|
797
|
+
[_e]: _c,
|
|
798
|
+
},
|
|
799
|
+
[_m],
|
|
800
|
+
[0],
|
|
801
|
+
];
|
|
802
|
+
schema.TypeRegistry.for(n0).registerError(InvalidOperationException, InvalidOperationException$1);
|
|
803
|
+
var InvalidPaginationTokenException = [
|
|
804
|
+
-3,
|
|
805
|
+
n0,
|
|
806
|
+
_IPTE,
|
|
807
|
+
{
|
|
808
|
+
[_e]: _c,
|
|
809
|
+
},
|
|
810
|
+
[_m],
|
|
811
|
+
[0],
|
|
812
|
+
];
|
|
813
|
+
schema.TypeRegistry.for(n0).registerError(InvalidPaginationTokenException, InvalidPaginationTokenException$1);
|
|
814
|
+
var InvalidParameterException = [
|
|
815
|
+
-3,
|
|
816
|
+
n0,
|
|
817
|
+
_IPE,
|
|
818
|
+
{
|
|
819
|
+
[_e]: _c,
|
|
820
|
+
},
|
|
821
|
+
[_m, _r, _f],
|
|
822
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
823
|
+
];
|
|
824
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
|
|
825
|
+
var InvalidResourceException = [
|
|
826
|
+
-3,
|
|
827
|
+
n0,
|
|
828
|
+
_IRE,
|
|
829
|
+
{
|
|
830
|
+
[_e]: _c,
|
|
831
|
+
},
|
|
832
|
+
[_m],
|
|
833
|
+
[0],
|
|
834
|
+
];
|
|
835
|
+
schema.TypeRegistry.for(n0).registerError(InvalidResourceException, InvalidResourceException$1);
|
|
836
|
+
var Limit = [3, n0, _L, 0, [_Ty, _Ma], [0, 1]];
|
|
837
|
+
var LimitsExceededException = [
|
|
838
|
+
-3,
|
|
839
|
+
n0,
|
|
840
|
+
_LEE,
|
|
841
|
+
{
|
|
842
|
+
[_e]: _c,
|
|
843
|
+
},
|
|
844
|
+
[_m, _Ty, _L],
|
|
845
|
+
[0, 0, 1],
|
|
846
|
+
];
|
|
847
|
+
schema.TypeRegistry.for(n0).registerError(LimitsExceededException, LimitsExceededException$1);
|
|
848
|
+
var ListAttacksRequest = [
|
|
849
|
+
3,
|
|
850
|
+
n0,
|
|
851
|
+
_LAR,
|
|
852
|
+
0,
|
|
853
|
+
[_RAes, _ST, _ET, _NT, _MR],
|
|
854
|
+
[64 | 0, () => TimeRange, () => TimeRange, 0, 1],
|
|
855
|
+
];
|
|
856
|
+
var ListAttacksResponse = [3, n0, _LARi, 0, [_ASt, _NT], [() => AttackSummaries, 0]];
|
|
857
|
+
var ListProtectionGroupsRequest = [
|
|
858
|
+
3,
|
|
859
|
+
n0,
|
|
860
|
+
_LPGR,
|
|
861
|
+
0,
|
|
862
|
+
[_NT, _MR, _IF],
|
|
863
|
+
[0, 1, () => InclusionProtectionGroupFilters],
|
|
864
|
+
];
|
|
865
|
+
var ListProtectionGroupsResponse = [
|
|
866
|
+
3,
|
|
867
|
+
n0,
|
|
868
|
+
_LPGRi,
|
|
869
|
+
0,
|
|
870
|
+
[_PGr, _NT],
|
|
871
|
+
[() => ProtectionGroups, 0],
|
|
872
|
+
];
|
|
873
|
+
var ListProtectionsRequest = [
|
|
874
|
+
3,
|
|
875
|
+
n0,
|
|
876
|
+
_LPR,
|
|
877
|
+
0,
|
|
878
|
+
[_NT, _MR, _IF],
|
|
879
|
+
[0, 1, () => InclusionProtectionFilters],
|
|
880
|
+
];
|
|
881
|
+
var ListProtectionsResponse = [3, n0, _LPRi, 0, [_Pro, _NT], [() => Protections, 0]];
|
|
882
|
+
var ListResourcesInProtectionGroupRequest = [
|
|
883
|
+
3,
|
|
884
|
+
n0,
|
|
885
|
+
_LRIPGR,
|
|
886
|
+
0,
|
|
887
|
+
[_PGI, _NT, _MR],
|
|
888
|
+
[0, 0, 1],
|
|
889
|
+
];
|
|
890
|
+
var ListResourcesInProtectionGroupResponse = [
|
|
891
|
+
3,
|
|
892
|
+
n0,
|
|
893
|
+
_LRIPGRi,
|
|
894
|
+
0,
|
|
895
|
+
[_RAes, _NT],
|
|
896
|
+
[64 | 0, 0],
|
|
897
|
+
];
|
|
898
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
899
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
|
|
900
|
+
var LockedSubscriptionException = [
|
|
901
|
+
-3,
|
|
902
|
+
n0,
|
|
903
|
+
_LSE,
|
|
904
|
+
{
|
|
905
|
+
[_e]: _c,
|
|
906
|
+
},
|
|
907
|
+
[_m],
|
|
908
|
+
[0],
|
|
909
|
+
];
|
|
910
|
+
schema.TypeRegistry.for(n0).registerError(LockedSubscriptionException, LockedSubscriptionException$1);
|
|
911
|
+
var Mitigation = [3, n0, _Mi, 0, [_MN], [0]];
|
|
912
|
+
var NoAssociatedRoleException = [
|
|
913
|
+
-3,
|
|
914
|
+
n0,
|
|
915
|
+
_NARE,
|
|
916
|
+
{
|
|
917
|
+
[_e]: _c,
|
|
918
|
+
},
|
|
919
|
+
[_m],
|
|
920
|
+
[0],
|
|
921
|
+
];
|
|
922
|
+
schema.TypeRegistry.for(n0).registerError(NoAssociatedRoleException, NoAssociatedRoleException$1);
|
|
923
|
+
var OptimisticLockException = [
|
|
924
|
+
-3,
|
|
925
|
+
n0,
|
|
926
|
+
_OLE,
|
|
927
|
+
{
|
|
928
|
+
[_e]: _c,
|
|
929
|
+
},
|
|
930
|
+
[_m],
|
|
931
|
+
[0],
|
|
932
|
+
];
|
|
933
|
+
schema.TypeRegistry.for(n0).registerError(OptimisticLockException, OptimisticLockException$1);
|
|
934
|
+
var Protection = [
|
|
935
|
+
3,
|
|
936
|
+
n0,
|
|
937
|
+
_Pr,
|
|
938
|
+
0,
|
|
939
|
+
[_I, _N, _RAe, _HCI, _PA, _ALARC],
|
|
940
|
+
[0, 0, 0, 64 | 0, 0, () => ApplicationLayerAutomaticResponseConfiguration],
|
|
941
|
+
];
|
|
942
|
+
var ProtectionGroup = [
|
|
943
|
+
3,
|
|
944
|
+
n0,
|
|
945
|
+
_PG,
|
|
946
|
+
0,
|
|
947
|
+
[_PGI, _Ag, _P, _RT, _Me, _PGA],
|
|
948
|
+
[0, 0, 0, 0, 64 | 0, 0],
|
|
949
|
+
];
|
|
950
|
+
var ProtectionGroupArbitraryPatternLimits = [3, n0, _PGAPL, 0, [_MM], [1]];
|
|
951
|
+
var ProtectionGroupLimits = [
|
|
952
|
+
3,
|
|
953
|
+
n0,
|
|
954
|
+
_PGL,
|
|
955
|
+
0,
|
|
956
|
+
[_MPG, _PTL],
|
|
957
|
+
[1, () => ProtectionGroupPatternTypeLimits],
|
|
958
|
+
];
|
|
959
|
+
var ProtectionGroupPatternTypeLimits = [
|
|
960
|
+
3,
|
|
961
|
+
n0,
|
|
962
|
+
_PGPTL,
|
|
963
|
+
0,
|
|
964
|
+
[_APL],
|
|
965
|
+
[() => ProtectionGroupArbitraryPatternLimits],
|
|
966
|
+
];
|
|
967
|
+
var ProtectionLimits = [3, n0, _PL, 0, [_PRTL], [() => Limits]];
|
|
968
|
+
var ResourceAlreadyExistsException = [
|
|
969
|
+
-3,
|
|
970
|
+
n0,
|
|
971
|
+
_RAEE,
|
|
972
|
+
{
|
|
973
|
+
[_e]: _c,
|
|
974
|
+
},
|
|
975
|
+
[_m, _rT],
|
|
976
|
+
[0, 0],
|
|
977
|
+
];
|
|
978
|
+
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException, ResourceAlreadyExistsException$1);
|
|
979
|
+
var ResourceNotFoundException = [
|
|
980
|
+
-3,
|
|
981
|
+
n0,
|
|
982
|
+
_RNFE,
|
|
983
|
+
{
|
|
984
|
+
[_e]: _c,
|
|
985
|
+
},
|
|
986
|
+
[_m, _rT],
|
|
987
|
+
[0, 0],
|
|
988
|
+
];
|
|
989
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
990
|
+
var ResponseAction = [
|
|
991
|
+
3,
|
|
992
|
+
n0,
|
|
993
|
+
_RAesp,
|
|
994
|
+
0,
|
|
995
|
+
[_B, _Co],
|
|
996
|
+
[() => BlockAction, () => CountAction],
|
|
997
|
+
];
|
|
998
|
+
var SubResourceSummary = [
|
|
999
|
+
3,
|
|
1000
|
+
n0,
|
|
1001
|
+
_SRS,
|
|
1002
|
+
0,
|
|
1003
|
+
[_Ty, _I, _AVt, _Cou],
|
|
1004
|
+
[0, 0, () => SummarizedAttackVectorList, () => SummarizedCounterList],
|
|
1005
|
+
];
|
|
1006
|
+
var Subscription = [
|
|
1007
|
+
3,
|
|
1008
|
+
n0,
|
|
1009
|
+
_Su,
|
|
1010
|
+
0,
|
|
1011
|
+
[_ST, _ET, _TCIS, _AR, _Li, _PES, _SL, _SA],
|
|
1012
|
+
[4, 4, 1, 0, () => Limits, 0, () => SubscriptionLimits, 0],
|
|
1013
|
+
];
|
|
1014
|
+
var SubscriptionLimits = [
|
|
1015
|
+
3,
|
|
1016
|
+
n0,
|
|
1017
|
+
_SL,
|
|
1018
|
+
0,
|
|
1019
|
+
[_PL, _PGL],
|
|
1020
|
+
[() => ProtectionLimits, () => ProtectionGroupLimits],
|
|
1021
|
+
];
|
|
1022
|
+
var SummarizedAttackVector = [
|
|
1023
|
+
3,
|
|
1024
|
+
n0,
|
|
1025
|
+
_SAV,
|
|
1026
|
+
0,
|
|
1027
|
+
[_VT, _VC],
|
|
1028
|
+
[0, () => SummarizedCounterList],
|
|
1029
|
+
];
|
|
1030
|
+
var SummarizedCounter = [
|
|
1031
|
+
3,
|
|
1032
|
+
n0,
|
|
1033
|
+
_SC,
|
|
1034
|
+
0,
|
|
1035
|
+
[_N, _Ma, _Av, _Sum, _N_, _U],
|
|
1036
|
+
[0, 1, 1, 1, 1, 0],
|
|
1037
|
+
];
|
|
1038
|
+
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
1039
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagList]];
|
|
1040
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1041
|
+
var TimeRange = [3, n0, _TR, 0, [_FI, _TE], [4, 4]];
|
|
1042
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
1043
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1044
|
+
var UpdateApplicationLayerAutomaticResponseRequest = [
|
|
1045
|
+
3,
|
|
1046
|
+
n0,
|
|
1047
|
+
_UALARR,
|
|
1048
|
+
0,
|
|
1049
|
+
[_RAe, _A],
|
|
1050
|
+
[0, () => ResponseAction],
|
|
1051
|
+
];
|
|
1052
|
+
var UpdateApplicationLayerAutomaticResponseResponse = [3, n0, _UALARRp, 0, [], []];
|
|
1053
|
+
var UpdateEmergencyContactSettingsRequest = [
|
|
1054
|
+
3,
|
|
1055
|
+
n0,
|
|
1056
|
+
_UECSR,
|
|
1057
|
+
0,
|
|
1058
|
+
[_ECL],
|
|
1059
|
+
[() => EmergencyContactList],
|
|
1060
|
+
];
|
|
1061
|
+
var UpdateEmergencyContactSettingsResponse = [3, n0, _UECSRp, 0, [], []];
|
|
1062
|
+
var UpdateProtectionGroupRequest = [
|
|
1063
|
+
3,
|
|
1064
|
+
n0,
|
|
1065
|
+
_UPGR,
|
|
1066
|
+
0,
|
|
1067
|
+
[_PGI, _Ag, _P, _RT, _Me],
|
|
1068
|
+
[0, 0, 0, 0, 64 | 0],
|
|
1069
|
+
];
|
|
1070
|
+
var UpdateProtectionGroupResponse = [3, n0, _UPGRp, 0, [], []];
|
|
1071
|
+
var UpdateSubscriptionRequest = [3, n0, _USR, 0, [_AR], [0]];
|
|
1072
|
+
var UpdateSubscriptionResponse = [3, n0, _USRp, 0, [], []];
|
|
1073
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1074
|
+
var ShieldServiceException = [-3, _sm, "ShieldServiceException", 0, [], []];
|
|
1075
|
+
schema.TypeRegistry.for(_sm).registerError(ShieldServiceException, ShieldServiceException$1);
|
|
1076
|
+
var AttackProperties = [1, n0, _AP, 0, () => AttackProperty];
|
|
1077
|
+
var AttackStatisticsDataList = [1, n0, _ASDL, 0, () => AttackStatisticsDataItem];
|
|
1078
|
+
var AttackSummaries = [1, n0, _ASt, 0, () => AttackSummary];
|
|
1079
|
+
var AttackVectorDescriptionList = [1, n0, _AVDL, 0, () => AttackVectorDescription];
|
|
1080
|
+
var EmergencyContactList = [1, n0, _ECL, 0, () => EmergencyContact];
|
|
1081
|
+
var Limits = [1, n0, _Li, 0, () => Limit];
|
|
1082
|
+
var MitigationList = [1, n0, _ML, 0, () => Mitigation];
|
|
1083
|
+
var ProtectionGroups = [1, n0, _PGr, 0, () => ProtectionGroup];
|
|
1084
|
+
var Protections = [1, n0, _Pro, 0, () => Protection];
|
|
1085
|
+
var SubResourceSummaryList = [1, n0, _SRSL, 0, () => SubResourceSummary];
|
|
1086
|
+
var SummarizedAttackVectorList = [1, n0, _SAVL, 0, () => SummarizedAttackVector];
|
|
1087
|
+
var SummarizedCounterList = [1, n0, _SCL, 0, () => SummarizedCounter];
|
|
1088
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1089
|
+
var TopContributors = [1, n0, _TC, 0, () => Contributor];
|
|
1090
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1091
|
+
var AssociateDRTLogBucket = [
|
|
1092
|
+
9,
|
|
1093
|
+
n0,
|
|
1094
|
+
_ADRTLB,
|
|
1095
|
+
0,
|
|
1096
|
+
() => AssociateDRTLogBucketRequest,
|
|
1097
|
+
() => AssociateDRTLogBucketResponse,
|
|
1098
|
+
];
|
|
1099
|
+
var AssociateDRTRole = [
|
|
1100
|
+
9,
|
|
1101
|
+
n0,
|
|
1102
|
+
_ADRTR,
|
|
1103
|
+
0,
|
|
1104
|
+
() => AssociateDRTRoleRequest,
|
|
1105
|
+
() => AssociateDRTRoleResponse,
|
|
1106
|
+
];
|
|
1107
|
+
var AssociateHealthCheck = [
|
|
1108
|
+
9,
|
|
1109
|
+
n0,
|
|
1110
|
+
_AHC,
|
|
1111
|
+
0,
|
|
1112
|
+
() => AssociateHealthCheckRequest,
|
|
1113
|
+
() => AssociateHealthCheckResponse,
|
|
1114
|
+
];
|
|
1115
|
+
var AssociateProactiveEngagementDetails = [
|
|
1116
|
+
9,
|
|
1117
|
+
n0,
|
|
1118
|
+
_APED,
|
|
1119
|
+
0,
|
|
1120
|
+
() => AssociateProactiveEngagementDetailsRequest,
|
|
1121
|
+
() => AssociateProactiveEngagementDetailsResponse,
|
|
1122
|
+
];
|
|
1123
|
+
var CreateProtection = [
|
|
1124
|
+
9,
|
|
1125
|
+
n0,
|
|
1126
|
+
_CP,
|
|
1127
|
+
0,
|
|
1128
|
+
() => CreateProtectionRequest,
|
|
1129
|
+
() => CreateProtectionResponse,
|
|
1130
|
+
];
|
|
1131
|
+
var CreateProtectionGroup = [
|
|
1132
|
+
9,
|
|
1133
|
+
n0,
|
|
1134
|
+
_CPG,
|
|
1135
|
+
0,
|
|
1136
|
+
() => CreateProtectionGroupRequest,
|
|
1137
|
+
() => CreateProtectionGroupResponse,
|
|
1138
|
+
];
|
|
1139
|
+
var CreateSubscription = [
|
|
1140
|
+
9,
|
|
1141
|
+
n0,
|
|
1142
|
+
_CS,
|
|
1143
|
+
0,
|
|
1144
|
+
() => CreateSubscriptionRequest,
|
|
1145
|
+
() => CreateSubscriptionResponse,
|
|
1146
|
+
];
|
|
1147
|
+
var DeleteProtection = [
|
|
1148
|
+
9,
|
|
1149
|
+
n0,
|
|
1150
|
+
_DP,
|
|
1151
|
+
0,
|
|
1152
|
+
() => DeleteProtectionRequest,
|
|
1153
|
+
() => DeleteProtectionResponse,
|
|
1154
|
+
];
|
|
1155
|
+
var DeleteProtectionGroup = [
|
|
1156
|
+
9,
|
|
1157
|
+
n0,
|
|
1158
|
+
_DPG,
|
|
1159
|
+
0,
|
|
1160
|
+
() => DeleteProtectionGroupRequest,
|
|
1161
|
+
() => DeleteProtectionGroupResponse,
|
|
1162
|
+
];
|
|
1163
|
+
var DeleteSubscription = [
|
|
1164
|
+
9,
|
|
1165
|
+
n0,
|
|
1166
|
+
_DS,
|
|
1167
|
+
0,
|
|
1168
|
+
() => DeleteSubscriptionRequest,
|
|
1169
|
+
() => DeleteSubscriptionResponse,
|
|
1170
|
+
];
|
|
1171
|
+
var DescribeAttack = [
|
|
1172
|
+
9,
|
|
1173
|
+
n0,
|
|
1174
|
+
_DA,
|
|
1175
|
+
0,
|
|
1176
|
+
() => DescribeAttackRequest,
|
|
1177
|
+
() => DescribeAttackResponse,
|
|
1178
|
+
];
|
|
1179
|
+
var DescribeAttackStatistics = [
|
|
1180
|
+
9,
|
|
1181
|
+
n0,
|
|
1182
|
+
_DAS,
|
|
1183
|
+
0,
|
|
1184
|
+
() => DescribeAttackStatisticsRequest,
|
|
1185
|
+
() => DescribeAttackStatisticsResponse,
|
|
1186
|
+
];
|
|
1187
|
+
var DescribeDRTAccess = [
|
|
1188
|
+
9,
|
|
1189
|
+
n0,
|
|
1190
|
+
_DDRTA,
|
|
1191
|
+
0,
|
|
1192
|
+
() => DescribeDRTAccessRequest,
|
|
1193
|
+
() => DescribeDRTAccessResponse,
|
|
1194
|
+
];
|
|
1195
|
+
var DescribeEmergencyContactSettings = [
|
|
1196
|
+
9,
|
|
1197
|
+
n0,
|
|
1198
|
+
_DECS,
|
|
1199
|
+
0,
|
|
1200
|
+
() => DescribeEmergencyContactSettingsRequest,
|
|
1201
|
+
() => DescribeEmergencyContactSettingsResponse,
|
|
1202
|
+
];
|
|
1203
|
+
var DescribeProtection = [
|
|
1204
|
+
9,
|
|
1205
|
+
n0,
|
|
1206
|
+
_DPe,
|
|
1207
|
+
0,
|
|
1208
|
+
() => DescribeProtectionRequest,
|
|
1209
|
+
() => DescribeProtectionResponse,
|
|
1210
|
+
];
|
|
1211
|
+
var DescribeProtectionGroup = [
|
|
1212
|
+
9,
|
|
1213
|
+
n0,
|
|
1214
|
+
_DPGe,
|
|
1215
|
+
0,
|
|
1216
|
+
() => DescribeProtectionGroupRequest,
|
|
1217
|
+
() => DescribeProtectionGroupResponse,
|
|
1218
|
+
];
|
|
1219
|
+
var DescribeSubscription = [
|
|
1220
|
+
9,
|
|
1221
|
+
n0,
|
|
1222
|
+
_DSe,
|
|
1223
|
+
0,
|
|
1224
|
+
() => DescribeSubscriptionRequest,
|
|
1225
|
+
() => DescribeSubscriptionResponse,
|
|
1226
|
+
];
|
|
1227
|
+
var DisableApplicationLayerAutomaticResponse = [
|
|
1228
|
+
9,
|
|
1229
|
+
n0,
|
|
1230
|
+
_DALAR,
|
|
1231
|
+
0,
|
|
1232
|
+
() => DisableApplicationLayerAutomaticResponseRequest,
|
|
1233
|
+
() => DisableApplicationLayerAutomaticResponseResponse,
|
|
1234
|
+
];
|
|
1235
|
+
var DisableProactiveEngagement = [
|
|
1236
|
+
9,
|
|
1237
|
+
n0,
|
|
1238
|
+
_DPE,
|
|
1239
|
+
0,
|
|
1240
|
+
() => DisableProactiveEngagementRequest,
|
|
1241
|
+
() => DisableProactiveEngagementResponse,
|
|
1242
|
+
];
|
|
1243
|
+
var DisassociateDRTLogBucket = [
|
|
1244
|
+
9,
|
|
1245
|
+
n0,
|
|
1246
|
+
_DDRTLB,
|
|
1247
|
+
0,
|
|
1248
|
+
() => DisassociateDRTLogBucketRequest,
|
|
1249
|
+
() => DisassociateDRTLogBucketResponse,
|
|
1250
|
+
];
|
|
1251
|
+
var DisassociateDRTRole = [
|
|
1252
|
+
9,
|
|
1253
|
+
n0,
|
|
1254
|
+
_DDRTR,
|
|
1255
|
+
0,
|
|
1256
|
+
() => DisassociateDRTRoleRequest,
|
|
1257
|
+
() => DisassociateDRTRoleResponse,
|
|
1258
|
+
];
|
|
1259
|
+
var DisassociateHealthCheck = [
|
|
1260
|
+
9,
|
|
1261
|
+
n0,
|
|
1262
|
+
_DHC,
|
|
1263
|
+
0,
|
|
1264
|
+
() => DisassociateHealthCheckRequest,
|
|
1265
|
+
() => DisassociateHealthCheckResponse,
|
|
1266
|
+
];
|
|
1267
|
+
var EnableApplicationLayerAutomaticResponse = [
|
|
1268
|
+
9,
|
|
1269
|
+
n0,
|
|
1270
|
+
_EALAR,
|
|
1271
|
+
0,
|
|
1272
|
+
() => EnableApplicationLayerAutomaticResponseRequest,
|
|
1273
|
+
() => EnableApplicationLayerAutomaticResponseResponse,
|
|
1274
|
+
];
|
|
1275
|
+
var EnableProactiveEngagement = [
|
|
1276
|
+
9,
|
|
1277
|
+
n0,
|
|
1278
|
+
_EPE,
|
|
1279
|
+
0,
|
|
1280
|
+
() => EnableProactiveEngagementRequest,
|
|
1281
|
+
() => EnableProactiveEngagementResponse,
|
|
1282
|
+
];
|
|
1283
|
+
var GetSubscriptionState = [
|
|
1284
|
+
9,
|
|
1285
|
+
n0,
|
|
1286
|
+
_GSS,
|
|
1287
|
+
0,
|
|
1288
|
+
() => GetSubscriptionStateRequest,
|
|
1289
|
+
() => GetSubscriptionStateResponse,
|
|
1290
|
+
];
|
|
1291
|
+
var ListAttacks = [9, n0, _LA, 0, () => ListAttacksRequest, () => ListAttacksResponse];
|
|
1292
|
+
var ListProtectionGroups = [
|
|
1293
|
+
9,
|
|
1294
|
+
n0,
|
|
1295
|
+
_LPG,
|
|
1296
|
+
0,
|
|
1297
|
+
() => ListProtectionGroupsRequest,
|
|
1298
|
+
() => ListProtectionGroupsResponse,
|
|
1299
|
+
];
|
|
1300
|
+
var ListProtections = [
|
|
1301
|
+
9,
|
|
1302
|
+
n0,
|
|
1303
|
+
_LP,
|
|
1304
|
+
0,
|
|
1305
|
+
() => ListProtectionsRequest,
|
|
1306
|
+
() => ListProtectionsResponse,
|
|
1307
|
+
];
|
|
1308
|
+
var ListResourcesInProtectionGroup = [
|
|
1309
|
+
9,
|
|
1310
|
+
n0,
|
|
1311
|
+
_LRIPG,
|
|
1312
|
+
0,
|
|
1313
|
+
() => ListResourcesInProtectionGroupRequest,
|
|
1314
|
+
() => ListResourcesInProtectionGroupResponse,
|
|
1315
|
+
];
|
|
1316
|
+
var ListTagsForResource = [
|
|
1317
|
+
9,
|
|
1318
|
+
n0,
|
|
1319
|
+
_LTFR,
|
|
1320
|
+
0,
|
|
1321
|
+
() => ListTagsForResourceRequest,
|
|
1322
|
+
() => ListTagsForResourceResponse,
|
|
1323
|
+
];
|
|
1324
|
+
var TagResource = [9, n0, _TRa, 0, () => TagResourceRequest, () => TagResourceResponse];
|
|
1325
|
+
var UntagResource = [
|
|
1326
|
+
9,
|
|
1327
|
+
n0,
|
|
1328
|
+
_UR,
|
|
1329
|
+
0,
|
|
1330
|
+
() => UntagResourceRequest,
|
|
1331
|
+
() => UntagResourceResponse,
|
|
1332
|
+
];
|
|
1333
|
+
var UpdateApplicationLayerAutomaticResponse = [
|
|
1334
|
+
9,
|
|
1335
|
+
n0,
|
|
1336
|
+
_UALAR,
|
|
1337
|
+
0,
|
|
1338
|
+
() => UpdateApplicationLayerAutomaticResponseRequest,
|
|
1339
|
+
() => UpdateApplicationLayerAutomaticResponseResponse,
|
|
1340
|
+
];
|
|
1341
|
+
var UpdateEmergencyContactSettings = [
|
|
1342
|
+
9,
|
|
1343
|
+
n0,
|
|
1344
|
+
_UECS,
|
|
1345
|
+
0,
|
|
1346
|
+
() => UpdateEmergencyContactSettingsRequest,
|
|
1347
|
+
() => UpdateEmergencyContactSettingsResponse,
|
|
1348
|
+
];
|
|
1349
|
+
var UpdateProtectionGroup = [
|
|
1350
|
+
9,
|
|
1351
|
+
n0,
|
|
1352
|
+
_UPG,
|
|
1353
|
+
0,
|
|
1354
|
+
() => UpdateProtectionGroupRequest,
|
|
1355
|
+
() => UpdateProtectionGroupResponse,
|
|
1356
|
+
];
|
|
1357
|
+
var UpdateSubscription = [
|
|
1358
|
+
9,
|
|
1359
|
+
n0,
|
|
1360
|
+
_US,
|
|
1361
|
+
0,
|
|
1362
|
+
() => UpdateSubscriptionRequest,
|
|
1363
|
+
() => UpdateSubscriptionResponse,
|
|
1364
|
+
];
|
|
1394
1365
|
|
|
1395
1366
|
class AssociateDRTLogBucketCommand extends smithyClient.Command
|
|
1396
1367
|
.classBuilder()
|
|
1397
1368
|
.ep(commonParams)
|
|
1398
1369
|
.m(function (Command, cs, config, o) {
|
|
1399
|
-
return [
|
|
1400
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1401
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1402
|
-
];
|
|
1370
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1403
1371
|
})
|
|
1404
1372
|
.s("AWSShield_20160616", "AssociateDRTLogBucket", {})
|
|
1405
1373
|
.n("ShieldClient", "AssociateDRTLogBucketCommand")
|
|
1406
|
-
.
|
|
1407
|
-
.ser(se_AssociateDRTLogBucketCommand)
|
|
1408
|
-
.de(de_AssociateDRTLogBucketCommand)
|
|
1374
|
+
.sc(AssociateDRTLogBucket)
|
|
1409
1375
|
.build() {
|
|
1410
1376
|
}
|
|
1411
1377
|
|
|
@@ -1413,16 +1379,11 @@ class AssociateDRTRoleCommand extends smithyClient.Command
|
|
|
1413
1379
|
.classBuilder()
|
|
1414
1380
|
.ep(commonParams)
|
|
1415
1381
|
.m(function (Command, cs, config, o) {
|
|
1416
|
-
return [
|
|
1417
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1418
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1419
|
-
];
|
|
1382
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1420
1383
|
})
|
|
1421
1384
|
.s("AWSShield_20160616", "AssociateDRTRole", {})
|
|
1422
1385
|
.n("ShieldClient", "AssociateDRTRoleCommand")
|
|
1423
|
-
.
|
|
1424
|
-
.ser(se_AssociateDRTRoleCommand)
|
|
1425
|
-
.de(de_AssociateDRTRoleCommand)
|
|
1386
|
+
.sc(AssociateDRTRole)
|
|
1426
1387
|
.build() {
|
|
1427
1388
|
}
|
|
1428
1389
|
|
|
@@ -1430,16 +1391,11 @@ class AssociateHealthCheckCommand extends smithyClient.Command
|
|
|
1430
1391
|
.classBuilder()
|
|
1431
1392
|
.ep(commonParams)
|
|
1432
1393
|
.m(function (Command, cs, config, o) {
|
|
1433
|
-
return [
|
|
1434
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1435
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1436
|
-
];
|
|
1394
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1437
1395
|
})
|
|
1438
1396
|
.s("AWSShield_20160616", "AssociateHealthCheck", {})
|
|
1439
1397
|
.n("ShieldClient", "AssociateHealthCheckCommand")
|
|
1440
|
-
.
|
|
1441
|
-
.ser(se_AssociateHealthCheckCommand)
|
|
1442
|
-
.de(de_AssociateHealthCheckCommand)
|
|
1398
|
+
.sc(AssociateHealthCheck)
|
|
1443
1399
|
.build() {
|
|
1444
1400
|
}
|
|
1445
1401
|
|
|
@@ -1447,16 +1403,11 @@ class AssociateProactiveEngagementDetailsCommand extends smithyClient.Command
|
|
|
1447
1403
|
.classBuilder()
|
|
1448
1404
|
.ep(commonParams)
|
|
1449
1405
|
.m(function (Command, cs, config, o) {
|
|
1450
|
-
return [
|
|
1451
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1452
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1453
|
-
];
|
|
1406
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1454
1407
|
})
|
|
1455
1408
|
.s("AWSShield_20160616", "AssociateProactiveEngagementDetails", {})
|
|
1456
1409
|
.n("ShieldClient", "AssociateProactiveEngagementDetailsCommand")
|
|
1457
|
-
.
|
|
1458
|
-
.ser(se_AssociateProactiveEngagementDetailsCommand)
|
|
1459
|
-
.de(de_AssociateProactiveEngagementDetailsCommand)
|
|
1410
|
+
.sc(AssociateProactiveEngagementDetails)
|
|
1460
1411
|
.build() {
|
|
1461
1412
|
}
|
|
1462
1413
|
|
|
@@ -1464,16 +1415,11 @@ class CreateProtectionCommand extends smithyClient.Command
|
|
|
1464
1415
|
.classBuilder()
|
|
1465
1416
|
.ep(commonParams)
|
|
1466
1417
|
.m(function (Command, cs, config, o) {
|
|
1467
|
-
return [
|
|
1468
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1469
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1470
|
-
];
|
|
1418
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1471
1419
|
})
|
|
1472
1420
|
.s("AWSShield_20160616", "CreateProtection", {})
|
|
1473
1421
|
.n("ShieldClient", "CreateProtectionCommand")
|
|
1474
|
-
.
|
|
1475
|
-
.ser(se_CreateProtectionCommand)
|
|
1476
|
-
.de(de_CreateProtectionCommand)
|
|
1422
|
+
.sc(CreateProtection)
|
|
1477
1423
|
.build() {
|
|
1478
1424
|
}
|
|
1479
1425
|
|
|
@@ -1481,16 +1427,11 @@ class CreateProtectionGroupCommand extends smithyClient.Command
|
|
|
1481
1427
|
.classBuilder()
|
|
1482
1428
|
.ep(commonParams)
|
|
1483
1429
|
.m(function (Command, cs, config, o) {
|
|
1484
|
-
return [
|
|
1485
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1486
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1487
|
-
];
|
|
1430
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1488
1431
|
})
|
|
1489
1432
|
.s("AWSShield_20160616", "CreateProtectionGroup", {})
|
|
1490
1433
|
.n("ShieldClient", "CreateProtectionGroupCommand")
|
|
1491
|
-
.
|
|
1492
|
-
.ser(se_CreateProtectionGroupCommand)
|
|
1493
|
-
.de(de_CreateProtectionGroupCommand)
|
|
1434
|
+
.sc(CreateProtectionGroup)
|
|
1494
1435
|
.build() {
|
|
1495
1436
|
}
|
|
1496
1437
|
|
|
@@ -1498,16 +1439,11 @@ class CreateSubscriptionCommand extends smithyClient.Command
|
|
|
1498
1439
|
.classBuilder()
|
|
1499
1440
|
.ep(commonParams)
|
|
1500
1441
|
.m(function (Command, cs, config, o) {
|
|
1501
|
-
return [
|
|
1502
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1503
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1504
|
-
];
|
|
1442
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1505
1443
|
})
|
|
1506
1444
|
.s("AWSShield_20160616", "CreateSubscription", {})
|
|
1507
1445
|
.n("ShieldClient", "CreateSubscriptionCommand")
|
|
1508
|
-
.
|
|
1509
|
-
.ser(se_CreateSubscriptionCommand)
|
|
1510
|
-
.de(de_CreateSubscriptionCommand)
|
|
1446
|
+
.sc(CreateSubscription)
|
|
1511
1447
|
.build() {
|
|
1512
1448
|
}
|
|
1513
1449
|
|
|
@@ -1515,16 +1451,11 @@ class DeleteProtectionCommand extends smithyClient.Command
|
|
|
1515
1451
|
.classBuilder()
|
|
1516
1452
|
.ep(commonParams)
|
|
1517
1453
|
.m(function (Command, cs, config, o) {
|
|
1518
|
-
return [
|
|
1519
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1520
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1521
|
-
];
|
|
1454
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1522
1455
|
})
|
|
1523
1456
|
.s("AWSShield_20160616", "DeleteProtection", {})
|
|
1524
1457
|
.n("ShieldClient", "DeleteProtectionCommand")
|
|
1525
|
-
.
|
|
1526
|
-
.ser(se_DeleteProtectionCommand)
|
|
1527
|
-
.de(de_DeleteProtectionCommand)
|
|
1458
|
+
.sc(DeleteProtection)
|
|
1528
1459
|
.build() {
|
|
1529
1460
|
}
|
|
1530
1461
|
|
|
@@ -1532,16 +1463,11 @@ class DeleteProtectionGroupCommand extends smithyClient.Command
|
|
|
1532
1463
|
.classBuilder()
|
|
1533
1464
|
.ep(commonParams)
|
|
1534
1465
|
.m(function (Command, cs, config, o) {
|
|
1535
|
-
return [
|
|
1536
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1537
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1538
|
-
];
|
|
1466
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1539
1467
|
})
|
|
1540
1468
|
.s("AWSShield_20160616", "DeleteProtectionGroup", {})
|
|
1541
1469
|
.n("ShieldClient", "DeleteProtectionGroupCommand")
|
|
1542
|
-
.
|
|
1543
|
-
.ser(se_DeleteProtectionGroupCommand)
|
|
1544
|
-
.de(de_DeleteProtectionGroupCommand)
|
|
1470
|
+
.sc(DeleteProtectionGroup)
|
|
1545
1471
|
.build() {
|
|
1546
1472
|
}
|
|
1547
1473
|
|
|
@@ -1549,16 +1475,11 @@ class DeleteSubscriptionCommand extends smithyClient.Command
|
|
|
1549
1475
|
.classBuilder()
|
|
1550
1476
|
.ep(commonParams)
|
|
1551
1477
|
.m(function (Command, cs, config, o) {
|
|
1552
|
-
return [
|
|
1553
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1554
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1555
|
-
];
|
|
1478
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1556
1479
|
})
|
|
1557
1480
|
.s("AWSShield_20160616", "DeleteSubscription", {})
|
|
1558
1481
|
.n("ShieldClient", "DeleteSubscriptionCommand")
|
|
1559
|
-
.
|
|
1560
|
-
.ser(se_DeleteSubscriptionCommand)
|
|
1561
|
-
.de(de_DeleteSubscriptionCommand)
|
|
1482
|
+
.sc(DeleteSubscription)
|
|
1562
1483
|
.build() {
|
|
1563
1484
|
}
|
|
1564
1485
|
|
|
@@ -1566,16 +1487,11 @@ class DescribeAttackCommand extends smithyClient.Command
|
|
|
1566
1487
|
.classBuilder()
|
|
1567
1488
|
.ep(commonParams)
|
|
1568
1489
|
.m(function (Command, cs, config, o) {
|
|
1569
|
-
return [
|
|
1570
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1571
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1572
|
-
];
|
|
1490
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1573
1491
|
})
|
|
1574
1492
|
.s("AWSShield_20160616", "DescribeAttack", {})
|
|
1575
1493
|
.n("ShieldClient", "DescribeAttackCommand")
|
|
1576
|
-
.
|
|
1577
|
-
.ser(se_DescribeAttackCommand)
|
|
1578
|
-
.de(de_DescribeAttackCommand)
|
|
1494
|
+
.sc(DescribeAttack)
|
|
1579
1495
|
.build() {
|
|
1580
1496
|
}
|
|
1581
1497
|
|
|
@@ -1583,16 +1499,11 @@ class DescribeAttackStatisticsCommand extends smithyClient.Command
|
|
|
1583
1499
|
.classBuilder()
|
|
1584
1500
|
.ep(commonParams)
|
|
1585
1501
|
.m(function (Command, cs, config, o) {
|
|
1586
|
-
return [
|
|
1587
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1588
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1589
|
-
];
|
|
1502
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1590
1503
|
})
|
|
1591
1504
|
.s("AWSShield_20160616", "DescribeAttackStatistics", {})
|
|
1592
1505
|
.n("ShieldClient", "DescribeAttackStatisticsCommand")
|
|
1593
|
-
.
|
|
1594
|
-
.ser(se_DescribeAttackStatisticsCommand)
|
|
1595
|
-
.de(de_DescribeAttackStatisticsCommand)
|
|
1506
|
+
.sc(DescribeAttackStatistics)
|
|
1596
1507
|
.build() {
|
|
1597
1508
|
}
|
|
1598
1509
|
|
|
@@ -1600,16 +1511,11 @@ class DescribeDRTAccessCommand extends smithyClient.Command
|
|
|
1600
1511
|
.classBuilder()
|
|
1601
1512
|
.ep(commonParams)
|
|
1602
1513
|
.m(function (Command, cs, config, o) {
|
|
1603
|
-
return [
|
|
1604
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1605
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1606
|
-
];
|
|
1514
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1607
1515
|
})
|
|
1608
1516
|
.s("AWSShield_20160616", "DescribeDRTAccess", {})
|
|
1609
1517
|
.n("ShieldClient", "DescribeDRTAccessCommand")
|
|
1610
|
-
.
|
|
1611
|
-
.ser(se_DescribeDRTAccessCommand)
|
|
1612
|
-
.de(de_DescribeDRTAccessCommand)
|
|
1518
|
+
.sc(DescribeDRTAccess)
|
|
1613
1519
|
.build() {
|
|
1614
1520
|
}
|
|
1615
1521
|
|
|
@@ -1617,16 +1523,11 @@ class DescribeEmergencyContactSettingsCommand extends smithyClient.Command
|
|
|
1617
1523
|
.classBuilder()
|
|
1618
1524
|
.ep(commonParams)
|
|
1619
1525
|
.m(function (Command, cs, config, o) {
|
|
1620
|
-
return [
|
|
1621
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1622
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1623
|
-
];
|
|
1526
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1624
1527
|
})
|
|
1625
1528
|
.s("AWSShield_20160616", "DescribeEmergencyContactSettings", {})
|
|
1626
1529
|
.n("ShieldClient", "DescribeEmergencyContactSettingsCommand")
|
|
1627
|
-
.
|
|
1628
|
-
.ser(se_DescribeEmergencyContactSettingsCommand)
|
|
1629
|
-
.de(de_DescribeEmergencyContactSettingsCommand)
|
|
1530
|
+
.sc(DescribeEmergencyContactSettings)
|
|
1630
1531
|
.build() {
|
|
1631
1532
|
}
|
|
1632
1533
|
|
|
@@ -1634,16 +1535,11 @@ class DescribeProtectionCommand extends smithyClient.Command
|
|
|
1634
1535
|
.classBuilder()
|
|
1635
1536
|
.ep(commonParams)
|
|
1636
1537
|
.m(function (Command, cs, config, o) {
|
|
1637
|
-
return [
|
|
1638
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1639
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1640
|
-
];
|
|
1538
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1641
1539
|
})
|
|
1642
1540
|
.s("AWSShield_20160616", "DescribeProtection", {})
|
|
1643
1541
|
.n("ShieldClient", "DescribeProtectionCommand")
|
|
1644
|
-
.
|
|
1645
|
-
.ser(se_DescribeProtectionCommand)
|
|
1646
|
-
.de(de_DescribeProtectionCommand)
|
|
1542
|
+
.sc(DescribeProtection)
|
|
1647
1543
|
.build() {
|
|
1648
1544
|
}
|
|
1649
1545
|
|
|
@@ -1651,16 +1547,11 @@ class DescribeProtectionGroupCommand extends smithyClient.Command
|
|
|
1651
1547
|
.classBuilder()
|
|
1652
1548
|
.ep(commonParams)
|
|
1653
1549
|
.m(function (Command, cs, config, o) {
|
|
1654
|
-
return [
|
|
1655
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1656
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1657
|
-
];
|
|
1550
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1658
1551
|
})
|
|
1659
1552
|
.s("AWSShield_20160616", "DescribeProtectionGroup", {})
|
|
1660
1553
|
.n("ShieldClient", "DescribeProtectionGroupCommand")
|
|
1661
|
-
.
|
|
1662
|
-
.ser(se_DescribeProtectionGroupCommand)
|
|
1663
|
-
.de(de_DescribeProtectionGroupCommand)
|
|
1554
|
+
.sc(DescribeProtectionGroup)
|
|
1664
1555
|
.build() {
|
|
1665
1556
|
}
|
|
1666
1557
|
|
|
@@ -1668,16 +1559,11 @@ class DescribeSubscriptionCommand extends smithyClient.Command
|
|
|
1668
1559
|
.classBuilder()
|
|
1669
1560
|
.ep(commonParams)
|
|
1670
1561
|
.m(function (Command, cs, config, o) {
|
|
1671
|
-
return [
|
|
1672
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1673
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1674
|
-
];
|
|
1562
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1675
1563
|
})
|
|
1676
1564
|
.s("AWSShield_20160616", "DescribeSubscription", {})
|
|
1677
1565
|
.n("ShieldClient", "DescribeSubscriptionCommand")
|
|
1678
|
-
.
|
|
1679
|
-
.ser(se_DescribeSubscriptionCommand)
|
|
1680
|
-
.de(de_DescribeSubscriptionCommand)
|
|
1566
|
+
.sc(DescribeSubscription)
|
|
1681
1567
|
.build() {
|
|
1682
1568
|
}
|
|
1683
1569
|
|
|
@@ -1685,16 +1571,11 @@ class DisableApplicationLayerAutomaticResponseCommand extends smithyClient.Comma
|
|
|
1685
1571
|
.classBuilder()
|
|
1686
1572
|
.ep(commonParams)
|
|
1687
1573
|
.m(function (Command, cs, config, o) {
|
|
1688
|
-
return [
|
|
1689
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1690
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1691
|
-
];
|
|
1574
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1692
1575
|
})
|
|
1693
1576
|
.s("AWSShield_20160616", "DisableApplicationLayerAutomaticResponse", {})
|
|
1694
1577
|
.n("ShieldClient", "DisableApplicationLayerAutomaticResponseCommand")
|
|
1695
|
-
.
|
|
1696
|
-
.ser(se_DisableApplicationLayerAutomaticResponseCommand)
|
|
1697
|
-
.de(de_DisableApplicationLayerAutomaticResponseCommand)
|
|
1578
|
+
.sc(DisableApplicationLayerAutomaticResponse)
|
|
1698
1579
|
.build() {
|
|
1699
1580
|
}
|
|
1700
1581
|
|
|
@@ -1702,16 +1583,11 @@ class DisableProactiveEngagementCommand extends smithyClient.Command
|
|
|
1702
1583
|
.classBuilder()
|
|
1703
1584
|
.ep(commonParams)
|
|
1704
1585
|
.m(function (Command, cs, config, o) {
|
|
1705
|
-
return [
|
|
1706
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1707
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1708
|
-
];
|
|
1586
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1709
1587
|
})
|
|
1710
1588
|
.s("AWSShield_20160616", "DisableProactiveEngagement", {})
|
|
1711
1589
|
.n("ShieldClient", "DisableProactiveEngagementCommand")
|
|
1712
|
-
.
|
|
1713
|
-
.ser(se_DisableProactiveEngagementCommand)
|
|
1714
|
-
.de(de_DisableProactiveEngagementCommand)
|
|
1590
|
+
.sc(DisableProactiveEngagement)
|
|
1715
1591
|
.build() {
|
|
1716
1592
|
}
|
|
1717
1593
|
|
|
@@ -1719,16 +1595,11 @@ class DisassociateDRTLogBucketCommand extends smithyClient.Command
|
|
|
1719
1595
|
.classBuilder()
|
|
1720
1596
|
.ep(commonParams)
|
|
1721
1597
|
.m(function (Command, cs, config, o) {
|
|
1722
|
-
return [
|
|
1723
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1724
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1725
|
-
];
|
|
1598
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1726
1599
|
})
|
|
1727
1600
|
.s("AWSShield_20160616", "DisassociateDRTLogBucket", {})
|
|
1728
1601
|
.n("ShieldClient", "DisassociateDRTLogBucketCommand")
|
|
1729
|
-
.
|
|
1730
|
-
.ser(se_DisassociateDRTLogBucketCommand)
|
|
1731
|
-
.de(de_DisassociateDRTLogBucketCommand)
|
|
1602
|
+
.sc(DisassociateDRTLogBucket)
|
|
1732
1603
|
.build() {
|
|
1733
1604
|
}
|
|
1734
1605
|
|
|
@@ -1736,16 +1607,11 @@ class DisassociateDRTRoleCommand extends smithyClient.Command
|
|
|
1736
1607
|
.classBuilder()
|
|
1737
1608
|
.ep(commonParams)
|
|
1738
1609
|
.m(function (Command, cs, config, o) {
|
|
1739
|
-
return [
|
|
1740
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1741
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1742
|
-
];
|
|
1610
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1743
1611
|
})
|
|
1744
1612
|
.s("AWSShield_20160616", "DisassociateDRTRole", {})
|
|
1745
1613
|
.n("ShieldClient", "DisassociateDRTRoleCommand")
|
|
1746
|
-
.
|
|
1747
|
-
.ser(se_DisassociateDRTRoleCommand)
|
|
1748
|
-
.de(de_DisassociateDRTRoleCommand)
|
|
1614
|
+
.sc(DisassociateDRTRole)
|
|
1749
1615
|
.build() {
|
|
1750
1616
|
}
|
|
1751
1617
|
|
|
@@ -1753,16 +1619,11 @@ class DisassociateHealthCheckCommand extends smithyClient.Command
|
|
|
1753
1619
|
.classBuilder()
|
|
1754
1620
|
.ep(commonParams)
|
|
1755
1621
|
.m(function (Command, cs, config, o) {
|
|
1756
|
-
return [
|
|
1757
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1758
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1759
|
-
];
|
|
1622
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1760
1623
|
})
|
|
1761
1624
|
.s("AWSShield_20160616", "DisassociateHealthCheck", {})
|
|
1762
1625
|
.n("ShieldClient", "DisassociateHealthCheckCommand")
|
|
1763
|
-
.
|
|
1764
|
-
.ser(se_DisassociateHealthCheckCommand)
|
|
1765
|
-
.de(de_DisassociateHealthCheckCommand)
|
|
1626
|
+
.sc(DisassociateHealthCheck)
|
|
1766
1627
|
.build() {
|
|
1767
1628
|
}
|
|
1768
1629
|
|
|
@@ -1770,16 +1631,11 @@ class EnableApplicationLayerAutomaticResponseCommand extends smithyClient.Comman
|
|
|
1770
1631
|
.classBuilder()
|
|
1771
1632
|
.ep(commonParams)
|
|
1772
1633
|
.m(function (Command, cs, config, o) {
|
|
1773
|
-
return [
|
|
1774
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1775
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1776
|
-
];
|
|
1634
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1777
1635
|
})
|
|
1778
1636
|
.s("AWSShield_20160616", "EnableApplicationLayerAutomaticResponse", {})
|
|
1779
1637
|
.n("ShieldClient", "EnableApplicationLayerAutomaticResponseCommand")
|
|
1780
|
-
.
|
|
1781
|
-
.ser(se_EnableApplicationLayerAutomaticResponseCommand)
|
|
1782
|
-
.de(de_EnableApplicationLayerAutomaticResponseCommand)
|
|
1638
|
+
.sc(EnableApplicationLayerAutomaticResponse)
|
|
1783
1639
|
.build() {
|
|
1784
1640
|
}
|
|
1785
1641
|
|
|
@@ -1787,16 +1643,11 @@ class EnableProactiveEngagementCommand extends smithyClient.Command
|
|
|
1787
1643
|
.classBuilder()
|
|
1788
1644
|
.ep(commonParams)
|
|
1789
1645
|
.m(function (Command, cs, config, o) {
|
|
1790
|
-
return [
|
|
1791
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1792
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1793
|
-
];
|
|
1646
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1794
1647
|
})
|
|
1795
1648
|
.s("AWSShield_20160616", "EnableProactiveEngagement", {})
|
|
1796
1649
|
.n("ShieldClient", "EnableProactiveEngagementCommand")
|
|
1797
|
-
.
|
|
1798
|
-
.ser(se_EnableProactiveEngagementCommand)
|
|
1799
|
-
.de(de_EnableProactiveEngagementCommand)
|
|
1650
|
+
.sc(EnableProactiveEngagement)
|
|
1800
1651
|
.build() {
|
|
1801
1652
|
}
|
|
1802
1653
|
|
|
@@ -1804,16 +1655,11 @@ class GetSubscriptionStateCommand extends smithyClient.Command
|
|
|
1804
1655
|
.classBuilder()
|
|
1805
1656
|
.ep(commonParams)
|
|
1806
1657
|
.m(function (Command, cs, config, o) {
|
|
1807
|
-
return [
|
|
1808
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1809
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1810
|
-
];
|
|
1658
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1811
1659
|
})
|
|
1812
1660
|
.s("AWSShield_20160616", "GetSubscriptionState", {})
|
|
1813
1661
|
.n("ShieldClient", "GetSubscriptionStateCommand")
|
|
1814
|
-
.
|
|
1815
|
-
.ser(se_GetSubscriptionStateCommand)
|
|
1816
|
-
.de(de_GetSubscriptionStateCommand)
|
|
1662
|
+
.sc(GetSubscriptionState)
|
|
1817
1663
|
.build() {
|
|
1818
1664
|
}
|
|
1819
1665
|
|
|
@@ -1821,16 +1667,11 @@ class ListAttacksCommand extends smithyClient.Command
|
|
|
1821
1667
|
.classBuilder()
|
|
1822
1668
|
.ep(commonParams)
|
|
1823
1669
|
.m(function (Command, cs, config, o) {
|
|
1824
|
-
return [
|
|
1825
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1826
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1827
|
-
];
|
|
1670
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1828
1671
|
})
|
|
1829
1672
|
.s("AWSShield_20160616", "ListAttacks", {})
|
|
1830
1673
|
.n("ShieldClient", "ListAttacksCommand")
|
|
1831
|
-
.
|
|
1832
|
-
.ser(se_ListAttacksCommand)
|
|
1833
|
-
.de(de_ListAttacksCommand)
|
|
1674
|
+
.sc(ListAttacks)
|
|
1834
1675
|
.build() {
|
|
1835
1676
|
}
|
|
1836
1677
|
|
|
@@ -1838,16 +1679,11 @@ class ListProtectionGroupsCommand extends smithyClient.Command
|
|
|
1838
1679
|
.classBuilder()
|
|
1839
1680
|
.ep(commonParams)
|
|
1840
1681
|
.m(function (Command, cs, config, o) {
|
|
1841
|
-
return [
|
|
1842
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1843
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1844
|
-
];
|
|
1682
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1845
1683
|
})
|
|
1846
1684
|
.s("AWSShield_20160616", "ListProtectionGroups", {})
|
|
1847
1685
|
.n("ShieldClient", "ListProtectionGroupsCommand")
|
|
1848
|
-
.
|
|
1849
|
-
.ser(se_ListProtectionGroupsCommand)
|
|
1850
|
-
.de(de_ListProtectionGroupsCommand)
|
|
1686
|
+
.sc(ListProtectionGroups)
|
|
1851
1687
|
.build() {
|
|
1852
1688
|
}
|
|
1853
1689
|
|
|
@@ -1855,16 +1691,11 @@ class ListProtectionsCommand extends smithyClient.Command
|
|
|
1855
1691
|
.classBuilder()
|
|
1856
1692
|
.ep(commonParams)
|
|
1857
1693
|
.m(function (Command, cs, config, o) {
|
|
1858
|
-
return [
|
|
1859
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1860
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1861
|
-
];
|
|
1694
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1862
1695
|
})
|
|
1863
1696
|
.s("AWSShield_20160616", "ListProtections", {})
|
|
1864
1697
|
.n("ShieldClient", "ListProtectionsCommand")
|
|
1865
|
-
.
|
|
1866
|
-
.ser(se_ListProtectionsCommand)
|
|
1867
|
-
.de(de_ListProtectionsCommand)
|
|
1698
|
+
.sc(ListProtections)
|
|
1868
1699
|
.build() {
|
|
1869
1700
|
}
|
|
1870
1701
|
|
|
@@ -1872,16 +1703,11 @@ class ListResourcesInProtectionGroupCommand extends smithyClient.Command
|
|
|
1872
1703
|
.classBuilder()
|
|
1873
1704
|
.ep(commonParams)
|
|
1874
1705
|
.m(function (Command, cs, config, o) {
|
|
1875
|
-
return [
|
|
1876
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1877
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1878
|
-
];
|
|
1706
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1879
1707
|
})
|
|
1880
1708
|
.s("AWSShield_20160616", "ListResourcesInProtectionGroup", {})
|
|
1881
1709
|
.n("ShieldClient", "ListResourcesInProtectionGroupCommand")
|
|
1882
|
-
.
|
|
1883
|
-
.ser(se_ListResourcesInProtectionGroupCommand)
|
|
1884
|
-
.de(de_ListResourcesInProtectionGroupCommand)
|
|
1710
|
+
.sc(ListResourcesInProtectionGroup)
|
|
1885
1711
|
.build() {
|
|
1886
1712
|
}
|
|
1887
1713
|
|
|
@@ -1889,16 +1715,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1889
1715
|
.classBuilder()
|
|
1890
1716
|
.ep(commonParams)
|
|
1891
1717
|
.m(function (Command, cs, config, o) {
|
|
1892
|
-
return [
|
|
1893
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1894
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1895
|
-
];
|
|
1718
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1896
1719
|
})
|
|
1897
1720
|
.s("AWSShield_20160616", "ListTagsForResource", {})
|
|
1898
1721
|
.n("ShieldClient", "ListTagsForResourceCommand")
|
|
1899
|
-
.
|
|
1900
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1901
|
-
.de(de_ListTagsForResourceCommand)
|
|
1722
|
+
.sc(ListTagsForResource)
|
|
1902
1723
|
.build() {
|
|
1903
1724
|
}
|
|
1904
1725
|
|
|
@@ -1906,16 +1727,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1906
1727
|
.classBuilder()
|
|
1907
1728
|
.ep(commonParams)
|
|
1908
1729
|
.m(function (Command, cs, config, o) {
|
|
1909
|
-
return [
|
|
1910
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1911
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1912
|
-
];
|
|
1730
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1913
1731
|
})
|
|
1914
1732
|
.s("AWSShield_20160616", "TagResource", {})
|
|
1915
1733
|
.n("ShieldClient", "TagResourceCommand")
|
|
1916
|
-
.
|
|
1917
|
-
.ser(se_TagResourceCommand)
|
|
1918
|
-
.de(de_TagResourceCommand)
|
|
1734
|
+
.sc(TagResource)
|
|
1919
1735
|
.build() {
|
|
1920
1736
|
}
|
|
1921
1737
|
|
|
@@ -1923,16 +1739,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1923
1739
|
.classBuilder()
|
|
1924
1740
|
.ep(commonParams)
|
|
1925
1741
|
.m(function (Command, cs, config, o) {
|
|
1926
|
-
return [
|
|
1927
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1928
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1929
|
-
];
|
|
1742
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1930
1743
|
})
|
|
1931
1744
|
.s("AWSShield_20160616", "UntagResource", {})
|
|
1932
1745
|
.n("ShieldClient", "UntagResourceCommand")
|
|
1933
|
-
.
|
|
1934
|
-
.ser(se_UntagResourceCommand)
|
|
1935
|
-
.de(de_UntagResourceCommand)
|
|
1746
|
+
.sc(UntagResource)
|
|
1936
1747
|
.build() {
|
|
1937
1748
|
}
|
|
1938
1749
|
|
|
@@ -1940,16 +1751,11 @@ class UpdateApplicationLayerAutomaticResponseCommand extends smithyClient.Comman
|
|
|
1940
1751
|
.classBuilder()
|
|
1941
1752
|
.ep(commonParams)
|
|
1942
1753
|
.m(function (Command, cs, config, o) {
|
|
1943
|
-
return [
|
|
1944
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1945
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1946
|
-
];
|
|
1754
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1947
1755
|
})
|
|
1948
1756
|
.s("AWSShield_20160616", "UpdateApplicationLayerAutomaticResponse", {})
|
|
1949
1757
|
.n("ShieldClient", "UpdateApplicationLayerAutomaticResponseCommand")
|
|
1950
|
-
.
|
|
1951
|
-
.ser(se_UpdateApplicationLayerAutomaticResponseCommand)
|
|
1952
|
-
.de(de_UpdateApplicationLayerAutomaticResponseCommand)
|
|
1758
|
+
.sc(UpdateApplicationLayerAutomaticResponse)
|
|
1953
1759
|
.build() {
|
|
1954
1760
|
}
|
|
1955
1761
|
|
|
@@ -1957,16 +1763,11 @@ class UpdateEmergencyContactSettingsCommand extends smithyClient.Command
|
|
|
1957
1763
|
.classBuilder()
|
|
1958
1764
|
.ep(commonParams)
|
|
1959
1765
|
.m(function (Command, cs, config, o) {
|
|
1960
|
-
return [
|
|
1961
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1962
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1963
|
-
];
|
|
1766
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1964
1767
|
})
|
|
1965
1768
|
.s("AWSShield_20160616", "UpdateEmergencyContactSettings", {})
|
|
1966
1769
|
.n("ShieldClient", "UpdateEmergencyContactSettingsCommand")
|
|
1967
|
-
.
|
|
1968
|
-
.ser(se_UpdateEmergencyContactSettingsCommand)
|
|
1969
|
-
.de(de_UpdateEmergencyContactSettingsCommand)
|
|
1770
|
+
.sc(UpdateEmergencyContactSettings)
|
|
1970
1771
|
.build() {
|
|
1971
1772
|
}
|
|
1972
1773
|
|
|
@@ -1974,16 +1775,11 @@ class UpdateProtectionGroupCommand extends smithyClient.Command
|
|
|
1974
1775
|
.classBuilder()
|
|
1975
1776
|
.ep(commonParams)
|
|
1976
1777
|
.m(function (Command, cs, config, o) {
|
|
1977
|
-
return [
|
|
1978
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1979
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1980
|
-
];
|
|
1778
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1981
1779
|
})
|
|
1982
1780
|
.s("AWSShield_20160616", "UpdateProtectionGroup", {})
|
|
1983
1781
|
.n("ShieldClient", "UpdateProtectionGroupCommand")
|
|
1984
|
-
.
|
|
1985
|
-
.ser(se_UpdateProtectionGroupCommand)
|
|
1986
|
-
.de(de_UpdateProtectionGroupCommand)
|
|
1782
|
+
.sc(UpdateProtectionGroup)
|
|
1987
1783
|
.build() {
|
|
1988
1784
|
}
|
|
1989
1785
|
|
|
@@ -1991,16 +1787,11 @@ class UpdateSubscriptionCommand extends smithyClient.Command
|
|
|
1991
1787
|
.classBuilder()
|
|
1992
1788
|
.ep(commonParams)
|
|
1993
1789
|
.m(function (Command, cs, config, o) {
|
|
1994
|
-
return [
|
|
1995
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1996
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1997
|
-
];
|
|
1790
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1998
1791
|
})
|
|
1999
1792
|
.s("AWSShield_20160616", "UpdateSubscription", {})
|
|
2000
1793
|
.n("ShieldClient", "UpdateSubscriptionCommand")
|
|
2001
|
-
.
|
|
2002
|
-
.ser(se_UpdateSubscriptionCommand)
|
|
2003
|
-
.de(de_UpdateSubscriptionCommand)
|
|
1794
|
+
.sc(UpdateSubscription)
|
|
2004
1795
|
.build() {
|
|
2005
1796
|
}
|
|
2006
1797
|
|
|
@@ -2062,8 +1853,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2062
1853
|
enumerable: true,
|
|
2063
1854
|
get: function () { return smithyClient.Client; }
|
|
2064
1855
|
});
|
|
2065
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2066
|
-
exports.AccessDeniedForDependencyException = AccessDeniedForDependencyException;
|
|
1856
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1857
|
+
exports.AccessDeniedForDependencyException = AccessDeniedForDependencyException$1;
|
|
2067
1858
|
exports.ApplicationLayerAutomaticResponseStatus = ApplicationLayerAutomaticResponseStatus;
|
|
2068
1859
|
exports.AssociateDRTLogBucketCommand = AssociateDRTLogBucketCommand;
|
|
2069
1860
|
exports.AssociateDRTRoleCommand = AssociateDRTRoleCommand;
|
|
@@ -2093,29 +1884,29 @@ exports.DisassociateHealthCheckCommand = DisassociateHealthCheckCommand;
|
|
|
2093
1884
|
exports.EnableApplicationLayerAutomaticResponseCommand = EnableApplicationLayerAutomaticResponseCommand;
|
|
2094
1885
|
exports.EnableProactiveEngagementCommand = EnableProactiveEngagementCommand;
|
|
2095
1886
|
exports.GetSubscriptionStateCommand = GetSubscriptionStateCommand;
|
|
2096
|
-
exports.InternalErrorException = InternalErrorException;
|
|
2097
|
-
exports.InvalidOperationException = InvalidOperationException;
|
|
2098
|
-
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
2099
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2100
|
-
exports.InvalidResourceException = InvalidResourceException;
|
|
2101
|
-
exports.LimitsExceededException = LimitsExceededException;
|
|
1887
|
+
exports.InternalErrorException = InternalErrorException$1;
|
|
1888
|
+
exports.InvalidOperationException = InvalidOperationException$1;
|
|
1889
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException$1;
|
|
1890
|
+
exports.InvalidParameterException = InvalidParameterException$1;
|
|
1891
|
+
exports.InvalidResourceException = InvalidResourceException$1;
|
|
1892
|
+
exports.LimitsExceededException = LimitsExceededException$1;
|
|
2102
1893
|
exports.ListAttacksCommand = ListAttacksCommand;
|
|
2103
1894
|
exports.ListProtectionGroupsCommand = ListProtectionGroupsCommand;
|
|
2104
1895
|
exports.ListProtectionsCommand = ListProtectionsCommand;
|
|
2105
1896
|
exports.ListResourcesInProtectionGroupCommand = ListResourcesInProtectionGroupCommand;
|
|
2106
1897
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2107
|
-
exports.LockedSubscriptionException = LockedSubscriptionException;
|
|
2108
|
-
exports.NoAssociatedRoleException = NoAssociatedRoleException;
|
|
2109
|
-
exports.OptimisticLockException = OptimisticLockException;
|
|
1898
|
+
exports.LockedSubscriptionException = LockedSubscriptionException$1;
|
|
1899
|
+
exports.NoAssociatedRoleException = NoAssociatedRoleException$1;
|
|
1900
|
+
exports.OptimisticLockException = OptimisticLockException$1;
|
|
2110
1901
|
exports.ProactiveEngagementStatus = ProactiveEngagementStatus;
|
|
2111
1902
|
exports.ProtectedResourceType = ProtectedResourceType;
|
|
2112
1903
|
exports.ProtectionGroupAggregation = ProtectionGroupAggregation;
|
|
2113
1904
|
exports.ProtectionGroupPattern = ProtectionGroupPattern;
|
|
2114
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
2115
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1905
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException$1;
|
|
1906
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2116
1907
|
exports.Shield = Shield;
|
|
2117
1908
|
exports.ShieldClient = ShieldClient;
|
|
2118
|
-
exports.ShieldServiceException = ShieldServiceException;
|
|
1909
|
+
exports.ShieldServiceException = ShieldServiceException$1;
|
|
2119
1910
|
exports.SubResourceType = SubResourceType;
|
|
2120
1911
|
exports.SubscriptionState = SubscriptionState;
|
|
2121
1912
|
exports.TagResourceCommand = TagResourceCommand;
|