@aws-sdk/client-route53resolver 3.1055.0 → 3.1057.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/README.md +28 -0
- package/dist-cjs/index.js +72 -7
- package/dist-cjs/schemas/schemas_0.js +204 -31
- package/dist-es/Route53Resolver.js +10 -0
- package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/ListFirewallRuleTypesCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +11 -7
- package/dist-es/pagination/ListFirewallRuleTypesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +198 -26
- package/dist-types/Route53Resolver.d.ts +36 -0
- package/dist-types/Route53ResolverClient.d.ts +6 -2
- package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +189 -0
- package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +145 -0
- package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +189 -0
- package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +2 -0
- package/dist-types/commands/CreateFirewallRuleCommand.d.ts +24 -0
- package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +12 -0
- package/dist-types/commands/GetFirewallDomainListCommand.d.ts +2 -0
- package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +2 -0
- package/dist-types/commands/ListFirewallRuleTypesCommand.d.ts +101 -0
- package/dist-types/commands/ListFirewallRulesCommand.d.ts +12 -0
- package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +24 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +27 -15
- package/dist-types/models/models_0.d.ts +923 -204
- package/dist-types/pagination/ListFirewallRuleTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/Route53Resolver.d.ts +76 -0
- package/dist-types/ts3.4/Route53ResolverClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListFirewallRuleTypesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +15 -9
- package/dist-types/ts3.4/models/models_0.d.ts +137 -19
- package/dist-types/ts3.4/pagination/ListFirewallRuleTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/package.json +6 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListFirewallRuleTypesCommandInput, ListFirewallRuleTypesCommandOutput } from "../commands/ListFirewallRuleTypesCommand";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListFirewallRuleTypes: (config: Route53ResolverPaginationConfiguration, input: ListFirewallRuleTypesCommandInput, ...rest: any[]) => Paginator<ListFirewallRuleTypesCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./ListFirewallDomainsPaginator";
|
|
|
5
5
|
export * from "./ListFirewallRuleGroupAssociationsPaginator";
|
|
6
6
|
export * from "./ListFirewallRuleGroupsPaginator";
|
|
7
7
|
export * from "./ListFirewallRulesPaginator";
|
|
8
|
+
export * from "./ListFirewallRuleTypesPaginator";
|
|
8
9
|
export * from "./ListOutpostResolversPaginator";
|
|
9
10
|
export * from "./ListResolverConfigsPaginator";
|
|
10
11
|
export * from "./ListResolverDnssecConfigsPaginator";
|
|
@@ -32,8 +32,18 @@ export declare var AssociateResolverQueryLogConfigRequest$: StaticStructureSchem
|
|
|
32
32
|
export declare var AssociateResolverQueryLogConfigResponse$: StaticStructureSchema;
|
|
33
33
|
export declare var AssociateResolverRuleRequest$: StaticStructureSchema;
|
|
34
34
|
export declare var AssociateResolverRuleResponse$: StaticStructureSchema;
|
|
35
|
+
export declare var BatchCreateFirewallRuleError$: StaticStructureSchema;
|
|
36
|
+
export declare var BatchCreateFirewallRuleRequest$: StaticStructureSchema;
|
|
37
|
+
export declare var BatchCreateFirewallRuleResponse$: StaticStructureSchema;
|
|
38
|
+
export declare var BatchDeleteFirewallRuleError$: StaticStructureSchema;
|
|
39
|
+
export declare var BatchDeleteFirewallRuleRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var BatchDeleteFirewallRuleResponse$: StaticStructureSchema;
|
|
41
|
+
export declare var BatchUpdateFirewallRuleError$: StaticStructureSchema;
|
|
42
|
+
export declare var BatchUpdateFirewallRuleRequest$: StaticStructureSchema;
|
|
43
|
+
export declare var BatchUpdateFirewallRuleResponse$: StaticStructureSchema;
|
|
35
44
|
export declare var CreateFirewallDomainListRequest$: StaticStructureSchema;
|
|
36
45
|
export declare var CreateFirewallDomainListResponse$: StaticStructureSchema;
|
|
46
|
+
export declare var CreateFirewallRuleEntry$: StaticStructureSchema;
|
|
37
47
|
export declare var CreateFirewallRuleGroupRequest$: StaticStructureSchema;
|
|
38
48
|
export declare var CreateFirewallRuleGroupResponse$: StaticStructureSchema;
|
|
39
49
|
export declare var CreateFirewallRuleRequest$: StaticStructureSchema;
|
|
@@ -48,6 +58,7 @@ export declare var CreateResolverRuleRequest$: StaticStructureSchema;
|
|
|
48
58
|
export declare var CreateResolverRuleResponse$: StaticStructureSchema;
|
|
49
59
|
export declare var DeleteFirewallDomainListRequest$: StaticStructureSchema;
|
|
50
60
|
export declare var DeleteFirewallDomainListResponse$: StaticStructureSchema;
|
|
61
|
+
export declare var DeleteFirewallRuleEntry$: StaticStructureSchema;
|
|
51
62
|
export declare var DeleteFirewallRuleGroupRequest$: StaticStructureSchema;
|
|
52
63
|
export declare var DeleteFirewallRuleGroupResponse$: StaticStructureSchema;
|
|
53
64
|
export declare var DeleteFirewallRuleRequest$: StaticStructureSchema;
|
|
@@ -68,7 +79,10 @@ export declare var DisassociateResolverQueryLogConfigRequest$: StaticStructureSc
|
|
|
68
79
|
export declare var DisassociateResolverQueryLogConfigResponse$: StaticStructureSchema;
|
|
69
80
|
export declare var DisassociateResolverRuleRequest$: StaticStructureSchema;
|
|
70
81
|
export declare var DisassociateResolverRuleResponse$: StaticStructureSchema;
|
|
82
|
+
export declare var DnsThreatProtectionRuleTypeConfig$: StaticStructureSchema;
|
|
71
83
|
export declare var Filter$: StaticStructureSchema;
|
|
84
|
+
export declare var FirewallAdvancedContentCategoryConfig$: StaticStructureSchema;
|
|
85
|
+
export declare var FirewallAdvancedThreatCategoryConfig$: StaticStructureSchema;
|
|
72
86
|
export declare var FirewallConfig$: StaticStructureSchema;
|
|
73
87
|
export declare var FirewallDomainList$: StaticStructureSchema;
|
|
74
88
|
export declare var FirewallDomainListMetadata$: StaticStructureSchema;
|
|
@@ -76,6 +90,8 @@ export declare var FirewallRule$: StaticStructureSchema;
|
|
|
76
90
|
export declare var FirewallRuleGroup$: StaticStructureSchema;
|
|
77
91
|
export declare var FirewallRuleGroupAssociation$: StaticStructureSchema;
|
|
78
92
|
export declare var FirewallRuleGroupMetadata$: StaticStructureSchema;
|
|
93
|
+
export declare var FirewallRuleType$: StaticStructureSchema;
|
|
94
|
+
export declare var FirewallRuleTypeDefinition$: StaticStructureSchema;
|
|
79
95
|
export declare var GetFirewallConfigRequest$: StaticStructureSchema;
|
|
80
96
|
export declare var GetFirewallConfigResponse$: StaticStructureSchema;
|
|
81
97
|
export declare var GetFirewallDomainListRequest$: StaticStructureSchema;
|
|
@@ -123,6 +139,8 @@ export declare var ListFirewallRuleGroupsRequest$: StaticStructureSchema;
|
|
|
123
139
|
export declare var ListFirewallRuleGroupsResponse$: StaticStructureSchema;
|
|
124
140
|
export declare var ListFirewallRulesRequest$: StaticStructureSchema;
|
|
125
141
|
export declare var ListFirewallRulesResponse$: StaticStructureSchema;
|
|
142
|
+
export declare var ListFirewallRuleTypesRequest$: StaticStructureSchema;
|
|
143
|
+
export declare var ListFirewallRuleTypesResponse$: StaticStructureSchema;
|
|
126
144
|
export declare var ListOutpostResolversRequest$: StaticStructureSchema;
|
|
127
145
|
export declare var ListOutpostResolversResponse$: StaticStructureSchema;
|
|
128
146
|
export declare var ListResolverConfigsRequest$: StaticStructureSchema;
|
|
@@ -168,6 +186,7 @@ export declare var UpdateFirewallConfigRequest$: StaticStructureSchema;
|
|
|
168
186
|
export declare var UpdateFirewallConfigResponse$: StaticStructureSchema;
|
|
169
187
|
export declare var UpdateFirewallDomainsRequest$: StaticStructureSchema;
|
|
170
188
|
export declare var UpdateFirewallDomainsResponse$: StaticStructureSchema;
|
|
189
|
+
export declare var UpdateFirewallRuleEntry$: StaticStructureSchema;
|
|
171
190
|
export declare var UpdateFirewallRuleGroupAssociationRequest$: StaticStructureSchema;
|
|
172
191
|
export declare var UpdateFirewallRuleGroupAssociationResponse$: StaticStructureSchema;
|
|
173
192
|
export declare var UpdateFirewallRuleRequest$: StaticStructureSchema;
|
|
@@ -187,6 +206,9 @@ export declare var AssociateFirewallRuleGroup$: StaticOperationSchema;
|
|
|
187
206
|
export declare var AssociateResolverEndpointIpAddress$: StaticOperationSchema;
|
|
188
207
|
export declare var AssociateResolverQueryLogConfig$: StaticOperationSchema;
|
|
189
208
|
export declare var AssociateResolverRule$: StaticOperationSchema;
|
|
209
|
+
export declare var BatchCreateFirewallRule$: StaticOperationSchema;
|
|
210
|
+
export declare var BatchDeleteFirewallRule$: StaticOperationSchema;
|
|
211
|
+
export declare var BatchUpdateFirewallRule$: StaticOperationSchema;
|
|
190
212
|
export declare var CreateFirewallDomainList$: StaticOperationSchema;
|
|
191
213
|
export declare var CreateFirewallRule$: StaticOperationSchema;
|
|
192
214
|
export declare var CreateFirewallRuleGroup$: StaticOperationSchema;
|
|
@@ -227,6 +249,7 @@ export declare var ListFirewallDomains$: StaticOperationSchema;
|
|
|
227
249
|
export declare var ListFirewallRuleGroupAssociations$: StaticOperationSchema;
|
|
228
250
|
export declare var ListFirewallRuleGroups$: StaticOperationSchema;
|
|
229
251
|
export declare var ListFirewallRules$: StaticOperationSchema;
|
|
252
|
+
export declare var ListFirewallRuleTypes$: StaticOperationSchema;
|
|
230
253
|
export declare var ListOutpostResolvers$: StaticOperationSchema;
|
|
231
254
|
export declare var ListResolverConfigs$: StaticOperationSchema;
|
|
232
255
|
export declare var ListResolverDnssecConfigs$: StaticOperationSchema;
|
|
@@ -19,6 +19,18 @@ import {
|
|
|
19
19
|
AssociateResolverRuleCommandInput,
|
|
20
20
|
AssociateResolverRuleCommandOutput,
|
|
21
21
|
} from "./commands/AssociateResolverRuleCommand";
|
|
22
|
+
import {
|
|
23
|
+
BatchCreateFirewallRuleCommandInput,
|
|
24
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
25
|
+
} from "./commands/BatchCreateFirewallRuleCommand";
|
|
26
|
+
import {
|
|
27
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
28
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
29
|
+
} from "./commands/BatchDeleteFirewallRuleCommand";
|
|
30
|
+
import {
|
|
31
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
32
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
33
|
+
} from "./commands/BatchUpdateFirewallRuleCommand";
|
|
22
34
|
import {
|
|
23
35
|
CreateFirewallDomainListCommandInput,
|
|
24
36
|
CreateFirewallDomainListCommandOutput,
|
|
@@ -179,6 +191,10 @@ import {
|
|
|
179
191
|
ListFirewallRulesCommandInput,
|
|
180
192
|
ListFirewallRulesCommandOutput,
|
|
181
193
|
} from "./commands/ListFirewallRulesCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListFirewallRuleTypesCommandInput,
|
|
196
|
+
ListFirewallRuleTypesCommandOutput,
|
|
197
|
+
} from "./commands/ListFirewallRuleTypesCommand";
|
|
182
198
|
import {
|
|
183
199
|
ListOutpostResolversCommandInput,
|
|
184
200
|
ListOutpostResolversCommandOutput,
|
|
@@ -335,6 +351,45 @@ export interface Route53Resolver {
|
|
|
335
351
|
options: __HttpHandlerOptions,
|
|
336
352
|
cb: (err: any, data?: AssociateResolverRuleCommandOutput) => void
|
|
337
353
|
): void;
|
|
354
|
+
batchCreateFirewallRule(
|
|
355
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
356
|
+
options?: __HttpHandlerOptions
|
|
357
|
+
): Promise<BatchCreateFirewallRuleCommandOutput>;
|
|
358
|
+
batchCreateFirewallRule(
|
|
359
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
360
|
+
cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
batchCreateFirewallRule(
|
|
363
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
364
|
+
options: __HttpHandlerOptions,
|
|
365
|
+
cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void
|
|
366
|
+
): void;
|
|
367
|
+
batchDeleteFirewallRule(
|
|
368
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
369
|
+
options?: __HttpHandlerOptions
|
|
370
|
+
): Promise<BatchDeleteFirewallRuleCommandOutput>;
|
|
371
|
+
batchDeleteFirewallRule(
|
|
372
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
373
|
+
cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void
|
|
374
|
+
): void;
|
|
375
|
+
batchDeleteFirewallRule(
|
|
376
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
377
|
+
options: __HttpHandlerOptions,
|
|
378
|
+
cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void
|
|
379
|
+
): void;
|
|
380
|
+
batchUpdateFirewallRule(
|
|
381
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
382
|
+
options?: __HttpHandlerOptions
|
|
383
|
+
): Promise<BatchUpdateFirewallRuleCommandOutput>;
|
|
384
|
+
batchUpdateFirewallRule(
|
|
385
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
386
|
+
cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void
|
|
387
|
+
): void;
|
|
388
|
+
batchUpdateFirewallRule(
|
|
389
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
390
|
+
options: __HttpHandlerOptions,
|
|
391
|
+
cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void
|
|
392
|
+
): void;
|
|
338
393
|
createFirewallDomainList(
|
|
339
394
|
args: CreateFirewallDomainListCommandInput,
|
|
340
395
|
options?: __HttpHandlerOptions
|
|
@@ -883,6 +938,20 @@ export interface Route53Resolver {
|
|
|
883
938
|
options: __HttpHandlerOptions,
|
|
884
939
|
cb: (err: any, data?: ListFirewallRulesCommandOutput) => void
|
|
885
940
|
): void;
|
|
941
|
+
listFirewallRuleTypes(): Promise<ListFirewallRuleTypesCommandOutput>;
|
|
942
|
+
listFirewallRuleTypes(
|
|
943
|
+
args: ListFirewallRuleTypesCommandInput,
|
|
944
|
+
options?: __HttpHandlerOptions
|
|
945
|
+
): Promise<ListFirewallRuleTypesCommandOutput>;
|
|
946
|
+
listFirewallRuleTypes(
|
|
947
|
+
args: ListFirewallRuleTypesCommandInput,
|
|
948
|
+
cb: (err: any, data?: ListFirewallRuleTypesCommandOutput) => void
|
|
949
|
+
): void;
|
|
950
|
+
listFirewallRuleTypes(
|
|
951
|
+
args: ListFirewallRuleTypesCommandInput,
|
|
952
|
+
options: __HttpHandlerOptions,
|
|
953
|
+
cb: (err: any, data?: ListFirewallRuleTypesCommandOutput) => void
|
|
954
|
+
): void;
|
|
886
955
|
listOutpostResolvers(): Promise<ListOutpostResolversCommandOutput>;
|
|
887
956
|
listOutpostResolvers(
|
|
888
957
|
args: ListOutpostResolversCommandInput,
|
|
@@ -1257,6 +1326,13 @@ export interface Route53Resolver {
|
|
|
1257
1326
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1258
1327
|
>
|
|
1259
1328
|
): Paginator<ListFirewallRulesCommandOutput>;
|
|
1329
|
+
paginateListFirewallRuleTypes(
|
|
1330
|
+
args?: ListFirewallRuleTypesCommandInput,
|
|
1331
|
+
paginationConfig?: Pick<
|
|
1332
|
+
PaginationConfiguration,
|
|
1333
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1334
|
+
>
|
|
1335
|
+
): Paginator<ListFirewallRuleTypesCommandOutput>;
|
|
1260
1336
|
paginateListOutpostResolvers(
|
|
1261
1337
|
args?: ListOutpostResolversCommandInput,
|
|
1262
1338
|
paginationConfig?: Pick<
|
|
@@ -52,6 +52,18 @@ import {
|
|
|
52
52
|
AssociateResolverRuleCommandInput,
|
|
53
53
|
AssociateResolverRuleCommandOutput,
|
|
54
54
|
} from "./commands/AssociateResolverRuleCommand";
|
|
55
|
+
import {
|
|
56
|
+
BatchCreateFirewallRuleCommandInput,
|
|
57
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
58
|
+
} from "./commands/BatchCreateFirewallRuleCommand";
|
|
59
|
+
import {
|
|
60
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
61
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
62
|
+
} from "./commands/BatchDeleteFirewallRuleCommand";
|
|
63
|
+
import {
|
|
64
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
65
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
66
|
+
} from "./commands/BatchUpdateFirewallRuleCommand";
|
|
55
67
|
import {
|
|
56
68
|
CreateFirewallDomainListCommandInput,
|
|
57
69
|
CreateFirewallDomainListCommandOutput,
|
|
@@ -212,6 +224,10 @@ import {
|
|
|
212
224
|
ListFirewallRulesCommandInput,
|
|
213
225
|
ListFirewallRulesCommandOutput,
|
|
214
226
|
} from "./commands/ListFirewallRulesCommand";
|
|
227
|
+
import {
|
|
228
|
+
ListFirewallRuleTypesCommandInput,
|
|
229
|
+
ListFirewallRuleTypesCommandOutput,
|
|
230
|
+
} from "./commands/ListFirewallRuleTypesCommand";
|
|
215
231
|
import {
|
|
216
232
|
ListOutpostResolversCommandInput,
|
|
217
233
|
ListOutpostResolversCommandOutput,
|
|
@@ -320,6 +336,9 @@ export type ServiceInputTypes =
|
|
|
320
336
|
| AssociateResolverEndpointIpAddressCommandInput
|
|
321
337
|
| AssociateResolverQueryLogConfigCommandInput
|
|
322
338
|
| AssociateResolverRuleCommandInput
|
|
339
|
+
| BatchCreateFirewallRuleCommandInput
|
|
340
|
+
| BatchDeleteFirewallRuleCommandInput
|
|
341
|
+
| BatchUpdateFirewallRuleCommandInput
|
|
323
342
|
| CreateFirewallDomainListCommandInput
|
|
324
343
|
| CreateFirewallRuleCommandInput
|
|
325
344
|
| CreateFirewallRuleGroupCommandInput
|
|
@@ -359,6 +378,7 @@ export type ServiceInputTypes =
|
|
|
359
378
|
| ListFirewallDomainsCommandInput
|
|
360
379
|
| ListFirewallRuleGroupAssociationsCommandInput
|
|
361
380
|
| ListFirewallRuleGroupsCommandInput
|
|
381
|
+
| ListFirewallRuleTypesCommandInput
|
|
362
382
|
| ListFirewallRulesCommandInput
|
|
363
383
|
| ListOutpostResolversCommandInput
|
|
364
384
|
| ListResolverConfigsCommandInput
|
|
@@ -389,6 +409,9 @@ export type ServiceOutputTypes =
|
|
|
389
409
|
| AssociateResolverEndpointIpAddressCommandOutput
|
|
390
410
|
| AssociateResolverQueryLogConfigCommandOutput
|
|
391
411
|
| AssociateResolverRuleCommandOutput
|
|
412
|
+
| BatchCreateFirewallRuleCommandOutput
|
|
413
|
+
| BatchDeleteFirewallRuleCommandOutput
|
|
414
|
+
| BatchUpdateFirewallRuleCommandOutput
|
|
392
415
|
| CreateFirewallDomainListCommandOutput
|
|
393
416
|
| CreateFirewallRuleCommandOutput
|
|
394
417
|
| CreateFirewallRuleGroupCommandOutput
|
|
@@ -428,6 +451,7 @@ export type ServiceOutputTypes =
|
|
|
428
451
|
| ListFirewallDomainsCommandOutput
|
|
429
452
|
| ListFirewallRuleGroupAssociationsCommandOutput
|
|
430
453
|
| ListFirewallRuleGroupsCommandOutput
|
|
454
|
+
| ListFirewallRuleTypesCommandOutput
|
|
431
455
|
| ListFirewallRulesCommandOutput
|
|
432
456
|
| ListOutpostResolversCommandOutput
|
|
433
457
|
| ListResolverConfigsCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchCreateFirewallRuleRequest,
|
|
5
|
+
BatchCreateFirewallRuleResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53ResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53ResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchCreateFirewallRuleCommandInput
|
|
15
|
+
extends BatchCreateFirewallRuleRequest {}
|
|
16
|
+
export interface BatchCreateFirewallRuleCommandOutput
|
|
17
|
+
extends BatchCreateFirewallRuleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchCreateFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchCreateFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchCreateFirewallRuleCommandInput,
|
|
24
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
25
|
+
Route53ResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchCreateFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
BatchCreateFirewallRuleCommandInput,
|
|
33
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
34
|
+
Route53ResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class BatchCreateFirewallRuleCommand extends BatchCreateFirewallRuleCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: BatchCreateFirewallRuleRequest;
|
|
46
|
+
output: BatchCreateFirewallRuleResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: BatchCreateFirewallRuleCommandInput;
|
|
50
|
+
output: BatchCreateFirewallRuleCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchDeleteFirewallRuleRequest,
|
|
5
|
+
BatchDeleteFirewallRuleResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53ResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53ResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeleteFirewallRuleCommandInput
|
|
15
|
+
extends BatchDeleteFirewallRuleRequest {}
|
|
16
|
+
export interface BatchDeleteFirewallRuleCommandOutput
|
|
17
|
+
extends BatchDeleteFirewallRuleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchDeleteFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeleteFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
24
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
25
|
+
Route53ResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchDeleteFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
33
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
34
|
+
Route53ResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class BatchDeleteFirewallRuleCommand extends BatchDeleteFirewallRuleCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: BatchDeleteFirewallRuleRequest;
|
|
46
|
+
output: BatchDeleteFirewallRuleResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: BatchDeleteFirewallRuleCommandInput;
|
|
50
|
+
output: BatchDeleteFirewallRuleCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchUpdateFirewallRuleRequest,
|
|
5
|
+
BatchUpdateFirewallRuleResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53ResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53ResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchUpdateFirewallRuleCommandInput
|
|
15
|
+
extends BatchUpdateFirewallRuleRequest {}
|
|
16
|
+
export interface BatchUpdateFirewallRuleCommandOutput
|
|
17
|
+
extends BatchUpdateFirewallRuleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchUpdateFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchUpdateFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
24
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
25
|
+
Route53ResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchUpdateFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
33
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
34
|
+
Route53ResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class BatchUpdateFirewallRuleCommand extends BatchUpdateFirewallRuleCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: BatchUpdateFirewallRuleRequest;
|
|
46
|
+
output: BatchUpdateFirewallRuleResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: BatchUpdateFirewallRuleCommandInput;
|
|
50
|
+
output: BatchUpdateFirewallRuleCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListFirewallRuleTypesRequest,
|
|
5
|
+
ListFirewallRuleTypesResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53ResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53ResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListFirewallRuleTypesCommandInput
|
|
15
|
+
extends ListFirewallRuleTypesRequest {}
|
|
16
|
+
export interface ListFirewallRuleTypesCommandOutput
|
|
17
|
+
extends ListFirewallRuleTypesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListFirewallRuleTypesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListFirewallRuleTypesCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListFirewallRuleTypesCommandInput,
|
|
24
|
+
ListFirewallRuleTypesCommandOutput,
|
|
25
|
+
Route53ResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListFirewallRuleTypesCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListFirewallRuleTypesCommandInput,
|
|
33
|
+
ListFirewallRuleTypesCommandOutput,
|
|
34
|
+
Route53ResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListFirewallRuleTypesCommand extends ListFirewallRuleTypesCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListFirewallRuleTypesRequest;
|
|
46
|
+
output: ListFirewallRuleTypesResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListFirewallRuleTypesCommandInput;
|
|
50
|
+
output: ListFirewallRuleTypesCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -2,6 +2,9 @@ export * from "./AssociateFirewallRuleGroupCommand";
|
|
|
2
2
|
export * from "./AssociateResolverEndpointIpAddressCommand";
|
|
3
3
|
export * from "./AssociateResolverQueryLogConfigCommand";
|
|
4
4
|
export * from "./AssociateResolverRuleCommand";
|
|
5
|
+
export * from "./BatchCreateFirewallRuleCommand";
|
|
6
|
+
export * from "./BatchDeleteFirewallRuleCommand";
|
|
7
|
+
export * from "./BatchUpdateFirewallRuleCommand";
|
|
5
8
|
export * from "./CreateFirewallDomainListCommand";
|
|
6
9
|
export * from "./CreateFirewallRuleCommand";
|
|
7
10
|
export * from "./CreateFirewallRuleGroupCommand";
|
|
@@ -41,6 +44,7 @@ export * from "./ListFirewallDomainListsCommand";
|
|
|
41
44
|
export * from "./ListFirewallDomainsCommand";
|
|
42
45
|
export * from "./ListFirewallRuleGroupAssociationsCommand";
|
|
43
46
|
export * from "./ListFirewallRuleGroupsCommand";
|
|
47
|
+
export * from "./ListFirewallRuleTypesCommand";
|
|
44
48
|
export * from "./ListFirewallRulesCommand";
|
|
45
49
|
export * from "./ListOutpostResolversCommand";
|
|
46
50
|
export * from "./ListResolverConfigsCommand";
|
|
@@ -98,15 +98,6 @@ export declare const ConfidenceThreshold: {
|
|
|
98
98
|
};
|
|
99
99
|
export type ConfidenceThreshold =
|
|
100
100
|
(typeof ConfidenceThreshold)[keyof typeof ConfidenceThreshold];
|
|
101
|
-
export declare const FirewallDomainListStatus: {
|
|
102
|
-
readonly COMPLETE: "COMPLETE";
|
|
103
|
-
readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
|
|
104
|
-
readonly DELETING: "DELETING";
|
|
105
|
-
readonly IMPORTING: "IMPORTING";
|
|
106
|
-
readonly UPDATING: "UPDATING";
|
|
107
|
-
};
|
|
108
|
-
export type FirewallDomainListStatus =
|
|
109
|
-
(typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
110
101
|
export declare const DnsThreatProtection: {
|
|
111
102
|
readonly DGA: "DGA";
|
|
112
103
|
readonly DICTIONARY_DGA: "DICTIONARY_DGA";
|
|
@@ -120,6 +111,21 @@ export declare const FirewallDomainRedirectionAction: {
|
|
|
120
111
|
};
|
|
121
112
|
export type FirewallDomainRedirectionAction =
|
|
122
113
|
(typeof FirewallDomainRedirectionAction)[keyof typeof FirewallDomainRedirectionAction];
|
|
114
|
+
export declare const DomainListType: {
|
|
115
|
+
readonly CONTENT: "CONTENT";
|
|
116
|
+
readonly THREAT: "THREAT";
|
|
117
|
+
};
|
|
118
|
+
export type DomainListType =
|
|
119
|
+
(typeof DomainListType)[keyof typeof DomainListType];
|
|
120
|
+
export declare const FirewallDomainListStatus: {
|
|
121
|
+
readonly COMPLETE: "COMPLETE";
|
|
122
|
+
readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
|
|
123
|
+
readonly DELETING: "DELETING";
|
|
124
|
+
readonly IMPORTING: "IMPORTING";
|
|
125
|
+
readonly UPDATING: "UPDATING";
|
|
126
|
+
};
|
|
127
|
+
export type FirewallDomainListStatus =
|
|
128
|
+
(typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
123
129
|
export declare const ShareStatus: {
|
|
124
130
|
readonly NotShared: "NOT_SHARED";
|
|
125
131
|
readonly SharedByMe: "SHARED_BY_ME";
|