@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
@@ -0,0 +1,164 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DescribeProxyRuleGroupRequest, DescribeProxyRuleGroupResponse } 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 DescribeProxyRuleGroupCommand}.
14
+ */
15
+ export interface DescribeProxyRuleGroupCommandInput extends DescribeProxyRuleGroupRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeProxyRuleGroupCommand}.
21
+ */
22
+ export interface DescribeProxyRuleGroupCommandOutput extends DescribeProxyRuleGroupResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeProxyRuleGroupCommand_base: {
25
+ new (input: DescribeProxyRuleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeProxyRuleGroupCommandInput, DescribeProxyRuleGroupCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DescribeProxyRuleGroupCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeProxyRuleGroupCommandInput, DescribeProxyRuleGroupCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns the data objects for the specified proxy rule group. </p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NetworkFirewallClient, DescribeProxyRuleGroupCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
35
+ * // const { NetworkFirewallClient, DescribeProxyRuleGroupCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
36
+ * // import type { NetworkFirewallClientConfig } from "@aws-sdk/client-network-firewall";
37
+ * const config = {}; // type is NetworkFirewallClientConfig
38
+ * const client = new NetworkFirewallClient(config);
39
+ * const input = { // DescribeProxyRuleGroupRequest
40
+ * ProxyRuleGroupName: "STRING_VALUE",
41
+ * ProxyRuleGroupArn: "STRING_VALUE",
42
+ * };
43
+ * const command = new DescribeProxyRuleGroupCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // DescribeProxyRuleGroupResponse
46
+ * // ProxyRuleGroup: { // ProxyRuleGroup
47
+ * // ProxyRuleGroupName: "STRING_VALUE",
48
+ * // ProxyRuleGroupArn: "STRING_VALUE",
49
+ * // CreateTime: new Date("TIMESTAMP"),
50
+ * // DeleteTime: new Date("TIMESTAMP"),
51
+ * // Rules: { // ProxyRulesByRequestPhase
52
+ * // PreDNS: [ // ProxyRuleList
53
+ * // { // ProxyRule
54
+ * // ProxyRuleName: "STRING_VALUE",
55
+ * // Description: "STRING_VALUE",
56
+ * // Action: "ALLOW" || "DENY" || "ALERT",
57
+ * // Conditions: [ // ProxyRuleConditionList
58
+ * // { // ProxyRuleCondition
59
+ * // ConditionOperator: "STRING_VALUE",
60
+ * // ConditionKey: "STRING_VALUE",
61
+ * // ConditionValues: [ // ProxyConditionValueList
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // ],
66
+ * // },
67
+ * // ],
68
+ * // PreREQUEST: [
69
+ * // {
70
+ * // ProxyRuleName: "STRING_VALUE",
71
+ * // Description: "STRING_VALUE",
72
+ * // Action: "ALLOW" || "DENY" || "ALERT",
73
+ * // Conditions: [
74
+ * // {
75
+ * // ConditionOperator: "STRING_VALUE",
76
+ * // ConditionKey: "STRING_VALUE",
77
+ * // ConditionValues: [
78
+ * // "STRING_VALUE",
79
+ * // ],
80
+ * // },
81
+ * // ],
82
+ * // },
83
+ * // ],
84
+ * // PostRESPONSE: [
85
+ * // {
86
+ * // ProxyRuleName: "STRING_VALUE",
87
+ * // Description: "STRING_VALUE",
88
+ * // Action: "ALLOW" || "DENY" || "ALERT",
89
+ * // Conditions: [
90
+ * // {
91
+ * // ConditionOperator: "STRING_VALUE",
92
+ * // ConditionKey: "STRING_VALUE",
93
+ * // ConditionValues: [
94
+ * // "STRING_VALUE",
95
+ * // ],
96
+ * // },
97
+ * // ],
98
+ * // },
99
+ * // ],
100
+ * // },
101
+ * // Description: "STRING_VALUE",
102
+ * // Tags: [ // TagList
103
+ * // { // Tag
104
+ * // Key: "STRING_VALUE", // required
105
+ * // Value: "STRING_VALUE", // required
106
+ * // },
107
+ * // ],
108
+ * // },
109
+ * // UpdateToken: "STRING_VALUE",
110
+ * // };
111
+ *
112
+ * ```
113
+ *
114
+ * @param DescribeProxyRuleGroupCommandInput - {@link DescribeProxyRuleGroupCommandInput}
115
+ * @returns {@link DescribeProxyRuleGroupCommandOutput}
116
+ * @see {@link DescribeProxyRuleGroupCommandInput} for command's `input` shape.
117
+ * @see {@link DescribeProxyRuleGroupCommandOutput} for command's `response` shape.
118
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
119
+ *
120
+ * @throws {@link InternalServerError} (server fault)
121
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
122
+ * system problem. Retry your request. </p>
123
+ *
124
+ * @throws {@link InvalidRequestException} (client fault)
125
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
126
+ * <ul>
127
+ * <li>
128
+ * <p>You specified an unsupported parameter name or value.</p>
129
+ * </li>
130
+ * <li>
131
+ * <p>You tried to update a property with a value that isn't among the available
132
+ * types.</p>
133
+ * </li>
134
+ * <li>
135
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
136
+ * that isn't valid in the context of the request.</p>
137
+ * </li>
138
+ * </ul>
139
+ *
140
+ * @throws {@link ResourceNotFoundException} (client fault)
141
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
142
+ *
143
+ * @throws {@link ThrottlingException} (client fault)
144
+ * <p>Unable to process the request due to throttling limitations.</p>
145
+ *
146
+ * @throws {@link NetworkFirewallServiceException}
147
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
148
+ *
149
+ *
150
+ * @public
151
+ */
152
+ export declare class DescribeProxyRuleGroupCommand extends DescribeProxyRuleGroupCommand_base {
153
+ /** @internal type navigation helper, not in runtime. */
154
+ protected static __types: {
155
+ api: {
156
+ input: DescribeProxyRuleGroupRequest;
157
+ output: DescribeProxyRuleGroupResponse;
158
+ };
159
+ sdk: {
160
+ input: DescribeProxyRuleGroupCommandInput;
161
+ output: DescribeProxyRuleGroupCommandOutput;
162
+ };
163
+ };
164
+ }
@@ -0,0 +1,136 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DetachRuleGroupsFromProxyConfigurationRequest, DetachRuleGroupsFromProxyConfigurationResponse } 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 DetachRuleGroupsFromProxyConfigurationCommand}.
14
+ */
15
+ export interface DetachRuleGroupsFromProxyConfigurationCommandInput extends DetachRuleGroupsFromProxyConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DetachRuleGroupsFromProxyConfigurationCommand}.
21
+ */
22
+ export interface DetachRuleGroupsFromProxyConfigurationCommandOutput extends DetachRuleGroupsFromProxyConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const DetachRuleGroupsFromProxyConfigurationCommand_base: {
25
+ new (input: DetachRuleGroupsFromProxyConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DetachRuleGroupsFromProxyConfigurationCommandInput, DetachRuleGroupsFromProxyConfigurationCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DetachRuleGroupsFromProxyConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DetachRuleGroupsFromProxyConfigurationCommandInput, DetachRuleGroupsFromProxyConfigurationCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Detaches <a>ProxyRuleGroup</a> resources from 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, DetachRuleGroupsFromProxyConfigurationCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
37
+ * // const { NetworkFirewallClient, DetachRuleGroupsFromProxyConfigurationCommand } = 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 = { // DetachRuleGroupsFromProxyConfigurationRequest
42
+ * ProxyConfigurationName: "STRING_VALUE",
43
+ * ProxyConfigurationArn: "STRING_VALUE",
44
+ * RuleGroupNames: [ // ResourceNameList
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * RuleGroupArns: [ // ResourceArnList
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * UpdateToken: "STRING_VALUE", // required
51
+ * };
52
+ * const command = new DetachRuleGroupsFromProxyConfigurationCommand(input);
53
+ * const response = await client.send(command);
54
+ * // { // DetachRuleGroupsFromProxyConfigurationResponse
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 DetachRuleGroupsFromProxyConfigurationCommandInput - {@link DetachRuleGroupsFromProxyConfigurationCommandInput}
87
+ * @returns {@link DetachRuleGroupsFromProxyConfigurationCommandOutput}
88
+ * @see {@link DetachRuleGroupsFromProxyConfigurationCommandInput} for command's `input` shape.
89
+ * @see {@link DetachRuleGroupsFromProxyConfigurationCommandOutput} 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 DetachRuleGroupsFromProxyConfigurationCommand extends DetachRuleGroupsFromProxyConfigurationCommand_base {
125
+ /** @internal type navigation helper, not in runtime. */
126
+ protected static __types: {
127
+ api: {
128
+ input: DetachRuleGroupsFromProxyConfigurationRequest;
129
+ output: DetachRuleGroupsFromProxyConfigurationResponse;
130
+ };
131
+ sdk: {
132
+ input: DetachRuleGroupsFromProxyConfigurationCommandInput;
133
+ output: DetachRuleGroupsFromProxyConfigurationCommandOutput;
134
+ };
135
+ };
136
+ }
@@ -0,0 +1,106 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListProxiesRequest, ListProxiesResponse } 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 ListProxiesCommand}.
14
+ */
15
+ export interface ListProxiesCommandInput extends ListProxiesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListProxiesCommand}.
21
+ */
22
+ export interface ListProxiesCommandOutput extends ListProxiesResponse, __MetadataBearer {
23
+ }
24
+ declare const ListProxiesCommand_base: {
25
+ new (input: ListProxiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProxiesCommandInput, ListProxiesCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListProxiesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProxiesCommandInput, ListProxiesCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the metadata for the proxies that you have defined. Depending on
31
+ * your setting for max results and the number of proxies, a single call might not
32
+ * return the full list. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { NetworkFirewallClient, ListProxiesCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
37
+ * // const { NetworkFirewallClient, ListProxiesCommand } = 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 = { // ListProxiesRequest
42
+ * NextToken: "STRING_VALUE",
43
+ * MaxResults: Number("int"),
44
+ * };
45
+ * const command = new ListProxiesCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // ListProxiesResponse
48
+ * // Proxies: [ // Proxies
49
+ * // { // ProxyMetadata
50
+ * // Name: "STRING_VALUE",
51
+ * // Arn: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param ListProxiesCommandInput - {@link ListProxiesCommandInput}
60
+ * @returns {@link ListProxiesCommandOutput}
61
+ * @see {@link ListProxiesCommandInput} for command's `input` shape.
62
+ * @see {@link ListProxiesCommandOutput} for command's `response` shape.
63
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
64
+ *
65
+ * @throws {@link InternalServerError} (server fault)
66
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
67
+ * system problem. Retry your request. </p>
68
+ *
69
+ * @throws {@link InvalidRequestException} (client fault)
70
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
71
+ * <ul>
72
+ * <li>
73
+ * <p>You specified an unsupported parameter name or value.</p>
74
+ * </li>
75
+ * <li>
76
+ * <p>You tried to update a property with a value that isn't among the available
77
+ * types.</p>
78
+ * </li>
79
+ * <li>
80
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
81
+ * that isn't valid in the context of the request.</p>
82
+ * </li>
83
+ * </ul>
84
+ *
85
+ * @throws {@link ThrottlingException} (client fault)
86
+ * <p>Unable to process the request due to throttling limitations.</p>
87
+ *
88
+ * @throws {@link NetworkFirewallServiceException}
89
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
90
+ *
91
+ *
92
+ * @public
93
+ */
94
+ export declare class ListProxiesCommand extends ListProxiesCommand_base {
95
+ /** @internal type navigation helper, not in runtime. */
96
+ protected static __types: {
97
+ api: {
98
+ input: ListProxiesRequest;
99
+ output: ListProxiesResponse;
100
+ };
101
+ sdk: {
102
+ input: ListProxiesCommandInput;
103
+ output: ListProxiesCommandOutput;
104
+ };
105
+ };
106
+ }
@@ -0,0 +1,109 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListProxyConfigurationsRequest, ListProxyConfigurationsResponse } 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 ListProxyConfigurationsCommand}.
14
+ */
15
+ export interface ListProxyConfigurationsCommandInput extends ListProxyConfigurationsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListProxyConfigurationsCommand}.
21
+ */
22
+ export interface ListProxyConfigurationsCommandOutput extends ListProxyConfigurationsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListProxyConfigurationsCommand_base: {
25
+ new (input: ListProxyConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProxyConfigurationsCommandInput, ListProxyConfigurationsCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListProxyConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProxyConfigurationsCommandInput, ListProxyConfigurationsCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the metadata for the proxy configuration that you have defined. Depending on
31
+ * your setting for max results and the number of proxy configurations, a single call might not
32
+ * return the full list. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { NetworkFirewallClient, ListProxyConfigurationsCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
37
+ * // const { NetworkFirewallClient, ListProxyConfigurationsCommand } = 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 = { // ListProxyConfigurationsRequest
42
+ * NextToken: "STRING_VALUE",
43
+ * MaxResults: Number("int"),
44
+ * };
45
+ * const command = new ListProxyConfigurationsCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // ListProxyConfigurationsResponse
48
+ * // ProxyConfigurations: [ // ProxyConfigurations
49
+ * // { // ProxyConfigurationMetadata
50
+ * // Name: "STRING_VALUE",
51
+ * // Arn: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param ListProxyConfigurationsCommandInput - {@link ListProxyConfigurationsCommandInput}
60
+ * @returns {@link ListProxyConfigurationsCommandOutput}
61
+ * @see {@link ListProxyConfigurationsCommandInput} for command's `input` shape.
62
+ * @see {@link ListProxyConfigurationsCommandOutput} for command's `response` shape.
63
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
64
+ *
65
+ * @throws {@link InternalServerError} (server fault)
66
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
67
+ * system problem. Retry your request. </p>
68
+ *
69
+ * @throws {@link InvalidRequestException} (client fault)
70
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
71
+ * <ul>
72
+ * <li>
73
+ * <p>You specified an unsupported parameter name or value.</p>
74
+ * </li>
75
+ * <li>
76
+ * <p>You tried to update a property with a value that isn't among the available
77
+ * types.</p>
78
+ * </li>
79
+ * <li>
80
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
81
+ * that isn't valid in the context of the request.</p>
82
+ * </li>
83
+ * </ul>
84
+ *
85
+ * @throws {@link ResourceNotFoundException} (client fault)
86
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
87
+ *
88
+ * @throws {@link ThrottlingException} (client fault)
89
+ * <p>Unable to process the request due to throttling limitations.</p>
90
+ *
91
+ * @throws {@link NetworkFirewallServiceException}
92
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
93
+ *
94
+ *
95
+ * @public
96
+ */
97
+ export declare class ListProxyConfigurationsCommand extends ListProxyConfigurationsCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ListProxyConfigurationsRequest;
102
+ output: ListProxyConfigurationsResponse;
103
+ };
104
+ sdk: {
105
+ input: ListProxyConfigurationsCommandInput;
106
+ output: ListProxyConfigurationsCommandOutput;
107
+ };
108
+ };
109
+ }
@@ -0,0 +1,109 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListProxyRuleGroupsRequest, ListProxyRuleGroupsResponse } 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 ListProxyRuleGroupsCommand}.
14
+ */
15
+ export interface ListProxyRuleGroupsCommandInput extends ListProxyRuleGroupsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListProxyRuleGroupsCommand}.
21
+ */
22
+ export interface ListProxyRuleGroupsCommandOutput extends ListProxyRuleGroupsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListProxyRuleGroupsCommand_base: {
25
+ new (input: ListProxyRuleGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProxyRuleGroupsCommandInput, ListProxyRuleGroupsCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListProxyRuleGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProxyRuleGroupsCommandInput, ListProxyRuleGroupsCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the metadata for the proxy rule groups that you have defined. Depending on
31
+ * your setting for max results and the number of proxy rule groups, a single call might not
32
+ * return the full list. </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { NetworkFirewallClient, ListProxyRuleGroupsCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
37
+ * // const { NetworkFirewallClient, ListProxyRuleGroupsCommand } = 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 = { // ListProxyRuleGroupsRequest
42
+ * NextToken: "STRING_VALUE",
43
+ * MaxResults: Number("int"),
44
+ * };
45
+ * const command = new ListProxyRuleGroupsCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // ListProxyRuleGroupsResponse
48
+ * // ProxyRuleGroups: [ // ProxyRuleGroups
49
+ * // { // ProxyRuleGroupMetadata
50
+ * // Name: "STRING_VALUE",
51
+ * // Arn: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param ListProxyRuleGroupsCommandInput - {@link ListProxyRuleGroupsCommandInput}
60
+ * @returns {@link ListProxyRuleGroupsCommandOutput}
61
+ * @see {@link ListProxyRuleGroupsCommandInput} for command's `input` shape.
62
+ * @see {@link ListProxyRuleGroupsCommandOutput} for command's `response` shape.
63
+ * @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
64
+ *
65
+ * @throws {@link InternalServerError} (server fault)
66
+ * <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
67
+ * system problem. Retry your request. </p>
68
+ *
69
+ * @throws {@link InvalidRequestException} (client fault)
70
+ * <p>The operation failed because of a problem with your request. Examples include: </p>
71
+ * <ul>
72
+ * <li>
73
+ * <p>You specified an unsupported parameter name or value.</p>
74
+ * </li>
75
+ * <li>
76
+ * <p>You tried to update a property with a value that isn't among the available
77
+ * types.</p>
78
+ * </li>
79
+ * <li>
80
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
81
+ * that isn't valid in the context of the request.</p>
82
+ * </li>
83
+ * </ul>
84
+ *
85
+ * @throws {@link ResourceNotFoundException} (client fault)
86
+ * <p>Unable to locate a resource using the parameters that you provided.</p>
87
+ *
88
+ * @throws {@link ThrottlingException} (client fault)
89
+ * <p>Unable to process the request due to throttling limitations.</p>
90
+ *
91
+ * @throws {@link NetworkFirewallServiceException}
92
+ * <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
93
+ *
94
+ *
95
+ * @public
96
+ */
97
+ export declare class ListProxyRuleGroupsCommand extends ListProxyRuleGroupsCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ListProxyRuleGroupsRequest;
102
+ output: ListProxyRuleGroupsResponse;
103
+ };
104
+ sdk: {
105
+ input: ListProxyRuleGroupsCommandInput;
106
+ output: ListProxyRuleGroupsCommandOutput;
107
+ };
108
+ };
109
+ }