@aws-sdk/client-fms 3.204.0 → 3.208.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-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-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/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/package.json +35 -35
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export * from "./AssociateAdminAccountCommand";
|
|
2
2
|
export * from "./AssociateThirdPartyFirewallCommand";
|
|
3
|
+
export * from "./BatchAssociateResourceCommand";
|
|
4
|
+
export * from "./BatchDisassociateResourceCommand";
|
|
3
5
|
export * from "./DeleteAppsListCommand";
|
|
4
6
|
export * from "./DeleteNotificationChannelCommand";
|
|
5
7
|
export * from "./DeletePolicyCommand";
|
|
6
8
|
export * from "./DeleteProtocolsListCommand";
|
|
9
|
+
export * from "./DeleteResourceSetCommand";
|
|
7
10
|
export * from "./DisassociateAdminAccountCommand";
|
|
8
11
|
export * from "./DisassociateThirdPartyFirewallCommand";
|
|
9
12
|
export * from "./GetAdminAccountCommand";
|
|
@@ -13,18 +16,23 @@ export * from "./GetNotificationChannelCommand";
|
|
|
13
16
|
export * from "./GetPolicyCommand";
|
|
14
17
|
export * from "./GetProtectionStatusCommand";
|
|
15
18
|
export * from "./GetProtocolsListCommand";
|
|
19
|
+
export * from "./GetResourceSetCommand";
|
|
16
20
|
export * from "./GetThirdPartyFirewallAssociationStatusCommand";
|
|
17
21
|
export * from "./GetViolationDetailsCommand";
|
|
18
22
|
export * from "./ListAppsListsCommand";
|
|
19
23
|
export * from "./ListComplianceStatusCommand";
|
|
24
|
+
export * from "./ListDiscoveredResourcesCommand";
|
|
20
25
|
export * from "./ListMemberAccountsCommand";
|
|
21
26
|
export * from "./ListPoliciesCommand";
|
|
22
27
|
export * from "./ListProtocolsListsCommand";
|
|
28
|
+
export * from "./ListResourceSetResourcesCommand";
|
|
29
|
+
export * from "./ListResourceSetsCommand";
|
|
23
30
|
export * from "./ListTagsForResourceCommand";
|
|
24
31
|
export * from "./ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
25
32
|
export * from "./PutAppsListCommand";
|
|
26
33
|
export * from "./PutNotificationChannelCommand";
|
|
27
34
|
export * from "./PutPolicyCommand";
|
|
28
35
|
export * from "./PutProtocolsListCommand";
|
|
36
|
+
export * from "./PutResourceSetCommand";
|
|
29
37
|
export * from "./TagResourceCommand";
|
|
30
38
|
export * from "./UntagResourceCommand";
|
|
@@ -98,6 +98,34 @@ export interface AwsEc2InstanceViolation {
|
|
|
98
98
|
ViolationTarget?: string;
|
|
99
99
|
AwsEc2NetworkInterfaceViolations?: AwsEc2NetworkInterfaceViolation[];
|
|
100
100
|
}
|
|
101
|
+
export interface BatchAssociateResourceRequest {
|
|
102
|
+
ResourceSetIdentifier: string | undefined;
|
|
103
|
+
Items: string[] | undefined;
|
|
104
|
+
}
|
|
105
|
+
export declare enum FailedItemReason {
|
|
106
|
+
NotValidAccountId = "NOT_VALID_ACCOUNT_ID",
|
|
107
|
+
NotValidArn = "NOT_VALID_ARN",
|
|
108
|
+
NotValidPartition = "NOT_VALID_PARTITION",
|
|
109
|
+
NotValidRegion = "NOT_VALID_REGION",
|
|
110
|
+
NotValidResourceType = "NOT_VALID_RESOURCE_TYPE",
|
|
111
|
+
NotValidService = "NOT_VALID_SERVICE",
|
|
112
|
+
}
|
|
113
|
+
export interface FailedItem {
|
|
114
|
+
URI?: string;
|
|
115
|
+
Reason?: FailedItemReason | string;
|
|
116
|
+
}
|
|
117
|
+
export interface BatchAssociateResourceResponse {
|
|
118
|
+
ResourceSetIdentifier: string | undefined;
|
|
119
|
+
FailedItems: FailedItem[] | undefined;
|
|
120
|
+
}
|
|
121
|
+
export interface BatchDisassociateResourceRequest {
|
|
122
|
+
ResourceSetIdentifier: string | undefined;
|
|
123
|
+
Items: string[] | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface BatchDisassociateResourceResponse {
|
|
126
|
+
ResourceSetIdentifier: string | undefined;
|
|
127
|
+
FailedItems: FailedItem[] | undefined;
|
|
128
|
+
}
|
|
101
129
|
export interface DeleteAppsListRequest {
|
|
102
130
|
ListId: string | undefined;
|
|
103
131
|
}
|
|
@@ -109,6 +137,9 @@ export interface DeletePolicyRequest {
|
|
|
109
137
|
export interface DeleteProtocolsListRequest {
|
|
110
138
|
ListId: string | undefined;
|
|
111
139
|
}
|
|
140
|
+
export interface DeleteResourceSetRequest {
|
|
141
|
+
Identifier: string | undefined;
|
|
142
|
+
}
|
|
112
143
|
export interface DisassociateAdminAccountRequest {}
|
|
113
144
|
export interface DisassociateThirdPartyFirewallRequest {
|
|
114
145
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
@@ -219,6 +250,7 @@ export interface PolicyOption {
|
|
|
219
250
|
}
|
|
220
251
|
export declare enum SecurityServiceType {
|
|
221
252
|
DNS_FIREWALL = "DNS_FIREWALL",
|
|
253
|
+
IMPORT_NETWORK_FIREWALL = "IMPORT_NETWORK_FIREWALL",
|
|
222
254
|
NETWORK_FIREWALL = "NETWORK_FIREWALL",
|
|
223
255
|
SECURITY_GROUPS_COMMON = "SECURITY_GROUPS_COMMON",
|
|
224
256
|
SECURITY_GROUPS_CONTENT_AUDIT = "SECURITY_GROUPS_CONTENT_AUDIT",
|
|
@@ -246,6 +278,8 @@ export interface Policy {
|
|
|
246
278
|
DeleteUnusedFMManagedResources?: boolean;
|
|
247
279
|
IncludeMap?: Record<string, string[]>;
|
|
248
280
|
ExcludeMap?: Record<string, string[]>;
|
|
281
|
+
ResourceSetIds?: string[];
|
|
282
|
+
PolicyDescription?: string;
|
|
249
283
|
}
|
|
250
284
|
export interface GetPolicyResponse {
|
|
251
285
|
Policy?: Policy;
|
|
@@ -290,6 +324,21 @@ export interface GetProtocolsListResponse {
|
|
|
290
324
|
ProtocolsList?: ProtocolsListData;
|
|
291
325
|
ProtocolsListArn?: string;
|
|
292
326
|
}
|
|
327
|
+
export interface GetResourceSetRequest {
|
|
328
|
+
Identifier: string | undefined;
|
|
329
|
+
}
|
|
330
|
+
export interface ResourceSet {
|
|
331
|
+
Id?: string;
|
|
332
|
+
Name: string | undefined;
|
|
333
|
+
Description?: string;
|
|
334
|
+
UpdateToken?: string;
|
|
335
|
+
ResourceTypeList: string[] | undefined;
|
|
336
|
+
LastUpdateTime?: Date;
|
|
337
|
+
}
|
|
338
|
+
export interface GetResourceSetResponse {
|
|
339
|
+
ResourceSet: ResourceSet | undefined;
|
|
340
|
+
ResourceSetArn: string | undefined;
|
|
341
|
+
}
|
|
293
342
|
export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
294
343
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
295
344
|
}
|
|
@@ -696,6 +745,22 @@ export interface ListComplianceStatusResponse {
|
|
|
696
745
|
PolicyComplianceStatusList?: PolicyComplianceStatus[];
|
|
697
746
|
NextToken?: string;
|
|
698
747
|
}
|
|
748
|
+
export interface ListDiscoveredResourcesRequest {
|
|
749
|
+
MemberAccountIds: string[] | undefined;
|
|
750
|
+
ResourceType: string | undefined;
|
|
751
|
+
MaxResults?: number;
|
|
752
|
+
NextToken?: string;
|
|
753
|
+
}
|
|
754
|
+
export interface DiscoveredResource {
|
|
755
|
+
URI?: string;
|
|
756
|
+
AccountId?: string;
|
|
757
|
+
Type?: string;
|
|
758
|
+
Name?: string;
|
|
759
|
+
}
|
|
760
|
+
export interface ListDiscoveredResourcesResponse {
|
|
761
|
+
Items?: DiscoveredResource[];
|
|
762
|
+
NextToken?: string;
|
|
763
|
+
}
|
|
699
764
|
export interface ListMemberAccountsRequest {
|
|
700
765
|
NextToken?: string;
|
|
701
766
|
MaxResults?: number;
|
|
@@ -736,6 +801,33 @@ export interface ListProtocolsListsResponse {
|
|
|
736
801
|
ProtocolsLists?: ProtocolsListDataSummary[];
|
|
737
802
|
NextToken?: string;
|
|
738
803
|
}
|
|
804
|
+
export interface ListResourceSetResourcesRequest {
|
|
805
|
+
Identifier: string | undefined;
|
|
806
|
+
MaxResults?: number;
|
|
807
|
+
NextToken?: string;
|
|
808
|
+
}
|
|
809
|
+
export interface Resource {
|
|
810
|
+
URI: string | undefined;
|
|
811
|
+
AccountId?: string;
|
|
812
|
+
}
|
|
813
|
+
export interface ListResourceSetResourcesResponse {
|
|
814
|
+
Items: Resource[] | undefined;
|
|
815
|
+
NextToken?: string;
|
|
816
|
+
}
|
|
817
|
+
export interface ListResourceSetsRequest {
|
|
818
|
+
NextToken?: string;
|
|
819
|
+
MaxResults?: number;
|
|
820
|
+
}
|
|
821
|
+
export interface ResourceSetSummary {
|
|
822
|
+
Id?: string;
|
|
823
|
+
Name?: string;
|
|
824
|
+
Description?: string;
|
|
825
|
+
LastUpdateTime?: Date;
|
|
826
|
+
}
|
|
827
|
+
export interface ListResourceSetsResponse {
|
|
828
|
+
ResourceSets?: ResourceSetSummary[];
|
|
829
|
+
NextToken?: string;
|
|
830
|
+
}
|
|
739
831
|
export interface ListTagsForResourceRequest {
|
|
740
832
|
ResourceArn: string | undefined;
|
|
741
833
|
}
|
|
@@ -783,6 +875,14 @@ export interface PutProtocolsListResponse {
|
|
|
783
875
|
ProtocolsList?: ProtocolsListData;
|
|
784
876
|
ProtocolsListArn?: string;
|
|
785
877
|
}
|
|
878
|
+
export interface PutResourceSetRequest {
|
|
879
|
+
ResourceSet: ResourceSet | undefined;
|
|
880
|
+
TagList?: Tag[];
|
|
881
|
+
}
|
|
882
|
+
export interface PutResourceSetResponse {
|
|
883
|
+
ResourceSet: ResourceSet | undefined;
|
|
884
|
+
ResourceSetArn: string | undefined;
|
|
885
|
+
}
|
|
786
886
|
export interface TagResourceRequest {
|
|
787
887
|
ResourceArn: string | undefined;
|
|
788
888
|
TagList: Tag[] | undefined;
|
|
@@ -814,6 +914,19 @@ export declare const AwsEc2NetworkInterfaceViolationFilterSensitiveLog: (
|
|
|
814
914
|
export declare const AwsEc2InstanceViolationFilterSensitiveLog: (
|
|
815
915
|
obj: AwsEc2InstanceViolation
|
|
816
916
|
) => any;
|
|
917
|
+
export declare const BatchAssociateResourceRequestFilterSensitiveLog: (
|
|
918
|
+
obj: BatchAssociateResourceRequest
|
|
919
|
+
) => any;
|
|
920
|
+
export declare const FailedItemFilterSensitiveLog: (obj: FailedItem) => any;
|
|
921
|
+
export declare const BatchAssociateResourceResponseFilterSensitiveLog: (
|
|
922
|
+
obj: BatchAssociateResourceResponse
|
|
923
|
+
) => any;
|
|
924
|
+
export declare const BatchDisassociateResourceRequestFilterSensitiveLog: (
|
|
925
|
+
obj: BatchDisassociateResourceRequest
|
|
926
|
+
) => any;
|
|
927
|
+
export declare const BatchDisassociateResourceResponseFilterSensitiveLog: (
|
|
928
|
+
obj: BatchDisassociateResourceResponse
|
|
929
|
+
) => any;
|
|
817
930
|
export declare const DeleteAppsListRequestFilterSensitiveLog: (
|
|
818
931
|
obj: DeleteAppsListRequest
|
|
819
932
|
) => any;
|
|
@@ -826,6 +939,9 @@ export declare const DeletePolicyRequestFilterSensitiveLog: (
|
|
|
826
939
|
export declare const DeleteProtocolsListRequestFilterSensitiveLog: (
|
|
827
940
|
obj: DeleteProtocolsListRequest
|
|
828
941
|
) => any;
|
|
942
|
+
export declare const DeleteResourceSetRequestFilterSensitiveLog: (
|
|
943
|
+
obj: DeleteResourceSetRequest
|
|
944
|
+
) => any;
|
|
829
945
|
export declare const DisassociateAdminAccountRequestFilterSensitiveLog: (
|
|
830
946
|
obj: DisassociateAdminAccountRequest
|
|
831
947
|
) => any;
|
|
@@ -898,6 +1014,13 @@ export declare const ProtocolsListDataFilterSensitiveLog: (
|
|
|
898
1014
|
export declare const GetProtocolsListResponseFilterSensitiveLog: (
|
|
899
1015
|
obj: GetProtocolsListResponse
|
|
900
1016
|
) => any;
|
|
1017
|
+
export declare const GetResourceSetRequestFilterSensitiveLog: (
|
|
1018
|
+
obj: GetResourceSetRequest
|
|
1019
|
+
) => any;
|
|
1020
|
+
export declare const ResourceSetFilterSensitiveLog: (obj: ResourceSet) => any;
|
|
1021
|
+
export declare const GetResourceSetResponseFilterSensitiveLog: (
|
|
1022
|
+
obj: GetResourceSetResponse
|
|
1023
|
+
) => any;
|
|
901
1024
|
export declare const GetThirdPartyFirewallAssociationStatusRequestFilterSensitiveLog: (
|
|
902
1025
|
obj: GetThirdPartyFirewallAssociationStatusRequest
|
|
903
1026
|
) => any;
|
|
@@ -1057,6 +1180,15 @@ export declare const PolicyComplianceStatusFilterSensitiveLog: (
|
|
|
1057
1180
|
export declare const ListComplianceStatusResponseFilterSensitiveLog: (
|
|
1058
1181
|
obj: ListComplianceStatusResponse
|
|
1059
1182
|
) => any;
|
|
1183
|
+
export declare const ListDiscoveredResourcesRequestFilterSensitiveLog: (
|
|
1184
|
+
obj: ListDiscoveredResourcesRequest
|
|
1185
|
+
) => any;
|
|
1186
|
+
export declare const DiscoveredResourceFilterSensitiveLog: (
|
|
1187
|
+
obj: DiscoveredResource
|
|
1188
|
+
) => any;
|
|
1189
|
+
export declare const ListDiscoveredResourcesResponseFilterSensitiveLog: (
|
|
1190
|
+
obj: ListDiscoveredResourcesResponse
|
|
1191
|
+
) => any;
|
|
1060
1192
|
export declare const ListMemberAccountsRequestFilterSensitiveLog: (
|
|
1061
1193
|
obj: ListMemberAccountsRequest
|
|
1062
1194
|
) => any;
|
|
@@ -1081,6 +1213,22 @@ export declare const ProtocolsListDataSummaryFilterSensitiveLog: (
|
|
|
1081
1213
|
export declare const ListProtocolsListsResponseFilterSensitiveLog: (
|
|
1082
1214
|
obj: ListProtocolsListsResponse
|
|
1083
1215
|
) => any;
|
|
1216
|
+
export declare const ListResourceSetResourcesRequestFilterSensitiveLog: (
|
|
1217
|
+
obj: ListResourceSetResourcesRequest
|
|
1218
|
+
) => any;
|
|
1219
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1220
|
+
export declare const ListResourceSetResourcesResponseFilterSensitiveLog: (
|
|
1221
|
+
obj: ListResourceSetResourcesResponse
|
|
1222
|
+
) => any;
|
|
1223
|
+
export declare const ListResourceSetsRequestFilterSensitiveLog: (
|
|
1224
|
+
obj: ListResourceSetsRequest
|
|
1225
|
+
) => any;
|
|
1226
|
+
export declare const ResourceSetSummaryFilterSensitiveLog: (
|
|
1227
|
+
obj: ResourceSetSummary
|
|
1228
|
+
) => any;
|
|
1229
|
+
export declare const ListResourceSetsResponseFilterSensitiveLog: (
|
|
1230
|
+
obj: ListResourceSetsResponse
|
|
1231
|
+
) => any;
|
|
1084
1232
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1085
1233
|
obj: ListTagsForResourceRequest
|
|
1086
1234
|
) => any;
|
|
@@ -1117,6 +1265,12 @@ export declare const PutProtocolsListRequestFilterSensitiveLog: (
|
|
|
1117
1265
|
export declare const PutProtocolsListResponseFilterSensitiveLog: (
|
|
1118
1266
|
obj: PutProtocolsListResponse
|
|
1119
1267
|
) => any;
|
|
1268
|
+
export declare const PutResourceSetRequestFilterSensitiveLog: (
|
|
1269
|
+
obj: PutResourceSetRequest
|
|
1270
|
+
) => any;
|
|
1271
|
+
export declare const PutResourceSetResponseFilterSensitiveLog: (
|
|
1272
|
+
obj: PutResourceSetResponse
|
|
1273
|
+
) => any;
|
|
1120
1274
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1121
1275
|
obj: TagResourceRequest
|
|
1122
1276
|
) => any;
|
|
@@ -11,6 +11,14 @@ import {
|
|
|
11
11
|
AssociateThirdPartyFirewallCommandInput,
|
|
12
12
|
AssociateThirdPartyFirewallCommandOutput,
|
|
13
13
|
} from "../commands/AssociateThirdPartyFirewallCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchAssociateResourceCommandInput,
|
|
16
|
+
BatchAssociateResourceCommandOutput,
|
|
17
|
+
} from "../commands/BatchAssociateResourceCommand";
|
|
18
|
+
import {
|
|
19
|
+
BatchDisassociateResourceCommandInput,
|
|
20
|
+
BatchDisassociateResourceCommandOutput,
|
|
21
|
+
} from "../commands/BatchDisassociateResourceCommand";
|
|
14
22
|
import {
|
|
15
23
|
DeleteAppsListCommandInput,
|
|
16
24
|
DeleteAppsListCommandOutput,
|
|
@@ -27,6 +35,10 @@ import {
|
|
|
27
35
|
DeleteProtocolsListCommandInput,
|
|
28
36
|
DeleteProtocolsListCommandOutput,
|
|
29
37
|
} from "../commands/DeleteProtocolsListCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteResourceSetCommandInput,
|
|
40
|
+
DeleteResourceSetCommandOutput,
|
|
41
|
+
} from "../commands/DeleteResourceSetCommand";
|
|
30
42
|
import {
|
|
31
43
|
DisassociateAdminAccountCommandInput,
|
|
32
44
|
DisassociateAdminAccountCommandOutput,
|
|
@@ -63,6 +75,10 @@ import {
|
|
|
63
75
|
GetProtocolsListCommandInput,
|
|
64
76
|
GetProtocolsListCommandOutput,
|
|
65
77
|
} from "../commands/GetProtocolsListCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetResourceSetCommandInput,
|
|
80
|
+
GetResourceSetCommandOutput,
|
|
81
|
+
} from "../commands/GetResourceSetCommand";
|
|
66
82
|
import {
|
|
67
83
|
GetThirdPartyFirewallAssociationStatusCommandInput,
|
|
68
84
|
GetThirdPartyFirewallAssociationStatusCommandOutput,
|
|
@@ -79,6 +95,10 @@ import {
|
|
|
79
95
|
ListComplianceStatusCommandInput,
|
|
80
96
|
ListComplianceStatusCommandOutput,
|
|
81
97
|
} from "../commands/ListComplianceStatusCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListDiscoveredResourcesCommandInput,
|
|
100
|
+
ListDiscoveredResourcesCommandOutput,
|
|
101
|
+
} from "../commands/ListDiscoveredResourcesCommand";
|
|
82
102
|
import {
|
|
83
103
|
ListMemberAccountsCommandInput,
|
|
84
104
|
ListMemberAccountsCommandOutput,
|
|
@@ -91,6 +111,14 @@ import {
|
|
|
91
111
|
ListProtocolsListsCommandInput,
|
|
92
112
|
ListProtocolsListsCommandOutput,
|
|
93
113
|
} from "../commands/ListProtocolsListsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListResourceSetResourcesCommandInput,
|
|
116
|
+
ListResourceSetResourcesCommandOutput,
|
|
117
|
+
} from "../commands/ListResourceSetResourcesCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListResourceSetsCommandInput,
|
|
120
|
+
ListResourceSetsCommandOutput,
|
|
121
|
+
} from "../commands/ListResourceSetsCommand";
|
|
94
122
|
import {
|
|
95
123
|
ListTagsForResourceCommandInput,
|
|
96
124
|
ListTagsForResourceCommandOutput,
|
|
@@ -115,6 +143,10 @@ import {
|
|
|
115
143
|
PutProtocolsListCommandInput,
|
|
116
144
|
PutProtocolsListCommandOutput,
|
|
117
145
|
} from "../commands/PutProtocolsListCommand";
|
|
146
|
+
import {
|
|
147
|
+
PutResourceSetCommandInput,
|
|
148
|
+
PutResourceSetCommandOutput,
|
|
149
|
+
} from "../commands/PutResourceSetCommand";
|
|
118
150
|
import {
|
|
119
151
|
TagResourceCommandInput,
|
|
120
152
|
TagResourceCommandOutput,
|
|
@@ -131,6 +163,14 @@ export declare const serializeAws_json1_1AssociateThirdPartyFirewallCommand: (
|
|
|
131
163
|
input: AssociateThirdPartyFirewallCommandInput,
|
|
132
164
|
context: __SerdeContext
|
|
133
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1BatchAssociateResourceCommand: (
|
|
167
|
+
input: BatchAssociateResourceCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1BatchDisassociateResourceCommand: (
|
|
171
|
+
input: BatchDisassociateResourceCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
134
174
|
export declare const serializeAws_json1_1DeleteAppsListCommand: (
|
|
135
175
|
input: DeleteAppsListCommandInput,
|
|
136
176
|
context: __SerdeContext
|
|
@@ -147,6 +187,10 @@ export declare const serializeAws_json1_1DeleteProtocolsListCommand: (
|
|
|
147
187
|
input: DeleteProtocolsListCommandInput,
|
|
148
188
|
context: __SerdeContext
|
|
149
189
|
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_1DeleteResourceSetCommand: (
|
|
191
|
+
input: DeleteResourceSetCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
150
194
|
export declare const serializeAws_json1_1DisassociateAdminAccountCommand: (
|
|
151
195
|
input: DisassociateAdminAccountCommandInput,
|
|
152
196
|
context: __SerdeContext
|
|
@@ -183,6 +227,10 @@ export declare const serializeAws_json1_1GetProtocolsListCommand: (
|
|
|
183
227
|
input: GetProtocolsListCommandInput,
|
|
184
228
|
context: __SerdeContext
|
|
185
229
|
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_json1_1GetResourceSetCommand: (
|
|
231
|
+
input: GetResourceSetCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
186
234
|
export declare const serializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (
|
|
187
235
|
input: GetThirdPartyFirewallAssociationStatusCommandInput,
|
|
188
236
|
context: __SerdeContext
|
|
@@ -199,6 +247,10 @@ export declare const serializeAws_json1_1ListComplianceStatusCommand: (
|
|
|
199
247
|
input: ListComplianceStatusCommandInput,
|
|
200
248
|
context: __SerdeContext
|
|
201
249
|
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const serializeAws_json1_1ListDiscoveredResourcesCommand: (
|
|
251
|
+
input: ListDiscoveredResourcesCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
202
254
|
export declare const serializeAws_json1_1ListMemberAccountsCommand: (
|
|
203
255
|
input: ListMemberAccountsCommandInput,
|
|
204
256
|
context: __SerdeContext
|
|
@@ -211,6 +263,14 @@ export declare const serializeAws_json1_1ListProtocolsListsCommand: (
|
|
|
211
263
|
input: ListProtocolsListsCommandInput,
|
|
212
264
|
context: __SerdeContext
|
|
213
265
|
) => Promise<__HttpRequest>;
|
|
266
|
+
export declare const serializeAws_json1_1ListResourceSetResourcesCommand: (
|
|
267
|
+
input: ListResourceSetResourcesCommandInput,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const serializeAws_json1_1ListResourceSetsCommand: (
|
|
271
|
+
input: ListResourceSetsCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
214
274
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (
|
|
215
275
|
input: ListTagsForResourceCommandInput,
|
|
216
276
|
context: __SerdeContext
|
|
@@ -235,6 +295,10 @@ export declare const serializeAws_json1_1PutProtocolsListCommand: (
|
|
|
235
295
|
input: PutProtocolsListCommandInput,
|
|
236
296
|
context: __SerdeContext
|
|
237
297
|
) => Promise<__HttpRequest>;
|
|
298
|
+
export declare const serializeAws_json1_1PutResourceSetCommand: (
|
|
299
|
+
input: PutResourceSetCommandInput,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<__HttpRequest>;
|
|
238
302
|
export declare const serializeAws_json1_1TagResourceCommand: (
|
|
239
303
|
input: TagResourceCommandInput,
|
|
240
304
|
context: __SerdeContext
|
|
@@ -251,6 +315,14 @@ export declare const deserializeAws_json1_1AssociateThirdPartyFirewallCommand: (
|
|
|
251
315
|
output: __HttpResponse,
|
|
252
316
|
context: __SerdeContext
|
|
253
317
|
) => Promise<AssociateThirdPartyFirewallCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_1BatchAssociateResourceCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<BatchAssociateResourceCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_1BatchDisassociateResourceCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<BatchDisassociateResourceCommandOutput>;
|
|
254
326
|
export declare const deserializeAws_json1_1DeleteAppsListCommand: (
|
|
255
327
|
output: __HttpResponse,
|
|
256
328
|
context: __SerdeContext
|
|
@@ -267,6 +339,10 @@ export declare const deserializeAws_json1_1DeleteProtocolsListCommand: (
|
|
|
267
339
|
output: __HttpResponse,
|
|
268
340
|
context: __SerdeContext
|
|
269
341
|
) => Promise<DeleteProtocolsListCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_json1_1DeleteResourceSetCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<DeleteResourceSetCommandOutput>;
|
|
270
346
|
export declare const deserializeAws_json1_1DisassociateAdminAccountCommand: (
|
|
271
347
|
output: __HttpResponse,
|
|
272
348
|
context: __SerdeContext
|
|
@@ -303,6 +379,10 @@ export declare const deserializeAws_json1_1GetProtocolsListCommand: (
|
|
|
303
379
|
output: __HttpResponse,
|
|
304
380
|
context: __SerdeContext
|
|
305
381
|
) => Promise<GetProtocolsListCommandOutput>;
|
|
382
|
+
export declare const deserializeAws_json1_1GetResourceSetCommand: (
|
|
383
|
+
output: __HttpResponse,
|
|
384
|
+
context: __SerdeContext
|
|
385
|
+
) => Promise<GetResourceSetCommandOutput>;
|
|
306
386
|
export declare const deserializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (
|
|
307
387
|
output: __HttpResponse,
|
|
308
388
|
context: __SerdeContext
|
|
@@ -319,6 +399,10 @@ export declare const deserializeAws_json1_1ListComplianceStatusCommand: (
|
|
|
319
399
|
output: __HttpResponse,
|
|
320
400
|
context: __SerdeContext
|
|
321
401
|
) => Promise<ListComplianceStatusCommandOutput>;
|
|
402
|
+
export declare const deserializeAws_json1_1ListDiscoveredResourcesCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<ListDiscoveredResourcesCommandOutput>;
|
|
322
406
|
export declare const deserializeAws_json1_1ListMemberAccountsCommand: (
|
|
323
407
|
output: __HttpResponse,
|
|
324
408
|
context: __SerdeContext
|
|
@@ -331,6 +415,14 @@ export declare const deserializeAws_json1_1ListProtocolsListsCommand: (
|
|
|
331
415
|
output: __HttpResponse,
|
|
332
416
|
context: __SerdeContext
|
|
333
417
|
) => Promise<ListProtocolsListsCommandOutput>;
|
|
418
|
+
export declare const deserializeAws_json1_1ListResourceSetResourcesCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<ListResourceSetResourcesCommandOutput>;
|
|
422
|
+
export declare const deserializeAws_json1_1ListResourceSetsCommand: (
|
|
423
|
+
output: __HttpResponse,
|
|
424
|
+
context: __SerdeContext
|
|
425
|
+
) => Promise<ListResourceSetsCommandOutput>;
|
|
334
426
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (
|
|
335
427
|
output: __HttpResponse,
|
|
336
428
|
context: __SerdeContext
|
|
@@ -355,6 +447,10 @@ export declare const deserializeAws_json1_1PutProtocolsListCommand: (
|
|
|
355
447
|
output: __HttpResponse,
|
|
356
448
|
context: __SerdeContext
|
|
357
449
|
) => Promise<PutProtocolsListCommandOutput>;
|
|
450
|
+
export declare const deserializeAws_json1_1PutResourceSetCommand: (
|
|
451
|
+
output: __HttpResponse,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<PutResourceSetCommandOutput>;
|
|
358
454
|
export declare const deserializeAws_json1_1TagResourceCommand: (
|
|
359
455
|
output: __HttpResponse,
|
|
360
456
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.208.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,46 +19,46 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64": "3.
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.208.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.208.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.208.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.208.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.208.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.208.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.208.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.208.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.208.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.208.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.208.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.208.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.208.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.208.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.208.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.208.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.208.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.208.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.208.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.208.0",
|
|
42
|
+
"@aws-sdk/types": "3.208.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.208.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.208.0",
|
|
45
|
+
"@aws-sdk/util-base64-browser": "3.208.0",
|
|
46
|
+
"@aws-sdk/util-base64-node": "3.208.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.208.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.208.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.208.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.208.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.208.0",
|
|
54
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
55
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
55
|
+
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.208.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
|
-
"@types/node": "^
|
|
61
|
+
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|
|
63
63
|
"downlevel-dts": "0.10.1",
|
|
64
64
|
"rimraf": "3.0.2",
|