@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
@@ -3,14 +3,23 @@ import { AcceptNetworkFirewallTransitGatewayAttachmentCommandInput, AcceptNetwor
3
3
  import { AssociateAvailabilityZonesCommandInput, AssociateAvailabilityZonesCommandOutput } from "./commands/AssociateAvailabilityZonesCommand";
4
4
  import { AssociateFirewallPolicyCommandInput, AssociateFirewallPolicyCommandOutput } from "./commands/AssociateFirewallPolicyCommand";
5
5
  import { AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput } from "./commands/AssociateSubnetsCommand";
6
+ import { AttachRuleGroupsToProxyConfigurationCommandInput, AttachRuleGroupsToProxyConfigurationCommandOutput } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
6
7
  import { CreateFirewallCommandInput, CreateFirewallCommandOutput } from "./commands/CreateFirewallCommand";
7
8
  import { CreateFirewallPolicyCommandInput, CreateFirewallPolicyCommandOutput } from "./commands/CreateFirewallPolicyCommand";
9
+ import { CreateProxyCommandInput, CreateProxyCommandOutput } from "./commands/CreateProxyCommand";
10
+ import { CreateProxyConfigurationCommandInput, CreateProxyConfigurationCommandOutput } from "./commands/CreateProxyConfigurationCommand";
11
+ import { CreateProxyRuleGroupCommandInput, CreateProxyRuleGroupCommandOutput } from "./commands/CreateProxyRuleGroupCommand";
12
+ import { CreateProxyRulesCommandInput, CreateProxyRulesCommandOutput } from "./commands/CreateProxyRulesCommand";
8
13
  import { CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput } from "./commands/CreateRuleGroupCommand";
9
14
  import { CreateTLSInspectionConfigurationCommandInput, CreateTLSInspectionConfigurationCommandOutput } from "./commands/CreateTLSInspectionConfigurationCommand";
10
15
  import { CreateVpcEndpointAssociationCommandInput, CreateVpcEndpointAssociationCommandOutput } from "./commands/CreateVpcEndpointAssociationCommand";
11
16
  import { DeleteFirewallCommandInput, DeleteFirewallCommandOutput } from "./commands/DeleteFirewallCommand";
12
17
  import { DeleteFirewallPolicyCommandInput, DeleteFirewallPolicyCommandOutput } from "./commands/DeleteFirewallPolicyCommand";
13
18
  import { DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput } from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
19
+ import { DeleteProxyCommandInput, DeleteProxyCommandOutput } from "./commands/DeleteProxyCommand";
20
+ import { DeleteProxyConfigurationCommandInput, DeleteProxyConfigurationCommandOutput } from "./commands/DeleteProxyConfigurationCommand";
21
+ import { DeleteProxyRuleGroupCommandInput, DeleteProxyRuleGroupCommandOutput } from "./commands/DeleteProxyRuleGroupCommand";
22
+ import { DeleteProxyRulesCommandInput, DeleteProxyRulesCommandOutput } from "./commands/DeleteProxyRulesCommand";
14
23
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
15
24
  import { DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput } from "./commands/DeleteRuleGroupCommand";
16
25
  import { DeleteTLSInspectionConfigurationCommandInput, DeleteTLSInspectionConfigurationCommandOutput } from "./commands/DeleteTLSInspectionConfigurationCommand";
@@ -20,12 +29,17 @@ import { DescribeFirewallMetadataCommandInput, DescribeFirewallMetadataCommandOu
20
29
  import { DescribeFirewallPolicyCommandInput, DescribeFirewallPolicyCommandOutput } from "./commands/DescribeFirewallPolicyCommand";
21
30
  import { DescribeFlowOperationCommandInput, DescribeFlowOperationCommandOutput } from "./commands/DescribeFlowOperationCommand";
22
31
  import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput } from "./commands/DescribeLoggingConfigurationCommand";
32
+ import { DescribeProxyCommandInput, DescribeProxyCommandOutput } from "./commands/DescribeProxyCommand";
33
+ import { DescribeProxyConfigurationCommandInput, DescribeProxyConfigurationCommandOutput } from "./commands/DescribeProxyConfigurationCommand";
34
+ import { DescribeProxyRuleCommandInput, DescribeProxyRuleCommandOutput } from "./commands/DescribeProxyRuleCommand";
35
+ import { DescribeProxyRuleGroupCommandInput, DescribeProxyRuleGroupCommandOutput } from "./commands/DescribeProxyRuleGroupCommand";
23
36
  import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "./commands/DescribeResourcePolicyCommand";
24
37
  import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "./commands/DescribeRuleGroupCommand";
25
38
  import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "./commands/DescribeRuleGroupMetadataCommand";
26
39
  import { DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput } from "./commands/DescribeRuleGroupSummaryCommand";
27
40
  import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "./commands/DescribeTLSInspectionConfigurationCommand";
28
41
  import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "./commands/DescribeVpcEndpointAssociationCommand";
42
+ import { DetachRuleGroupsFromProxyConfigurationCommandInput, DetachRuleGroupsFromProxyConfigurationCommandOutput } from "./commands/DetachRuleGroupsFromProxyConfigurationCommand";
29
43
  import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "./commands/DisassociateAvailabilityZonesCommand";
30
44
  import { DisassociateSubnetsCommandInput, DisassociateSubnetsCommandOutput } from "./commands/DisassociateSubnetsCommand";
31
45
  import { GetAnalysisReportResultsCommandInput, GetAnalysisReportResultsCommandOutput } from "./commands/GetAnalysisReportResultsCommand";
@@ -34,6 +48,9 @@ import { ListFirewallPoliciesCommandInput, ListFirewallPoliciesCommandOutput } f
34
48
  import { ListFirewallsCommandInput, ListFirewallsCommandOutput } from "./commands/ListFirewallsCommand";
35
49
  import { ListFlowOperationResultsCommandInput, ListFlowOperationResultsCommandOutput } from "./commands/ListFlowOperationResultsCommand";
36
50
  import { ListFlowOperationsCommandInput, ListFlowOperationsCommandOutput } from "./commands/ListFlowOperationsCommand";
51
+ import { ListProxiesCommandInput, ListProxiesCommandOutput } from "./commands/ListProxiesCommand";
52
+ import { ListProxyConfigurationsCommandInput, ListProxyConfigurationsCommandOutput } from "./commands/ListProxyConfigurationsCommand";
53
+ import { ListProxyRuleGroupsCommandInput, ListProxyRuleGroupsCommandOutput } from "./commands/ListProxyRuleGroupsCommand";
37
54
  import { ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput } from "./commands/ListRuleGroupsCommand";
38
55
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
39
56
  import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "./commands/ListTLSInspectionConfigurationsCommand";
@@ -53,6 +70,11 @@ import { UpdateFirewallEncryptionConfigurationCommandInput, UpdateFirewallEncryp
53
70
  import { UpdateFirewallPolicyChangeProtectionCommandInput, UpdateFirewallPolicyChangeProtectionCommandOutput } from "./commands/UpdateFirewallPolicyChangeProtectionCommand";
54
71
  import { UpdateFirewallPolicyCommandInput, UpdateFirewallPolicyCommandOutput } from "./commands/UpdateFirewallPolicyCommand";
55
72
  import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput } from "./commands/UpdateLoggingConfigurationCommand";
73
+ import { UpdateProxyCommandInput, UpdateProxyCommandOutput } from "./commands/UpdateProxyCommand";
74
+ import { UpdateProxyConfigurationCommandInput, UpdateProxyConfigurationCommandOutput } from "./commands/UpdateProxyConfigurationCommand";
75
+ import { UpdateProxyRuleCommandInput, UpdateProxyRuleCommandOutput } from "./commands/UpdateProxyRuleCommand";
76
+ import { UpdateProxyRuleGroupPrioritiesCommandInput, UpdateProxyRuleGroupPrioritiesCommandOutput } from "./commands/UpdateProxyRuleGroupPrioritiesCommand";
77
+ import { UpdateProxyRulePrioritiesCommandInput, UpdateProxyRulePrioritiesCommandOutput } from "./commands/UpdateProxyRulePrioritiesCommand";
56
78
  import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "./commands/UpdateRuleGroupCommand";
57
79
  import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "./commands/UpdateSubnetChangeProtectionCommand";
58
80
  import { UpdateTLSInspectionConfigurationCommandInput, UpdateTLSInspectionConfigurationCommandOutput } from "./commands/UpdateTLSInspectionConfigurationCommand";
@@ -82,6 +104,12 @@ export interface NetworkFirewall {
82
104
  associateSubnets(args: AssociateSubnetsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSubnetsCommandOutput>;
83
105
  associateSubnets(args: AssociateSubnetsCommandInput, cb: (err: any, data?: AssociateSubnetsCommandOutput) => void): void;
84
106
  associateSubnets(args: AssociateSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSubnetsCommandOutput) => void): void;
107
+ /**
108
+ * @see {@link AttachRuleGroupsToProxyConfigurationCommand}
109
+ */
110
+ attachRuleGroupsToProxyConfiguration(args: AttachRuleGroupsToProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<AttachRuleGroupsToProxyConfigurationCommandOutput>;
111
+ attachRuleGroupsToProxyConfiguration(args: AttachRuleGroupsToProxyConfigurationCommandInput, cb: (err: any, data?: AttachRuleGroupsToProxyConfigurationCommandOutput) => void): void;
112
+ attachRuleGroupsToProxyConfiguration(args: AttachRuleGroupsToProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachRuleGroupsToProxyConfigurationCommandOutput) => void): void;
85
113
  /**
86
114
  * @see {@link CreateFirewallCommand}
87
115
  */
@@ -94,6 +122,30 @@ export interface NetworkFirewall {
94
122
  createFirewallPolicy(args: CreateFirewallPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallPolicyCommandOutput>;
95
123
  createFirewallPolicy(args: CreateFirewallPolicyCommandInput, cb: (err: any, data?: CreateFirewallPolicyCommandOutput) => void): void;
96
124
  createFirewallPolicy(args: CreateFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallPolicyCommandOutput) => void): void;
125
+ /**
126
+ * @see {@link CreateProxyCommand}
127
+ */
128
+ createProxy(args: CreateProxyCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxyCommandOutput>;
129
+ createProxy(args: CreateProxyCommandInput, cb: (err: any, data?: CreateProxyCommandOutput) => void): void;
130
+ createProxy(args: CreateProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxyCommandOutput) => void): void;
131
+ /**
132
+ * @see {@link CreateProxyConfigurationCommand}
133
+ */
134
+ createProxyConfiguration(args: CreateProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxyConfigurationCommandOutput>;
135
+ createProxyConfiguration(args: CreateProxyConfigurationCommandInput, cb: (err: any, data?: CreateProxyConfigurationCommandOutput) => void): void;
136
+ createProxyConfiguration(args: CreateProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxyConfigurationCommandOutput) => void): void;
137
+ /**
138
+ * @see {@link CreateProxyRuleGroupCommand}
139
+ */
140
+ createProxyRuleGroup(args: CreateProxyRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxyRuleGroupCommandOutput>;
141
+ createProxyRuleGroup(args: CreateProxyRuleGroupCommandInput, cb: (err: any, data?: CreateProxyRuleGroupCommandOutput) => void): void;
142
+ createProxyRuleGroup(args: CreateProxyRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxyRuleGroupCommandOutput) => void): void;
143
+ /**
144
+ * @see {@link CreateProxyRulesCommand}
145
+ */
146
+ createProxyRules(args: CreateProxyRulesCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxyRulesCommandOutput>;
147
+ createProxyRules(args: CreateProxyRulesCommandInput, cb: (err: any, data?: CreateProxyRulesCommandOutput) => void): void;
148
+ createProxyRules(args: CreateProxyRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxyRulesCommandOutput) => void): void;
97
149
  /**
98
150
  * @see {@link CreateRuleGroupCommand}
99
151
  */
@@ -132,6 +184,32 @@ export interface NetworkFirewall {
132
184
  deleteNetworkFirewallTransitGatewayAttachment(args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput>;
133
185
  deleteNetworkFirewallTransitGatewayAttachment(args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, cb: (err: any, data?: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput) => void): void;
134
186
  deleteNetworkFirewallTransitGatewayAttachment(args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput) => void): void;
187
+ /**
188
+ * @see {@link DeleteProxyCommand}
189
+ */
190
+ deleteProxy(args: DeleteProxyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxyCommandOutput>;
191
+ deleteProxy(args: DeleteProxyCommandInput, cb: (err: any, data?: DeleteProxyCommandOutput) => void): void;
192
+ deleteProxy(args: DeleteProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxyCommandOutput) => void): void;
193
+ /**
194
+ * @see {@link DeleteProxyConfigurationCommand}
195
+ */
196
+ deleteProxyConfiguration(): Promise<DeleteProxyConfigurationCommandOutput>;
197
+ deleteProxyConfiguration(args: DeleteProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxyConfigurationCommandOutput>;
198
+ deleteProxyConfiguration(args: DeleteProxyConfigurationCommandInput, cb: (err: any, data?: DeleteProxyConfigurationCommandOutput) => void): void;
199
+ deleteProxyConfiguration(args: DeleteProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxyConfigurationCommandOutput) => void): void;
200
+ /**
201
+ * @see {@link DeleteProxyRuleGroupCommand}
202
+ */
203
+ deleteProxyRuleGroup(): Promise<DeleteProxyRuleGroupCommandOutput>;
204
+ deleteProxyRuleGroup(args: DeleteProxyRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxyRuleGroupCommandOutput>;
205
+ deleteProxyRuleGroup(args: DeleteProxyRuleGroupCommandInput, cb: (err: any, data?: DeleteProxyRuleGroupCommandOutput) => void): void;
206
+ deleteProxyRuleGroup(args: DeleteProxyRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxyRuleGroupCommandOutput) => void): void;
207
+ /**
208
+ * @see {@link DeleteProxyRulesCommand}
209
+ */
210
+ deleteProxyRules(args: DeleteProxyRulesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxyRulesCommandOutput>;
211
+ deleteProxyRules(args: DeleteProxyRulesCommandInput, cb: (err: any, data?: DeleteProxyRulesCommandOutput) => void): void;
212
+ deleteProxyRules(args: DeleteProxyRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxyRulesCommandOutput) => void): void;
135
213
  /**
136
214
  * @see {@link DeleteResourcePolicyCommand}
137
215
  */
@@ -192,6 +270,33 @@ export interface NetworkFirewall {
192
270
  describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoggingConfigurationCommandOutput>;
193
271
  describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, cb: (err: any, data?: DescribeLoggingConfigurationCommandOutput) => void): void;
194
272
  describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoggingConfigurationCommandOutput) => void): void;
273
+ /**
274
+ * @see {@link DescribeProxyCommand}
275
+ */
276
+ describeProxy(): Promise<DescribeProxyCommandOutput>;
277
+ describeProxy(args: DescribeProxyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProxyCommandOutput>;
278
+ describeProxy(args: DescribeProxyCommandInput, cb: (err: any, data?: DescribeProxyCommandOutput) => void): void;
279
+ describeProxy(args: DescribeProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProxyCommandOutput) => void): void;
280
+ /**
281
+ * @see {@link DescribeProxyConfigurationCommand}
282
+ */
283
+ describeProxyConfiguration(): Promise<DescribeProxyConfigurationCommandOutput>;
284
+ describeProxyConfiguration(args: DescribeProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProxyConfigurationCommandOutput>;
285
+ describeProxyConfiguration(args: DescribeProxyConfigurationCommandInput, cb: (err: any, data?: DescribeProxyConfigurationCommandOutput) => void): void;
286
+ describeProxyConfiguration(args: DescribeProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProxyConfigurationCommandOutput) => void): void;
287
+ /**
288
+ * @see {@link DescribeProxyRuleCommand}
289
+ */
290
+ describeProxyRule(args: DescribeProxyRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProxyRuleCommandOutput>;
291
+ describeProxyRule(args: DescribeProxyRuleCommandInput, cb: (err: any, data?: DescribeProxyRuleCommandOutput) => void): void;
292
+ describeProxyRule(args: DescribeProxyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProxyRuleCommandOutput) => void): void;
293
+ /**
294
+ * @see {@link DescribeProxyRuleGroupCommand}
295
+ */
296
+ describeProxyRuleGroup(): Promise<DescribeProxyRuleGroupCommandOutput>;
297
+ describeProxyRuleGroup(args: DescribeProxyRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProxyRuleGroupCommandOutput>;
298
+ describeProxyRuleGroup(args: DescribeProxyRuleGroupCommandInput, cb: (err: any, data?: DescribeProxyRuleGroupCommandOutput) => void): void;
299
+ describeProxyRuleGroup(args: DescribeProxyRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProxyRuleGroupCommandOutput) => void): void;
195
300
  /**
196
301
  * @see {@link DescribeResourcePolicyCommand}
197
302
  */
@@ -232,6 +337,12 @@ export interface NetworkFirewall {
232
337
  describeVpcEndpointAssociation(args: DescribeVpcEndpointAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcEndpointAssociationCommandOutput>;
233
338
  describeVpcEndpointAssociation(args: DescribeVpcEndpointAssociationCommandInput, cb: (err: any, data?: DescribeVpcEndpointAssociationCommandOutput) => void): void;
234
339
  describeVpcEndpointAssociation(args: DescribeVpcEndpointAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcEndpointAssociationCommandOutput) => void): void;
340
+ /**
341
+ * @see {@link DetachRuleGroupsFromProxyConfigurationCommand}
342
+ */
343
+ detachRuleGroupsFromProxyConfiguration(args: DetachRuleGroupsFromProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DetachRuleGroupsFromProxyConfigurationCommandOutput>;
344
+ detachRuleGroupsFromProxyConfiguration(args: DetachRuleGroupsFromProxyConfigurationCommandInput, cb: (err: any, data?: DetachRuleGroupsFromProxyConfigurationCommandOutput) => void): void;
345
+ detachRuleGroupsFromProxyConfiguration(args: DetachRuleGroupsFromProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachRuleGroupsFromProxyConfigurationCommandOutput) => void): void;
235
346
  /**
236
347
  * @see {@link DisassociateAvailabilityZonesCommand}
237
348
  */
@@ -283,6 +394,27 @@ export interface NetworkFirewall {
283
394
  listFlowOperations(args: ListFlowOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowOperationsCommandOutput>;
284
395
  listFlowOperations(args: ListFlowOperationsCommandInput, cb: (err: any, data?: ListFlowOperationsCommandOutput) => void): void;
285
396
  listFlowOperations(args: ListFlowOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowOperationsCommandOutput) => void): void;
397
+ /**
398
+ * @see {@link ListProxiesCommand}
399
+ */
400
+ listProxies(): Promise<ListProxiesCommandOutput>;
401
+ listProxies(args: ListProxiesCommandInput, options?: __HttpHandlerOptions): Promise<ListProxiesCommandOutput>;
402
+ listProxies(args: ListProxiesCommandInput, cb: (err: any, data?: ListProxiesCommandOutput) => void): void;
403
+ listProxies(args: ListProxiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProxiesCommandOutput) => void): void;
404
+ /**
405
+ * @see {@link ListProxyConfigurationsCommand}
406
+ */
407
+ listProxyConfigurations(): Promise<ListProxyConfigurationsCommandOutput>;
408
+ listProxyConfigurations(args: ListProxyConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListProxyConfigurationsCommandOutput>;
409
+ listProxyConfigurations(args: ListProxyConfigurationsCommandInput, cb: (err: any, data?: ListProxyConfigurationsCommandOutput) => void): void;
410
+ listProxyConfigurations(args: ListProxyConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProxyConfigurationsCommandOutput) => void): void;
411
+ /**
412
+ * @see {@link ListProxyRuleGroupsCommand}
413
+ */
414
+ listProxyRuleGroups(): Promise<ListProxyRuleGroupsCommandOutput>;
415
+ listProxyRuleGroups(args: ListProxyRuleGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListProxyRuleGroupsCommandOutput>;
416
+ listProxyRuleGroups(args: ListProxyRuleGroupsCommandInput, cb: (err: any, data?: ListProxyRuleGroupsCommandOutput) => void): void;
417
+ listProxyRuleGroups(args: ListProxyRuleGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProxyRuleGroupsCommandOutput) => void): void;
286
418
  /**
287
419
  * @see {@link ListRuleGroupsCommand}
288
420
  */
@@ -404,6 +536,36 @@ export interface NetworkFirewall {
404
536
  updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLoggingConfigurationCommandOutput>;
405
537
  updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
406
538
  updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
539
+ /**
540
+ * @see {@link UpdateProxyCommand}
541
+ */
542
+ updateProxy(args: UpdateProxyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxyCommandOutput>;
543
+ updateProxy(args: UpdateProxyCommandInput, cb: (err: any, data?: UpdateProxyCommandOutput) => void): void;
544
+ updateProxy(args: UpdateProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxyCommandOutput) => void): void;
545
+ /**
546
+ * @see {@link UpdateProxyConfigurationCommand}
547
+ */
548
+ updateProxyConfiguration(args: UpdateProxyConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxyConfigurationCommandOutput>;
549
+ updateProxyConfiguration(args: UpdateProxyConfigurationCommandInput, cb: (err: any, data?: UpdateProxyConfigurationCommandOutput) => void): void;
550
+ updateProxyConfiguration(args: UpdateProxyConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxyConfigurationCommandOutput) => void): void;
551
+ /**
552
+ * @see {@link UpdateProxyRuleCommand}
553
+ */
554
+ updateProxyRule(args: UpdateProxyRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxyRuleCommandOutput>;
555
+ updateProxyRule(args: UpdateProxyRuleCommandInput, cb: (err: any, data?: UpdateProxyRuleCommandOutput) => void): void;
556
+ updateProxyRule(args: UpdateProxyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxyRuleCommandOutput) => void): void;
557
+ /**
558
+ * @see {@link UpdateProxyRuleGroupPrioritiesCommand}
559
+ */
560
+ updateProxyRuleGroupPriorities(args: UpdateProxyRuleGroupPrioritiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxyRuleGroupPrioritiesCommandOutput>;
561
+ updateProxyRuleGroupPriorities(args: UpdateProxyRuleGroupPrioritiesCommandInput, cb: (err: any, data?: UpdateProxyRuleGroupPrioritiesCommandOutput) => void): void;
562
+ updateProxyRuleGroupPriorities(args: UpdateProxyRuleGroupPrioritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxyRuleGroupPrioritiesCommandOutput) => void): void;
563
+ /**
564
+ * @see {@link UpdateProxyRulePrioritiesCommand}
565
+ */
566
+ updateProxyRulePriorities(args: UpdateProxyRulePrioritiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxyRulePrioritiesCommandOutput>;
567
+ updateProxyRulePriorities(args: UpdateProxyRulePrioritiesCommandInput, cb: (err: any, data?: UpdateProxyRulePrioritiesCommandOutput) => void): void;
568
+ updateProxyRulePriorities(args: UpdateProxyRulePrioritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxyRulePrioritiesCommandOutput) => void): void;
407
569
  /**
408
570
  * @see {@link UpdateRuleGroupCommand}
409
571
  */
@@ -11,14 +11,23 @@ import { AcceptNetworkFirewallTransitGatewayAttachmentCommandInput, AcceptNetwor
11
11
  import { AssociateAvailabilityZonesCommandInput, AssociateAvailabilityZonesCommandOutput } from "./commands/AssociateAvailabilityZonesCommand";
12
12
  import { AssociateFirewallPolicyCommandInput, AssociateFirewallPolicyCommandOutput } from "./commands/AssociateFirewallPolicyCommand";
13
13
  import { AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput } from "./commands/AssociateSubnetsCommand";
14
+ import { AttachRuleGroupsToProxyConfigurationCommandInput, AttachRuleGroupsToProxyConfigurationCommandOutput } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
14
15
  import { CreateFirewallCommandInput, CreateFirewallCommandOutput } from "./commands/CreateFirewallCommand";
15
16
  import { CreateFirewallPolicyCommandInput, CreateFirewallPolicyCommandOutput } from "./commands/CreateFirewallPolicyCommand";
17
+ import { CreateProxyCommandInput, CreateProxyCommandOutput } from "./commands/CreateProxyCommand";
18
+ import { CreateProxyConfigurationCommandInput, CreateProxyConfigurationCommandOutput } from "./commands/CreateProxyConfigurationCommand";
19
+ import { CreateProxyRuleGroupCommandInput, CreateProxyRuleGroupCommandOutput } from "./commands/CreateProxyRuleGroupCommand";
20
+ import { CreateProxyRulesCommandInput, CreateProxyRulesCommandOutput } from "./commands/CreateProxyRulesCommand";
16
21
  import { CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput } from "./commands/CreateRuleGroupCommand";
17
22
  import { CreateTLSInspectionConfigurationCommandInput, CreateTLSInspectionConfigurationCommandOutput } from "./commands/CreateTLSInspectionConfigurationCommand";
18
23
  import { CreateVpcEndpointAssociationCommandInput, CreateVpcEndpointAssociationCommandOutput } from "./commands/CreateVpcEndpointAssociationCommand";
19
24
  import { DeleteFirewallCommandInput, DeleteFirewallCommandOutput } from "./commands/DeleteFirewallCommand";
20
25
  import { DeleteFirewallPolicyCommandInput, DeleteFirewallPolicyCommandOutput } from "./commands/DeleteFirewallPolicyCommand";
21
26
  import { DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput } from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
27
+ import { DeleteProxyCommandInput, DeleteProxyCommandOutput } from "./commands/DeleteProxyCommand";
28
+ import { DeleteProxyConfigurationCommandInput, DeleteProxyConfigurationCommandOutput } from "./commands/DeleteProxyConfigurationCommand";
29
+ import { DeleteProxyRuleGroupCommandInput, DeleteProxyRuleGroupCommandOutput } from "./commands/DeleteProxyRuleGroupCommand";
30
+ import { DeleteProxyRulesCommandInput, DeleteProxyRulesCommandOutput } from "./commands/DeleteProxyRulesCommand";
22
31
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
23
32
  import { DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput } from "./commands/DeleteRuleGroupCommand";
24
33
  import { DeleteTLSInspectionConfigurationCommandInput, DeleteTLSInspectionConfigurationCommandOutput } from "./commands/DeleteTLSInspectionConfigurationCommand";
@@ -28,12 +37,17 @@ import { DescribeFirewallMetadataCommandInput, DescribeFirewallMetadataCommandOu
28
37
  import { DescribeFirewallPolicyCommandInput, DescribeFirewallPolicyCommandOutput } from "./commands/DescribeFirewallPolicyCommand";
29
38
  import { DescribeFlowOperationCommandInput, DescribeFlowOperationCommandOutput } from "./commands/DescribeFlowOperationCommand";
30
39
  import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput } from "./commands/DescribeLoggingConfigurationCommand";
40
+ import { DescribeProxyCommandInput, DescribeProxyCommandOutput } from "./commands/DescribeProxyCommand";
41
+ import { DescribeProxyConfigurationCommandInput, DescribeProxyConfigurationCommandOutput } from "./commands/DescribeProxyConfigurationCommand";
42
+ import { DescribeProxyRuleCommandInput, DescribeProxyRuleCommandOutput } from "./commands/DescribeProxyRuleCommand";
43
+ import { DescribeProxyRuleGroupCommandInput, DescribeProxyRuleGroupCommandOutput } from "./commands/DescribeProxyRuleGroupCommand";
31
44
  import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "./commands/DescribeResourcePolicyCommand";
32
45
  import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "./commands/DescribeRuleGroupCommand";
33
46
  import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "./commands/DescribeRuleGroupMetadataCommand";
34
47
  import { DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput } from "./commands/DescribeRuleGroupSummaryCommand";
35
48
  import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "./commands/DescribeTLSInspectionConfigurationCommand";
36
49
  import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "./commands/DescribeVpcEndpointAssociationCommand";
50
+ import { DetachRuleGroupsFromProxyConfigurationCommandInput, DetachRuleGroupsFromProxyConfigurationCommandOutput } from "./commands/DetachRuleGroupsFromProxyConfigurationCommand";
37
51
  import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "./commands/DisassociateAvailabilityZonesCommand";
38
52
  import { DisassociateSubnetsCommandInput, DisassociateSubnetsCommandOutput } from "./commands/DisassociateSubnetsCommand";
39
53
  import { GetAnalysisReportResultsCommandInput, GetAnalysisReportResultsCommandOutput } from "./commands/GetAnalysisReportResultsCommand";
@@ -42,6 +56,9 @@ import { ListFirewallPoliciesCommandInput, ListFirewallPoliciesCommandOutput } f
42
56
  import { ListFirewallsCommandInput, ListFirewallsCommandOutput } from "./commands/ListFirewallsCommand";
43
57
  import { ListFlowOperationResultsCommandInput, ListFlowOperationResultsCommandOutput } from "./commands/ListFlowOperationResultsCommand";
44
58
  import { ListFlowOperationsCommandInput, ListFlowOperationsCommandOutput } from "./commands/ListFlowOperationsCommand";
59
+ import { ListProxiesCommandInput, ListProxiesCommandOutput } from "./commands/ListProxiesCommand";
60
+ import { ListProxyConfigurationsCommandInput, ListProxyConfigurationsCommandOutput } from "./commands/ListProxyConfigurationsCommand";
61
+ import { ListProxyRuleGroupsCommandInput, ListProxyRuleGroupsCommandOutput } from "./commands/ListProxyRuleGroupsCommand";
45
62
  import { ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput } from "./commands/ListRuleGroupsCommand";
46
63
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
47
64
  import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "./commands/ListTLSInspectionConfigurationsCommand";
@@ -61,6 +78,11 @@ import { UpdateFirewallEncryptionConfigurationCommandInput, UpdateFirewallEncryp
61
78
  import { UpdateFirewallPolicyChangeProtectionCommandInput, UpdateFirewallPolicyChangeProtectionCommandOutput } from "./commands/UpdateFirewallPolicyChangeProtectionCommand";
62
79
  import { UpdateFirewallPolicyCommandInput, UpdateFirewallPolicyCommandOutput } from "./commands/UpdateFirewallPolicyCommand";
63
80
  import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput } from "./commands/UpdateLoggingConfigurationCommand";
81
+ import { UpdateProxyCommandInput, UpdateProxyCommandOutput } from "./commands/UpdateProxyCommand";
82
+ import { UpdateProxyConfigurationCommandInput, UpdateProxyConfigurationCommandOutput } from "./commands/UpdateProxyConfigurationCommand";
83
+ import { UpdateProxyRuleCommandInput, UpdateProxyRuleCommandOutput } from "./commands/UpdateProxyRuleCommand";
84
+ import { UpdateProxyRuleGroupPrioritiesCommandInput, UpdateProxyRuleGroupPrioritiesCommandOutput } from "./commands/UpdateProxyRuleGroupPrioritiesCommand";
85
+ import { UpdateProxyRulePrioritiesCommandInput, UpdateProxyRulePrioritiesCommandOutput } from "./commands/UpdateProxyRulePrioritiesCommand";
64
86
  import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "./commands/UpdateRuleGroupCommand";
65
87
  import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "./commands/UpdateSubnetChangeProtectionCommand";
66
88
  import { UpdateTLSInspectionConfigurationCommandInput, UpdateTLSInspectionConfigurationCommandOutput } from "./commands/UpdateTLSInspectionConfigurationCommand";
@@ -70,11 +92,11 @@ export { __Client };
70
92
  /**
71
93
  * @public
72
94
  */
73
- export type ServiceInputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandInput | AssociateAvailabilityZonesCommandInput | AssociateFirewallPolicyCommandInput | AssociateSubnetsCommandInput | CreateFirewallCommandInput | CreateFirewallPolicyCommandInput | CreateRuleGroupCommandInput | CreateTLSInspectionConfigurationCommandInput | CreateVpcEndpointAssociationCommandInput | DeleteFirewallCommandInput | DeleteFirewallPolicyCommandInput | DeleteNetworkFirewallTransitGatewayAttachmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleGroupCommandInput | DeleteTLSInspectionConfigurationCommandInput | DeleteVpcEndpointAssociationCommandInput | DescribeFirewallCommandInput | DescribeFirewallMetadataCommandInput | DescribeFirewallPolicyCommandInput | DescribeFlowOperationCommandInput | DescribeLoggingConfigurationCommandInput | DescribeResourcePolicyCommandInput | DescribeRuleGroupCommandInput | DescribeRuleGroupMetadataCommandInput | DescribeRuleGroupSummaryCommandInput | DescribeTLSInspectionConfigurationCommandInput | DescribeVpcEndpointAssociationCommandInput | DisassociateAvailabilityZonesCommandInput | DisassociateSubnetsCommandInput | GetAnalysisReportResultsCommandInput | ListAnalysisReportsCommandInput | ListFirewallPoliciesCommandInput | ListFirewallsCommandInput | ListFlowOperationResultsCommandInput | ListFlowOperationsCommandInput | ListRuleGroupsCommandInput | ListTLSInspectionConfigurationsCommandInput | ListTagsForResourceCommandInput | ListVpcEndpointAssociationsCommandInput | PutResourcePolicyCommandInput | RejectNetworkFirewallTransitGatewayAttachmentCommandInput | StartAnalysisReportCommandInput | StartFlowCaptureCommandInput | StartFlowFlushCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAvailabilityZoneChangeProtectionCommandInput | UpdateFirewallAnalysisSettingsCommandInput | UpdateFirewallDeleteProtectionCommandInput | UpdateFirewallDescriptionCommandInput | UpdateFirewallEncryptionConfigurationCommandInput | UpdateFirewallPolicyChangeProtectionCommandInput | UpdateFirewallPolicyCommandInput | UpdateLoggingConfigurationCommandInput | UpdateRuleGroupCommandInput | UpdateSubnetChangeProtectionCommandInput | UpdateTLSInspectionConfigurationCommandInput;
95
+ export type ServiceInputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandInput | AssociateAvailabilityZonesCommandInput | AssociateFirewallPolicyCommandInput | AssociateSubnetsCommandInput | AttachRuleGroupsToProxyConfigurationCommandInput | CreateFirewallCommandInput | CreateFirewallPolicyCommandInput | CreateProxyCommandInput | CreateProxyConfigurationCommandInput | CreateProxyRuleGroupCommandInput | CreateProxyRulesCommandInput | CreateRuleGroupCommandInput | CreateTLSInspectionConfigurationCommandInput | CreateVpcEndpointAssociationCommandInput | DeleteFirewallCommandInput | DeleteFirewallPolicyCommandInput | DeleteNetworkFirewallTransitGatewayAttachmentCommandInput | DeleteProxyCommandInput | DeleteProxyConfigurationCommandInput | DeleteProxyRuleGroupCommandInput | DeleteProxyRulesCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleGroupCommandInput | DeleteTLSInspectionConfigurationCommandInput | DeleteVpcEndpointAssociationCommandInput | DescribeFirewallCommandInput | DescribeFirewallMetadataCommandInput | DescribeFirewallPolicyCommandInput | DescribeFlowOperationCommandInput | DescribeLoggingConfigurationCommandInput | DescribeProxyCommandInput | DescribeProxyConfigurationCommandInput | DescribeProxyRuleCommandInput | DescribeProxyRuleGroupCommandInput | DescribeResourcePolicyCommandInput | DescribeRuleGroupCommandInput | DescribeRuleGroupMetadataCommandInput | DescribeRuleGroupSummaryCommandInput | DescribeTLSInspectionConfigurationCommandInput | DescribeVpcEndpointAssociationCommandInput | DetachRuleGroupsFromProxyConfigurationCommandInput | DisassociateAvailabilityZonesCommandInput | DisassociateSubnetsCommandInput | GetAnalysisReportResultsCommandInput | ListAnalysisReportsCommandInput | ListFirewallPoliciesCommandInput | ListFirewallsCommandInput | ListFlowOperationResultsCommandInput | ListFlowOperationsCommandInput | ListProxiesCommandInput | ListProxyConfigurationsCommandInput | ListProxyRuleGroupsCommandInput | ListRuleGroupsCommandInput | ListTLSInspectionConfigurationsCommandInput | ListTagsForResourceCommandInput | ListVpcEndpointAssociationsCommandInput | PutResourcePolicyCommandInput | RejectNetworkFirewallTransitGatewayAttachmentCommandInput | StartAnalysisReportCommandInput | StartFlowCaptureCommandInput | StartFlowFlushCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAvailabilityZoneChangeProtectionCommandInput | UpdateFirewallAnalysisSettingsCommandInput | UpdateFirewallDeleteProtectionCommandInput | UpdateFirewallDescriptionCommandInput | UpdateFirewallEncryptionConfigurationCommandInput | UpdateFirewallPolicyChangeProtectionCommandInput | UpdateFirewallPolicyCommandInput | UpdateLoggingConfigurationCommandInput | UpdateProxyCommandInput | UpdateProxyConfigurationCommandInput | UpdateProxyRuleCommandInput | UpdateProxyRuleGroupPrioritiesCommandInput | UpdateProxyRulePrioritiesCommandInput | UpdateRuleGroupCommandInput | UpdateSubnetChangeProtectionCommandInput | UpdateTLSInspectionConfigurationCommandInput;
74
96
  /**
75
97
  * @public
76
98
  */
77
- export type ServiceOutputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput | AssociateAvailabilityZonesCommandOutput | AssociateFirewallPolicyCommandOutput | AssociateSubnetsCommandOutput | CreateFirewallCommandOutput | CreateFirewallPolicyCommandOutput | CreateRuleGroupCommandOutput | CreateTLSInspectionConfigurationCommandOutput | CreateVpcEndpointAssociationCommandOutput | DeleteFirewallCommandOutput | DeleteFirewallPolicyCommandOutput | DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleGroupCommandOutput | DeleteTLSInspectionConfigurationCommandOutput | DeleteVpcEndpointAssociationCommandOutput | DescribeFirewallCommandOutput | DescribeFirewallMetadataCommandOutput | DescribeFirewallPolicyCommandOutput | DescribeFlowOperationCommandOutput | DescribeLoggingConfigurationCommandOutput | DescribeResourcePolicyCommandOutput | DescribeRuleGroupCommandOutput | DescribeRuleGroupMetadataCommandOutput | DescribeRuleGroupSummaryCommandOutput | DescribeTLSInspectionConfigurationCommandOutput | DescribeVpcEndpointAssociationCommandOutput | DisassociateAvailabilityZonesCommandOutput | DisassociateSubnetsCommandOutput | GetAnalysisReportResultsCommandOutput | ListAnalysisReportsCommandOutput | ListFirewallPoliciesCommandOutput | ListFirewallsCommandOutput | ListFlowOperationResultsCommandOutput | ListFlowOperationsCommandOutput | ListRuleGroupsCommandOutput | ListTLSInspectionConfigurationsCommandOutput | ListTagsForResourceCommandOutput | ListVpcEndpointAssociationsCommandOutput | PutResourcePolicyCommandOutput | RejectNetworkFirewallTransitGatewayAttachmentCommandOutput | StartAnalysisReportCommandOutput | StartFlowCaptureCommandOutput | StartFlowFlushCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityZoneChangeProtectionCommandOutput | UpdateFirewallAnalysisSettingsCommandOutput | UpdateFirewallDeleteProtectionCommandOutput | UpdateFirewallDescriptionCommandOutput | UpdateFirewallEncryptionConfigurationCommandOutput | UpdateFirewallPolicyChangeProtectionCommandOutput | UpdateFirewallPolicyCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateRuleGroupCommandOutput | UpdateSubnetChangeProtectionCommandOutput | UpdateTLSInspectionConfigurationCommandOutput;
99
+ export type ServiceOutputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput | AssociateAvailabilityZonesCommandOutput | AssociateFirewallPolicyCommandOutput | AssociateSubnetsCommandOutput | AttachRuleGroupsToProxyConfigurationCommandOutput | CreateFirewallCommandOutput | CreateFirewallPolicyCommandOutput | CreateProxyCommandOutput | CreateProxyConfigurationCommandOutput | CreateProxyRuleGroupCommandOutput | CreateProxyRulesCommandOutput | CreateRuleGroupCommandOutput | CreateTLSInspectionConfigurationCommandOutput | CreateVpcEndpointAssociationCommandOutput | DeleteFirewallCommandOutput | DeleteFirewallPolicyCommandOutput | DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput | DeleteProxyCommandOutput | DeleteProxyConfigurationCommandOutput | DeleteProxyRuleGroupCommandOutput | DeleteProxyRulesCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleGroupCommandOutput | DeleteTLSInspectionConfigurationCommandOutput | DeleteVpcEndpointAssociationCommandOutput | DescribeFirewallCommandOutput | DescribeFirewallMetadataCommandOutput | DescribeFirewallPolicyCommandOutput | DescribeFlowOperationCommandOutput | DescribeLoggingConfigurationCommandOutput | DescribeProxyCommandOutput | DescribeProxyConfigurationCommandOutput | DescribeProxyRuleCommandOutput | DescribeProxyRuleGroupCommandOutput | DescribeResourcePolicyCommandOutput | DescribeRuleGroupCommandOutput | DescribeRuleGroupMetadataCommandOutput | DescribeRuleGroupSummaryCommandOutput | DescribeTLSInspectionConfigurationCommandOutput | DescribeVpcEndpointAssociationCommandOutput | DetachRuleGroupsFromProxyConfigurationCommandOutput | DisassociateAvailabilityZonesCommandOutput | DisassociateSubnetsCommandOutput | GetAnalysisReportResultsCommandOutput | ListAnalysisReportsCommandOutput | ListFirewallPoliciesCommandOutput | ListFirewallsCommandOutput | ListFlowOperationResultsCommandOutput | ListFlowOperationsCommandOutput | ListProxiesCommandOutput | ListProxyConfigurationsCommandOutput | ListProxyRuleGroupsCommandOutput | ListRuleGroupsCommandOutput | ListTLSInspectionConfigurationsCommandOutput | ListTagsForResourceCommandOutput | ListVpcEndpointAssociationsCommandOutput | PutResourcePolicyCommandOutput | RejectNetworkFirewallTransitGatewayAttachmentCommandOutput | StartAnalysisReportCommandOutput | StartFlowCaptureCommandOutput | StartFlowFlushCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityZoneChangeProtectionCommandOutput | UpdateFirewallAnalysisSettingsCommandOutput | UpdateFirewallDeleteProtectionCommandOutput | UpdateFirewallDescriptionCommandOutput | UpdateFirewallEncryptionConfigurationCommandOutput | UpdateFirewallPolicyChangeProtectionCommandOutput | UpdateFirewallPolicyCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateProxyCommandOutput | UpdateProxyConfigurationCommandOutput | UpdateProxyRuleCommandOutput | UpdateProxyRuleGroupPrioritiesCommandOutput | UpdateProxyRulePrioritiesCommandOutput | UpdateRuleGroupCommandOutput | UpdateSubnetChangeProtectionCommandOutput | UpdateTLSInspectionConfigurationCommandOutput;
78
100
  /**
79
101
  * @public
80
102
  */
@@ -0,0 +1,136 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AttachRuleGroupsToProxyConfigurationRequest, AttachRuleGroupsToProxyConfigurationResponse } from "../models/models_0";
4
+ import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AttachRuleGroupsToProxyConfigurationCommand}.
14
+ */
15
+ export interface AttachRuleGroupsToProxyConfigurationCommandInput extends AttachRuleGroupsToProxyConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AttachRuleGroupsToProxyConfigurationCommand}.
21
+ */
22
+ export interface AttachRuleGroupsToProxyConfigurationCommandOutput extends AttachRuleGroupsToProxyConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const AttachRuleGroupsToProxyConfigurationCommand_base: {
25
+ new (input: AttachRuleGroupsToProxyConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<AttachRuleGroupsToProxyConfigurationCommandInput, AttachRuleGroupsToProxyConfigurationCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AttachRuleGroupsToProxyConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<AttachRuleGroupsToProxyConfigurationCommandInput, AttachRuleGroupsToProxyConfigurationCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Attaches <a>ProxyRuleGroup</a> resources to a <a>ProxyConfiguration</a>
31
+ * </p>
32
+ * <p>A Proxy Configuration defines the monitoring and protection behavior for a Proxy. The details of the behavior are defined in the rule groups that you add to your configuration. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { NetworkFirewallClient, AttachRuleGroupsToProxyConfigurationCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
37
+ * // const { NetworkFirewallClient, AttachRuleGroupsToProxyConfigurationCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
38
+ * // import type { NetworkFirewallClientConfig } from "@aws-sdk/client-network-firewall";
39
+ * const config = {}; // type is NetworkFirewallClientConfig
40
+ * const client = new NetworkFirewallClient(config);
41
+ * const input = { // AttachRuleGroupsToProxyConfigurationRequest
42
+ * ProxyConfigurationName: "STRING_VALUE",
43
+ * ProxyConfigurationArn: "STRING_VALUE",
44
+ * RuleGroups: [ // ProxyRuleGroupAttachmentList // required
45
+ * { // ProxyRuleGroupAttachment
46
+ * ProxyRuleGroupName: "STRING_VALUE",
47
+ * InsertPosition: Number("int"),
48
+ * },
49
+ * ],
50
+ * UpdateToken: "STRING_VALUE", // required
51
+ * };
52
+ * const command = new AttachRuleGroupsToProxyConfigurationCommand(input);
53
+ * const response = await client.send(command);
54
+ * // { // AttachRuleGroupsToProxyConfigurationResponse
55
+ * // ProxyConfiguration: { // ProxyConfiguration
56
+ * // ProxyConfigurationName: "STRING_VALUE",
57
+ * // ProxyConfigurationArn: "STRING_VALUE",
58
+ * // Description: "STRING_VALUE",
59
+ * // CreateTime: new Date("TIMESTAMP"),
60
+ * // DeleteTime: new Date("TIMESTAMP"),
61
+ * // RuleGroups: [ // ProxyConfigRuleGroupSet
62
+ * // { // ProxyConfigRuleGroup
63
+ * // ProxyRuleGroupName: "STRING_VALUE",
64
+ * // ProxyRuleGroupArn: "STRING_VALUE",
65
+ * // Type: "STRING_VALUE",
66
+ * // Priority: Number("int"),
67
+ * // },
68
+ * // ],
69
+ * // DefaultRulePhaseActions: { // ProxyConfigDefaultRulePhaseActionsRequest
70
+ * // PreDNS: "ALLOW" || "DENY" || "ALERT",
71
+ * // PreREQUEST: "ALLOW" || "DENY" || "ALERT",
72
+ * // PostRESPONSE: "ALLOW" || "DENY" || "ALERT",
73
+ * // },
74
+ * // Tags: [ // TagList
75
+ * // { // Tag
76
+ * // Key: "STRING_VALUE", // required
77
+ * // Value: "STRING_VALUE", // required
78
+ * // },
79
+ * // ],
80
+ * // },
81
+ * // UpdateToken: "STRING_VALUE",
82
+ * // };
83
+ *
84
+ * ```
85
+ *
86
+ * @param AttachRuleGroupsToProxyConfigurationCommandInput - {@link AttachRuleGroupsToProxyConfigurationCommandInput}
87
+ * @returns {@link AttachRuleGroupsToProxyConfigurationCommandOutput}
88
+ * @see {@link AttachRuleGroupsToProxyConfigurationCommandInput} for command's `input` shape.
89
+ * @see {@link AttachRuleGroupsToProxyConfigurationCommandOutput} for command's `response` shape.
90
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
91
+ *
92
+ * @throws {@link InternalServerError} (server fault)
93
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
94
+ * system problem. Retry your request. </p>
95
+ *
96
+ * @throws {@link InvalidRequestException} (client fault)
97
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
98
+ * <ul>
99
+ * <li>
100
+ * <p>You specified an unsupported parameter name or value.</p>
101
+ * </li>
102
+ * <li>
103
+ * <p>You tried to update a property with a value that isn't among the available
104
+ * types.</p>
105
+ * </li>
106
+ * <li>
107
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
108
+ * that isn't valid in the context of the request.</p>
109
+ * </li>
110
+ * </ul>
111
+ *
112
+ * @throws {@link ResourceNotFoundException} (client fault)
113
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
114
+ *
115
+ * @throws {@link ThrottlingException} (client fault)
116
+ * <p>Unable to process the request due to throttling limitations.</p>
117
+ *
118
+ * @throws {@link NetworkFirewallServiceException}
119
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
120
+ *
121
+ *
122
+ * @public
123
+ */
124
+ export declare class AttachRuleGroupsToProxyConfigurationCommand extends AttachRuleGroupsToProxyConfigurationCommand_base {
125
+ /** @internal type navigation helper, not in runtime. */
126
+ protected static __types: {
127
+ api: {
128
+ input: AttachRuleGroupsToProxyConfigurationRequest;
129
+ output: AttachRuleGroupsToProxyConfigurationResponse;
130
+ };
131
+ sdk: {
132
+ input: AttachRuleGroupsToProxyConfigurationCommandInput;
133
+ output: AttachRuleGroupsToProxyConfigurationCommandOutput;
134
+ };
135
+ };
136
+ }