@aws-sdk/client-fms 3.721.0 → 3.726.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 +233 -166
- package/dist-es/FMSClient.js +1 -0
- package/dist-es/models/models_0.js +22 -12
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +23 -3
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -86,6 +86,7 @@ __export(src_exports, {
|
|
|
86
86
|
RemediationActionType: () => RemediationActionType,
|
|
87
87
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
88
88
|
ResourceSetStatus: () => ResourceSetStatus,
|
|
89
|
+
ResourceTagLogicalOperator: () => ResourceTagLogicalOperator,
|
|
89
90
|
RuleOrder: () => RuleOrder,
|
|
90
91
|
SecurityServiceType: () => SecurityServiceType,
|
|
91
92
|
StreamExceptionPolicy: () => StreamExceptionPolicy,
|
|
@@ -203,7 +204,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
203
204
|
}, "resolveRuntimeExtensions");
|
|
204
205
|
|
|
205
206
|
// src/FMSClient.ts
|
|
206
|
-
var
|
|
207
|
+
var FMSClient = class extends import_smithy_client.Client {
|
|
208
|
+
static {
|
|
209
|
+
__name(this, "FMSClient");
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* The resolved configuration of FMSClient class. This is resolved and normalized from the {@link FMSClientConfig | constructor configuration interface}.
|
|
213
|
+
*/
|
|
214
|
+
config;
|
|
207
215
|
constructor(...[configuration]) {
|
|
208
216
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
209
217
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -213,7 +221,7 @@ var _FMSClient = class _FMSClient extends import_smithy_client.Client {
|
|
|
213
221
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
214
222
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
215
223
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
216
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
224
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
217
225
|
super(_config_8);
|
|
218
226
|
this.config = _config_8;
|
|
219
227
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -241,8 +249,6 @@ var _FMSClient = class _FMSClient extends import_smithy_client.Client {
|
|
|
241
249
|
super.destroy();
|
|
242
250
|
}
|
|
243
251
|
};
|
|
244
|
-
__name(_FMSClient, "FMSClient");
|
|
245
|
-
var FMSClient = _FMSClient;
|
|
246
252
|
|
|
247
253
|
// src/FMS.ts
|
|
248
254
|
|
|
@@ -259,7 +265,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
259
265
|
|
|
260
266
|
// src/models/FMSServiceException.ts
|
|
261
267
|
|
|
262
|
-
var
|
|
268
|
+
var FMSServiceException = class _FMSServiceException extends import_smithy_client.ServiceException {
|
|
269
|
+
static {
|
|
270
|
+
__name(this, "FMSServiceException");
|
|
271
|
+
}
|
|
263
272
|
/**
|
|
264
273
|
* @internal
|
|
265
274
|
*/
|
|
@@ -268,8 +277,6 @@ var _FMSServiceException = class _FMSServiceException extends import_smithy_clie
|
|
|
268
277
|
Object.setPrototypeOf(this, _FMSServiceException.prototype);
|
|
269
278
|
}
|
|
270
279
|
};
|
|
271
|
-
__name(_FMSServiceException, "FMSServiceException");
|
|
272
|
-
var FMSServiceException = _FMSServiceException;
|
|
273
280
|
|
|
274
281
|
// src/models/models_0.ts
|
|
275
282
|
var AccountRoleStatus = {
|
|
@@ -298,7 +305,13 @@ var SecurityServiceType = {
|
|
|
298
305
|
WAF: "WAF",
|
|
299
306
|
WAFV2: "WAFV2"
|
|
300
307
|
};
|
|
301
|
-
var
|
|
308
|
+
var InternalErrorException = class _InternalErrorException extends FMSServiceException {
|
|
309
|
+
static {
|
|
310
|
+
__name(this, "InternalErrorException");
|
|
311
|
+
}
|
|
312
|
+
name = "InternalErrorException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
Message;
|
|
302
315
|
/**
|
|
303
316
|
* @internal
|
|
304
317
|
*/
|
|
@@ -308,15 +321,17 @@ var _InternalErrorException = class _InternalErrorException extends FMSServiceEx
|
|
|
308
321
|
$fault: "client",
|
|
309
322
|
...opts
|
|
310
323
|
});
|
|
311
|
-
this.name = "InternalErrorException";
|
|
312
|
-
this.$fault = "client";
|
|
313
324
|
Object.setPrototypeOf(this, _InternalErrorException.prototype);
|
|
314
325
|
this.Message = opts.Message;
|
|
315
326
|
}
|
|
316
327
|
};
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
328
|
+
var InvalidInputException = class _InvalidInputException extends FMSServiceException {
|
|
329
|
+
static {
|
|
330
|
+
__name(this, "InvalidInputException");
|
|
331
|
+
}
|
|
332
|
+
name = "InvalidInputException";
|
|
333
|
+
$fault = "client";
|
|
334
|
+
Message;
|
|
320
335
|
/**
|
|
321
336
|
* @internal
|
|
322
337
|
*/
|
|
@@ -326,15 +341,17 @@ var _InvalidInputException = class _InvalidInputException extends FMSServiceExce
|
|
|
326
341
|
$fault: "client",
|
|
327
342
|
...opts
|
|
328
343
|
});
|
|
329
|
-
this.name = "InvalidInputException";
|
|
330
|
-
this.$fault = "client";
|
|
331
344
|
Object.setPrototypeOf(this, _InvalidInputException.prototype);
|
|
332
345
|
this.Message = opts.Message;
|
|
333
346
|
}
|
|
334
347
|
};
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
348
|
+
var InvalidOperationException = class _InvalidOperationException extends FMSServiceException {
|
|
349
|
+
static {
|
|
350
|
+
__name(this, "InvalidOperationException");
|
|
351
|
+
}
|
|
352
|
+
name = "InvalidOperationException";
|
|
353
|
+
$fault = "client";
|
|
354
|
+
Message;
|
|
338
355
|
/**
|
|
339
356
|
* @internal
|
|
340
357
|
*/
|
|
@@ -344,15 +361,17 @@ var _InvalidOperationException = class _InvalidOperationException extends FMSSer
|
|
|
344
361
|
$fault: "client",
|
|
345
362
|
...opts
|
|
346
363
|
});
|
|
347
|
-
this.name = "InvalidOperationException";
|
|
348
|
-
this.$fault = "client";
|
|
349
364
|
Object.setPrototypeOf(this, _InvalidOperationException.prototype);
|
|
350
365
|
this.Message = opts.Message;
|
|
351
366
|
}
|
|
352
367
|
};
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
368
|
+
var LimitExceededException = class _LimitExceededException extends FMSServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "LimitExceededException");
|
|
371
|
+
}
|
|
372
|
+
name = "LimitExceededException";
|
|
373
|
+
$fault = "client";
|
|
374
|
+
Message;
|
|
356
375
|
/**
|
|
357
376
|
* @internal
|
|
358
377
|
*/
|
|
@@ -362,15 +381,17 @@ var _LimitExceededException = class _LimitExceededException extends FMSServiceEx
|
|
|
362
381
|
$fault: "client",
|
|
363
382
|
...opts
|
|
364
383
|
});
|
|
365
|
-
this.name = "LimitExceededException";
|
|
366
|
-
this.$fault = "client";
|
|
367
384
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
368
385
|
this.Message = opts.Message;
|
|
369
386
|
}
|
|
370
387
|
};
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
388
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends FMSServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "ResourceNotFoundException");
|
|
391
|
+
}
|
|
392
|
+
name = "ResourceNotFoundException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
374
395
|
/**
|
|
375
396
|
* @internal
|
|
376
397
|
*/
|
|
@@ -380,14 +401,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends FMSSer
|
|
|
380
401
|
$fault: "client",
|
|
381
402
|
...opts
|
|
382
403
|
});
|
|
383
|
-
this.name = "ResourceNotFoundException";
|
|
384
|
-
this.$fault = "client";
|
|
385
404
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
386
405
|
this.Message = opts.Message;
|
|
387
406
|
}
|
|
388
407
|
};
|
|
389
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
390
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
391
408
|
var ThirdPartyFirewall = {
|
|
392
409
|
FORTIGATE_CLOUD_NATIVE_FIREWALL: "FORTIGATE_CLOUD_NATIVE_FIREWALL",
|
|
393
410
|
PALO_ALTO_NETWORKS_CLOUD_NGFW: "PALO_ALTO_NETWORKS_CLOUD_NGFW"
|
|
@@ -453,6 +470,10 @@ var CustomerPolicyStatus = {
|
|
|
453
470
|
ACTIVE: "ACTIVE",
|
|
454
471
|
OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE"
|
|
455
472
|
};
|
|
473
|
+
var ResourceTagLogicalOperator = {
|
|
474
|
+
AND: "AND",
|
|
475
|
+
OR: "OR"
|
|
476
|
+
};
|
|
456
477
|
var NetworkAclRuleAction = {
|
|
457
478
|
ALLOW: "allow",
|
|
458
479
|
DENY: "deny"
|
|
@@ -461,7 +482,13 @@ var FirewallDeploymentModel = {
|
|
|
461
482
|
CENTRALIZED: "CENTRALIZED",
|
|
462
483
|
DISTRIBUTED: "DISTRIBUTED"
|
|
463
484
|
};
|
|
464
|
-
var
|
|
485
|
+
var InvalidTypeException = class _InvalidTypeException extends FMSServiceException {
|
|
486
|
+
static {
|
|
487
|
+
__name(this, "InvalidTypeException");
|
|
488
|
+
}
|
|
489
|
+
name = "InvalidTypeException";
|
|
490
|
+
$fault = "client";
|
|
491
|
+
Message;
|
|
465
492
|
/**
|
|
466
493
|
* @internal
|
|
467
494
|
*/
|
|
@@ -471,14 +498,10 @@ var _InvalidTypeException = class _InvalidTypeException extends FMSServiceExcept
|
|
|
471
498
|
$fault: "client",
|
|
472
499
|
...opts
|
|
473
500
|
});
|
|
474
|
-
this.name = "InvalidTypeException";
|
|
475
|
-
this.$fault = "client";
|
|
476
501
|
Object.setPrototypeOf(this, _InvalidTypeException.prototype);
|
|
477
502
|
this.Message = opts.Message;
|
|
478
503
|
}
|
|
479
504
|
};
|
|
480
|
-
__name(_InvalidTypeException, "InvalidTypeException");
|
|
481
|
-
var InvalidTypeException = _InvalidTypeException;
|
|
482
505
|
var ResourceSetStatus = {
|
|
483
506
|
ACTIVE: "ACTIVE",
|
|
484
507
|
OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE"
|
|
@@ -1679,589 +1702,631 @@ function sharedHeaders(operation) {
|
|
|
1679
1702
|
__name(sharedHeaders, "sharedHeaders");
|
|
1680
1703
|
|
|
1681
1704
|
// src/commands/AssociateAdminAccountCommand.ts
|
|
1682
|
-
var
|
|
1705
|
+
var AssociateAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1683
1706
|
return [
|
|
1684
1707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1685
1708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1686
1709
|
];
|
|
1687
1710
|
}).s("AWSFMS_20180101", "AssociateAdminAccount", {}).n("FMSClient", "AssociateAdminAccountCommand").f(void 0, void 0).ser(se_AssociateAdminAccountCommand).de(de_AssociateAdminAccountCommand).build() {
|
|
1711
|
+
static {
|
|
1712
|
+
__name(this, "AssociateAdminAccountCommand");
|
|
1713
|
+
}
|
|
1688
1714
|
};
|
|
1689
|
-
__name(_AssociateAdminAccountCommand, "AssociateAdminAccountCommand");
|
|
1690
|
-
var AssociateAdminAccountCommand = _AssociateAdminAccountCommand;
|
|
1691
1715
|
|
|
1692
1716
|
// src/commands/AssociateThirdPartyFirewallCommand.ts
|
|
1693
1717
|
|
|
1694
1718
|
|
|
1695
1719
|
|
|
1696
|
-
var
|
|
1720
|
+
var AssociateThirdPartyFirewallCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1697
1721
|
return [
|
|
1698
1722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1699
1723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1700
1724
|
];
|
|
1701
1725
|
}).s("AWSFMS_20180101", "AssociateThirdPartyFirewall", {}).n("FMSClient", "AssociateThirdPartyFirewallCommand").f(void 0, void 0).ser(se_AssociateThirdPartyFirewallCommand).de(de_AssociateThirdPartyFirewallCommand).build() {
|
|
1726
|
+
static {
|
|
1727
|
+
__name(this, "AssociateThirdPartyFirewallCommand");
|
|
1728
|
+
}
|
|
1702
1729
|
};
|
|
1703
|
-
__name(_AssociateThirdPartyFirewallCommand, "AssociateThirdPartyFirewallCommand");
|
|
1704
|
-
var AssociateThirdPartyFirewallCommand = _AssociateThirdPartyFirewallCommand;
|
|
1705
1730
|
|
|
1706
1731
|
// src/commands/BatchAssociateResourceCommand.ts
|
|
1707
1732
|
|
|
1708
1733
|
|
|
1709
1734
|
|
|
1710
|
-
var
|
|
1735
|
+
var BatchAssociateResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1711
1736
|
return [
|
|
1712
1737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1713
1738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1714
1739
|
];
|
|
1715
1740
|
}).s("AWSFMS_20180101", "BatchAssociateResource", {}).n("FMSClient", "BatchAssociateResourceCommand").f(void 0, void 0).ser(se_BatchAssociateResourceCommand).de(de_BatchAssociateResourceCommand).build() {
|
|
1741
|
+
static {
|
|
1742
|
+
__name(this, "BatchAssociateResourceCommand");
|
|
1743
|
+
}
|
|
1716
1744
|
};
|
|
1717
|
-
__name(_BatchAssociateResourceCommand, "BatchAssociateResourceCommand");
|
|
1718
|
-
var BatchAssociateResourceCommand = _BatchAssociateResourceCommand;
|
|
1719
1745
|
|
|
1720
1746
|
// src/commands/BatchDisassociateResourceCommand.ts
|
|
1721
1747
|
|
|
1722
1748
|
|
|
1723
1749
|
|
|
1724
|
-
var
|
|
1750
|
+
var BatchDisassociateResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1725
1751
|
return [
|
|
1726
1752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1727
1753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1728
1754
|
];
|
|
1729
1755
|
}).s("AWSFMS_20180101", "BatchDisassociateResource", {}).n("FMSClient", "BatchDisassociateResourceCommand").f(void 0, void 0).ser(se_BatchDisassociateResourceCommand).de(de_BatchDisassociateResourceCommand).build() {
|
|
1756
|
+
static {
|
|
1757
|
+
__name(this, "BatchDisassociateResourceCommand");
|
|
1758
|
+
}
|
|
1730
1759
|
};
|
|
1731
|
-
__name(_BatchDisassociateResourceCommand, "BatchDisassociateResourceCommand");
|
|
1732
|
-
var BatchDisassociateResourceCommand = _BatchDisassociateResourceCommand;
|
|
1733
1760
|
|
|
1734
1761
|
// src/commands/DeleteAppsListCommand.ts
|
|
1735
1762
|
|
|
1736
1763
|
|
|
1737
1764
|
|
|
1738
|
-
var
|
|
1765
|
+
var DeleteAppsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1739
1766
|
return [
|
|
1740
1767
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1741
1768
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1742
1769
|
];
|
|
1743
1770
|
}).s("AWSFMS_20180101", "DeleteAppsList", {}).n("FMSClient", "DeleteAppsListCommand").f(void 0, void 0).ser(se_DeleteAppsListCommand).de(de_DeleteAppsListCommand).build() {
|
|
1771
|
+
static {
|
|
1772
|
+
__name(this, "DeleteAppsListCommand");
|
|
1773
|
+
}
|
|
1744
1774
|
};
|
|
1745
|
-
__name(_DeleteAppsListCommand, "DeleteAppsListCommand");
|
|
1746
|
-
var DeleteAppsListCommand = _DeleteAppsListCommand;
|
|
1747
1775
|
|
|
1748
1776
|
// src/commands/DeleteNotificationChannelCommand.ts
|
|
1749
1777
|
|
|
1750
1778
|
|
|
1751
1779
|
|
|
1752
|
-
var
|
|
1780
|
+
var DeleteNotificationChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1753
1781
|
return [
|
|
1754
1782
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1755
1783
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1756
1784
|
];
|
|
1757
1785
|
}).s("AWSFMS_20180101", "DeleteNotificationChannel", {}).n("FMSClient", "DeleteNotificationChannelCommand").f(void 0, void 0).ser(se_DeleteNotificationChannelCommand).de(de_DeleteNotificationChannelCommand).build() {
|
|
1786
|
+
static {
|
|
1787
|
+
__name(this, "DeleteNotificationChannelCommand");
|
|
1788
|
+
}
|
|
1758
1789
|
};
|
|
1759
|
-
__name(_DeleteNotificationChannelCommand, "DeleteNotificationChannelCommand");
|
|
1760
|
-
var DeleteNotificationChannelCommand = _DeleteNotificationChannelCommand;
|
|
1761
1790
|
|
|
1762
1791
|
// src/commands/DeletePolicyCommand.ts
|
|
1763
1792
|
|
|
1764
1793
|
|
|
1765
1794
|
|
|
1766
|
-
var
|
|
1795
|
+
var DeletePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1767
1796
|
return [
|
|
1768
1797
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1769
1798
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1770
1799
|
];
|
|
1771
1800
|
}).s("AWSFMS_20180101", "DeletePolicy", {}).n("FMSClient", "DeletePolicyCommand").f(void 0, void 0).ser(se_DeletePolicyCommand).de(de_DeletePolicyCommand).build() {
|
|
1801
|
+
static {
|
|
1802
|
+
__name(this, "DeletePolicyCommand");
|
|
1803
|
+
}
|
|
1772
1804
|
};
|
|
1773
|
-
__name(_DeletePolicyCommand, "DeletePolicyCommand");
|
|
1774
|
-
var DeletePolicyCommand = _DeletePolicyCommand;
|
|
1775
1805
|
|
|
1776
1806
|
// src/commands/DeleteProtocolsListCommand.ts
|
|
1777
1807
|
|
|
1778
1808
|
|
|
1779
1809
|
|
|
1780
|
-
var
|
|
1810
|
+
var DeleteProtocolsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1781
1811
|
return [
|
|
1782
1812
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1783
1813
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1784
1814
|
];
|
|
1785
1815
|
}).s("AWSFMS_20180101", "DeleteProtocolsList", {}).n("FMSClient", "DeleteProtocolsListCommand").f(void 0, void 0).ser(se_DeleteProtocolsListCommand).de(de_DeleteProtocolsListCommand).build() {
|
|
1816
|
+
static {
|
|
1817
|
+
__name(this, "DeleteProtocolsListCommand");
|
|
1818
|
+
}
|
|
1786
1819
|
};
|
|
1787
|
-
__name(_DeleteProtocolsListCommand, "DeleteProtocolsListCommand");
|
|
1788
|
-
var DeleteProtocolsListCommand = _DeleteProtocolsListCommand;
|
|
1789
1820
|
|
|
1790
1821
|
// src/commands/DeleteResourceSetCommand.ts
|
|
1791
1822
|
|
|
1792
1823
|
|
|
1793
1824
|
|
|
1794
|
-
var
|
|
1825
|
+
var DeleteResourceSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1795
1826
|
return [
|
|
1796
1827
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1797
1828
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1798
1829
|
];
|
|
1799
1830
|
}).s("AWSFMS_20180101", "DeleteResourceSet", {}).n("FMSClient", "DeleteResourceSetCommand").f(void 0, void 0).ser(se_DeleteResourceSetCommand).de(de_DeleteResourceSetCommand).build() {
|
|
1831
|
+
static {
|
|
1832
|
+
__name(this, "DeleteResourceSetCommand");
|
|
1833
|
+
}
|
|
1800
1834
|
};
|
|
1801
|
-
__name(_DeleteResourceSetCommand, "DeleteResourceSetCommand");
|
|
1802
|
-
var DeleteResourceSetCommand = _DeleteResourceSetCommand;
|
|
1803
1835
|
|
|
1804
1836
|
// src/commands/DisassociateAdminAccountCommand.ts
|
|
1805
1837
|
|
|
1806
1838
|
|
|
1807
1839
|
|
|
1808
|
-
var
|
|
1840
|
+
var DisassociateAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1809
1841
|
return [
|
|
1810
1842
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1811
1843
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1812
1844
|
];
|
|
1813
1845
|
}).s("AWSFMS_20180101", "DisassociateAdminAccount", {}).n("FMSClient", "DisassociateAdminAccountCommand").f(void 0, void 0).ser(se_DisassociateAdminAccountCommand).de(de_DisassociateAdminAccountCommand).build() {
|
|
1846
|
+
static {
|
|
1847
|
+
__name(this, "DisassociateAdminAccountCommand");
|
|
1848
|
+
}
|
|
1814
1849
|
};
|
|
1815
|
-
__name(_DisassociateAdminAccountCommand, "DisassociateAdminAccountCommand");
|
|
1816
|
-
var DisassociateAdminAccountCommand = _DisassociateAdminAccountCommand;
|
|
1817
1850
|
|
|
1818
1851
|
// src/commands/DisassociateThirdPartyFirewallCommand.ts
|
|
1819
1852
|
|
|
1820
1853
|
|
|
1821
1854
|
|
|
1822
|
-
var
|
|
1855
|
+
var DisassociateThirdPartyFirewallCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1823
1856
|
return [
|
|
1824
1857
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1825
1858
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1826
1859
|
];
|
|
1827
1860
|
}).s("AWSFMS_20180101", "DisassociateThirdPartyFirewall", {}).n("FMSClient", "DisassociateThirdPartyFirewallCommand").f(void 0, void 0).ser(se_DisassociateThirdPartyFirewallCommand).de(de_DisassociateThirdPartyFirewallCommand).build() {
|
|
1861
|
+
static {
|
|
1862
|
+
__name(this, "DisassociateThirdPartyFirewallCommand");
|
|
1863
|
+
}
|
|
1828
1864
|
};
|
|
1829
|
-
__name(_DisassociateThirdPartyFirewallCommand, "DisassociateThirdPartyFirewallCommand");
|
|
1830
|
-
var DisassociateThirdPartyFirewallCommand = _DisassociateThirdPartyFirewallCommand;
|
|
1831
1865
|
|
|
1832
1866
|
// src/commands/GetAdminAccountCommand.ts
|
|
1833
1867
|
|
|
1834
1868
|
|
|
1835
1869
|
|
|
1836
|
-
var
|
|
1870
|
+
var GetAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1837
1871
|
return [
|
|
1838
1872
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1839
1873
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1840
1874
|
];
|
|
1841
1875
|
}).s("AWSFMS_20180101", "GetAdminAccount", {}).n("FMSClient", "GetAdminAccountCommand").f(void 0, void 0).ser(se_GetAdminAccountCommand).de(de_GetAdminAccountCommand).build() {
|
|
1876
|
+
static {
|
|
1877
|
+
__name(this, "GetAdminAccountCommand");
|
|
1878
|
+
}
|
|
1842
1879
|
};
|
|
1843
|
-
__name(_GetAdminAccountCommand, "GetAdminAccountCommand");
|
|
1844
|
-
var GetAdminAccountCommand = _GetAdminAccountCommand;
|
|
1845
1880
|
|
|
1846
1881
|
// src/commands/GetAdminScopeCommand.ts
|
|
1847
1882
|
|
|
1848
1883
|
|
|
1849
1884
|
|
|
1850
|
-
var
|
|
1885
|
+
var GetAdminScopeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1851
1886
|
return [
|
|
1852
1887
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1853
1888
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1854
1889
|
];
|
|
1855
1890
|
}).s("AWSFMS_20180101", "GetAdminScope", {}).n("FMSClient", "GetAdminScopeCommand").f(void 0, void 0).ser(se_GetAdminScopeCommand).de(de_GetAdminScopeCommand).build() {
|
|
1891
|
+
static {
|
|
1892
|
+
__name(this, "GetAdminScopeCommand");
|
|
1893
|
+
}
|
|
1856
1894
|
};
|
|
1857
|
-
__name(_GetAdminScopeCommand, "GetAdminScopeCommand");
|
|
1858
|
-
var GetAdminScopeCommand = _GetAdminScopeCommand;
|
|
1859
1895
|
|
|
1860
1896
|
// src/commands/GetAppsListCommand.ts
|
|
1861
1897
|
|
|
1862
1898
|
|
|
1863
1899
|
|
|
1864
|
-
var
|
|
1900
|
+
var GetAppsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1865
1901
|
return [
|
|
1866
1902
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1867
1903
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1868
1904
|
];
|
|
1869
1905
|
}).s("AWSFMS_20180101", "GetAppsList", {}).n("FMSClient", "GetAppsListCommand").f(void 0, void 0).ser(se_GetAppsListCommand).de(de_GetAppsListCommand).build() {
|
|
1906
|
+
static {
|
|
1907
|
+
__name(this, "GetAppsListCommand");
|
|
1908
|
+
}
|
|
1870
1909
|
};
|
|
1871
|
-
__name(_GetAppsListCommand, "GetAppsListCommand");
|
|
1872
|
-
var GetAppsListCommand = _GetAppsListCommand;
|
|
1873
1910
|
|
|
1874
1911
|
// src/commands/GetComplianceDetailCommand.ts
|
|
1875
1912
|
|
|
1876
1913
|
|
|
1877
1914
|
|
|
1878
|
-
var
|
|
1915
|
+
var GetComplianceDetailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1879
1916
|
return [
|
|
1880
1917
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1881
1918
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1882
1919
|
];
|
|
1883
1920
|
}).s("AWSFMS_20180101", "GetComplianceDetail", {}).n("FMSClient", "GetComplianceDetailCommand").f(void 0, void 0).ser(se_GetComplianceDetailCommand).de(de_GetComplianceDetailCommand).build() {
|
|
1921
|
+
static {
|
|
1922
|
+
__name(this, "GetComplianceDetailCommand");
|
|
1923
|
+
}
|
|
1884
1924
|
};
|
|
1885
|
-
__name(_GetComplianceDetailCommand, "GetComplianceDetailCommand");
|
|
1886
|
-
var GetComplianceDetailCommand = _GetComplianceDetailCommand;
|
|
1887
1925
|
|
|
1888
1926
|
// src/commands/GetNotificationChannelCommand.ts
|
|
1889
1927
|
|
|
1890
1928
|
|
|
1891
1929
|
|
|
1892
|
-
var
|
|
1930
|
+
var GetNotificationChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1893
1931
|
return [
|
|
1894
1932
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1895
1933
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1896
1934
|
];
|
|
1897
1935
|
}).s("AWSFMS_20180101", "GetNotificationChannel", {}).n("FMSClient", "GetNotificationChannelCommand").f(void 0, void 0).ser(se_GetNotificationChannelCommand).de(de_GetNotificationChannelCommand).build() {
|
|
1936
|
+
static {
|
|
1937
|
+
__name(this, "GetNotificationChannelCommand");
|
|
1938
|
+
}
|
|
1898
1939
|
};
|
|
1899
|
-
__name(_GetNotificationChannelCommand, "GetNotificationChannelCommand");
|
|
1900
|
-
var GetNotificationChannelCommand = _GetNotificationChannelCommand;
|
|
1901
1940
|
|
|
1902
1941
|
// src/commands/GetPolicyCommand.ts
|
|
1903
1942
|
|
|
1904
1943
|
|
|
1905
1944
|
|
|
1906
|
-
var
|
|
1945
|
+
var GetPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1907
1946
|
return [
|
|
1908
1947
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1909
1948
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1910
1949
|
];
|
|
1911
1950
|
}).s("AWSFMS_20180101", "GetPolicy", {}).n("FMSClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
1951
|
+
static {
|
|
1952
|
+
__name(this, "GetPolicyCommand");
|
|
1953
|
+
}
|
|
1912
1954
|
};
|
|
1913
|
-
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
1914
|
-
var GetPolicyCommand = _GetPolicyCommand;
|
|
1915
1955
|
|
|
1916
1956
|
// src/commands/GetProtectionStatusCommand.ts
|
|
1917
1957
|
|
|
1918
1958
|
|
|
1919
1959
|
|
|
1920
|
-
var
|
|
1960
|
+
var GetProtectionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1921
1961
|
return [
|
|
1922
1962
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1923
1963
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1924
1964
|
];
|
|
1925
1965
|
}).s("AWSFMS_20180101", "GetProtectionStatus", {}).n("FMSClient", "GetProtectionStatusCommand").f(void 0, void 0).ser(se_GetProtectionStatusCommand).de(de_GetProtectionStatusCommand).build() {
|
|
1966
|
+
static {
|
|
1967
|
+
__name(this, "GetProtectionStatusCommand");
|
|
1968
|
+
}
|
|
1926
1969
|
};
|
|
1927
|
-
__name(_GetProtectionStatusCommand, "GetProtectionStatusCommand");
|
|
1928
|
-
var GetProtectionStatusCommand = _GetProtectionStatusCommand;
|
|
1929
1970
|
|
|
1930
1971
|
// src/commands/GetProtocolsListCommand.ts
|
|
1931
1972
|
|
|
1932
1973
|
|
|
1933
1974
|
|
|
1934
|
-
var
|
|
1975
|
+
var GetProtocolsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1935
1976
|
return [
|
|
1936
1977
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1937
1978
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1938
1979
|
];
|
|
1939
1980
|
}).s("AWSFMS_20180101", "GetProtocolsList", {}).n("FMSClient", "GetProtocolsListCommand").f(void 0, void 0).ser(se_GetProtocolsListCommand).de(de_GetProtocolsListCommand).build() {
|
|
1981
|
+
static {
|
|
1982
|
+
__name(this, "GetProtocolsListCommand");
|
|
1983
|
+
}
|
|
1940
1984
|
};
|
|
1941
|
-
__name(_GetProtocolsListCommand, "GetProtocolsListCommand");
|
|
1942
|
-
var GetProtocolsListCommand = _GetProtocolsListCommand;
|
|
1943
1985
|
|
|
1944
1986
|
// src/commands/GetResourceSetCommand.ts
|
|
1945
1987
|
|
|
1946
1988
|
|
|
1947
1989
|
|
|
1948
|
-
var
|
|
1990
|
+
var GetResourceSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1949
1991
|
return [
|
|
1950
1992
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1951
1993
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1952
1994
|
];
|
|
1953
1995
|
}).s("AWSFMS_20180101", "GetResourceSet", {}).n("FMSClient", "GetResourceSetCommand").f(void 0, void 0).ser(se_GetResourceSetCommand).de(de_GetResourceSetCommand).build() {
|
|
1996
|
+
static {
|
|
1997
|
+
__name(this, "GetResourceSetCommand");
|
|
1998
|
+
}
|
|
1954
1999
|
};
|
|
1955
|
-
__name(_GetResourceSetCommand, "GetResourceSetCommand");
|
|
1956
|
-
var GetResourceSetCommand = _GetResourceSetCommand;
|
|
1957
2000
|
|
|
1958
2001
|
// src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts
|
|
1959
2002
|
|
|
1960
2003
|
|
|
1961
2004
|
|
|
1962
|
-
var
|
|
2005
|
+
var GetThirdPartyFirewallAssociationStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1963
2006
|
return [
|
|
1964
2007
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1965
2008
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1966
2009
|
];
|
|
1967
2010
|
}).s("AWSFMS_20180101", "GetThirdPartyFirewallAssociationStatus", {}).n("FMSClient", "GetThirdPartyFirewallAssociationStatusCommand").f(void 0, void 0).ser(se_GetThirdPartyFirewallAssociationStatusCommand).de(de_GetThirdPartyFirewallAssociationStatusCommand).build() {
|
|
2011
|
+
static {
|
|
2012
|
+
__name(this, "GetThirdPartyFirewallAssociationStatusCommand");
|
|
2013
|
+
}
|
|
1968
2014
|
};
|
|
1969
|
-
__name(_GetThirdPartyFirewallAssociationStatusCommand, "GetThirdPartyFirewallAssociationStatusCommand");
|
|
1970
|
-
var GetThirdPartyFirewallAssociationStatusCommand = _GetThirdPartyFirewallAssociationStatusCommand;
|
|
1971
2015
|
|
|
1972
2016
|
// src/commands/GetViolationDetailsCommand.ts
|
|
1973
2017
|
|
|
1974
2018
|
|
|
1975
2019
|
|
|
1976
|
-
var
|
|
2020
|
+
var GetViolationDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1977
2021
|
return [
|
|
1978
2022
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1979
2023
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1980
2024
|
];
|
|
1981
2025
|
}).s("AWSFMS_20180101", "GetViolationDetails", {}).n("FMSClient", "GetViolationDetailsCommand").f(void 0, void 0).ser(se_GetViolationDetailsCommand).de(de_GetViolationDetailsCommand).build() {
|
|
2026
|
+
static {
|
|
2027
|
+
__name(this, "GetViolationDetailsCommand");
|
|
2028
|
+
}
|
|
1982
2029
|
};
|
|
1983
|
-
__name(_GetViolationDetailsCommand, "GetViolationDetailsCommand");
|
|
1984
|
-
var GetViolationDetailsCommand = _GetViolationDetailsCommand;
|
|
1985
2030
|
|
|
1986
2031
|
// src/commands/ListAdminAccountsForOrganizationCommand.ts
|
|
1987
2032
|
|
|
1988
2033
|
|
|
1989
2034
|
|
|
1990
|
-
var
|
|
2035
|
+
var ListAdminAccountsForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1991
2036
|
return [
|
|
1992
2037
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1993
2038
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1994
2039
|
];
|
|
1995
2040
|
}).s("AWSFMS_20180101", "ListAdminAccountsForOrganization", {}).n("FMSClient", "ListAdminAccountsForOrganizationCommand").f(void 0, void 0).ser(se_ListAdminAccountsForOrganizationCommand).de(de_ListAdminAccountsForOrganizationCommand).build() {
|
|
2041
|
+
static {
|
|
2042
|
+
__name(this, "ListAdminAccountsForOrganizationCommand");
|
|
2043
|
+
}
|
|
1996
2044
|
};
|
|
1997
|
-
__name(_ListAdminAccountsForOrganizationCommand, "ListAdminAccountsForOrganizationCommand");
|
|
1998
|
-
var ListAdminAccountsForOrganizationCommand = _ListAdminAccountsForOrganizationCommand;
|
|
1999
2045
|
|
|
2000
2046
|
// src/commands/ListAdminsManagingAccountCommand.ts
|
|
2001
2047
|
|
|
2002
2048
|
|
|
2003
2049
|
|
|
2004
|
-
var
|
|
2050
|
+
var ListAdminsManagingAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2005
2051
|
return [
|
|
2006
2052
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2007
2053
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2008
2054
|
];
|
|
2009
2055
|
}).s("AWSFMS_20180101", "ListAdminsManagingAccount", {}).n("FMSClient", "ListAdminsManagingAccountCommand").f(void 0, void 0).ser(se_ListAdminsManagingAccountCommand).de(de_ListAdminsManagingAccountCommand).build() {
|
|
2056
|
+
static {
|
|
2057
|
+
__name(this, "ListAdminsManagingAccountCommand");
|
|
2058
|
+
}
|
|
2010
2059
|
};
|
|
2011
|
-
__name(_ListAdminsManagingAccountCommand, "ListAdminsManagingAccountCommand");
|
|
2012
|
-
var ListAdminsManagingAccountCommand = _ListAdminsManagingAccountCommand;
|
|
2013
2060
|
|
|
2014
2061
|
// src/commands/ListAppsListsCommand.ts
|
|
2015
2062
|
|
|
2016
2063
|
|
|
2017
2064
|
|
|
2018
|
-
var
|
|
2065
|
+
var ListAppsListsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2019
2066
|
return [
|
|
2020
2067
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2021
2068
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2022
2069
|
];
|
|
2023
2070
|
}).s("AWSFMS_20180101", "ListAppsLists", {}).n("FMSClient", "ListAppsListsCommand").f(void 0, void 0).ser(se_ListAppsListsCommand).de(de_ListAppsListsCommand).build() {
|
|
2071
|
+
static {
|
|
2072
|
+
__name(this, "ListAppsListsCommand");
|
|
2073
|
+
}
|
|
2024
2074
|
};
|
|
2025
|
-
__name(_ListAppsListsCommand, "ListAppsListsCommand");
|
|
2026
|
-
var ListAppsListsCommand = _ListAppsListsCommand;
|
|
2027
2075
|
|
|
2028
2076
|
// src/commands/ListComplianceStatusCommand.ts
|
|
2029
2077
|
|
|
2030
2078
|
|
|
2031
2079
|
|
|
2032
|
-
var
|
|
2080
|
+
var ListComplianceStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2033
2081
|
return [
|
|
2034
2082
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2035
2083
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2036
2084
|
];
|
|
2037
2085
|
}).s("AWSFMS_20180101", "ListComplianceStatus", {}).n("FMSClient", "ListComplianceStatusCommand").f(void 0, void 0).ser(se_ListComplianceStatusCommand).de(de_ListComplianceStatusCommand).build() {
|
|
2086
|
+
static {
|
|
2087
|
+
__name(this, "ListComplianceStatusCommand");
|
|
2088
|
+
}
|
|
2038
2089
|
};
|
|
2039
|
-
__name(_ListComplianceStatusCommand, "ListComplianceStatusCommand");
|
|
2040
|
-
var ListComplianceStatusCommand = _ListComplianceStatusCommand;
|
|
2041
2090
|
|
|
2042
2091
|
// src/commands/ListDiscoveredResourcesCommand.ts
|
|
2043
2092
|
|
|
2044
2093
|
|
|
2045
2094
|
|
|
2046
|
-
var
|
|
2095
|
+
var ListDiscoveredResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2047
2096
|
return [
|
|
2048
2097
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2049
2098
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2050
2099
|
];
|
|
2051
2100
|
}).s("AWSFMS_20180101", "ListDiscoveredResources", {}).n("FMSClient", "ListDiscoveredResourcesCommand").f(void 0, void 0).ser(se_ListDiscoveredResourcesCommand).de(de_ListDiscoveredResourcesCommand).build() {
|
|
2101
|
+
static {
|
|
2102
|
+
__name(this, "ListDiscoveredResourcesCommand");
|
|
2103
|
+
}
|
|
2052
2104
|
};
|
|
2053
|
-
__name(_ListDiscoveredResourcesCommand, "ListDiscoveredResourcesCommand");
|
|
2054
|
-
var ListDiscoveredResourcesCommand = _ListDiscoveredResourcesCommand;
|
|
2055
2105
|
|
|
2056
2106
|
// src/commands/ListMemberAccountsCommand.ts
|
|
2057
2107
|
|
|
2058
2108
|
|
|
2059
2109
|
|
|
2060
|
-
var
|
|
2110
|
+
var ListMemberAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2061
2111
|
return [
|
|
2062
2112
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2063
2113
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2064
2114
|
];
|
|
2065
2115
|
}).s("AWSFMS_20180101", "ListMemberAccounts", {}).n("FMSClient", "ListMemberAccountsCommand").f(void 0, void 0).ser(se_ListMemberAccountsCommand).de(de_ListMemberAccountsCommand).build() {
|
|
2116
|
+
static {
|
|
2117
|
+
__name(this, "ListMemberAccountsCommand");
|
|
2118
|
+
}
|
|
2066
2119
|
};
|
|
2067
|
-
__name(_ListMemberAccountsCommand, "ListMemberAccountsCommand");
|
|
2068
|
-
var ListMemberAccountsCommand = _ListMemberAccountsCommand;
|
|
2069
2120
|
|
|
2070
2121
|
// src/commands/ListPoliciesCommand.ts
|
|
2071
2122
|
|
|
2072
2123
|
|
|
2073
2124
|
|
|
2074
|
-
var
|
|
2125
|
+
var ListPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2075
2126
|
return [
|
|
2076
2127
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2077
2128
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2078
2129
|
];
|
|
2079
2130
|
}).s("AWSFMS_20180101", "ListPolicies", {}).n("FMSClient", "ListPoliciesCommand").f(void 0, void 0).ser(se_ListPoliciesCommand).de(de_ListPoliciesCommand).build() {
|
|
2131
|
+
static {
|
|
2132
|
+
__name(this, "ListPoliciesCommand");
|
|
2133
|
+
}
|
|
2080
2134
|
};
|
|
2081
|
-
__name(_ListPoliciesCommand, "ListPoliciesCommand");
|
|
2082
|
-
var ListPoliciesCommand = _ListPoliciesCommand;
|
|
2083
2135
|
|
|
2084
2136
|
// src/commands/ListProtocolsListsCommand.ts
|
|
2085
2137
|
|
|
2086
2138
|
|
|
2087
2139
|
|
|
2088
|
-
var
|
|
2140
|
+
var ListProtocolsListsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2089
2141
|
return [
|
|
2090
2142
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2091
2143
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2092
2144
|
];
|
|
2093
2145
|
}).s("AWSFMS_20180101", "ListProtocolsLists", {}).n("FMSClient", "ListProtocolsListsCommand").f(void 0, void 0).ser(se_ListProtocolsListsCommand).de(de_ListProtocolsListsCommand).build() {
|
|
2146
|
+
static {
|
|
2147
|
+
__name(this, "ListProtocolsListsCommand");
|
|
2148
|
+
}
|
|
2094
2149
|
};
|
|
2095
|
-
__name(_ListProtocolsListsCommand, "ListProtocolsListsCommand");
|
|
2096
|
-
var ListProtocolsListsCommand = _ListProtocolsListsCommand;
|
|
2097
2150
|
|
|
2098
2151
|
// src/commands/ListResourceSetResourcesCommand.ts
|
|
2099
2152
|
|
|
2100
2153
|
|
|
2101
2154
|
|
|
2102
|
-
var
|
|
2155
|
+
var ListResourceSetResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2103
2156
|
return [
|
|
2104
2157
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2105
2158
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2106
2159
|
];
|
|
2107
2160
|
}).s("AWSFMS_20180101", "ListResourceSetResources", {}).n("FMSClient", "ListResourceSetResourcesCommand").f(void 0, void 0).ser(se_ListResourceSetResourcesCommand).de(de_ListResourceSetResourcesCommand).build() {
|
|
2161
|
+
static {
|
|
2162
|
+
__name(this, "ListResourceSetResourcesCommand");
|
|
2163
|
+
}
|
|
2108
2164
|
};
|
|
2109
|
-
__name(_ListResourceSetResourcesCommand, "ListResourceSetResourcesCommand");
|
|
2110
|
-
var ListResourceSetResourcesCommand = _ListResourceSetResourcesCommand;
|
|
2111
2165
|
|
|
2112
2166
|
// src/commands/ListResourceSetsCommand.ts
|
|
2113
2167
|
|
|
2114
2168
|
|
|
2115
2169
|
|
|
2116
|
-
var
|
|
2170
|
+
var ListResourceSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2117
2171
|
return [
|
|
2118
2172
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2119
2173
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2120
2174
|
];
|
|
2121
2175
|
}).s("AWSFMS_20180101", "ListResourceSets", {}).n("FMSClient", "ListResourceSetsCommand").f(void 0, void 0).ser(se_ListResourceSetsCommand).de(de_ListResourceSetsCommand).build() {
|
|
2176
|
+
static {
|
|
2177
|
+
__name(this, "ListResourceSetsCommand");
|
|
2178
|
+
}
|
|
2122
2179
|
};
|
|
2123
|
-
__name(_ListResourceSetsCommand, "ListResourceSetsCommand");
|
|
2124
|
-
var ListResourceSetsCommand = _ListResourceSetsCommand;
|
|
2125
2180
|
|
|
2126
2181
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2127
2182
|
|
|
2128
2183
|
|
|
2129
2184
|
|
|
2130
|
-
var
|
|
2185
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2131
2186
|
return [
|
|
2132
2187
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2133
2188
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2134
2189
|
];
|
|
2135
2190
|
}).s("AWSFMS_20180101", "ListTagsForResource", {}).n("FMSClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2191
|
+
static {
|
|
2192
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2193
|
+
}
|
|
2136
2194
|
};
|
|
2137
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2138
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2139
2195
|
|
|
2140
2196
|
// src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts
|
|
2141
2197
|
|
|
2142
2198
|
|
|
2143
2199
|
|
|
2144
|
-
var
|
|
2200
|
+
var ListThirdPartyFirewallFirewallPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2145
2201
|
return [
|
|
2146
2202
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2147
2203
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2148
2204
|
];
|
|
2149
2205
|
}).s("AWSFMS_20180101", "ListThirdPartyFirewallFirewallPolicies", {}).n("FMSClient", "ListThirdPartyFirewallFirewallPoliciesCommand").f(void 0, void 0).ser(se_ListThirdPartyFirewallFirewallPoliciesCommand).de(de_ListThirdPartyFirewallFirewallPoliciesCommand).build() {
|
|
2206
|
+
static {
|
|
2207
|
+
__name(this, "ListThirdPartyFirewallFirewallPoliciesCommand");
|
|
2208
|
+
}
|
|
2150
2209
|
};
|
|
2151
|
-
__name(_ListThirdPartyFirewallFirewallPoliciesCommand, "ListThirdPartyFirewallFirewallPoliciesCommand");
|
|
2152
|
-
var ListThirdPartyFirewallFirewallPoliciesCommand = _ListThirdPartyFirewallFirewallPoliciesCommand;
|
|
2153
2210
|
|
|
2154
2211
|
// src/commands/PutAdminAccountCommand.ts
|
|
2155
2212
|
|
|
2156
2213
|
|
|
2157
2214
|
|
|
2158
|
-
var
|
|
2215
|
+
var PutAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2159
2216
|
return [
|
|
2160
2217
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2161
2218
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2162
2219
|
];
|
|
2163
2220
|
}).s("AWSFMS_20180101", "PutAdminAccount", {}).n("FMSClient", "PutAdminAccountCommand").f(void 0, void 0).ser(se_PutAdminAccountCommand).de(de_PutAdminAccountCommand).build() {
|
|
2221
|
+
static {
|
|
2222
|
+
__name(this, "PutAdminAccountCommand");
|
|
2223
|
+
}
|
|
2164
2224
|
};
|
|
2165
|
-
__name(_PutAdminAccountCommand, "PutAdminAccountCommand");
|
|
2166
|
-
var PutAdminAccountCommand = _PutAdminAccountCommand;
|
|
2167
2225
|
|
|
2168
2226
|
// src/commands/PutAppsListCommand.ts
|
|
2169
2227
|
|
|
2170
2228
|
|
|
2171
2229
|
|
|
2172
|
-
var
|
|
2230
|
+
var PutAppsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2231
|
return [
|
|
2174
2232
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2233
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2176
2234
|
];
|
|
2177
2235
|
}).s("AWSFMS_20180101", "PutAppsList", {}).n("FMSClient", "PutAppsListCommand").f(void 0, void 0).ser(se_PutAppsListCommand).de(de_PutAppsListCommand).build() {
|
|
2236
|
+
static {
|
|
2237
|
+
__name(this, "PutAppsListCommand");
|
|
2238
|
+
}
|
|
2178
2239
|
};
|
|
2179
|
-
__name(_PutAppsListCommand, "PutAppsListCommand");
|
|
2180
|
-
var PutAppsListCommand = _PutAppsListCommand;
|
|
2181
2240
|
|
|
2182
2241
|
// src/commands/PutNotificationChannelCommand.ts
|
|
2183
2242
|
|
|
2184
2243
|
|
|
2185
2244
|
|
|
2186
|
-
var
|
|
2245
|
+
var PutNotificationChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2187
2246
|
return [
|
|
2188
2247
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2189
2248
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2190
2249
|
];
|
|
2191
2250
|
}).s("AWSFMS_20180101", "PutNotificationChannel", {}).n("FMSClient", "PutNotificationChannelCommand").f(void 0, void 0).ser(se_PutNotificationChannelCommand).de(de_PutNotificationChannelCommand).build() {
|
|
2251
|
+
static {
|
|
2252
|
+
__name(this, "PutNotificationChannelCommand");
|
|
2253
|
+
}
|
|
2192
2254
|
};
|
|
2193
|
-
__name(_PutNotificationChannelCommand, "PutNotificationChannelCommand");
|
|
2194
|
-
var PutNotificationChannelCommand = _PutNotificationChannelCommand;
|
|
2195
2255
|
|
|
2196
2256
|
// src/commands/PutPolicyCommand.ts
|
|
2197
2257
|
|
|
2198
2258
|
|
|
2199
2259
|
|
|
2200
|
-
var
|
|
2260
|
+
var PutPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2201
2261
|
return [
|
|
2202
2262
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2203
2263
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2204
2264
|
];
|
|
2205
2265
|
}).s("AWSFMS_20180101", "PutPolicy", {}).n("FMSClient", "PutPolicyCommand").f(void 0, void 0).ser(se_PutPolicyCommand).de(de_PutPolicyCommand).build() {
|
|
2266
|
+
static {
|
|
2267
|
+
__name(this, "PutPolicyCommand");
|
|
2268
|
+
}
|
|
2206
2269
|
};
|
|
2207
|
-
__name(_PutPolicyCommand, "PutPolicyCommand");
|
|
2208
|
-
var PutPolicyCommand = _PutPolicyCommand;
|
|
2209
2270
|
|
|
2210
2271
|
// src/commands/PutProtocolsListCommand.ts
|
|
2211
2272
|
|
|
2212
2273
|
|
|
2213
2274
|
|
|
2214
|
-
var
|
|
2275
|
+
var PutProtocolsListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2215
2276
|
return [
|
|
2216
2277
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2217
2278
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2218
2279
|
];
|
|
2219
2280
|
}).s("AWSFMS_20180101", "PutProtocolsList", {}).n("FMSClient", "PutProtocolsListCommand").f(void 0, void 0).ser(se_PutProtocolsListCommand).de(de_PutProtocolsListCommand).build() {
|
|
2281
|
+
static {
|
|
2282
|
+
__name(this, "PutProtocolsListCommand");
|
|
2283
|
+
}
|
|
2220
2284
|
};
|
|
2221
|
-
__name(_PutProtocolsListCommand, "PutProtocolsListCommand");
|
|
2222
|
-
var PutProtocolsListCommand = _PutProtocolsListCommand;
|
|
2223
2285
|
|
|
2224
2286
|
// src/commands/PutResourceSetCommand.ts
|
|
2225
2287
|
|
|
2226
2288
|
|
|
2227
2289
|
|
|
2228
|
-
var
|
|
2290
|
+
var PutResourceSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2291
|
return [
|
|
2230
2292
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2293
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2232
2294
|
];
|
|
2233
2295
|
}).s("AWSFMS_20180101", "PutResourceSet", {}).n("FMSClient", "PutResourceSetCommand").f(void 0, void 0).ser(se_PutResourceSetCommand).de(de_PutResourceSetCommand).build() {
|
|
2296
|
+
static {
|
|
2297
|
+
__name(this, "PutResourceSetCommand");
|
|
2298
|
+
}
|
|
2234
2299
|
};
|
|
2235
|
-
__name(_PutResourceSetCommand, "PutResourceSetCommand");
|
|
2236
|
-
var PutResourceSetCommand = _PutResourceSetCommand;
|
|
2237
2300
|
|
|
2238
2301
|
// src/commands/TagResourceCommand.ts
|
|
2239
2302
|
|
|
2240
2303
|
|
|
2241
2304
|
|
|
2242
|
-
var
|
|
2305
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2243
2306
|
return [
|
|
2244
2307
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2245
2308
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2309
|
];
|
|
2247
2310
|
}).s("AWSFMS_20180101", "TagResource", {}).n("FMSClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2311
|
+
static {
|
|
2312
|
+
__name(this, "TagResourceCommand");
|
|
2313
|
+
}
|
|
2248
2314
|
};
|
|
2249
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2250
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2251
2315
|
|
|
2252
2316
|
// src/commands/UntagResourceCommand.ts
|
|
2253
2317
|
|
|
2254
2318
|
|
|
2255
2319
|
|
|
2256
|
-
var
|
|
2320
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2257
2321
|
return [
|
|
2258
2322
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2259
2323
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2260
2324
|
];
|
|
2261
2325
|
}).s("AWSFMS_20180101", "UntagResource", {}).n("FMSClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2326
|
+
static {
|
|
2327
|
+
__name(this, "UntagResourceCommand");
|
|
2328
|
+
}
|
|
2262
2329
|
};
|
|
2263
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2264
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2265
2330
|
|
|
2266
2331
|
// src/FMS.ts
|
|
2267
2332
|
var commands = {
|
|
@@ -2308,10 +2373,11 @@ var commands = {
|
|
|
2308
2373
|
TagResourceCommand,
|
|
2309
2374
|
UntagResourceCommand
|
|
2310
2375
|
};
|
|
2311
|
-
var
|
|
2376
|
+
var FMS = class extends FMSClient {
|
|
2377
|
+
static {
|
|
2378
|
+
__name(this, "FMS");
|
|
2379
|
+
}
|
|
2312
2380
|
};
|
|
2313
|
-
__name(_FMS, "FMS");
|
|
2314
|
-
var FMS = _FMS;
|
|
2315
2381
|
(0, import_smithy_client.createAggregatedClient)(commands, FMS);
|
|
2316
2382
|
|
|
2317
2383
|
// src/pagination/ListAdminAccountsForOrganizationPaginator.ts
|
|
@@ -2418,6 +2484,7 @@ var paginateListThirdPartyFirewallFirewallPolicies = (0, import_core.createPagin
|
|
|
2418
2484
|
ViolationReason,
|
|
2419
2485
|
CustomerPolicyScopeIdType,
|
|
2420
2486
|
CustomerPolicyStatus,
|
|
2487
|
+
ResourceTagLogicalOperator,
|
|
2421
2488
|
NetworkAclRuleAction,
|
|
2422
2489
|
FirewallDeploymentModel,
|
|
2423
2490
|
InvalidTypeException,
|