@aws-sdk/client-route53resolver 3.1056.0 → 3.1057.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.
Files changed (46) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +72 -7
  3. package/dist-cjs/schemas/schemas_0.js +204 -31
  4. package/dist-es/Route53Resolver.js +10 -0
  5. package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
  6. package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
  7. package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
  8. package/dist-es/commands/ListFirewallRuleTypesCommand.js +16 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/enums.js +11 -7
  11. package/dist-es/pagination/ListFirewallRuleTypesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +198 -26
  14. package/dist-types/Route53Resolver.d.ts +36 -0
  15. package/dist-types/Route53ResolverClient.d.ts +6 -2
  16. package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +189 -0
  17. package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +145 -0
  18. package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +189 -0
  19. package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +2 -0
  20. package/dist-types/commands/CreateFirewallRuleCommand.d.ts +24 -0
  21. package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +2 -0
  22. package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +12 -0
  23. package/dist-types/commands/GetFirewallDomainListCommand.d.ts +2 -0
  24. package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListFirewallRuleTypesCommand.d.ts +101 -0
  26. package/dist-types/commands/ListFirewallRulesCommand.d.ts +12 -0
  27. package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +24 -0
  28. package/dist-types/commands/index.d.ts +4 -0
  29. package/dist-types/models/enums.d.ts +27 -15
  30. package/dist-types/models/models_0.d.ts +923 -204
  31. package/dist-types/pagination/ListFirewallRuleTypesPaginator.d.ts +7 -0
  32. package/dist-types/pagination/index.d.ts +1 -0
  33. package/dist-types/schemas/schemas_0.d.ts +23 -0
  34. package/dist-types/ts3.4/Route53Resolver.d.ts +76 -0
  35. package/dist-types/ts3.4/Route53ResolverClient.d.ts +24 -0
  36. package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +53 -0
  37. package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +53 -0
  38. package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +53 -0
  39. package/dist-types/ts3.4/commands/ListFirewallRuleTypesCommand.d.ts +53 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  41. package/dist-types/ts3.4/models/enums.d.ts +15 -9
  42. package/dist-types/ts3.4/models/models_0.d.ts +137 -19
  43. package/dist-types/ts3.4/pagination/ListFirewallRuleTypesPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
  46. package/package.json +2 -2
@@ -2,6 +2,9 @@ export * from "./AssociateFirewallRuleGroupCommand";
2
2
  export * from "./AssociateResolverEndpointIpAddressCommand";
3
3
  export * from "./AssociateResolverQueryLogConfigCommand";
4
4
  export * from "./AssociateResolverRuleCommand";
5
+ export * from "./BatchCreateFirewallRuleCommand";
6
+ export * from "./BatchDeleteFirewallRuleCommand";
7
+ export * from "./BatchUpdateFirewallRuleCommand";
5
8
  export * from "./CreateFirewallDomainListCommand";
6
9
  export * from "./CreateFirewallRuleCommand";
7
10
  export * from "./CreateFirewallRuleGroupCommand";
@@ -41,6 +44,7 @@ export * from "./ListFirewallDomainListsCommand";
41
44
  export * from "./ListFirewallDomainsCommand";
42
45
  export * from "./ListFirewallRuleGroupAssociationsCommand";
43
46
  export * from "./ListFirewallRuleGroupsCommand";
47
+ export * from "./ListFirewallRuleTypesCommand";
44
48
  export * from "./ListFirewallRulesCommand";
45
49
  export * from "./ListOutpostResolversCommand";
46
50
  export * from "./ListResolverConfigsCommand";
@@ -73,13 +73,6 @@ export const ConfidenceThreshold = {
73
73
  LOW: "LOW",
74
74
  MEDIUM: "MEDIUM",
75
75
  };
76
- export const FirewallDomainListStatus = {
77
- COMPLETE: "COMPLETE",
78
- COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED",
79
- DELETING: "DELETING",
80
- IMPORTING: "IMPORTING",
81
- UPDATING: "UPDATING",
82
- };
83
76
  export const DnsThreatProtection = {
84
77
  DGA: "DGA",
85
78
  DICTIONARY_DGA: "DICTIONARY_DGA",
@@ -89,6 +82,17 @@ export const FirewallDomainRedirectionAction = {
89
82
  INSPECT_REDIRECTION_DOMAIN: "INSPECT_REDIRECTION_DOMAIN",
90
83
  TRUST_REDIRECTION_DOMAIN: "TRUST_REDIRECTION_DOMAIN",
91
84
  };
85
+ export const DomainListType = {
86
+ CONTENT: "CONTENT",
87
+ THREAT: "THREAT",
88
+ };
89
+ export const FirewallDomainListStatus = {
90
+ COMPLETE: "COMPLETE",
91
+ COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED",
92
+ DELETING: "DELETING",
93
+ IMPORTING: "IMPORTING",
94
+ UPDATING: "UPDATING",
95
+ };
92
96
  export const ShareStatus = {
93
97
  NotShared: "NOT_SHARED",
94
98
  SharedByMe: "SHARED_BY_ME",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListFirewallRuleTypesCommand, } from "../commands/ListFirewallRuleTypesCommand";
3
+ import { Route53ResolverClient } from "../Route53ResolverClient";
4
+ export const paginateListFirewallRuleTypes = createPaginator(Route53ResolverClient, ListFirewallRuleTypesCommand, "NextToken", "NextToken", "MaxResults");
@@ -5,6 +5,7 @@ export * from "./ListFirewallDomainsPaginator";
5
5
  export * from "./ListFirewallRuleGroupAssociationsPaginator";
6
6
  export * from "./ListFirewallRuleGroupsPaginator";
7
7
  export * from "./ListFirewallRulesPaginator";
8
+ export * from "./ListFirewallRuleTypesPaginator";
8
9
  export * from "./ListOutpostResolversPaginator";
9
10
  export * from "./ListResolverConfigsPaginator";
10
11
  export * from "./ListResolverDnssecConfigsPaginator";
@@ -16,21 +16,40 @@ const _ARR = "AssociateResolverRule";
16
16
  const _ARRR = "AssociateResolverRuleRequest";
17
17
  const _ARRRs = "AssociateResolverRuleResponse";
18
18
  const _Ar = "Arn";
19
+ const _BCFR = "BatchCreateFirewallRule";
20
+ const _BCFRE = "BatchCreateFirewallRuleError";
21
+ const _BCFREa = "BatchCreateFirewallRuleErrors";
22
+ const _BCFRR = "BatchCreateFirewallRuleRequest";
23
+ const _BCFRRa = "BatchCreateFirewallRuleResponse";
24
+ const _BDFR = "BatchDeleteFirewallRule";
25
+ const _BDFRE = "BatchDeleteFirewallRuleError";
26
+ const _BDFREa = "BatchDeleteFirewallRuleErrors";
27
+ const _BDFRR = "BatchDeleteFirewallRuleRequest";
28
+ const _BDFRRa = "BatchDeleteFirewallRuleResponse";
19
29
  const _BOD = "BlockOverrideDomain";
20
30
  const _BODT = "BlockOverrideDnsType";
21
31
  const _BOT = "BlockOverrideTtl";
22
32
  const _BR = "BlockResponse";
23
- const _C = "Config";
33
+ const _BUFR = "BatchUpdateFirewallRule";
34
+ const _BUFRE = "BatchUpdateFirewallRuleError";
35
+ const _BUFREa = "BatchUpdateFirewallRuleErrors";
36
+ const _BUFRR = "BatchUpdateFirewallRuleRequest";
37
+ const _BUFRRa = "BatchUpdateFirewallRuleResponse";
38
+ const _C = "Code";
24
39
  const _CE = "ConflictException";
40
+ const _CEr = "CreateErrors";
25
41
  const _CFDL = "CreateFirewallDomainList";
26
42
  const _CFDLR = "CreateFirewallDomainListRequest";
27
43
  const _CFDLRr = "CreateFirewallDomainListResponse";
28
- const _CFR = "CreateFirewallRule";
44
+ const _CFR = "CreatedFirewallRules";
45
+ const _CFRE = "CreateFirewallRuleEntries";
46
+ const _CFREr = "CreateFirewallRuleEntry";
29
47
  const _CFRG = "CreateFirewallRuleGroup";
30
48
  const _CFRGR = "CreateFirewallRuleGroupRequest";
31
49
  const _CFRGRr = "CreateFirewallRuleGroupResponse";
32
50
  const _CFRR = "CreateFirewallRuleRequest";
33
51
  const _CFRRr = "CreateFirewallRuleResponse";
52
+ const _CFRr = "CreateFirewallRule";
34
53
  const _COR = "CreateOutpostResolver";
35
54
  const _CORR = "CreateOutpostResolverRequest";
36
55
  const _CORRr = "CreateOutpostResolverResponse";
@@ -46,14 +65,19 @@ const _CRRR = "CreateResolverRuleRequest";
46
65
  const _CRRRr = "CreateResolverRuleResponse";
47
66
  const _CT = "ConfidenceThreshold";
48
67
  const _CTr = "CreationTime";
68
+ const _Ca = "Category";
69
+ const _Co = "Config";
49
70
  const _D = "Direction";
50
71
  const _DA = "DestinationArn";
51
72
  const _DC = "DomainCount";
52
- const _DE = "Dns64Enabled";
73
+ const _DE = "DeleteErrors";
74
+ const _DEn = "Dns64Enabled";
53
75
  const _DFDL = "DeleteFirewallDomainList";
54
76
  const _DFDLR = "DeleteFirewallDomainListRequest";
55
77
  const _DFDLRe = "DeleteFirewallDomainListResponse";
56
- const _DFR = "DeleteFirewallRule";
78
+ const _DFR = "DeletedFirewallRules";
79
+ const _DFRE = "DeleteFirewallRuleEntries";
80
+ const _DFREe = "DeleteFirewallRuleEntry";
57
81
  const _DFRG = "DeleteFirewallRuleGroup";
58
82
  const _DFRGR = "DeleteFirewallRuleGroupRequest";
59
83
  const _DFRGRe = "DeleteFirewallRuleGroupResponse";
@@ -62,8 +86,10 @@ const _DFRGRis = "DisassociateFirewallRuleGroupResponse";
62
86
  const _DFRGi = "DisassociateFirewallRuleGroup";
63
87
  const _DFRR = "DeleteFirewallRuleRequest";
64
88
  const _DFRRe = "DeleteFirewallRuleResponse";
89
+ const _DFRe = "DeleteFirewallRule";
65
90
  const _DFU = "DomainFileUrl";
66
91
  const _DN = "DomainName";
92
+ const _DNi = "DisplayName";
67
93
  const _DOR = "DeleteOutpostResolver";
68
94
  const _DORR = "DeleteOutpostResolverRequest";
69
95
  const _DORRe = "DeleteOutpostResolverResponse";
@@ -87,10 +113,16 @@ const _DRRRi = "DisassociateResolverRuleRequest";
87
113
  const _DRRRis = "DisassociateResolverRuleResponse";
88
114
  const _DRRi = "DisassociateResolverRule";
89
115
  const _DTP = "DnsThreatProtection";
116
+ const _DTPRTC = "DnsThreatProtectionRuleTypeConfig";
117
+ const _De = "Description";
90
118
  const _Do = "Domains";
91
119
  const _E = "Error";
92
120
  const _EM = "ErrorMessage";
93
121
  const _F = "Filter";
122
+ const _FACC = "FirewallAdvancedContentCategory";
123
+ const _FACCC = "FirewallAdvancedContentCategoryConfig";
124
+ const _FATC = "FirewallAdvancedThreatCategory";
125
+ const _FATCC = "FirewallAdvancedThreatCategoryConfig";
94
126
  const _FC = "FirewallConfig";
95
127
  const _FCL = "FirewallConfigList";
96
128
  const _FCi = "FirewallConfigs";
@@ -112,6 +144,10 @@ const _FRGM = "FirewallRuleGroupMetadata";
112
144
  const _FRGML = "FirewallRuleGroupMetadataList";
113
145
  const _FRGP = "FirewallRuleGroupPolicy";
114
146
  const _FRGi = "FirewallRuleGroups";
147
+ const _FRT = "FirewallRuleType";
148
+ const _FRTD = "FirewallRuleTypeDefinition";
149
+ const _FRTDi = "FirewallRuleTypeDefinitions";
150
+ const _FRTi = "FirewallRuleTypes";
115
151
  const _FRi = "FirewallRules";
116
152
  const _FTPI = "FirewallThreatProtectionId";
117
153
  const _Fi = "Filters";
@@ -204,6 +240,9 @@ const _LFRGR = "ListFirewallRuleGroupsRequest";
204
240
  const _LFRGRi = "ListFirewallRuleGroupsResponse";
205
241
  const _LFRR = "ListFirewallRulesRequest";
206
242
  const _LFRRi = "ListFirewallRulesResponse";
243
+ const _LFRT = "ListFirewallRuleTypes";
244
+ const _LFRTR = "ListFirewallRuleTypesRequest";
245
+ const _LFRTRi = "ListFirewallRuleTypesResponse";
207
246
  const _LOR = "ListOutpostResolvers";
208
247
  const _LORR = "ListOutpostResolversRequest";
209
248
  const _LORRi = "ListOutpostResolversResponse";
@@ -235,6 +274,7 @@ const _LTFR = "ListTagsForResource";
235
274
  const _LTFRR = "ListTagsForResourceRequest";
236
275
  const _LTFRRi = "ListTagsForResourceResponse";
237
276
  const _M = "Message";
277
+ const _MLT = "ManagedListType";
238
278
  const _MON = "ManagedOwnerName";
239
279
  const _MP = "MutationProtection";
240
280
  const _MR = "MaxResults";
@@ -324,18 +364,22 @@ const _TR = "TagResource";
324
364
  const _TRR = "TagResourceRequest";
325
365
  const _TRRa = "TagResourceResponse";
326
366
  const _Ta = "Tag";
367
+ const _UE = "UpdateErrors";
327
368
  const _UFC = "UpdateFirewallConfig";
328
369
  const _UFCR = "UpdateFirewallConfigRequest";
329
370
  const _UFCRp = "UpdateFirewallConfigResponse";
330
371
  const _UFD = "UpdateFirewallDomains";
331
372
  const _UFDR = "UpdateFirewallDomainsRequest";
332
373
  const _UFDRp = "UpdateFirewallDomainsResponse";
333
- const _UFR = "UpdateFirewallRule";
374
+ const _UFR = "UpdatedFirewallRules";
375
+ const _UFRE = "UpdateFirewallRuleEntries";
376
+ const _UFREp = "UpdateFirewallRuleEntry";
334
377
  const _UFRGA = "UpdateFirewallRuleGroupAssociation";
335
378
  const _UFRGAR = "UpdateFirewallRuleGroupAssociationRequest";
336
379
  const _UFRGARp = "UpdateFirewallRuleGroupAssociationResponse";
337
380
  const _UFRR = "UpdateFirewallRuleRequest";
338
381
  const _UFRRp = "UpdateFirewallRuleResponse";
382
+ const _UFRp = "UpdateFirewallRule";
339
383
  const _UIA = "UpdateIpAddress";
340
384
  const _UIAp = "UpdateIpAddresses";
341
385
  const _UOR = "UpdateOutpostResolver";
@@ -357,12 +401,12 @@ const _URRR = "UpdateResolverRuleRequest";
357
401
  const _URRRp = "UpdateResolverRuleResponse";
358
402
  const _URRn = "UntagResourceResponse";
359
403
  const _URRp = "UpdateResolverRule";
360
- const _V = "Values";
404
+ const _V = "Value";
361
405
  const _VE = "ValidationException";
362
406
  const _VI = "VpcId";
363
407
  const _VPCI = "VPCId";
364
408
  const _VS = "ValidationStatus";
365
- const _Va = "Value";
409
+ const _Va = "Values";
366
410
  const _Val = "Validation";
367
411
  const _c = "client";
368
412
  const _e = "error";
@@ -521,6 +565,51 @@ export var AssociateResolverRuleResponse$ = [3, n0, _ARRRs,
521
565
  [_RRA],
522
566
  [() => ResolverRuleAssociation$]
523
567
  ];
568
+ export var BatchCreateFirewallRuleError$ = [3, n0, _BCFRE,
569
+ 0,
570
+ [_FR, _C, _M],
571
+ [() => CreateFirewallRuleEntry$, 0, 0]
572
+ ];
573
+ export var BatchCreateFirewallRuleRequest$ = [3, n0, _BCFRR,
574
+ 0,
575
+ [_CFRE],
576
+ [() => CreateFirewallRuleEntries], 1
577
+ ];
578
+ export var BatchCreateFirewallRuleResponse$ = [3, n0, _BCFRRa,
579
+ 0,
580
+ [_CFR, _CEr],
581
+ [() => FirewallRules, () => BatchCreateFirewallRuleErrors]
582
+ ];
583
+ export var BatchDeleteFirewallRuleError$ = [3, n0, _BDFRE,
584
+ 0,
585
+ [_FR, _C, _M],
586
+ [() => DeleteFirewallRuleEntry$, 0, 0]
587
+ ];
588
+ export var BatchDeleteFirewallRuleRequest$ = [3, n0, _BDFRR,
589
+ 0,
590
+ [_DFRE],
591
+ [() => DeleteFirewallRuleEntries], 1
592
+ ];
593
+ export var BatchDeleteFirewallRuleResponse$ = [3, n0, _BDFRRa,
594
+ 0,
595
+ [_DFR, _DE],
596
+ [() => FirewallRules, () => BatchDeleteFirewallRuleErrors]
597
+ ];
598
+ export var BatchUpdateFirewallRuleError$ = [3, n0, _BUFRE,
599
+ 0,
600
+ [_FR, _C, _M],
601
+ [() => UpdateFirewallRuleEntry$, 0, 0]
602
+ ];
603
+ export var BatchUpdateFirewallRuleRequest$ = [3, n0, _BUFRR,
604
+ 0,
605
+ [_UFRE],
606
+ [() => UpdateFirewallRuleEntries], 1
607
+ ];
608
+ export var BatchUpdateFirewallRuleResponse$ = [3, n0, _BUFRRa,
609
+ 0,
610
+ [_UFR, _UE],
611
+ [() => FirewallRules, () => BatchUpdateFirewallRuleErrors]
612
+ ];
524
613
  export var CreateFirewallDomainListRequest$ = [3, n0, _CFDLR,
525
614
  0,
526
615
  [_N, _CRI, _T],
@@ -531,6 +620,11 @@ export var CreateFirewallDomainListResponse$ = [3, n0, _CFDLRr,
531
620
  [_FDL],
532
621
  [() => FirewallDomainList$]
533
622
  ];
623
+ export var CreateFirewallRuleEntry$ = [3, n0, _CFREr,
624
+ 0,
625
+ [_CRI, _FRGI, _P, _A, _N, _FDLI, _BR, _BOD, _BODT, _BOT, _FDRA, _Q, _DTP, _CT, _FRT],
626
+ [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, () => FirewallRuleType$], 5
627
+ ];
534
628
  export var CreateFirewallRuleGroupRequest$ = [3, n0, _CFRGR,
535
629
  0,
536
630
  [_N, _CRI, _T],
@@ -543,8 +637,8 @@ export var CreateFirewallRuleGroupResponse$ = [3, n0, _CFRGRr,
543
637
  ];
544
638
  export var CreateFirewallRuleRequest$ = [3, n0, _CFRR,
545
639
  0,
546
- [_FRGI, _P, _A, _N, _CRI, _FDLI, _BR, _BOD, _BODT, _BOT, _FDRA, _Q, _DTP, _CT],
547
- [0, 1, 0, 0, [0, 4], 0, 0, 0, 0, 1, 0, 0, 0, 0], 4
640
+ [_FRGI, _P, _A, _N, _CRI, _FDLI, _BR, _BOD, _BODT, _BOT, _FDRA, _Q, _DTP, _CT, _FRT],
641
+ [0, 1, 0, 0, [0, 4], 0, 0, 0, 0, 1, 0, 0, 0, 0, () => FirewallRuleType$], 4
548
642
  ];
549
643
  export var CreateFirewallRuleResponse$ = [3, n0, _CFRRr,
550
644
  0,
@@ -563,7 +657,7 @@ export var CreateOutpostResolverResponse$ = [3, n0, _CORRr,
563
657
  ];
564
658
  export var CreateResolverEndpointRequest$ = [3, n0, _CRER,
565
659
  0,
566
- [_CRI, _SGI, _D, _IAp, _N, _OA, _PIT, _T, _RET, _Pr, _REME, _TNSME, _DE, _IIAE],
660
+ [_CRI, _SGI, _D, _IAp, _N, _OA, _PIT, _T, _RET, _Pr, _REME, _TNSME, _DEn, _IIAE],
567
661
  [0, 64 | 0, 0, () => IpAddressesRequest, 0, 0, 0, () => TagList, 0, 64 | 0, 2, 2, 2, 2], 4
568
662
  ];
569
663
  export var CreateResolverEndpointResponse$ = [3, n0, _CRERr,
@@ -601,6 +695,11 @@ export var DeleteFirewallDomainListResponse$ = [3, n0, _DFDLRe,
601
695
  [_FDL],
602
696
  [() => FirewallDomainList$]
603
697
  ];
698
+ export var DeleteFirewallRuleEntry$ = [3, n0, _DFREe,
699
+ 0,
700
+ [_FRGI, _FDLI, _FTPI, _Q],
701
+ [0, 0, 0, 0], 1
702
+ ];
604
703
  export var DeleteFirewallRuleGroupRequest$ = [3, n0, _DFRGR,
605
704
  0,
606
705
  [_FRGI],
@@ -701,11 +800,26 @@ export var DisassociateResolverRuleResponse$ = [3, n0, _DRRRis,
701
800
  [_RRA],
702
801
  [() => ResolverRuleAssociation$]
703
802
  ];
803
+ export var DnsThreatProtectionRuleTypeConfig$ = [3, n0, _DTPRTC,
804
+ 0,
805
+ [_V, _CT],
806
+ [0, 0], 2
807
+ ];
704
808
  export var Filter$ = [3, n0, _F,
705
809
  0,
706
- [_N, _V],
810
+ [_N, _Va],
707
811
  [0, 64 | 0]
708
812
  ];
813
+ export var FirewallAdvancedContentCategoryConfig$ = [3, n0, _FACCC,
814
+ 0,
815
+ [_Ca],
816
+ [0], 1
817
+ ];
818
+ export var FirewallAdvancedThreatCategoryConfig$ = [3, n0, _FATCC,
819
+ 0,
820
+ [_Ca],
821
+ [0], 1
822
+ ];
709
823
  export var FirewallConfig$ = [3, n0, _FC,
710
824
  0,
711
825
  [_I, _RI, _OI, _FFO],
@@ -713,18 +827,18 @@ export var FirewallConfig$ = [3, n0, _FC,
713
827
  ];
714
828
  export var FirewallDomainList$ = [3, n0, _FDL,
715
829
  0,
716
- [_I, _Ar, _N, _DC, _S, _SM, _MON, _CRI, _CTr, _MT],
717
- [0, 0, 0, 1, 0, 0, 0, 0, 0, 0]
830
+ [_I, _Ar, _N, _DC, _S, _SM, _MON, _CRI, _CTr, _MT, _Ca, _MLT],
831
+ [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]
718
832
  ];
719
833
  export var FirewallDomainListMetadata$ = [3, n0, _FDLM,
720
834
  0,
721
- [_I, _Ar, _N, _CRI, _MON],
722
- [0, 0, 0, 0, 0]
835
+ [_I, _Ar, _N, _CRI, _MON, _MLT, _Ca],
836
+ [0, 0, 0, 0, 0, 0, 0]
723
837
  ];
724
838
  export var FirewallRule$ = [3, n0, _FR,
725
839
  0,
726
- [_FRGI, _FDLI, _FTPI, _N, _P, _A, _BR, _BOD, _BODT, _BOT, _CRI, _CTr, _MT, _FDRA, _Q, _DTP, _CT],
727
- [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]
840
+ [_FRGI, _FDLI, _FTPI, _N, _P, _A, _BR, _BOD, _BODT, _BOT, _CRI, _CTr, _MT, _FDRA, _Q, _DTP, _CT, _FRT],
841
+ [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, () => FirewallRuleType$]
728
842
  ];
729
843
  export var FirewallRuleGroup$ = [3, n0, _FRG,
730
844
  0,
@@ -741,6 +855,16 @@ export var FirewallRuleGroupMetadata$ = [3, n0, _FRGM,
741
855
  [_I, _Ar, _N, _OI, _CRI, _SS],
742
856
  [0, 0, 0, 0, 0, 0]
743
857
  ];
858
+ export var FirewallRuleType$ = [3, n0, _FRT,
859
+ 0,
860
+ [_FACC, _FATC, _DTP],
861
+ [() => FirewallAdvancedContentCategoryConfig$, () => FirewallAdvancedThreatCategoryConfig$, () => DnsThreatProtectionRuleTypeConfig$]
862
+ ];
863
+ export var FirewallRuleTypeDefinition$ = [3, n0, _FRTD,
864
+ 0,
865
+ [_RTu, _V, _DNi, _De],
866
+ [0, 0, 0, 0]
867
+ ];
744
868
  export var GetFirewallConfigRequest$ = [3, n0, _GFCR,
745
869
  0,
746
870
  [_RI],
@@ -976,6 +1100,16 @@ export var ListFirewallRulesResponse$ = [3, n0, _LFRRi,
976
1100
  [_NT, _FRi],
977
1101
  [0, () => FirewallRules]
978
1102
  ];
1103
+ export var ListFirewallRuleTypesRequest$ = [3, n0, _LFRTR,
1104
+ 0,
1105
+ [_RTu, _MR, _NT],
1106
+ [0, 1, 0]
1107
+ ];
1108
+ export var ListFirewallRuleTypesResponse$ = [3, n0, _LFRTRi,
1109
+ 0,
1110
+ [_FRTi, _NT],
1111
+ [() => FirewallRuleTypeDefinitions, 0]
1112
+ ];
979
1113
  export var ListOutpostResolversRequest$ = [3, n0, _LORR,
980
1114
  0,
981
1115
  [_OA, _MR, _NT],
@@ -1123,7 +1257,7 @@ export var ResolverDnssecConfig$ = [3, n0, _RDCe,
1123
1257
  ];
1124
1258
  export var ResolverEndpoint$ = [3, n0, _RE,
1125
1259
  0,
1126
- [_I, _CRI, _Ar, _N, _SGI, _D, _IAC, _HVPCI, _S, _SM, _CTr, _MT, _OA, _PIT, _RET, _Pr, _REME, _TNSME, _DE, _IIAE],
1260
+ [_I, _CRI, _Ar, _N, _SGI, _D, _IAC, _HVPCI, _S, _SM, _CTr, _MT, _OA, _PIT, _RET, _Pr, _REME, _TNSME, _DEn, _IIAE],
1127
1261
  [0, 0, 0, 0, 64 | 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 2, 2, 2, 2]
1128
1262
  ];
1129
1263
  export var ResolverQueryLogConfig$ = [3, n0, _RQLC,
@@ -1153,7 +1287,7 @@ export var ResolverRuleConfig$ = [3, n0, _RRC,
1153
1287
  ];
1154
1288
  export var Tag$ = [3, n0, _Ta,
1155
1289
  0,
1156
- [_K, _Va],
1290
+ [_K, _V],
1157
1291
  [0, 0], 2
1158
1292
  ];
1159
1293
  export var TagResourceRequest$ = [3, n0, _TRR,
@@ -1201,6 +1335,11 @@ export var UpdateFirewallDomainsResponse$ = [3, n0, _UFDRp,
1201
1335
  [_I, _N, _S, _SM],
1202
1336
  [0, 0, 0, 0]
1203
1337
  ];
1338
+ export var UpdateFirewallRuleEntry$ = [3, n0, _UFREp,
1339
+ 0,
1340
+ [_FRGI, _FDLI, _FTPI, _P, _A, _BR, _BOD, _BODT, _BOT, _N, _FDRA, _Q, _DTP, _CT, _FRT],
1341
+ [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, () => FirewallRuleType$], 1
1342
+ ];
1204
1343
  export var UpdateFirewallRuleGroupAssociationRequest$ = [3, n0, _UFRGAR,
1205
1344
  0,
1206
1345
  [_FRGAI, _P, _MP, _N],
@@ -1213,8 +1352,8 @@ export var UpdateFirewallRuleGroupAssociationResponse$ = [3, n0, _UFRGARp,
1213
1352
  ];
1214
1353
  export var UpdateFirewallRuleRequest$ = [3, n0, _UFRR,
1215
1354
  0,
1216
- [_FRGI, _FDLI, _FTPI, _P, _A, _BR, _BOD, _BODT, _BOT, _N, _FDRA, _Q, _DTP, _CT],
1217
- [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 1
1355
+ [_FRGI, _FDLI, _FTPI, _P, _A, _BR, _BOD, _BODT, _BOT, _N, _FDRA, _Q, _DTP, _CT, _FRT],
1356
+ [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, () => FirewallRuleType$], 1
1218
1357
  ];
1219
1358
  export var UpdateFirewallRuleResponse$ = [3, n0, _UFRRp,
1220
1359
  0,
@@ -1258,7 +1397,7 @@ export var UpdateResolverDnssecConfigResponse$ = [3, n0, _URDCRp,
1258
1397
  ];
1259
1398
  export var UpdateResolverEndpointRequest$ = [3, n0, _URER,
1260
1399
  0,
1261
- [_REI, _N, _RET, _UIAp, _Pr, _REME, _TNSME, _DE, _IIAE],
1400
+ [_REI, _N, _RET, _UIAp, _Pr, _REME, _TNSME, _DEn, _IIAE],
1262
1401
  [0, 0, 0, () => UpdateIpAddresses, 64 | 0, 2, 2, 2, 2], 1
1263
1402
  ];
1264
1403
  export var UpdateResolverEndpointResponse$ = [3, n0, _URERp,
@@ -1268,7 +1407,7 @@ export var UpdateResolverEndpointResponse$ = [3, n0, _URERp,
1268
1407
  ];
1269
1408
  export var UpdateResolverRuleRequest$ = [3, n0, _URRR,
1270
1409
  0,
1271
- [_RRI, _C],
1410
+ [_RRI, _Co],
1272
1411
  [0, () => ResolverRuleConfig$], 2
1273
1412
  ];
1274
1413
  export var UpdateResolverRuleResponse$ = [3, n0, _URRRp,
@@ -1276,6 +1415,21 @@ export var UpdateResolverRuleResponse$ = [3, n0, _URRRp,
1276
1415
  [_RR],
1277
1416
  [() => ResolverRule$]
1278
1417
  ];
1418
+ var BatchCreateFirewallRuleErrors = [1, n0, _BCFREa,
1419
+ 0, () => BatchCreateFirewallRuleError$
1420
+ ];
1421
+ var BatchDeleteFirewallRuleErrors = [1, n0, _BDFREa,
1422
+ 0, () => BatchDeleteFirewallRuleError$
1423
+ ];
1424
+ var BatchUpdateFirewallRuleErrors = [1, n0, _BUFREa,
1425
+ 0, () => BatchUpdateFirewallRuleError$
1426
+ ];
1427
+ var CreateFirewallRuleEntries = [1, n0, _CFRE,
1428
+ 0, () => CreateFirewallRuleEntry$
1429
+ ];
1430
+ var DeleteFirewallRuleEntries = [1, n0, _DFRE,
1431
+ 0, () => DeleteFirewallRuleEntry$
1432
+ ];
1279
1433
  var Filters = [1, n0, _Fi,
1280
1434
  0, () => Filter$
1281
1435
  ];
@@ -1296,6 +1450,9 @@ var FirewallRuleGroupMetadataList = [1, n0, _FRGML,
1296
1450
  var FirewallRules = [1, n0, _FRi,
1297
1451
  0, () => FirewallRule$
1298
1452
  ];
1453
+ var FirewallRuleTypeDefinitions = [1, n0, _FRTDi,
1454
+ 0, () => FirewallRuleTypeDefinition$
1455
+ ];
1299
1456
  var IpAddressesRequest = [1, n0, _IARpd,
1300
1457
  0, () => IpAddressRequest$
1301
1458
  ];
@@ -1335,6 +1492,9 @@ var TagList = [1, n0, _TL,
1335
1492
  var TargetList = [1, n0, _TLa,
1336
1493
  0, () => TargetAddress$
1337
1494
  ];
1495
+ var UpdateFirewallRuleEntries = [1, n0, _UFRE,
1496
+ 0, () => UpdateFirewallRuleEntry$
1497
+ ];
1338
1498
  var UpdateIpAddresses = [1, n0, _UIAp,
1339
1499
  0, () => UpdateIpAddress$
1340
1500
  ];
@@ -1350,10 +1510,19 @@ export var AssociateResolverQueryLogConfig$ = [9, n0, _ARQLC,
1350
1510
  export var AssociateResolverRule$ = [9, n0, _ARR,
1351
1511
  0, () => AssociateResolverRuleRequest$, () => AssociateResolverRuleResponse$
1352
1512
  ];
1513
+ export var BatchCreateFirewallRule$ = [9, n0, _BCFR,
1514
+ 0, () => BatchCreateFirewallRuleRequest$, () => BatchCreateFirewallRuleResponse$
1515
+ ];
1516
+ export var BatchDeleteFirewallRule$ = [9, n0, _BDFR,
1517
+ 0, () => BatchDeleteFirewallRuleRequest$, () => BatchDeleteFirewallRuleResponse$
1518
+ ];
1519
+ export var BatchUpdateFirewallRule$ = [9, n0, _BUFR,
1520
+ 0, () => BatchUpdateFirewallRuleRequest$, () => BatchUpdateFirewallRuleResponse$
1521
+ ];
1353
1522
  export var CreateFirewallDomainList$ = [9, n0, _CFDL,
1354
1523
  0, () => CreateFirewallDomainListRequest$, () => CreateFirewallDomainListResponse$
1355
1524
  ];
1356
- export var CreateFirewallRule$ = [9, n0, _CFR,
1525
+ export var CreateFirewallRule$ = [9, n0, _CFRr,
1357
1526
  0, () => CreateFirewallRuleRequest$, () => CreateFirewallRuleResponse$
1358
1527
  ];
1359
1528
  export var CreateFirewallRuleGroup$ = [9, n0, _CFRG,
@@ -1374,7 +1543,7 @@ export var CreateResolverRule$ = [9, n0, _CRR,
1374
1543
  export var DeleteFirewallDomainList$ = [9, n0, _DFDL,
1375
1544
  0, () => DeleteFirewallDomainListRequest$, () => DeleteFirewallDomainListResponse$
1376
1545
  ];
1377
- export var DeleteFirewallRule$ = [9, n0, _DFR,
1546
+ export var DeleteFirewallRule$ = [9, n0, _DFRe,
1378
1547
  0, () => DeleteFirewallRuleRequest$, () => DeleteFirewallRuleResponse$
1379
1548
  ];
1380
1549
  export var DeleteFirewallRuleGroup$ = [9, n0, _DFRG,
@@ -1470,6 +1639,9 @@ export var ListFirewallRuleGroups$ = [9, n0, _LFRG,
1470
1639
  export var ListFirewallRules$ = [9, n0, _LFR,
1471
1640
  0, () => ListFirewallRulesRequest$, () => ListFirewallRulesResponse$
1472
1641
  ];
1642
+ export var ListFirewallRuleTypes$ = [9, n0, _LFRT,
1643
+ 0, () => ListFirewallRuleTypesRequest$, () => ListFirewallRuleTypesResponse$
1644
+ ];
1473
1645
  export var ListOutpostResolvers$ = [9, n0, _LOR,
1474
1646
  0, () => ListOutpostResolversRequest$, () => ListOutpostResolversResponse$
1475
1647
  ];
@@ -1521,7 +1693,7 @@ export var UpdateFirewallConfig$ = [9, n0, _UFC,
1521
1693
  export var UpdateFirewallDomains$ = [9, n0, _UFD,
1522
1694
  0, () => UpdateFirewallDomainsRequest$, () => UpdateFirewallDomainsResponse$
1523
1695
  ];
1524
- export var UpdateFirewallRule$ = [9, n0, _UFR,
1696
+ export var UpdateFirewallRule$ = [9, n0, _UFRp,
1525
1697
  0, () => UpdateFirewallRuleRequest$, () => UpdateFirewallRuleResponse$
1526
1698
  ];
1527
1699
  export var UpdateFirewallRuleGroupAssociation$ = [9, n0, _UFRGA,
@@ -3,6 +3,9 @@ import { type AssociateFirewallRuleGroupCommandInput, type AssociateFirewallRule
3
3
  import { type AssociateResolverEndpointIpAddressCommandInput, type AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
4
4
  import { type AssociateResolverQueryLogConfigCommandInput, type AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
5
5
  import { type AssociateResolverRuleCommandInput, type AssociateResolverRuleCommandOutput } from "./commands/AssociateResolverRuleCommand";
6
+ import { type BatchCreateFirewallRuleCommandInput, type BatchCreateFirewallRuleCommandOutput } from "./commands/BatchCreateFirewallRuleCommand";
7
+ import { type BatchDeleteFirewallRuleCommandInput, type BatchDeleteFirewallRuleCommandOutput } from "./commands/BatchDeleteFirewallRuleCommand";
8
+ import { type BatchUpdateFirewallRuleCommandInput, type BatchUpdateFirewallRuleCommandOutput } from "./commands/BatchUpdateFirewallRuleCommand";
6
9
  import { type CreateFirewallDomainListCommandInput, type CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
7
10
  import { type CreateFirewallRuleCommandInput, type CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
8
11
  import { type CreateFirewallRuleGroupCommandInput, type CreateFirewallRuleGroupCommandOutput } from "./commands/CreateFirewallRuleGroupCommand";
@@ -43,6 +46,7 @@ import { type ListFirewallDomainsCommandInput, type ListFirewallDomainsCommandOu
43
46
  import { type ListFirewallRuleGroupAssociationsCommandInput, type ListFirewallRuleGroupAssociationsCommandOutput } from "./commands/ListFirewallRuleGroupAssociationsCommand";
44
47
  import { type ListFirewallRuleGroupsCommandInput, type ListFirewallRuleGroupsCommandOutput } from "./commands/ListFirewallRuleGroupsCommand";
45
48
  import { type ListFirewallRulesCommandInput, type ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
49
+ import { type ListFirewallRuleTypesCommandInput, type ListFirewallRuleTypesCommandOutput } from "./commands/ListFirewallRuleTypesCommand";
46
50
  import { type ListOutpostResolversCommandInput, type ListOutpostResolversCommandOutput } from "./commands/ListOutpostResolversCommand";
47
51
  import { type ListResolverConfigsCommandInput, type ListResolverConfigsCommandOutput } from "./commands/ListResolverConfigsCommand";
48
52
  import { type ListResolverDnssecConfigsCommandInput, type ListResolverDnssecConfigsCommandOutput } from "./commands/ListResolverDnssecConfigsCommand";
@@ -93,6 +97,24 @@ export interface Route53Resolver {
93
97
  associateResolverRule(args: AssociateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResolverRuleCommandOutput>;
94
98
  associateResolverRule(args: AssociateResolverRuleCommandInput, cb: (err: any, data?: AssociateResolverRuleCommandOutput) => void): void;
95
99
  associateResolverRule(args: AssociateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResolverRuleCommandOutput) => void): void;
100
+ /**
101
+ * @see {@link BatchCreateFirewallRuleCommand}
102
+ */
103
+ batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateFirewallRuleCommandOutput>;
104
+ batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void): void;
105
+ batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void): void;
106
+ /**
107
+ * @see {@link BatchDeleteFirewallRuleCommand}
108
+ */
109
+ batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteFirewallRuleCommandOutput>;
110
+ batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void): void;
111
+ batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void): void;
112
+ /**
113
+ * @see {@link BatchUpdateFirewallRuleCommand}
114
+ */
115
+ batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateFirewallRuleCommandOutput>;
116
+ batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void): void;
117
+ batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void): void;
96
118
  /**
97
119
  * @see {@link CreateFirewallDomainListCommand}
98
120
  */
@@ -337,6 +359,13 @@ export interface Route53Resolver {
337
359
  listFirewallRules(args: ListFirewallRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRulesCommandOutput>;
338
360
  listFirewallRules(args: ListFirewallRulesCommandInput, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
339
361
  listFirewallRules(args: ListFirewallRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
362
+ /**
363
+ * @see {@link ListFirewallRuleTypesCommand}
364
+ */
365
+ listFirewallRuleTypes(): Promise<ListFirewallRuleTypesCommandOutput>;
366
+ listFirewallRuleTypes(args: ListFirewallRuleTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRuleTypesCommandOutput>;
367
+ listFirewallRuleTypes(args: ListFirewallRuleTypesCommandInput, cb: (err: any, data?: ListFirewallRuleTypesCommandOutput) => void): void;
368
+ listFirewallRuleTypes(args: ListFirewallRuleTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRuleTypesCommandOutput) => void): void;
340
369
  /**
341
370
  * @see {@link ListOutpostResolversCommand}
342
371
  */
@@ -531,6 +560,13 @@ export interface Route53Resolver {
531
560
  * @returns AsyncIterable of {@link ListFirewallRulesCommandOutput}.
532
561
  */
533
562
  paginateListFirewallRules(args: ListFirewallRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallRulesCommandOutput>;
563
+ /**
564
+ * @see {@link ListFirewallRuleTypesCommand}
565
+ * @param args - command input.
566
+ * @param paginationConfig - optional pagination config.
567
+ * @returns AsyncIterable of {@link ListFirewallRuleTypesCommandOutput}.
568
+ */
569
+ paginateListFirewallRuleTypes(args?: ListFirewallRuleTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallRuleTypesCommandOutput>;
534
570
  /**
535
571
  * @see {@link ListOutpostResolversCommand}
536
572
  * @param args - command input.