@aws-sdk/client-network-firewall 3.169.0 → 3.170.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +574 -160
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/AssociateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AssociateSubnetsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupMetadataCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateSubnetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListFirewallPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListFirewallsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateFirewallDeleteProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallDescriptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSubnetChangeProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/NetworkFirewallServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1446 -1344
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListFirewallPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFirewallsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRuleGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { NetworkFirewall } from "../NetworkFirewall";
|
|
3
|
-
import { NetworkFirewallClient } from "../NetworkFirewallClient";
|
|
4
|
-
export interface NetworkFirewallPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { NetworkFirewall } from "../NetworkFirewall";
|
|
3
|
+
import { NetworkFirewallClient } from "../NetworkFirewallClient";
|
|
4
|
+
export interface NetworkFirewallPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: NetworkFirewall | NetworkFirewallClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFirewallPoliciesCommandInput,
|
|
4
|
+
ListFirewallPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListFirewallPoliciesCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFirewallPolicies(
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListFirewallPoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFirewallPoliciesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFirewallsCommandInput,
|
|
4
|
+
ListFirewallsCommandOutput,
|
|
5
|
+
} from "../commands/ListFirewallsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFirewalls(
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListFirewallsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFirewallsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRuleGroupsCommandInput,
|
|
4
|
+
ListRuleGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListRuleGroupsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRuleGroups(
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListRuleGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRuleGroupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTagsForResourceCommandInput,
|
|
4
|
+
ListTagsForResourceCommandOutput,
|
|
5
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListTagsForResource(
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListFirewallPoliciesPaginator";
|
|
3
|
-
export * from "./ListFirewallsPaginator";
|
|
4
|
-
export * from "./ListRuleGroupsPaginator";
|
|
5
|
-
export * from "./ListTagsForResourcePaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListFirewallPoliciesPaginator";
|
|
3
|
+
export * from "./ListFirewallsPaginator";
|
|
4
|
+
export * from "./ListRuleGroupsPaginator";
|
|
5
|
+
export * from "./ListTagsForResourcePaginator";
|
|
@@ -1,95 +1,377 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateFirewallPolicyCommandInput,
|
|
8
|
+
AssociateFirewallPolicyCommandOutput,
|
|
9
|
+
} from "../commands/AssociateFirewallPolicyCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateSubnetsCommandInput,
|
|
12
|
+
AssociateSubnetsCommandOutput,
|
|
13
|
+
} from "../commands/AssociateSubnetsCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateFirewallCommandInput,
|
|
16
|
+
CreateFirewallCommandOutput,
|
|
17
|
+
} from "../commands/CreateFirewallCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateFirewallPolicyCommandInput,
|
|
20
|
+
CreateFirewallPolicyCommandOutput,
|
|
21
|
+
} from "../commands/CreateFirewallPolicyCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateRuleGroupCommandInput,
|
|
24
|
+
CreateRuleGroupCommandOutput,
|
|
25
|
+
} from "../commands/CreateRuleGroupCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteFirewallCommandInput,
|
|
28
|
+
DeleteFirewallCommandOutput,
|
|
29
|
+
} from "../commands/DeleteFirewallCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteFirewallPolicyCommandInput,
|
|
32
|
+
DeleteFirewallPolicyCommandOutput,
|
|
33
|
+
} from "../commands/DeleteFirewallPolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteResourcePolicyCommandInput,
|
|
36
|
+
DeleteResourcePolicyCommandOutput,
|
|
37
|
+
} from "../commands/DeleteResourcePolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteRuleGroupCommandInput,
|
|
40
|
+
DeleteRuleGroupCommandOutput,
|
|
41
|
+
} from "../commands/DeleteRuleGroupCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeFirewallCommandInput,
|
|
44
|
+
DescribeFirewallCommandOutput,
|
|
45
|
+
} from "../commands/DescribeFirewallCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeFirewallPolicyCommandInput,
|
|
48
|
+
DescribeFirewallPolicyCommandOutput,
|
|
49
|
+
} from "../commands/DescribeFirewallPolicyCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeLoggingConfigurationCommandInput,
|
|
52
|
+
DescribeLoggingConfigurationCommandOutput,
|
|
53
|
+
} from "../commands/DescribeLoggingConfigurationCommand";
|
|
54
|
+
import {
|
|
55
|
+
DescribeResourcePolicyCommandInput,
|
|
56
|
+
DescribeResourcePolicyCommandOutput,
|
|
57
|
+
} from "../commands/DescribeResourcePolicyCommand";
|
|
58
|
+
import {
|
|
59
|
+
DescribeRuleGroupCommandInput,
|
|
60
|
+
DescribeRuleGroupCommandOutput,
|
|
61
|
+
} from "../commands/DescribeRuleGroupCommand";
|
|
62
|
+
import {
|
|
63
|
+
DescribeRuleGroupMetadataCommandInput,
|
|
64
|
+
DescribeRuleGroupMetadataCommandOutput,
|
|
65
|
+
} from "../commands/DescribeRuleGroupMetadataCommand";
|
|
66
|
+
import {
|
|
67
|
+
DisassociateSubnetsCommandInput,
|
|
68
|
+
DisassociateSubnetsCommandOutput,
|
|
69
|
+
} from "../commands/DisassociateSubnetsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListFirewallPoliciesCommandInput,
|
|
72
|
+
ListFirewallPoliciesCommandOutput,
|
|
73
|
+
} from "../commands/ListFirewallPoliciesCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListFirewallsCommandInput,
|
|
76
|
+
ListFirewallsCommandOutput,
|
|
77
|
+
} from "../commands/ListFirewallsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListRuleGroupsCommandInput,
|
|
80
|
+
ListRuleGroupsCommandOutput,
|
|
81
|
+
} from "../commands/ListRuleGroupsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListTagsForResourceCommandInput,
|
|
84
|
+
ListTagsForResourceCommandOutput,
|
|
85
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
PutResourcePolicyCommandInput,
|
|
88
|
+
PutResourcePolicyCommandOutput,
|
|
89
|
+
} from "../commands/PutResourcePolicyCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "../commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateFirewallDeleteProtectionCommandInput,
|
|
100
|
+
UpdateFirewallDeleteProtectionCommandOutput,
|
|
101
|
+
} from "../commands/UpdateFirewallDeleteProtectionCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateFirewallDescriptionCommandInput,
|
|
104
|
+
UpdateFirewallDescriptionCommandOutput,
|
|
105
|
+
} from "../commands/UpdateFirewallDescriptionCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateFirewallEncryptionConfigurationCommandInput,
|
|
108
|
+
UpdateFirewallEncryptionConfigurationCommandOutput,
|
|
109
|
+
} from "../commands/UpdateFirewallEncryptionConfigurationCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateFirewallPolicyChangeProtectionCommandInput,
|
|
112
|
+
UpdateFirewallPolicyChangeProtectionCommandOutput,
|
|
113
|
+
} from "../commands/UpdateFirewallPolicyChangeProtectionCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateFirewallPolicyCommandInput,
|
|
116
|
+
UpdateFirewallPolicyCommandOutput,
|
|
117
|
+
} from "../commands/UpdateFirewallPolicyCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateLoggingConfigurationCommandInput,
|
|
120
|
+
UpdateLoggingConfigurationCommandOutput,
|
|
121
|
+
} from "../commands/UpdateLoggingConfigurationCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateRuleGroupCommandInput,
|
|
124
|
+
UpdateRuleGroupCommandOutput,
|
|
125
|
+
} from "../commands/UpdateRuleGroupCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateSubnetChangeProtectionCommandInput,
|
|
128
|
+
UpdateSubnetChangeProtectionCommandOutput,
|
|
129
|
+
} from "../commands/UpdateSubnetChangeProtectionCommand";
|
|
130
|
+
export declare const serializeAws_json1_0AssociateFirewallPolicyCommand: (
|
|
131
|
+
input: AssociateFirewallPolicyCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_0AssociateSubnetsCommand: (
|
|
135
|
+
input: AssociateSubnetsCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_0CreateFirewallCommand: (
|
|
139
|
+
input: CreateFirewallCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0CreateFirewallPolicyCommand: (
|
|
143
|
+
input: CreateFirewallPolicyCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_0CreateRuleGroupCommand: (
|
|
147
|
+
input: CreateRuleGroupCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_0DeleteFirewallCommand: (
|
|
151
|
+
input: DeleteFirewallCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_0DeleteFirewallPolicyCommand: (
|
|
155
|
+
input: DeleteFirewallPolicyCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_0DeleteResourcePolicyCommand: (
|
|
159
|
+
input: DeleteResourcePolicyCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_0DeleteRuleGroupCommand: (
|
|
163
|
+
input: DeleteRuleGroupCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_0DescribeFirewallCommand: (
|
|
167
|
+
input: DescribeFirewallCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_0DescribeFirewallPolicyCommand: (
|
|
171
|
+
input: DescribeFirewallPolicyCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_0DescribeLoggingConfigurationCommand: (
|
|
175
|
+
input: DescribeLoggingConfigurationCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_0DescribeResourcePolicyCommand: (
|
|
179
|
+
input: DescribeResourcePolicyCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_0DescribeRuleGroupCommand: (
|
|
183
|
+
input: DescribeRuleGroupCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_0DescribeRuleGroupMetadataCommand: (
|
|
187
|
+
input: DescribeRuleGroupMetadataCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_0DisassociateSubnetsCommand: (
|
|
191
|
+
input: DisassociateSubnetsCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_0ListFirewallPoliciesCommand: (
|
|
195
|
+
input: ListFirewallPoliciesCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_0ListFirewallsCommand: (
|
|
199
|
+
input: ListFirewallsCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_0ListRuleGroupsCommand: (
|
|
203
|
+
input: ListRuleGroupsCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_json1_0ListTagsForResourceCommand: (
|
|
207
|
+
input: ListTagsForResourceCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_json1_0PutResourcePolicyCommand: (
|
|
211
|
+
input: PutResourcePolicyCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_json1_0TagResourceCommand: (
|
|
215
|
+
input: TagResourceCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_0UntagResourceCommand: (
|
|
219
|
+
input: UntagResourceCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_json1_0UpdateFirewallDeleteProtectionCommand: (
|
|
223
|
+
input: UpdateFirewallDeleteProtectionCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_json1_0UpdateFirewallDescriptionCommand: (
|
|
227
|
+
input: UpdateFirewallDescriptionCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_json1_0UpdateFirewallEncryptionConfigurationCommand: (
|
|
231
|
+
input: UpdateFirewallEncryptionConfigurationCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_json1_0UpdateFirewallPolicyCommand: (
|
|
235
|
+
input: UpdateFirewallPolicyCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_json1_0UpdateFirewallPolicyChangeProtectionCommand: (
|
|
239
|
+
input: UpdateFirewallPolicyChangeProtectionCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const serializeAws_json1_0UpdateLoggingConfigurationCommand: (
|
|
243
|
+
input: UpdateLoggingConfigurationCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const serializeAws_json1_0UpdateRuleGroupCommand: (
|
|
247
|
+
input: UpdateRuleGroupCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const serializeAws_json1_0UpdateSubnetChangeProtectionCommand: (
|
|
251
|
+
input: UpdateSubnetChangeProtectionCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const deserializeAws_json1_0AssociateFirewallPolicyCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<AssociateFirewallPolicyCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_0AssociateSubnetsCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<AssociateSubnetsCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_0CreateFirewallCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateFirewallCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_0CreateFirewallPolicyCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<CreateFirewallPolicyCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_0CreateRuleGroupCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<CreateRuleGroupCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_0DeleteFirewallCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeleteFirewallCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_0DeleteFirewallPolicyCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteFirewallPolicyCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_0DeleteResourcePolicyCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeleteResourcePolicyCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_0DeleteRuleGroupCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DeleteRuleGroupCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_0DescribeFirewallCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DescribeFirewallCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_0DescribeFirewallPolicyCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DescribeFirewallPolicyCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_0DescribeLoggingConfigurationCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DescribeLoggingConfigurationCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_0DescribeResourcePolicyCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<DescribeResourcePolicyCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_json1_0DescribeRuleGroupCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<DescribeRuleGroupCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_0DescribeRuleGroupMetadataCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_json1_0DisassociateSubnetsCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<DisassociateSubnetsCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_0ListFirewallPoliciesCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<ListFirewallPoliciesCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_0ListFirewallsCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<ListFirewallsCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_json1_0ListRuleGroupsCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<ListRuleGroupsCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_json1_0PutResourcePolicyCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<PutResourcePolicyCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_json1_0TagResourceCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<TagResourceCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_json1_0UntagResourceCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_json1_0UpdateFirewallDeleteProtectionCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<UpdateFirewallDeleteProtectionCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_json1_0UpdateFirewallDescriptionCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<UpdateFirewallDescriptionCommandOutput>;
|
|
354
|
+
export declare const deserializeAws_json1_0UpdateFirewallEncryptionConfigurationCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<UpdateFirewallEncryptionConfigurationCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_json1_0UpdateFirewallPolicyCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<UpdateFirewallPolicyCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_json1_0UpdateFirewallPolicyChangeProtectionCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<UpdateFirewallPolicyChangeProtectionCommandOutput>;
|
|
366
|
+
export declare const deserializeAws_json1_0UpdateLoggingConfigurationCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<UpdateLoggingConfigurationCommandOutput>;
|
|
370
|
+
export declare const deserializeAws_json1_0UpdateRuleGroupCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<UpdateRuleGroupCommandOutput>;
|
|
374
|
+
export declare const deserializeAws_json1_0UpdateSubnetChangeProtectionCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<UpdateSubnetChangeProtectionCommandOutput>;
|