@aws-sdk/client-network-firewall 3.936.0 → 3.940.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 (97) hide show
  1. package/README.md +183 -7
  2. package/dist-cjs/index.js +1000 -42
  3. package/dist-es/NetworkFirewall.js +44 -0
  4. package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
  5. package/dist-es/commands/CreateProxyCommand.js +16 -0
  6. package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
  7. package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
  8. package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
  9. package/dist-es/commands/DeleteProxyCommand.js +16 -0
  10. package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
  11. package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
  12. package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
  13. package/dist-es/commands/DescribeProxyCommand.js +16 -0
  14. package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
  15. package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
  16. package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
  17. package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
  18. package/dist-es/commands/ListProxiesCommand.js +16 -0
  19. package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
  20. package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
  21. package/dist-es/commands/UpdateProxyCommand.js +16 -0
  22. package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
  23. package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
  24. package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
  25. package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
  26. package/dist-es/commands/index.js +22 -0
  27. package/dist-es/models/enums.js +31 -0
  28. package/dist-es/pagination/ListProxiesPaginator.js +4 -0
  29. package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
  30. package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
  31. package/dist-es/pagination/index.js +3 -0
  32. package/dist-es/schemas/schemas_0.js +649 -42
  33. package/dist-types/NetworkFirewall.d.ts +162 -0
  34. package/dist-types/NetworkFirewallClient.d.ts +24 -2
  35. package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
  36. package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
  37. package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
  38. package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
  39. package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
  40. package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
  41. package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
  42. package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
  43. package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
  44. package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
  45. package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
  46. package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
  47. package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
  48. package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
  49. package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
  50. package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
  51. package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
  52. package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
  53. package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
  54. package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
  55. package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
  56. package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
  57. package/dist-types/commands/index.d.ts +22 -0
  58. package/dist-types/models/enums.d.ts +79 -0
  59. package/dist-types/models/models_0.d.ts +1834 -264
  60. package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +3 -0
  64. package/dist-types/schemas/schemas_0.d.ts +104 -0
  65. package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
  66. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
  67. package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
  68. package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
  69. package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
  71. package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
  72. package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
  73. package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
  76. package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
  77. package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
  80. package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
  81. package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
  82. package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
  85. package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
  87. package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  90. package/dist-types/ts3.4/models/enums.d.ts +42 -0
  91. package/dist-types/ts3.4/models/models_0.d.ts +372 -4
  92. package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
  93. package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
  94. package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  96. package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
  97. package/package.json +5 -5
@@ -2,14 +2,23 @@ export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
2
2
  export * from "./AssociateAvailabilityZonesCommand";
3
3
  export * from "./AssociateFirewallPolicyCommand";
4
4
  export * from "./AssociateSubnetsCommand";
5
+ export * from "./AttachRuleGroupsToProxyConfigurationCommand";
5
6
  export * from "./CreateFirewallCommand";
6
7
  export * from "./CreateFirewallPolicyCommand";
8
+ export * from "./CreateProxyCommand";
9
+ export * from "./CreateProxyConfigurationCommand";
10
+ export * from "./CreateProxyRuleGroupCommand";
11
+ export * from "./CreateProxyRulesCommand";
7
12
  export * from "./CreateRuleGroupCommand";
8
13
  export * from "./CreateTLSInspectionConfigurationCommand";
9
14
  export * from "./CreateVpcEndpointAssociationCommand";
10
15
  export * from "./DeleteFirewallCommand";
11
16
  export * from "./DeleteFirewallPolicyCommand";
12
17
  export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
18
+ export * from "./DeleteProxyCommand";
19
+ export * from "./DeleteProxyConfigurationCommand";
20
+ export * from "./DeleteProxyRuleGroupCommand";
21
+ export * from "./DeleteProxyRulesCommand";
13
22
  export * from "./DeleteResourcePolicyCommand";
14
23
  export * from "./DeleteRuleGroupCommand";
15
24
  export * from "./DeleteTLSInspectionConfigurationCommand";
@@ -19,12 +28,17 @@ export * from "./DescribeFirewallMetadataCommand";
19
28
  export * from "./DescribeFirewallPolicyCommand";
20
29
  export * from "./DescribeFlowOperationCommand";
21
30
  export * from "./DescribeLoggingConfigurationCommand";
31
+ export * from "./DescribeProxyCommand";
32
+ export * from "./DescribeProxyConfigurationCommand";
33
+ export * from "./DescribeProxyRuleCommand";
34
+ export * from "./DescribeProxyRuleGroupCommand";
22
35
  export * from "./DescribeResourcePolicyCommand";
23
36
  export * from "./DescribeRuleGroupCommand";
24
37
  export * from "./DescribeRuleGroupMetadataCommand";
25
38
  export * from "./DescribeRuleGroupSummaryCommand";
26
39
  export * from "./DescribeTLSInspectionConfigurationCommand";
27
40
  export * from "./DescribeVpcEndpointAssociationCommand";
41
+ export * from "./DetachRuleGroupsFromProxyConfigurationCommand";
28
42
  export * from "./DisassociateAvailabilityZonesCommand";
29
43
  export * from "./DisassociateSubnetsCommand";
30
44
  export * from "./GetAnalysisReportResultsCommand";
@@ -33,6 +47,9 @@ export * from "./ListFirewallPoliciesCommand";
33
47
  export * from "./ListFirewallsCommand";
34
48
  export * from "./ListFlowOperationResultsCommand";
35
49
  export * from "./ListFlowOperationsCommand";
50
+ export * from "./ListProxiesCommand";
51
+ export * from "./ListProxyConfigurationsCommand";
52
+ export * from "./ListProxyRuleGroupsCommand";
36
53
  export * from "./ListRuleGroupsCommand";
37
54
  export * from "./ListTLSInspectionConfigurationsCommand";
38
55
  export * from "./ListTagsForResourceCommand";
@@ -52,6 +69,11 @@ export * from "./UpdateFirewallEncryptionConfigurationCommand";
52
69
  export * from "./UpdateFirewallPolicyChangeProtectionCommand";
53
70
  export * from "./UpdateFirewallPolicyCommand";
54
71
  export * from "./UpdateLoggingConfigurationCommand";
72
+ export * from "./UpdateProxyCommand";
73
+ export * from "./UpdateProxyConfigurationCommand";
74
+ export * from "./UpdateProxyRuleCommand";
75
+ export * from "./UpdateProxyRuleGroupPrioritiesCommand";
76
+ export * from "./UpdateProxyRulePrioritiesCommand";
55
77
  export * from "./UpdateRuleGroupCommand";
56
78
  export * from "./UpdateSubnetChangeProtectionCommand";
57
79
  export * from "./UpdateTLSInspectionConfigurationCommand";
@@ -70,6 +70,19 @@ export declare const AttachmentStatus: {
70
70
  * @public
71
71
  */
72
72
  export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const ProxyRulePhaseAction: {
78
+ readonly ALERT: "ALERT";
79
+ readonly ALLOW: "ALLOW";
80
+ readonly DENY: "DENY";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type ProxyRulePhaseAction = (typeof ProxyRulePhaseAction)[keyof typeof ProxyRulePhaseAction];
73
86
  /**
74
87
  * @public
75
88
  * @enum
@@ -185,6 +198,59 @@ export declare const ResourceStatus: {
185
198
  * @public
186
199
  */
187
200
  export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const ListenerPropertyType: {
206
+ readonly HTTP: "HTTP";
207
+ readonly HTTPS: "HTTPS";
208
+ };
209
+ /**
210
+ * @public
211
+ */
212
+ export type ListenerPropertyType = (typeof ListenerPropertyType)[keyof typeof ListenerPropertyType];
213
+ /**
214
+ * @public
215
+ * @enum
216
+ */
217
+ export declare const TlsInterceptMode: {
218
+ readonly DISABLED: "DISABLED";
219
+ readonly ENABLED: "ENABLED";
220
+ };
221
+ /**
222
+ * @public
223
+ */
224
+ export type TlsInterceptMode = (typeof TlsInterceptMode)[keyof typeof TlsInterceptMode];
225
+ /**
226
+ * @public
227
+ * @enum
228
+ */
229
+ export declare const ProxyModifyState: {
230
+ readonly COMPLETED: "COMPLETED";
231
+ readonly FAILED: "FAILED";
232
+ readonly MODIFYING: "MODIFYING";
233
+ };
234
+ /**
235
+ * @public
236
+ */
237
+ export type ProxyModifyState = (typeof ProxyModifyState)[keyof typeof ProxyModifyState];
238
+ /**
239
+ * @public
240
+ * @enum
241
+ */
242
+ export declare const ProxyState: {
243
+ readonly ATTACHED: "ATTACHED";
244
+ readonly ATTACHING: "ATTACHING";
245
+ readonly ATTACH_FAILED: "ATTACH_FAILED";
246
+ readonly DETACHED: "DETACHED";
247
+ readonly DETACHING: "DETACHING";
248
+ readonly DETACH_FAILED: "DETACH_FAILED";
249
+ };
250
+ /**
251
+ * @public
252
+ */
253
+ export type ProxyState = (typeof ProxyState)[keyof typeof ProxyState];
188
254
  /**
189
255
  * @public
190
256
  * @enum
@@ -401,3 +467,16 @@ export declare const SubscriptionStatus: {
401
467
  * @public
402
468
  */
403
469
  export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
470
+ /**
471
+ * @public
472
+ * @enum
473
+ */
474
+ export declare const RuleGroupRequestPhase: {
475
+ readonly POST_RES: "POST_RES";
476
+ readonly PRE_DNS: "PRE_DNS";
477
+ readonly PRE_REQ: "PRE_REQ";
478
+ };
479
+ /**
480
+ * @public
481
+ */
482
+ export type RuleGroupRequestPhase = (typeof RuleGroupRequestPhase)[keyof typeof RuleGroupRequestPhase];