@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
|
@@ -240,6 +240,67 @@ export interface AwsEc2InstanceViolation {
|
|
|
240
240
|
*/
|
|
241
241
|
AwsEc2NetworkInterfaceViolations?: AwsEc2NetworkInterfaceViolation[];
|
|
242
242
|
}
|
|
243
|
+
export interface BatchAssociateResourceRequest {
|
|
244
|
+
/**
|
|
245
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
246
|
+
*/
|
|
247
|
+
ResourceSetIdentifier: string | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* <p>The uniform resource identifiers (URIs) of resources that should be associated to the resource set. The URIs must be Amazon Resource Names (ARNs).</p>
|
|
250
|
+
*/
|
|
251
|
+
Items: string[] | undefined;
|
|
252
|
+
}
|
|
253
|
+
export declare enum FailedItemReason {
|
|
254
|
+
NotValidAccountId = "NOT_VALID_ACCOUNT_ID",
|
|
255
|
+
NotValidArn = "NOT_VALID_ARN",
|
|
256
|
+
NotValidPartition = "NOT_VALID_PARTITION",
|
|
257
|
+
NotValidRegion = "NOT_VALID_REGION",
|
|
258
|
+
NotValidResourceType = "NOT_VALID_RESOURCE_TYPE",
|
|
259
|
+
NotValidService = "NOT_VALID_SERVICE"
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* <p>Details of a resource that failed when trying to update it's association to a resource set.</p>
|
|
263
|
+
*/
|
|
264
|
+
export interface FailedItem {
|
|
265
|
+
/**
|
|
266
|
+
* <p>The univeral resource indicator (URI) of the resource that failed.</p>
|
|
267
|
+
*/
|
|
268
|
+
URI?: string;
|
|
269
|
+
/**
|
|
270
|
+
* <p>The reason the resource's association could not be updated.</p>
|
|
271
|
+
*/
|
|
272
|
+
Reason?: FailedItemReason | string;
|
|
273
|
+
}
|
|
274
|
+
export interface BatchAssociateResourceResponse {
|
|
275
|
+
/**
|
|
276
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
277
|
+
*/
|
|
278
|
+
ResourceSetIdentifier: string | undefined;
|
|
279
|
+
/**
|
|
280
|
+
* <p>The resources that failed to associate to the resource set.</p>
|
|
281
|
+
*/
|
|
282
|
+
FailedItems: FailedItem[] | undefined;
|
|
283
|
+
}
|
|
284
|
+
export interface BatchDisassociateResourceRequest {
|
|
285
|
+
/**
|
|
286
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
287
|
+
*/
|
|
288
|
+
ResourceSetIdentifier: string | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* <p>The uniform resource identifiers (URI) of resources that should be disassociated from the resource set. The URIs must be Amazon Resource Names (ARNs).</p>
|
|
291
|
+
*/
|
|
292
|
+
Items: string[] | undefined;
|
|
293
|
+
}
|
|
294
|
+
export interface BatchDisassociateResourceResponse {
|
|
295
|
+
/**
|
|
296
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
297
|
+
*/
|
|
298
|
+
ResourceSetIdentifier: string | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* <p>The resources that failed to disassociate from the resource set.</p>
|
|
301
|
+
*/
|
|
302
|
+
FailedItems: FailedItem[] | undefined;
|
|
303
|
+
}
|
|
243
304
|
export interface DeleteAppsListRequest {
|
|
244
305
|
/**
|
|
245
306
|
* <p>The ID of the applications list that you want to delete. You can retrieve this ID from
|
|
@@ -296,6 +357,12 @@ export interface DeleteProtocolsListRequest {
|
|
|
296
357
|
*/
|
|
297
358
|
ListId: string | undefined;
|
|
298
359
|
}
|
|
360
|
+
export interface DeleteResourceSetRequest {
|
|
361
|
+
/**
|
|
362
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
363
|
+
*/
|
|
364
|
+
Identifier: string | undefined;
|
|
365
|
+
}
|
|
299
366
|
export interface DisassociateAdminAccountRequest {
|
|
300
367
|
}
|
|
301
368
|
export interface DisassociateThirdPartyFirewallRequest {
|
|
@@ -542,6 +609,7 @@ export interface PolicyOption {
|
|
|
542
609
|
}
|
|
543
610
|
export declare enum SecurityServiceType {
|
|
544
611
|
DNS_FIREWALL = "DNS_FIREWALL",
|
|
612
|
+
IMPORT_NETWORK_FIREWALL = "IMPORT_NETWORK_FIREWALL",
|
|
545
613
|
NETWORK_FIREWALL = "NETWORK_FIREWALL",
|
|
546
614
|
SECURITY_GROUPS_COMMON = "SECURITY_GROUPS_COMMON",
|
|
547
615
|
SECURITY_GROUPS_CONTENT_AUDIT = "SECURITY_GROUPS_CONTENT_AUDIT",
|
|
@@ -887,6 +955,14 @@ export interface Policy {
|
|
|
887
955
|
* </ul>
|
|
888
956
|
*/
|
|
889
957
|
ExcludeMap?: Record<string, string[]>;
|
|
958
|
+
/**
|
|
959
|
+
* <p>The unique identifiers of the resource sets used by the policy.</p>
|
|
960
|
+
*/
|
|
961
|
+
ResourceSetIds?: string[];
|
|
962
|
+
/**
|
|
963
|
+
* <p>The definition of the Network Firewall firewall policy.</p>
|
|
964
|
+
*/
|
|
965
|
+
PolicyDescription?: string;
|
|
890
966
|
}
|
|
891
967
|
export interface GetPolicyResponse {
|
|
892
968
|
/**
|
|
@@ -1045,6 +1121,56 @@ export interface GetProtocolsListResponse {
|
|
|
1045
1121
|
*/
|
|
1046
1122
|
ProtocolsListArn?: string;
|
|
1047
1123
|
}
|
|
1124
|
+
export interface GetResourceSetRequest {
|
|
1125
|
+
/**
|
|
1126
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
1127
|
+
*/
|
|
1128
|
+
Identifier: string | undefined;
|
|
1129
|
+
}
|
|
1130
|
+
/**
|
|
1131
|
+
* <p>A set of resources to include in a policy.</p>
|
|
1132
|
+
*/
|
|
1133
|
+
export interface ResourceSet {
|
|
1134
|
+
/**
|
|
1135
|
+
* <p>A unique identifier for the resource set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.</p>
|
|
1136
|
+
*/
|
|
1137
|
+
Id?: string;
|
|
1138
|
+
/**
|
|
1139
|
+
* <p>The descriptive name of the resource set. You can't change the name of a resource set after you create it.</p>
|
|
1140
|
+
*/
|
|
1141
|
+
Name: string | undefined;
|
|
1142
|
+
/**
|
|
1143
|
+
* <p>A description of the resource set.</p>
|
|
1144
|
+
*/
|
|
1145
|
+
Description?: string;
|
|
1146
|
+
/**
|
|
1147
|
+
* <p>An optional token that you can use for optimistic locking. Firewall Manager returns a token to your requests that access the resource set. The token marks the state of the resource set resource at the time of the request. Update tokens are not allowed when creating a resource set. After creation, each subsequent update call to the resource set requires the update token.
|
|
1148
|
+
* </p>
|
|
1149
|
+
* <p>To make an unconditional change to the resource set, omit the token in your update request. Without the token, Firewall Manager performs your updates regardless of whether the resource set has changed since you last retrieved it.</p>
|
|
1150
|
+
* <p>To make a conditional change to the resource set, provide the token in your update request. Firewall Manager uses the token to ensure that the resource set hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the resource set again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
1151
|
+
*/
|
|
1152
|
+
UpdateToken?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* <p>Determines the resources that can be associated to the resource set. Depending on
|
|
1155
|
+
* your setting for max results and the number of resource sets, a single call might not
|
|
1156
|
+
* return the full list.</p>
|
|
1157
|
+
*/
|
|
1158
|
+
ResourceTypeList: string[] | undefined;
|
|
1159
|
+
/**
|
|
1160
|
+
* <p>The last time that the resource set was changed.</p>
|
|
1161
|
+
*/
|
|
1162
|
+
LastUpdateTime?: Date;
|
|
1163
|
+
}
|
|
1164
|
+
export interface GetResourceSetResponse {
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>Information about the specified resource set.</p>
|
|
1167
|
+
*/
|
|
1168
|
+
ResourceSet: ResourceSet | undefined;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>The Amazon Resource Name (ARN) of the resource set.</p>
|
|
1171
|
+
*/
|
|
1172
|
+
ResourceSetArn: string | undefined;
|
|
1173
|
+
}
|
|
1048
1174
|
export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
1049
1175
|
/**
|
|
1050
1176
|
* <p>The name of the third-party firewall vendor.</p>
|
|
@@ -2489,6 +2615,61 @@ export interface ListComplianceStatusResponse {
|
|
|
2489
2615
|
*/
|
|
2490
2616
|
NextToken?: string;
|
|
2491
2617
|
}
|
|
2618
|
+
export interface ListDiscoveredResourcesRequest {
|
|
2619
|
+
/**
|
|
2620
|
+
* <p>The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The account must be a member of your organization.</p>
|
|
2621
|
+
*/
|
|
2622
|
+
MemberAccountIds: string[] | undefined;
|
|
2623
|
+
/**
|
|
2624
|
+
* <p>The type of resources to discover.</p>
|
|
2625
|
+
*/
|
|
2626
|
+
ResourceType: string | undefined;
|
|
2627
|
+
/**
|
|
2628
|
+
* <p>The maximum number of objects that you want Firewall Manager to return for this request. If more
|
|
2629
|
+
* objects are available, in the response, Firewall Manager provides a
|
|
2630
|
+
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
2631
|
+
*/
|
|
2632
|
+
MaxResults?: number;
|
|
2633
|
+
/**
|
|
2634
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2635
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2636
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2637
|
+
*/
|
|
2638
|
+
NextToken?: string;
|
|
2639
|
+
}
|
|
2640
|
+
/**
|
|
2641
|
+
* <p>A resource in the organization that's available to be associated with a Firewall Manager resource set.</p>
|
|
2642
|
+
*/
|
|
2643
|
+
export interface DiscoveredResource {
|
|
2644
|
+
/**
|
|
2645
|
+
* <p>The universal resource identifier (URI) of the discovered resource.</p>
|
|
2646
|
+
*/
|
|
2647
|
+
URI?: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* <p>The Amazon Web Services account ID associated with the discovered resource.</p>
|
|
2650
|
+
*/
|
|
2651
|
+
AccountId?: string;
|
|
2652
|
+
/**
|
|
2653
|
+
* <p>The type of the discovered resource.</p>
|
|
2654
|
+
*/
|
|
2655
|
+
Type?: string;
|
|
2656
|
+
/**
|
|
2657
|
+
* <p>The name of the discovered resource.</p>
|
|
2658
|
+
*/
|
|
2659
|
+
Name?: string;
|
|
2660
|
+
}
|
|
2661
|
+
export interface ListDiscoveredResourcesResponse {
|
|
2662
|
+
/**
|
|
2663
|
+
* <p>Details of the resources that were discovered.</p>
|
|
2664
|
+
*/
|
|
2665
|
+
Items?: DiscoveredResource[];
|
|
2666
|
+
/**
|
|
2667
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2668
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2669
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2670
|
+
*/
|
|
2671
|
+
NextToken?: string;
|
|
2672
|
+
}
|
|
2492
2673
|
export interface ListMemberAccountsRequest {
|
|
2493
2674
|
/**
|
|
2494
2675
|
* <p>If you specify a value for <code>MaxResults</code> and you have more account IDs than the
|
|
@@ -2653,6 +2834,96 @@ export interface ListProtocolsListsResponse {
|
|
|
2653
2834
|
*/
|
|
2654
2835
|
NextToken?: string;
|
|
2655
2836
|
}
|
|
2837
|
+
export interface ListResourceSetResourcesRequest {
|
|
2838
|
+
/**
|
|
2839
|
+
* <p>A unique identifier for the resource set, used in a TODO to refer to the resource set.</p>
|
|
2840
|
+
*/
|
|
2841
|
+
Identifier: string | undefined;
|
|
2842
|
+
/**
|
|
2843
|
+
* <p>The maximum number of objects that you want Firewall Manager to return for this request. If more
|
|
2844
|
+
* objects are available, in the response, Firewall Manager provides a
|
|
2845
|
+
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
2846
|
+
*/
|
|
2847
|
+
MaxResults?: number;
|
|
2848
|
+
/**
|
|
2849
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2850
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2851
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2852
|
+
*/
|
|
2853
|
+
NextToken?: string;
|
|
2854
|
+
}
|
|
2855
|
+
/**
|
|
2856
|
+
* <p>Details of a resource that is associated to an Firewall Manager resource set.</p>
|
|
2857
|
+
*/
|
|
2858
|
+
export interface Resource {
|
|
2859
|
+
/**
|
|
2860
|
+
* <p>The resource's universal resource indicator (URI).</p>
|
|
2861
|
+
*/
|
|
2862
|
+
URI: string | undefined;
|
|
2863
|
+
/**
|
|
2864
|
+
* <p>The Amazon Web Services account ID that the associated resource belongs to.</p>
|
|
2865
|
+
*/
|
|
2866
|
+
AccountId?: string;
|
|
2867
|
+
}
|
|
2868
|
+
export interface ListResourceSetResourcesResponse {
|
|
2869
|
+
/**
|
|
2870
|
+
* <p>An array of the associated resources' uniform resource identifiers (URI).</p>
|
|
2871
|
+
*/
|
|
2872
|
+
Items: Resource[] | undefined;
|
|
2873
|
+
/**
|
|
2874
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2875
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2876
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2877
|
+
*/
|
|
2878
|
+
NextToken?: string;
|
|
2879
|
+
}
|
|
2880
|
+
export interface ListResourceSetsRequest {
|
|
2881
|
+
/**
|
|
2882
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2883
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2884
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2885
|
+
*/
|
|
2886
|
+
NextToken?: string;
|
|
2887
|
+
/**
|
|
2888
|
+
* <p>The maximum number of objects that you want Firewall Manager to return for this request. If more
|
|
2889
|
+
* objects are available, in the response, Firewall Manager provides a
|
|
2890
|
+
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
2891
|
+
*/
|
|
2892
|
+
MaxResults?: number;
|
|
2893
|
+
}
|
|
2894
|
+
/**
|
|
2895
|
+
* <p>Summarizes the resource sets used in a policy.</p>
|
|
2896
|
+
*/
|
|
2897
|
+
export interface ResourceSetSummary {
|
|
2898
|
+
/**
|
|
2899
|
+
* <p>A unique identifier for the resource set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.</p>
|
|
2900
|
+
*/
|
|
2901
|
+
Id?: string;
|
|
2902
|
+
/**
|
|
2903
|
+
* <p>The descriptive name of the resource set. You can't change the name of a resource set after you create it.</p>
|
|
2904
|
+
*/
|
|
2905
|
+
Name?: string;
|
|
2906
|
+
/**
|
|
2907
|
+
* <p>A description of the resource set.</p>
|
|
2908
|
+
*/
|
|
2909
|
+
Description?: string;
|
|
2910
|
+
/**
|
|
2911
|
+
* <p>The last time that the resource set was changed.</p>
|
|
2912
|
+
*/
|
|
2913
|
+
LastUpdateTime?: Date;
|
|
2914
|
+
}
|
|
2915
|
+
export interface ListResourceSetsResponse {
|
|
2916
|
+
/**
|
|
2917
|
+
* <p>An array of <code>ResourceSetSummary</code> objects.</p>
|
|
2918
|
+
*/
|
|
2919
|
+
ResourceSets?: ResourceSetSummary[];
|
|
2920
|
+
/**
|
|
2921
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
2922
|
+
* for retrieval exceeds the maximum you requested, Firewall Manager returns a <code>NextToken</code>
|
|
2923
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
2924
|
+
*/
|
|
2925
|
+
NextToken?: string;
|
|
2926
|
+
}
|
|
2656
2927
|
export interface ListTagsForResourceRequest {
|
|
2657
2928
|
/**
|
|
2658
2929
|
* <p>The Amazon Resource Name (ARN) of the resource to return tags for. The Firewall Manager resources that support tagging are policies, applications lists, and protocols lists. </p>
|
|
@@ -2784,6 +3055,30 @@ export interface PutProtocolsListResponse {
|
|
|
2784
3055
|
*/
|
|
2785
3056
|
ProtocolsListArn?: string;
|
|
2786
3057
|
}
|
|
3058
|
+
export interface PutResourceSetRequest {
|
|
3059
|
+
/**
|
|
3060
|
+
* <p>Details about the resource set to be created or updated.></p>
|
|
3061
|
+
*/
|
|
3062
|
+
ResourceSet: ResourceSet | undefined;
|
|
3063
|
+
/**
|
|
3064
|
+
* <p>Retrieves the tags associated with the specified resource set. Tags are key:value pairs that
|
|
3065
|
+
* you can use to categorize and manage your resources, for purposes like billing. For
|
|
3066
|
+
* example, you might set the tag key to "customer" and the value to the customer name or ID.
|
|
3067
|
+
* You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a
|
|
3068
|
+
* resource.</p>
|
|
3069
|
+
*/
|
|
3070
|
+
TagList?: Tag[];
|
|
3071
|
+
}
|
|
3072
|
+
export interface PutResourceSetResponse {
|
|
3073
|
+
/**
|
|
3074
|
+
* <p>Details about the resource set.</p>
|
|
3075
|
+
*/
|
|
3076
|
+
ResourceSet: ResourceSet | undefined;
|
|
3077
|
+
/**
|
|
3078
|
+
* <p>The Amazon Resource Name (ARN) of the resource set.</p>
|
|
3079
|
+
*/
|
|
3080
|
+
ResourceSetArn: string | undefined;
|
|
3081
|
+
}
|
|
2787
3082
|
export interface TagResourceRequest {
|
|
2788
3083
|
/**
|
|
2789
3084
|
* <p>The Amazon Resource Name (ARN) of the resource to return tags for. The Firewall Manager resources that support tagging are policies, applications lists, and protocols lists. </p>
|
|
@@ -2844,6 +3139,26 @@ export declare const AwsEc2NetworkInterfaceViolationFilterSensitiveLog: (obj: Aw
|
|
|
2844
3139
|
* @internal
|
|
2845
3140
|
*/
|
|
2846
3141
|
export declare const AwsEc2InstanceViolationFilterSensitiveLog: (obj: AwsEc2InstanceViolation) => any;
|
|
3142
|
+
/**
|
|
3143
|
+
* @internal
|
|
3144
|
+
*/
|
|
3145
|
+
export declare const BatchAssociateResourceRequestFilterSensitiveLog: (obj: BatchAssociateResourceRequest) => any;
|
|
3146
|
+
/**
|
|
3147
|
+
* @internal
|
|
3148
|
+
*/
|
|
3149
|
+
export declare const FailedItemFilterSensitiveLog: (obj: FailedItem) => any;
|
|
3150
|
+
/**
|
|
3151
|
+
* @internal
|
|
3152
|
+
*/
|
|
3153
|
+
export declare const BatchAssociateResourceResponseFilterSensitiveLog: (obj: BatchAssociateResourceResponse) => any;
|
|
3154
|
+
/**
|
|
3155
|
+
* @internal
|
|
3156
|
+
*/
|
|
3157
|
+
export declare const BatchDisassociateResourceRequestFilterSensitiveLog: (obj: BatchDisassociateResourceRequest) => any;
|
|
3158
|
+
/**
|
|
3159
|
+
* @internal
|
|
3160
|
+
*/
|
|
3161
|
+
export declare const BatchDisassociateResourceResponseFilterSensitiveLog: (obj: BatchDisassociateResourceResponse) => any;
|
|
2847
3162
|
/**
|
|
2848
3163
|
* @internal
|
|
2849
3164
|
*/
|
|
@@ -2860,6 +3175,10 @@ export declare const DeletePolicyRequestFilterSensitiveLog: (obj: DeletePolicyRe
|
|
|
2860
3175
|
* @internal
|
|
2861
3176
|
*/
|
|
2862
3177
|
export declare const DeleteProtocolsListRequestFilterSensitiveLog: (obj: DeleteProtocolsListRequest) => any;
|
|
3178
|
+
/**
|
|
3179
|
+
* @internal
|
|
3180
|
+
*/
|
|
3181
|
+
export declare const DeleteResourceSetRequestFilterSensitiveLog: (obj: DeleteResourceSetRequest) => any;
|
|
2863
3182
|
/**
|
|
2864
3183
|
* @internal
|
|
2865
3184
|
*/
|
|
@@ -2964,6 +3283,18 @@ export declare const ProtocolsListDataFilterSensitiveLog: (obj: ProtocolsListDat
|
|
|
2964
3283
|
* @internal
|
|
2965
3284
|
*/
|
|
2966
3285
|
export declare const GetProtocolsListResponseFilterSensitiveLog: (obj: GetProtocolsListResponse) => any;
|
|
3286
|
+
/**
|
|
3287
|
+
* @internal
|
|
3288
|
+
*/
|
|
3289
|
+
export declare const GetResourceSetRequestFilterSensitiveLog: (obj: GetResourceSetRequest) => any;
|
|
3290
|
+
/**
|
|
3291
|
+
* @internal
|
|
3292
|
+
*/
|
|
3293
|
+
export declare const ResourceSetFilterSensitiveLog: (obj: ResourceSet) => any;
|
|
3294
|
+
/**
|
|
3295
|
+
* @internal
|
|
3296
|
+
*/
|
|
3297
|
+
export declare const GetResourceSetResponseFilterSensitiveLog: (obj: GetResourceSetResponse) => any;
|
|
2967
3298
|
/**
|
|
2968
3299
|
* @internal
|
|
2969
3300
|
*/
|
|
@@ -3184,6 +3515,18 @@ export declare const PolicyComplianceStatusFilterSensitiveLog: (obj: PolicyCompl
|
|
|
3184
3515
|
* @internal
|
|
3185
3516
|
*/
|
|
3186
3517
|
export declare const ListComplianceStatusResponseFilterSensitiveLog: (obj: ListComplianceStatusResponse) => any;
|
|
3518
|
+
/**
|
|
3519
|
+
* @internal
|
|
3520
|
+
*/
|
|
3521
|
+
export declare const ListDiscoveredResourcesRequestFilterSensitiveLog: (obj: ListDiscoveredResourcesRequest) => any;
|
|
3522
|
+
/**
|
|
3523
|
+
* @internal
|
|
3524
|
+
*/
|
|
3525
|
+
export declare const DiscoveredResourceFilterSensitiveLog: (obj: DiscoveredResource) => any;
|
|
3526
|
+
/**
|
|
3527
|
+
* @internal
|
|
3528
|
+
*/
|
|
3529
|
+
export declare const ListDiscoveredResourcesResponseFilterSensitiveLog: (obj: ListDiscoveredResourcesResponse) => any;
|
|
3187
3530
|
/**
|
|
3188
3531
|
* @internal
|
|
3189
3532
|
*/
|
|
@@ -3216,6 +3559,30 @@ export declare const ProtocolsListDataSummaryFilterSensitiveLog: (obj: Protocols
|
|
|
3216
3559
|
* @internal
|
|
3217
3560
|
*/
|
|
3218
3561
|
export declare const ListProtocolsListsResponseFilterSensitiveLog: (obj: ListProtocolsListsResponse) => any;
|
|
3562
|
+
/**
|
|
3563
|
+
* @internal
|
|
3564
|
+
*/
|
|
3565
|
+
export declare const ListResourceSetResourcesRequestFilterSensitiveLog: (obj: ListResourceSetResourcesRequest) => any;
|
|
3566
|
+
/**
|
|
3567
|
+
* @internal
|
|
3568
|
+
*/
|
|
3569
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
3570
|
+
/**
|
|
3571
|
+
* @internal
|
|
3572
|
+
*/
|
|
3573
|
+
export declare const ListResourceSetResourcesResponseFilterSensitiveLog: (obj: ListResourceSetResourcesResponse) => any;
|
|
3574
|
+
/**
|
|
3575
|
+
* @internal
|
|
3576
|
+
*/
|
|
3577
|
+
export declare const ListResourceSetsRequestFilterSensitiveLog: (obj: ListResourceSetsRequest) => any;
|
|
3578
|
+
/**
|
|
3579
|
+
* @internal
|
|
3580
|
+
*/
|
|
3581
|
+
export declare const ResourceSetSummaryFilterSensitiveLog: (obj: ResourceSetSummary) => any;
|
|
3582
|
+
/**
|
|
3583
|
+
* @internal
|
|
3584
|
+
*/
|
|
3585
|
+
export declare const ListResourceSetsResponseFilterSensitiveLog: (obj: ListResourceSetsResponse) => any;
|
|
3219
3586
|
/**
|
|
3220
3587
|
* @internal
|
|
3221
3588
|
*/
|
|
@@ -3264,6 +3631,14 @@ export declare const PutProtocolsListRequestFilterSensitiveLog: (obj: PutProtoco
|
|
|
3264
3631
|
* @internal
|
|
3265
3632
|
*/
|
|
3266
3633
|
export declare const PutProtocolsListResponseFilterSensitiveLog: (obj: PutProtocolsListResponse) => any;
|
|
3634
|
+
/**
|
|
3635
|
+
* @internal
|
|
3636
|
+
*/
|
|
3637
|
+
export declare const PutResourceSetRequestFilterSensitiveLog: (obj: PutResourceSetRequest) => any;
|
|
3638
|
+
/**
|
|
3639
|
+
* @internal
|
|
3640
|
+
*/
|
|
3641
|
+
export declare const PutResourceSetResponseFilterSensitiveLog: (obj: PutResourceSetResponse) => any;
|
|
3267
3642
|
/**
|
|
3268
3643
|
* @internal
|
|
3269
3644
|
*/
|
|
@@ -2,10 +2,13 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput } from "../commands/AssociateAdminAccountCommand";
|
|
4
4
|
import { AssociateThirdPartyFirewallCommandInput, AssociateThirdPartyFirewallCommandOutput } from "../commands/AssociateThirdPartyFirewallCommand";
|
|
5
|
+
import { BatchAssociateResourceCommandInput, BatchAssociateResourceCommandOutput } from "../commands/BatchAssociateResourceCommand";
|
|
6
|
+
import { BatchDisassociateResourceCommandInput, BatchDisassociateResourceCommandOutput } from "../commands/BatchDisassociateResourceCommand";
|
|
5
7
|
import { DeleteAppsListCommandInput, DeleteAppsListCommandOutput } from "../commands/DeleteAppsListCommand";
|
|
6
8
|
import { DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput } from "../commands/DeleteNotificationChannelCommand";
|
|
7
9
|
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "../commands/DeletePolicyCommand";
|
|
8
10
|
import { DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput } from "../commands/DeleteProtocolsListCommand";
|
|
11
|
+
import { DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput } from "../commands/DeleteResourceSetCommand";
|
|
9
12
|
import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "../commands/DisassociateAdminAccountCommand";
|
|
10
13
|
import { DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput } from "../commands/DisassociateThirdPartyFirewallCommand";
|
|
11
14
|
import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "../commands/GetAdminAccountCommand";
|
|
@@ -15,27 +18,35 @@ import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput
|
|
|
15
18
|
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
16
19
|
import { GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput } from "../commands/GetProtectionStatusCommand";
|
|
17
20
|
import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "../commands/GetProtocolsListCommand";
|
|
21
|
+
import { GetResourceSetCommandInput, GetResourceSetCommandOutput } from "../commands/GetResourceSetCommand";
|
|
18
22
|
import { GetThirdPartyFirewallAssociationStatusCommandInput, GetThirdPartyFirewallAssociationStatusCommandOutput } from "../commands/GetThirdPartyFirewallAssociationStatusCommand";
|
|
19
23
|
import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "../commands/GetViolationDetailsCommand";
|
|
20
24
|
import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "../commands/ListAppsListsCommand";
|
|
21
25
|
import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "../commands/ListComplianceStatusCommand";
|
|
26
|
+
import { ListDiscoveredResourcesCommandInput, ListDiscoveredResourcesCommandOutput } from "../commands/ListDiscoveredResourcesCommand";
|
|
22
27
|
import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "../commands/ListMemberAccountsCommand";
|
|
23
28
|
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
24
29
|
import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "../commands/ListProtocolsListsCommand";
|
|
30
|
+
import { ListResourceSetResourcesCommandInput, ListResourceSetResourcesCommandOutput } from "../commands/ListResourceSetResourcesCommand";
|
|
31
|
+
import { ListResourceSetsCommandInput, ListResourceSetsCommandOutput } from "../commands/ListResourceSetsCommand";
|
|
25
32
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
26
33
|
import { ListThirdPartyFirewallFirewallPoliciesCommandInput, ListThirdPartyFirewallFirewallPoliciesCommandOutput } from "../commands/ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
27
34
|
import { PutAppsListCommandInput, PutAppsListCommandOutput } from "../commands/PutAppsListCommand";
|
|
28
35
|
import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "../commands/PutNotificationChannelCommand";
|
|
29
36
|
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
30
37
|
import { PutProtocolsListCommandInput, PutProtocolsListCommandOutput } from "../commands/PutProtocolsListCommand";
|
|
38
|
+
import { PutResourceSetCommandInput, PutResourceSetCommandOutput } from "../commands/PutResourceSetCommand";
|
|
31
39
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
32
40
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
33
41
|
export declare const serializeAws_json1_1AssociateAdminAccountCommand: (input: AssociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
42
|
export declare const serializeAws_json1_1AssociateThirdPartyFirewallCommand: (input: AssociateThirdPartyFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_json1_1BatchAssociateResourceCommand: (input: BatchAssociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
export declare const serializeAws_json1_1BatchDisassociateResourceCommand: (input: BatchDisassociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
45
|
export declare const serializeAws_json1_1DeleteAppsListCommand: (input: DeleteAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
46
|
export declare const serializeAws_json1_1DeleteNotificationChannelCommand: (input: DeleteNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
47
|
export declare const serializeAws_json1_1DeletePolicyCommand: (input: DeletePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
48
|
export declare const serializeAws_json1_1DeleteProtocolsListCommand: (input: DeleteProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
export declare const serializeAws_json1_1DeleteResourceSetCommand: (input: DeleteResourceSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
50
|
export declare const serializeAws_json1_1DisassociateAdminAccountCommand: (input: DisassociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
51
|
export declare const serializeAws_json1_1DisassociateThirdPartyFirewallCommand: (input: DisassociateThirdPartyFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
52
|
export declare const serializeAws_json1_1GetAdminAccountCommand: (input: GetAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -45,27 +56,35 @@ export declare const serializeAws_json1_1GetNotificationChannelCommand: (input:
|
|
|
45
56
|
export declare const serializeAws_json1_1GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
57
|
export declare const serializeAws_json1_1GetProtectionStatusCommand: (input: GetProtectionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
58
|
export declare const serializeAws_json1_1GetProtocolsListCommand: (input: GetProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
export declare const serializeAws_json1_1GetResourceSetCommand: (input: GetResourceSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
60
|
export declare const serializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (input: GetThirdPartyFirewallAssociationStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
61
|
export declare const serializeAws_json1_1GetViolationDetailsCommand: (input: GetViolationDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
62
|
export declare const serializeAws_json1_1ListAppsListsCommand: (input: ListAppsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
63
|
export declare const serializeAws_json1_1ListComplianceStatusCommand: (input: ListComplianceStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
export declare const serializeAws_json1_1ListDiscoveredResourcesCommand: (input: ListDiscoveredResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
65
|
export declare const serializeAws_json1_1ListMemberAccountsCommand: (input: ListMemberAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
66
|
export declare const serializeAws_json1_1ListPoliciesCommand: (input: ListPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
67
|
export declare const serializeAws_json1_1ListProtocolsListsCommand: (input: ListProtocolsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_1ListResourceSetResourcesCommand: (input: ListResourceSetResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_json1_1ListResourceSetsCommand: (input: ListResourceSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
70
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
71
|
export declare const serializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand: (input: ListThirdPartyFirewallFirewallPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
72
|
export declare const serializeAws_json1_1PutAppsListCommand: (input: PutAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
73
|
export declare const serializeAws_json1_1PutNotificationChannelCommand: (input: PutNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
74
|
export declare const serializeAws_json1_1PutPolicyCommand: (input: PutPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
75
|
export declare const serializeAws_json1_1PutProtocolsListCommand: (input: PutProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
export declare const serializeAws_json1_1PutResourceSetCommand: (input: PutResourceSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
77
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
78
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
79
|
export declare const deserializeAws_json1_1AssociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAdminAccountCommandOutput>;
|
|
64
80
|
export declare const deserializeAws_json1_1AssociateThirdPartyFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateThirdPartyFirewallCommandOutput>;
|
|
81
|
+
export declare const deserializeAws_json1_1BatchAssociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateResourceCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_json1_1BatchDisassociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateResourceCommandOutput>;
|
|
65
83
|
export declare const deserializeAws_json1_1DeleteAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppsListCommandOutput>;
|
|
66
84
|
export declare const deserializeAws_json1_1DeleteNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationChannelCommandOutput>;
|
|
67
85
|
export declare const deserializeAws_json1_1DeletePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyCommandOutput>;
|
|
68
86
|
export declare const deserializeAws_json1_1DeleteProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProtocolsListCommandOutput>;
|
|
87
|
+
export declare const deserializeAws_json1_1DeleteResourceSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceSetCommandOutput>;
|
|
69
88
|
export declare const deserializeAws_json1_1DisassociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAdminAccountCommandOutput>;
|
|
70
89
|
export declare const deserializeAws_json1_1DisassociateThirdPartyFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateThirdPartyFirewallCommandOutput>;
|
|
71
90
|
export declare const deserializeAws_json1_1GetAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdminAccountCommandOutput>;
|
|
@@ -75,18 +94,23 @@ export declare const deserializeAws_json1_1GetNotificationChannelCommand: (outpu
|
|
|
75
94
|
export declare const deserializeAws_json1_1GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
|
|
76
95
|
export declare const deserializeAws_json1_1GetProtectionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtectionStatusCommandOutput>;
|
|
77
96
|
export declare const deserializeAws_json1_1GetProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtocolsListCommandOutput>;
|
|
97
|
+
export declare const deserializeAws_json1_1GetResourceSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceSetCommandOutput>;
|
|
78
98
|
export declare const deserializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThirdPartyFirewallAssociationStatusCommandOutput>;
|
|
79
99
|
export declare const deserializeAws_json1_1GetViolationDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetViolationDetailsCommandOutput>;
|
|
80
100
|
export declare const deserializeAws_json1_1ListAppsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppsListsCommandOutput>;
|
|
81
101
|
export declare const deserializeAws_json1_1ListComplianceStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComplianceStatusCommandOutput>;
|
|
102
|
+
export declare const deserializeAws_json1_1ListDiscoveredResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDiscoveredResourcesCommandOutput>;
|
|
82
103
|
export declare const deserializeAws_json1_1ListMemberAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMemberAccountsCommandOutput>;
|
|
83
104
|
export declare const deserializeAws_json1_1ListPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPoliciesCommandOutput>;
|
|
84
105
|
export declare const deserializeAws_json1_1ListProtocolsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProtocolsListsCommandOutput>;
|
|
106
|
+
export declare const deserializeAws_json1_1ListResourceSetResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceSetResourcesCommandOutput>;
|
|
107
|
+
export declare const deserializeAws_json1_1ListResourceSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceSetsCommandOutput>;
|
|
85
108
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
86
109
|
export declare const deserializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThirdPartyFirewallFirewallPoliciesCommandOutput>;
|
|
87
110
|
export declare const deserializeAws_json1_1PutAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAppsListCommandOutput>;
|
|
88
111
|
export declare const deserializeAws_json1_1PutNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutNotificationChannelCommandOutput>;
|
|
89
112
|
export declare const deserializeAws_json1_1PutPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPolicyCommandOutput>;
|
|
90
113
|
export declare const deserializeAws_json1_1PutProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutProtocolsListCommandOutput>;
|
|
114
|
+
export declare const deserializeAws_json1_1PutResourceSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourceSetCommandOutput>;
|
|
91
115
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
92
116
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|