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