@aws-sdk/client-network-firewall 3.826.0 → 3.830.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 (49) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +295 -58
  3. package/dist-es/NetworkFirewall.js +12 -0
  4. package/dist-es/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  5. package/dist-es/commands/AssociateAvailabilityZonesCommand.js +22 -0
  6. package/dist-es/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  7. package/dist-es/commands/DisassociateAvailabilityZonesCommand.js +22 -0
  8. package/dist-es/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  9. package/dist-es/commands/UpdateAvailabilityZoneChangeProtectionCommand.js +22 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_0.js +52 -39
  12. package/dist-es/protocols/Aws_json1_0.js +120 -6
  13. package/dist-types/NetworkFirewall.d.ts +42 -0
  14. package/dist-types/NetworkFirewallClient.d.ts +8 -2
  15. package/dist-types/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
  16. package/dist-types/commands/AssociateAvailabilityZonesCommand.d.ts +124 -0
  17. package/dist-types/commands/CreateFirewallCommand.d.ts +20 -0
  18. package/dist-types/commands/CreateRuleGroupCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteFirewallCommand.d.ts +13 -0
  20. package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +103 -0
  21. package/dist-types/commands/DescribeFirewallCommand.d.ts +13 -0
  22. package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeRuleGroupCommand.d.ts +1 -1
  24. package/dist-types/commands/DisassociateAvailabilityZonesCommand.d.ts +123 -0
  25. package/dist-types/commands/ListFirewallsCommand.d.ts +1 -0
  26. package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
  27. package/dist-types/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +111 -0
  28. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +6 -0
  30. package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
  31. package/dist-types/models/models_0.d.ts +651 -95
  32. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  34. package/dist-types/runtimeConfig.native.d.ts +2 -2
  35. package/dist-types/ts3.4/NetworkFirewall.d.ts +126 -0
  36. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +36 -0
  37. package/dist-types/ts3.4/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/AssociateAvailabilityZonesCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/DisassociateAvailabilityZonesCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
  45. package/dist-types/ts3.4/models/models_0.d.ts +137 -45
  46. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
  49. package/package.json +5 -5
@@ -83,7 +83,7 @@ declare const DescribeRuleGroupCommand_base: {
83
83
  * // { // StatefulRule
84
84
  * // Action: "PASS" || "DROP" || "ALERT" || "REJECT", // required
85
85
  * // Header: { // Header
86
- * // Protocol: "IP" || "TCP" || "UDP" || "ICMP" || "HTTP" || "FTP" || "TLS" || "SMB" || "DNS" || "DCERPC" || "SSH" || "SMTP" || "IMAP" || "MSN" || "KRB5" || "IKEV2" || "TFTP" || "NTP" || "DHCP", // required
86
+ * // Protocol: "IP" || "TCP" || "UDP" || "ICMP" || "HTTP" || "FTP" || "TLS" || "SMB" || "DNS" || "DCERPC" || "SSH" || "SMTP" || "IMAP" || "MSN" || "KRB5" || "IKEV2" || "TFTP" || "NTP" || "DHCP" || "HTTP2" || "QUIC", // required
87
87
  * // Source: "STRING_VALUE", // required
88
88
  * // SourcePort: "STRING_VALUE", // required
89
89
  * // Direction: "FORWARD" || "ANY", // required
@@ -0,0 +1,123 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DisassociateAvailabilityZonesRequest, DisassociateAvailabilityZonesResponse } 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 DisassociateAvailabilityZonesCommand}.
14
+ */
15
+ export interface DisassociateAvailabilityZonesCommandInput extends DisassociateAvailabilityZonesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DisassociateAvailabilityZonesCommand}.
21
+ */
22
+ export interface DisassociateAvailabilityZonesCommandOutput extends DisassociateAvailabilityZonesResponse, __MetadataBearer {
23
+ }
24
+ declare const DisassociateAvailabilityZonesCommand_base: {
25
+ new (input: DisassociateAvailabilityZonesCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DisassociateAvailabilityZonesCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Removes the specified Availability Zone associations from a transit gateway-attached firewall. This removes the firewall endpoints from these Availability Zones and stops traffic filtering in those zones. Before removing an Availability Zone, ensure you've updated your transit gateway route tables to redirect traffic appropriately.</p>
31
+ * <note>
32
+ * <p>If <code>AvailabilityZoneChangeProtection</code> is enabled, you must first disable it using <a>UpdateAvailabilityZoneChangeProtection</a>.</p>
33
+ * </note>
34
+ * <p>To verify the status of your Availability Zone changes, use <a>DescribeFirewall</a>.</p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { NetworkFirewallClient, DisassociateAvailabilityZonesCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
39
+ * // const { NetworkFirewallClient, DisassociateAvailabilityZonesCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
40
+ * const client = new NetworkFirewallClient(config);
41
+ * const input = { // DisassociateAvailabilityZonesRequest
42
+ * UpdateToken: "STRING_VALUE",
43
+ * FirewallArn: "STRING_VALUE",
44
+ * FirewallName: "STRING_VALUE",
45
+ * AvailabilityZoneMappings: [ // AvailabilityZoneMappings // required
46
+ * { // AvailabilityZoneMapping
47
+ * AvailabilityZone: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * };
51
+ * const command = new DisassociateAvailabilityZonesCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // DisassociateAvailabilityZonesResponse
54
+ * // FirewallArn: "STRING_VALUE",
55
+ * // FirewallName: "STRING_VALUE",
56
+ * // AvailabilityZoneMappings: [ // AvailabilityZoneMappings
57
+ * // { // AvailabilityZoneMapping
58
+ * // AvailabilityZone: "STRING_VALUE", // required
59
+ * // },
60
+ * // ],
61
+ * // UpdateToken: "STRING_VALUE",
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param DisassociateAvailabilityZonesCommandInput - {@link DisassociateAvailabilityZonesCommandInput}
67
+ * @returns {@link DisassociateAvailabilityZonesCommandOutput}
68
+ * @see {@link DisassociateAvailabilityZonesCommandInput} for command's `input` shape.
69
+ * @see {@link DisassociateAvailabilityZonesCommandOutput} for command's `response` shape.
70
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
71
+ *
72
+ * @throws {@link InternalServerError} (server fault)
73
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
74
+ * system problem. Retry your request. </p>
75
+ *
76
+ * @throws {@link InvalidOperationException} (client fault)
77
+ * <p>The operation failed because it's not valid. For example, you might have tried to delete
78
+ * a rule group or firewall policy that's in use.</p>
79
+ *
80
+ * @throws {@link InvalidRequestException} (client fault)
81
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
82
+ * <ul>
83
+ * <li>
84
+ * <p>You specified an unsupported parameter name or value.</p>
85
+ * </li>
86
+ * <li>
87
+ * <p>You tried to update a property with a value that isn't among the available
88
+ * types.</p>
89
+ * </li>
90
+ * <li>
91
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
92
+ * that isn't valid in the context of the request.</p>
93
+ * </li>
94
+ * </ul>
95
+ *
96
+ * @throws {@link InvalidTokenException} (client fault)
97
+ * <p>The token you provided is stale or isn't valid for the operation. </p>
98
+ *
99
+ * @throws {@link ResourceNotFoundException} (client fault)
100
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
101
+ *
102
+ * @throws {@link ThrottlingException} (client fault)
103
+ * <p>Unable to process the request due to throttling limitations.</p>
104
+ *
105
+ * @throws {@link NetworkFirewallServiceException}
106
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
107
+ *
108
+ *
109
+ * @public
110
+ */
111
+ export declare class DisassociateAvailabilityZonesCommand extends DisassociateAvailabilityZonesCommand_base {
112
+ /** @internal type navigation helper, not in runtime. */
113
+ protected static __types: {
114
+ api: {
115
+ input: DisassociateAvailabilityZonesRequest;
116
+ output: DisassociateAvailabilityZonesResponse;
117
+ };
118
+ sdk: {
119
+ input: DisassociateAvailabilityZonesCommandInput;
120
+ output: DisassociateAvailabilityZonesCommandOutput;
121
+ };
122
+ };
123
+ }
@@ -52,6 +52,7 @@ declare const ListFirewallsCommand_base: {
52
52
  * // { // FirewallMetadata
53
53
  * // FirewallName: "STRING_VALUE",
54
54
  * // FirewallArn: "STRING_VALUE",
55
+ * // TransitGatewayAttachmentId: "STRING_VALUE",
55
56
  * // },
56
57
  * // ],
57
58
  * // };
@@ -0,0 +1,104 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { RejectNetworkFirewallTransitGatewayAttachmentRequest, RejectNetworkFirewallTransitGatewayAttachmentResponse } 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 RejectNetworkFirewallTransitGatewayAttachmentCommand}.
14
+ */
15
+ export interface RejectNetworkFirewallTransitGatewayAttachmentCommandInput extends RejectNetworkFirewallTransitGatewayAttachmentRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RejectNetworkFirewallTransitGatewayAttachmentCommand}.
21
+ */
22
+ export interface RejectNetworkFirewallTransitGatewayAttachmentCommandOutput extends RejectNetworkFirewallTransitGatewayAttachmentResponse, __MetadataBearer {
23
+ }
24
+ declare const RejectNetworkFirewallTransitGatewayAttachmentCommand_base: {
25
+ new (input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput): import("@smithy/smithy-client").CommandImpl<RejectNetworkFirewallTransitGatewayAttachmentCommandInput, RejectNetworkFirewallTransitGatewayAttachmentCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput): import("@smithy/smithy-client").CommandImpl<RejectNetworkFirewallTransitGatewayAttachmentCommandInput, RejectNetworkFirewallTransitGatewayAttachmentCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Rejects a transit gateway attachment request for Network Firewall. When you reject the attachment request, Network Firewall cancels the creation of routing components between the transit gateway and firewall endpoints.</p>
31
+ * <p>Only the transit gateway owner can reject the attachment. After rejection, no traffic will flow through the firewall endpoints for this attachment.</p>
32
+ * <p>Use <a>DescribeFirewall</a> to monitor the rejection status. To accept the attachment instead of rejecting it, use <a>AcceptNetworkFirewallTransitGatewayAttachment</a>.</p>
33
+ * <note>
34
+ * <p>Once rejected, you cannot reverse this action. To establish connectivity, you must create a new transit gateway-attached firewall.</p>
35
+ * </note>
36
+ * @example
37
+ * Use a bare-bones client and the command you need to make an API call.
38
+ * ```javascript
39
+ * import { NetworkFirewallClient, RejectNetworkFirewallTransitGatewayAttachmentCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
40
+ * // const { NetworkFirewallClient, RejectNetworkFirewallTransitGatewayAttachmentCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
41
+ * const client = new NetworkFirewallClient(config);
42
+ * const input = { // RejectNetworkFirewallTransitGatewayAttachmentRequest
43
+ * TransitGatewayAttachmentId: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new RejectNetworkFirewallTransitGatewayAttachmentCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // RejectNetworkFirewallTransitGatewayAttachmentResponse
48
+ * // TransitGatewayAttachmentId: "STRING_VALUE", // required
49
+ * // TransitGatewayAttachmentStatus: "CREATING" || "DELETING" || "DELETED" || "FAILED" || "ERROR" || "READY" || "PENDING_ACCEPTANCE" || "REJECTING" || "REJECTED", // required
50
+ * // };
51
+ *
52
+ * ```
53
+ *
54
+ * @param RejectNetworkFirewallTransitGatewayAttachmentCommandInput - {@link RejectNetworkFirewallTransitGatewayAttachmentCommandInput}
55
+ * @returns {@link RejectNetworkFirewallTransitGatewayAttachmentCommandOutput}
56
+ * @see {@link RejectNetworkFirewallTransitGatewayAttachmentCommandInput} for command's `input` shape.
57
+ * @see {@link RejectNetworkFirewallTransitGatewayAttachmentCommandOutput} for command's `response` shape.
58
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
59
+ *
60
+ * @throws {@link InternalServerError} (server fault)
61
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
62
+ * system problem. Retry your request. </p>
63
+ *
64
+ * @throws {@link InvalidRequestException} (client fault)
65
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
66
+ * <ul>
67
+ * <li>
68
+ * <p>You specified an unsupported parameter name or value.</p>
69
+ * </li>
70
+ * <li>
71
+ * <p>You tried to update a property with a value that isn't among the available
72
+ * types.</p>
73
+ * </li>
74
+ * <li>
75
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
76
+ * that isn't valid in the context of the request.</p>
77
+ * </li>
78
+ * </ul>
79
+ *
80
+ * @throws {@link ResourceNotFoundException} (client fault)
81
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
82
+ *
83
+ * @throws {@link ThrottlingException} (client fault)
84
+ * <p>Unable to process the request due to throttling limitations.</p>
85
+ *
86
+ * @throws {@link NetworkFirewallServiceException}
87
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
88
+ *
89
+ *
90
+ * @public
91
+ */
92
+ export declare class RejectNetworkFirewallTransitGatewayAttachmentCommand extends RejectNetworkFirewallTransitGatewayAttachmentCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: RejectNetworkFirewallTransitGatewayAttachmentRequest;
97
+ output: RejectNetworkFirewallTransitGatewayAttachmentResponse;
98
+ };
99
+ sdk: {
100
+ input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput;
101
+ output: RejectNetworkFirewallTransitGatewayAttachmentCommandOutput;
102
+ };
103
+ };
104
+ }
@@ -0,0 +1,111 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateAvailabilityZoneChangeProtectionRequest, UpdateAvailabilityZoneChangeProtectionResponse } 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 UpdateAvailabilityZoneChangeProtectionCommand}.
14
+ */
15
+ export interface UpdateAvailabilityZoneChangeProtectionCommandInput extends UpdateAvailabilityZoneChangeProtectionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateAvailabilityZoneChangeProtectionCommand}.
21
+ */
22
+ export interface UpdateAvailabilityZoneChangeProtectionCommandOutput extends UpdateAvailabilityZoneChangeProtectionResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateAvailabilityZoneChangeProtectionCommand_base: {
25
+ new (input: UpdateAvailabilityZoneChangeProtectionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAvailabilityZoneChangeProtectionCommandInput, UpdateAvailabilityZoneChangeProtectionCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateAvailabilityZoneChangeProtectionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAvailabilityZoneChangeProtectionCommandInput, UpdateAvailabilityZoneChangeProtectionCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Modifies the <code>AvailabilityZoneChangeProtection</code> setting for a transit gateway-attached firewall. When enabled, this setting prevents accidental changes to the firewall's Availability Zone configuration. This helps protect against disrupting traffic flow in production environments.</p>
31
+ * <p>When enabled, you must disable this protection before using <a>AssociateAvailabilityZones</a> or <a>DisassociateAvailabilityZones</a> to modify the firewall's Availability Zone configuration.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { NetworkFirewallClient, UpdateAvailabilityZoneChangeProtectionCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
36
+ * // const { NetworkFirewallClient, UpdateAvailabilityZoneChangeProtectionCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
37
+ * const client = new NetworkFirewallClient(config);
38
+ * const input = { // UpdateAvailabilityZoneChangeProtectionRequest
39
+ * UpdateToken: "STRING_VALUE",
40
+ * FirewallArn: "STRING_VALUE",
41
+ * FirewallName: "STRING_VALUE",
42
+ * AvailabilityZoneChangeProtection: true || false, // required
43
+ * };
44
+ * const command = new UpdateAvailabilityZoneChangeProtectionCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // UpdateAvailabilityZoneChangeProtectionResponse
47
+ * // UpdateToken: "STRING_VALUE",
48
+ * // FirewallArn: "STRING_VALUE",
49
+ * // FirewallName: "STRING_VALUE",
50
+ * // AvailabilityZoneChangeProtection: true || false,
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param UpdateAvailabilityZoneChangeProtectionCommandInput - {@link UpdateAvailabilityZoneChangeProtectionCommandInput}
56
+ * @returns {@link UpdateAvailabilityZoneChangeProtectionCommandOutput}
57
+ * @see {@link UpdateAvailabilityZoneChangeProtectionCommandInput} for command's `input` shape.
58
+ * @see {@link UpdateAvailabilityZoneChangeProtectionCommandOutput} for command's `response` shape.
59
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
60
+ *
61
+ * @throws {@link InternalServerError} (server fault)
62
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
63
+ * system problem. Retry your request. </p>
64
+ *
65
+ * @throws {@link InvalidRequestException} (client fault)
66
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
67
+ * <ul>
68
+ * <li>
69
+ * <p>You specified an unsupported parameter name or value.</p>
70
+ * </li>
71
+ * <li>
72
+ * <p>You tried to update a property with a value that isn't among the available
73
+ * types.</p>
74
+ * </li>
75
+ * <li>
76
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
77
+ * that isn't valid in the context of the request.</p>
78
+ * </li>
79
+ * </ul>
80
+ *
81
+ * @throws {@link InvalidTokenException} (client fault)
82
+ * <p>The token you provided is stale or isn't valid for the operation. </p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
86
+ *
87
+ * @throws {@link ResourceOwnerCheckException} (client fault)
88
+ * <p>Unable to change the resource because your account doesn't own it. </p>
89
+ *
90
+ * @throws {@link ThrottlingException} (client fault)
91
+ * <p>Unable to process the request due to throttling limitations.</p>
92
+ *
93
+ * @throws {@link NetworkFirewallServiceException}
94
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
95
+ *
96
+ *
97
+ * @public
98
+ */
99
+ export declare class UpdateAvailabilityZoneChangeProtectionCommand extends UpdateAvailabilityZoneChangeProtectionCommand_base {
100
+ /** @internal type navigation helper, not in runtime. */
101
+ protected static __types: {
102
+ api: {
103
+ input: UpdateAvailabilityZoneChangeProtectionRequest;
104
+ output: UpdateAvailabilityZoneChangeProtectionResponse;
105
+ };
106
+ sdk: {
107
+ input: UpdateAvailabilityZoneChangeProtectionCommandInput;
108
+ output: UpdateAvailabilityZoneChangeProtectionCommandOutput;
109
+ };
110
+ };
111
+ }
@@ -82,7 +82,7 @@ declare const UpdateRuleGroupCommand_base: {
82
82
  * { // StatefulRule
83
83
  * Action: "PASS" || "DROP" || "ALERT" || "REJECT", // required
84
84
  * Header: { // Header
85
- * Protocol: "IP" || "TCP" || "UDP" || "ICMP" || "HTTP" || "FTP" || "TLS" || "SMB" || "DNS" || "DCERPC" || "SSH" || "SMTP" || "IMAP" || "MSN" || "KRB5" || "IKEV2" || "TFTP" || "NTP" || "DHCP", // required
85
+ * Protocol: "IP" || "TCP" || "UDP" || "ICMP" || "HTTP" || "FTP" || "TLS" || "SMB" || "DNS" || "DCERPC" || "SSH" || "SMTP" || "IMAP" || "MSN" || "KRB5" || "IKEV2" || "TFTP" || "NTP" || "DHCP" || "HTTP2" || "QUIC", // required
86
86
  * Source: "STRING_VALUE", // required
87
87
  * SourcePort: "STRING_VALUE", // required
88
88
  * Direction: "FORWARD" || "ANY", // required
@@ -1,3 +1,5 @@
1
+ export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
2
+ export * from "./AssociateAvailabilityZonesCommand";
1
3
  export * from "./AssociateFirewallPolicyCommand";
2
4
  export * from "./AssociateSubnetsCommand";
3
5
  export * from "./CreateFirewallCommand";
@@ -7,6 +9,7 @@ export * from "./CreateTLSInspectionConfigurationCommand";
7
9
  export * from "./CreateVpcEndpointAssociationCommand";
8
10
  export * from "./DeleteFirewallCommand";
9
11
  export * from "./DeleteFirewallPolicyCommand";
12
+ export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
10
13
  export * from "./DeleteResourcePolicyCommand";
11
14
  export * from "./DeleteRuleGroupCommand";
12
15
  export * from "./DeleteTLSInspectionConfigurationCommand";
@@ -21,6 +24,7 @@ export * from "./DescribeRuleGroupCommand";
21
24
  export * from "./DescribeRuleGroupMetadataCommand";
22
25
  export * from "./DescribeTLSInspectionConfigurationCommand";
23
26
  export * from "./DescribeVpcEndpointAssociationCommand";
27
+ export * from "./DisassociateAvailabilityZonesCommand";
24
28
  export * from "./DisassociateSubnetsCommand";
25
29
  export * from "./GetAnalysisReportResultsCommand";
26
30
  export * from "./ListAnalysisReportsCommand";
@@ -33,11 +37,13 @@ export * from "./ListTLSInspectionConfigurationsCommand";
33
37
  export * from "./ListTagsForResourceCommand";
34
38
  export * from "./ListVpcEndpointAssociationsCommand";
35
39
  export * from "./PutResourcePolicyCommand";
40
+ export * from "./RejectNetworkFirewallTransitGatewayAttachmentCommand";
36
41
  export * from "./StartAnalysisReportCommand";
37
42
  export * from "./StartFlowCaptureCommand";
38
43
  export * from "./StartFlowFlushCommand";
39
44
  export * from "./TagResourceCommand";
40
45
  export * from "./UntagResourceCommand";
46
+ export * from "./UpdateAvailabilityZoneChangeProtectionCommand";
41
47
  export * from "./UpdateFirewallAnalysisSettingsCommand";
42
48
  export * from "./UpdateFirewallDeleteProtectionCommand";
43
49
  export * from "./UpdateFirewallDescriptionCommand";
@@ -3,9 +3,9 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provi
3
3
  * @public
4
4
  */
5
5
  export interface ClientInputEndpointParameters {
6
- region?: string | Provider<string>;
7
- useDualstackEndpoint?: boolean | Provider<boolean>;
8
- useFipsEndpoint?: boolean | Provider<boolean>;
6
+ region?: string | undefined | Provider<string | undefined>;
7
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
9
  endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
10
  }
11
11
  export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
@@ -31,8 +31,8 @@ export declare const commonParams: {
31
31
  };
32
32
  };
33
33
  export interface EndpointParameters extends __EndpointParameters {
34
- Region?: string;
35
- UseDualStack?: boolean;
36
- UseFIPS?: boolean;
37
- Endpoint?: string;
34
+ Region?: string | undefined;
35
+ UseDualStack?: boolean | undefined;
36
+ UseFIPS?: boolean | undefined;
37
+ Endpoint?: string | undefined;
38
38
  }