@aws-sdk/client-fms 3.202.0 → 3.206.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/FMS.js +120 -0
- package/dist-cjs/commands/BatchAssociateResourceCommand.js +46 -0
- package/dist-cjs/commands/BatchDisassociateResourceCommand.js +46 -0
- package/dist-cjs/commands/DeleteResourceSetCommand.js +46 -0
- package/dist-cjs/commands/GetResourceSetCommand.js +46 -0
- package/dist-cjs/commands/ListDiscoveredResourcesCommand.js +46 -0
- package/dist-cjs/commands/ListResourceSetResourcesCommand.js +46 -0
- package/dist-cjs/commands/ListResourceSetsCommand.js +46 -0
- package/dist-cjs/commands/PutResourceSetCommand.js +46 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +94 -3
- package/dist-cjs/protocols/Aws_json1_1.js +653 -2
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/FMS.js +120 -0
- package/dist-es/commands/BatchAssociateResourceCommand.js +42 -0
- package/dist-es/commands/BatchDisassociateResourceCommand.js +42 -0
- package/dist-es/commands/DeleteResourceSetCommand.js +42 -0
- package/dist-es/commands/GetResourceSetCommand.js +42 -0
- package/dist-es/commands/ListDiscoveredResourcesCommand.js +42 -0
- package/dist-es/commands/ListResourceSetResourcesCommand.js +42 -0
- package/dist-es/commands/ListResourceSetsCommand.js +42 -0
- package/dist-es/commands/PutResourceSetCommand.js +42 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +70 -0
- package/dist-es/protocols/Aws_json1_1.js +635 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/FMS.d.ts +57 -0
- package/dist-types/FMSClient.d.ts +10 -2
- package/dist-types/commands/BatchAssociateResourceCommand.d.ts +37 -0
- package/dist-types/commands/BatchDisassociateResourceCommand.d.ts +37 -0
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +37 -0
- package/dist-types/commands/GetResourceSetCommand.d.ts +37 -0
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +37 -0
- package/dist-types/commands/ListResourceSetResourcesCommand.d.ts +37 -0
- package/dist-types/commands/ListResourceSetsCommand.d.ts +37 -0
- package/dist-types/commands/PutResourceSetCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +375 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +24 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/FMS.d.ts +136 -0
- package/dist-types/ts3.4/FMSClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/BatchAssociateResourceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/BatchDisassociateResourceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteResourceSetCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/GetResourceSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListDiscoveredResourcesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListResourceSetResourcesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListResourceSetsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/PutResourceSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +5 -4
- package/CHANGELOG.md +0 -4333
|
@@ -84,6 +84,15 @@ export var ThirdPartyFirewallAssociationStatus;
|
|
|
84
84
|
ThirdPartyFirewallAssociationStatus["ONBOARDING"] = "ONBOARDING";
|
|
85
85
|
ThirdPartyFirewallAssociationStatus["ONBOARD_COMPLETE"] = "ONBOARD_COMPLETE";
|
|
86
86
|
})(ThirdPartyFirewallAssociationStatus || (ThirdPartyFirewallAssociationStatus = {}));
|
|
87
|
+
export var FailedItemReason;
|
|
88
|
+
(function (FailedItemReason) {
|
|
89
|
+
FailedItemReason["NotValidAccountId"] = "NOT_VALID_ACCOUNT_ID";
|
|
90
|
+
FailedItemReason["NotValidArn"] = "NOT_VALID_ARN";
|
|
91
|
+
FailedItemReason["NotValidPartition"] = "NOT_VALID_PARTITION";
|
|
92
|
+
FailedItemReason["NotValidRegion"] = "NOT_VALID_REGION";
|
|
93
|
+
FailedItemReason["NotValidResourceType"] = "NOT_VALID_RESOURCE_TYPE";
|
|
94
|
+
FailedItemReason["NotValidService"] = "NOT_VALID_SERVICE";
|
|
95
|
+
})(FailedItemReason || (FailedItemReason = {}));
|
|
87
96
|
export var DependentServiceName;
|
|
88
97
|
(function (DependentServiceName) {
|
|
89
98
|
DependentServiceName["AWSConfig"] = "AWSCONFIG";
|
|
@@ -135,6 +144,7 @@ export var FirewallDeploymentModel;
|
|
|
135
144
|
export var SecurityServiceType;
|
|
136
145
|
(function (SecurityServiceType) {
|
|
137
146
|
SecurityServiceType["DNS_FIREWALL"] = "DNS_FIREWALL";
|
|
147
|
+
SecurityServiceType["IMPORT_NETWORK_FIREWALL"] = "IMPORT_NETWORK_FIREWALL";
|
|
138
148
|
SecurityServiceType["NETWORK_FIREWALL"] = "NETWORK_FIREWALL";
|
|
139
149
|
SecurityServiceType["SECURITY_GROUPS_COMMON"] = "SECURITY_GROUPS_COMMON";
|
|
140
150
|
SecurityServiceType["SECURITY_GROUPS_CONTENT_AUDIT"] = "SECURITY_GROUPS_CONTENT_AUDIT";
|
|
@@ -228,6 +238,21 @@ export const AwsEc2NetworkInterfaceViolationFilterSensitiveLog = (obj) => ({
|
|
|
228
238
|
export const AwsEc2InstanceViolationFilterSensitiveLog = (obj) => ({
|
|
229
239
|
...obj,
|
|
230
240
|
});
|
|
241
|
+
export const BatchAssociateResourceRequestFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
});
|
|
244
|
+
export const FailedItemFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
export const BatchAssociateResourceResponseFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
export const BatchDisassociateResourceRequestFilterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
});
|
|
253
|
+
export const BatchDisassociateResourceResponseFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
});
|
|
231
256
|
export const DeleteAppsListRequestFilterSensitiveLog = (obj) => ({
|
|
232
257
|
...obj,
|
|
233
258
|
});
|
|
@@ -240,6 +265,9 @@ export const DeletePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
|
240
265
|
export const DeleteProtocolsListRequestFilterSensitiveLog = (obj) => ({
|
|
241
266
|
...obj,
|
|
242
267
|
});
|
|
268
|
+
export const DeleteResourceSetRequestFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
243
271
|
export const DisassociateAdminAccountRequestFilterSensitiveLog = (obj) => ({
|
|
244
272
|
...obj,
|
|
245
273
|
});
|
|
@@ -318,6 +346,15 @@ export const ProtocolsListDataFilterSensitiveLog = (obj) => ({
|
|
|
318
346
|
export const GetProtocolsListResponseFilterSensitiveLog = (obj) => ({
|
|
319
347
|
...obj,
|
|
320
348
|
});
|
|
349
|
+
export const GetResourceSetRequestFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const ResourceSetFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const GetResourceSetResponseFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
321
358
|
export const GetThirdPartyFirewallAssociationStatusRequestFilterSensitiveLog = (obj) => ({
|
|
322
359
|
...obj,
|
|
323
360
|
});
|
|
@@ -483,6 +520,15 @@ export const PolicyComplianceStatusFilterSensitiveLog = (obj) => ({
|
|
|
483
520
|
export const ListComplianceStatusResponseFilterSensitiveLog = (obj) => ({
|
|
484
521
|
...obj,
|
|
485
522
|
});
|
|
523
|
+
export const ListDiscoveredResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
524
|
+
...obj,
|
|
525
|
+
});
|
|
526
|
+
export const DiscoveredResourceFilterSensitiveLog = (obj) => ({
|
|
527
|
+
...obj,
|
|
528
|
+
});
|
|
529
|
+
export const ListDiscoveredResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
530
|
+
...obj,
|
|
531
|
+
});
|
|
486
532
|
export const ListMemberAccountsRequestFilterSensitiveLog = (obj) => ({
|
|
487
533
|
...obj,
|
|
488
534
|
});
|
|
@@ -507,6 +553,24 @@ export const ProtocolsListDataSummaryFilterSensitiveLog = (obj) => ({
|
|
|
507
553
|
export const ListProtocolsListsResponseFilterSensitiveLog = (obj) => ({
|
|
508
554
|
...obj,
|
|
509
555
|
});
|
|
556
|
+
export const ListResourceSetResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
557
|
+
...obj,
|
|
558
|
+
});
|
|
559
|
+
export const ResourceFilterSensitiveLog = (obj) => ({
|
|
560
|
+
...obj,
|
|
561
|
+
});
|
|
562
|
+
export const ListResourceSetResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
563
|
+
...obj,
|
|
564
|
+
});
|
|
565
|
+
export const ListResourceSetsRequestFilterSensitiveLog = (obj) => ({
|
|
566
|
+
...obj,
|
|
567
|
+
});
|
|
568
|
+
export const ResourceSetSummaryFilterSensitiveLog = (obj) => ({
|
|
569
|
+
...obj,
|
|
570
|
+
});
|
|
571
|
+
export const ListResourceSetsResponseFilterSensitiveLog = (obj) => ({
|
|
572
|
+
...obj,
|
|
573
|
+
});
|
|
510
574
|
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
511
575
|
...obj,
|
|
512
576
|
});
|
|
@@ -543,6 +607,12 @@ export const PutProtocolsListRequestFilterSensitiveLog = (obj) => ({
|
|
|
543
607
|
export const PutProtocolsListResponseFilterSensitiveLog = (obj) => ({
|
|
544
608
|
...obj,
|
|
545
609
|
});
|
|
610
|
+
export const PutResourceSetRequestFilterSensitiveLog = (obj) => ({
|
|
611
|
+
...obj,
|
|
612
|
+
});
|
|
613
|
+
export const PutResourceSetResponseFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
});
|
|
546
616
|
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
547
617
|
...obj,
|
|
548
618
|
});
|