@aws-sdk/client-route53resolver 3.369.0 → 3.374.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 +40 -0
- package/dist-cjs/Route53Resolver.js +10 -0
- package/dist-cjs/commands/CreateOutpostResolverCommand.js +46 -0
- package/dist-cjs/commands/DeleteOutpostResolverCommand.js +46 -0
- package/dist-cjs/commands/GetOutpostResolverCommand.js +46 -0
- package/dist-cjs/commands/ListOutpostResolversCommand.js +46 -0
- package/dist-cjs/commands/UpdateOutpostResolverCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +25 -1
- package/dist-cjs/pagination/ListOutpostResolversPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +284 -3
- package/dist-es/Route53Resolver.js +10 -0
- package/dist-es/commands/CreateOutpostResolverCommand.js +42 -0
- package/dist-es/commands/DeleteOutpostResolverCommand.js +42 -0
- package/dist-es/commands/GetOutpostResolverCommand.js +42 -0
- package/dist-es/commands/ListOutpostResolversCommand.js +42 -0
- package/dist-es/commands/UpdateOutpostResolverCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +23 -0
- package/dist-es/pagination/ListOutpostResolversPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +272 -1
- package/dist-types/Route53Resolver.d.ts +35 -0
- package/dist-types/Route53ResolverClient.d.ts +7 -2
- package/dist-types/commands/AssociateResolverEndpointIpAddressCommand.d.ts +2 -0
- package/dist-types/commands/CreateOutpostResolverCommand.d.ts +114 -0
- package/dist-types/commands/CreateResolverEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteOutpostResolverCommand.d.ts +106 -0
- package/dist-types/commands/DeleteResolverEndpointCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateResolverEndpointIpAddressCommand.d.ts +2 -0
- package/dist-types/commands/GetOutpostResolverCommand.d.ts +102 -0
- package/dist-types/commands/GetResolverEndpointCommand.d.ts +2 -0
- package/dist-types/commands/ListOutpostResolversCommand.d.ts +106 -0
- package/dist-types/commands/ListResolverEndpointIpAddressesCommand.d.ts +1 -1
- package/dist-types/commands/ListResolverEndpointsCommand.d.ts +2 -0
- package/dist-types/commands/UpdateOutpostResolverCommand.d.ts +112 -0
- package/dist-types/commands/UpdateResolverEndpointCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +263 -9
- package/dist-types/pagination/ListOutpostResolversPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/Route53Resolver.d.ts +85 -0
- package/dist-types/ts3.4/Route53ResolverClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateOutpostResolverCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteOutpostResolverCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetOutpostResolverCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListOutpostResolversCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateOutpostResolverCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -0
- package/dist-types/ts3.4/pagination/ListOutpostResolversPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +16 -17
|
@@ -153,6 +153,8 @@ export interface ResolverEndpoint {
|
|
|
153
153
|
CreationTime?: string;
|
|
154
154
|
ModificationTime?: string;
|
|
155
155
|
ResolverEndpointType?: ResolverEndpointType | string;
|
|
156
|
+
OutpostArn?: string;
|
|
157
|
+
PreferredInstanceType?: string;
|
|
156
158
|
}
|
|
157
159
|
export interface AssociateResolverEndpointIpAddressResponse {
|
|
158
160
|
ResolverEndpoint?: ResolverEndpoint;
|
|
@@ -360,6 +362,49 @@ export interface FirewallRuleGroup {
|
|
|
360
362
|
export interface CreateFirewallRuleGroupResponse {
|
|
361
363
|
FirewallRuleGroup?: FirewallRuleGroup;
|
|
362
364
|
}
|
|
365
|
+
export interface CreateOutpostResolverRequest {
|
|
366
|
+
CreatorRequestId: string | undefined;
|
|
367
|
+
Name: string | undefined;
|
|
368
|
+
InstanceCount?: number;
|
|
369
|
+
PreferredInstanceType: string | undefined;
|
|
370
|
+
OutpostArn: string | undefined;
|
|
371
|
+
Tags?: Tag[];
|
|
372
|
+
}
|
|
373
|
+
export declare const OutpostResolverStatus: {
|
|
374
|
+
readonly ACTION_NEEDED: "ACTION_NEEDED";
|
|
375
|
+
readonly CREATING: "CREATING";
|
|
376
|
+
readonly DELETING: "DELETING";
|
|
377
|
+
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
378
|
+
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
379
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
380
|
+
readonly UPDATING: "UPDATING";
|
|
381
|
+
};
|
|
382
|
+
export type OutpostResolverStatus =
|
|
383
|
+
(typeof OutpostResolverStatus)[keyof typeof OutpostResolverStatus];
|
|
384
|
+
export interface OutpostResolver {
|
|
385
|
+
Arn?: string;
|
|
386
|
+
CreationTime?: string;
|
|
387
|
+
ModificationTime?: string;
|
|
388
|
+
CreatorRequestId?: string;
|
|
389
|
+
Id?: string;
|
|
390
|
+
InstanceCount?: number;
|
|
391
|
+
PreferredInstanceType?: string;
|
|
392
|
+
Name?: string;
|
|
393
|
+
Status?: OutpostResolverStatus | string;
|
|
394
|
+
StatusMessage?: string;
|
|
395
|
+
OutpostArn?: string;
|
|
396
|
+
}
|
|
397
|
+
export interface CreateOutpostResolverResponse {
|
|
398
|
+
OutpostResolver?: OutpostResolver;
|
|
399
|
+
}
|
|
400
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
401
|
+
readonly name: "ServiceQuotaExceededException";
|
|
402
|
+
readonly $fault: "client";
|
|
403
|
+
Message?: string;
|
|
404
|
+
constructor(
|
|
405
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
406
|
+
);
|
|
407
|
+
}
|
|
363
408
|
export interface IpAddressRequest {
|
|
364
409
|
SubnetId: string | undefined;
|
|
365
410
|
Ip?: string;
|
|
@@ -373,6 +418,8 @@ export interface CreateResolverEndpointRequest {
|
|
|
373
418
|
IpAddresses: IpAddressRequest[] | undefined;
|
|
374
419
|
Tags?: Tag[];
|
|
375
420
|
ResolverEndpointType?: ResolverEndpointType | string;
|
|
421
|
+
OutpostArn?: string;
|
|
422
|
+
PreferredInstanceType?: string;
|
|
376
423
|
}
|
|
377
424
|
export interface CreateResolverEndpointResponse {
|
|
378
425
|
ResolverEndpoint?: ResolverEndpoint;
|
|
@@ -473,6 +520,12 @@ export interface DeleteFirewallRuleGroupRequest {
|
|
|
473
520
|
export interface DeleteFirewallRuleGroupResponse {
|
|
474
521
|
FirewallRuleGroup?: FirewallRuleGroup;
|
|
475
522
|
}
|
|
523
|
+
export interface DeleteOutpostResolverRequest {
|
|
524
|
+
Id: string | undefined;
|
|
525
|
+
}
|
|
526
|
+
export interface DeleteOutpostResolverResponse {
|
|
527
|
+
OutpostResolver?: OutpostResolver;
|
|
528
|
+
}
|
|
476
529
|
export interface DeleteResolverEndpointRequest {
|
|
477
530
|
ResolverEndpointId: string | undefined;
|
|
478
531
|
}
|
|
@@ -601,6 +654,12 @@ export interface GetFirewallRuleGroupPolicyRequest {
|
|
|
601
654
|
export interface GetFirewallRuleGroupPolicyResponse {
|
|
602
655
|
FirewallRuleGroupPolicy?: string;
|
|
603
656
|
}
|
|
657
|
+
export interface GetOutpostResolverRequest {
|
|
658
|
+
Id: string | undefined;
|
|
659
|
+
}
|
|
660
|
+
export interface GetOutpostResolverResponse {
|
|
661
|
+
OutpostResolver?: OutpostResolver;
|
|
662
|
+
}
|
|
604
663
|
export interface GetResolverConfigRequest {
|
|
605
664
|
ResourceId: string | undefined;
|
|
606
665
|
}
|
|
@@ -741,6 +800,7 @@ export declare const IpAddressStatus: {
|
|
|
741
800
|
readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
|
|
742
801
|
readonly RemapAttaching: "REMAP_ATTACHING";
|
|
743
802
|
readonly RemapDetaching: "REMAP_DETACHING";
|
|
803
|
+
readonly UpdateFailed: "UPDATE_FAILED";
|
|
744
804
|
readonly Updating: "UPDATING";
|
|
745
805
|
};
|
|
746
806
|
export type IpAddressStatus =
|
|
@@ -811,6 +871,15 @@ export interface ListFirewallRulesResponse {
|
|
|
811
871
|
NextToken?: string;
|
|
812
872
|
FirewallRules?: FirewallRule[];
|
|
813
873
|
}
|
|
874
|
+
export interface ListOutpostResolversRequest {
|
|
875
|
+
OutpostArn?: string;
|
|
876
|
+
MaxResults?: number;
|
|
877
|
+
NextToken?: string;
|
|
878
|
+
}
|
|
879
|
+
export interface ListOutpostResolversResponse {
|
|
880
|
+
OutpostResolvers?: OutpostResolver[];
|
|
881
|
+
NextToken?: string;
|
|
882
|
+
}
|
|
814
883
|
export interface ListResolverConfigsRequest {
|
|
815
884
|
MaxResults?: number;
|
|
816
885
|
NextToken?: string;
|
|
@@ -985,6 +1054,15 @@ export interface UpdateFirewallRuleGroupAssociationRequest {
|
|
|
985
1054
|
export interface UpdateFirewallRuleGroupAssociationResponse {
|
|
986
1055
|
FirewallRuleGroupAssociation?: FirewallRuleGroupAssociation;
|
|
987
1056
|
}
|
|
1057
|
+
export interface UpdateOutpostResolverRequest {
|
|
1058
|
+
Id: string | undefined;
|
|
1059
|
+
Name?: string;
|
|
1060
|
+
InstanceCount?: number;
|
|
1061
|
+
PreferredInstanceType?: string;
|
|
1062
|
+
}
|
|
1063
|
+
export interface UpdateOutpostResolverResponse {
|
|
1064
|
+
OutpostResolver?: OutpostResolver;
|
|
1065
|
+
}
|
|
988
1066
|
export interface UpdateResolverConfigRequest {
|
|
989
1067
|
ResourceId: string | undefined;
|
|
990
1068
|
AutodefinedReverseFlag: AutodefinedReverseFlag | string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOutpostResolversCommandInput,
|
|
4
|
+
ListOutpostResolversCommandOutput,
|
|
5
|
+
} from "../commands/ListOutpostResolversCommand";
|
|
6
|
+
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListOutpostResolvers(
|
|
8
|
+
config: Route53ResolverPaginationConfiguration,
|
|
9
|
+
input: ListOutpostResolversCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListOutpostResolversCommandOutput>;
|
|
@@ -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 "./ListOutpostResolversPaginator";
|
|
8
9
|
export * from "./ListResolverConfigsPaginator";
|
|
9
10
|
export * from "./ListResolverDnssecConfigsPaginator";
|
|
10
11
|
export * from "./ListResolverEndpointIpAddressesPaginator";
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreateFirewallRuleGroupCommandInput,
|
|
32
32
|
CreateFirewallRuleGroupCommandOutput,
|
|
33
33
|
} from "../commands/CreateFirewallRuleGroupCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateOutpostResolverCommandInput,
|
|
36
|
+
CreateOutpostResolverCommandOutput,
|
|
37
|
+
} from "../commands/CreateOutpostResolverCommand";
|
|
34
38
|
import {
|
|
35
39
|
CreateResolverEndpointCommandInput,
|
|
36
40
|
CreateResolverEndpointCommandOutput,
|
|
@@ -55,6 +59,10 @@ import {
|
|
|
55
59
|
DeleteFirewallRuleGroupCommandInput,
|
|
56
60
|
DeleteFirewallRuleGroupCommandOutput,
|
|
57
61
|
} from "../commands/DeleteFirewallRuleGroupCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteOutpostResolverCommandInput,
|
|
64
|
+
DeleteOutpostResolverCommandOutput,
|
|
65
|
+
} from "../commands/DeleteOutpostResolverCommand";
|
|
58
66
|
import {
|
|
59
67
|
DeleteResolverEndpointCommandInput,
|
|
60
68
|
DeleteResolverEndpointCommandOutput,
|
|
@@ -103,6 +111,10 @@ import {
|
|
|
103
111
|
GetFirewallRuleGroupPolicyCommandInput,
|
|
104
112
|
GetFirewallRuleGroupPolicyCommandOutput,
|
|
105
113
|
} from "../commands/GetFirewallRuleGroupPolicyCommand";
|
|
114
|
+
import {
|
|
115
|
+
GetOutpostResolverCommandInput,
|
|
116
|
+
GetOutpostResolverCommandOutput,
|
|
117
|
+
} from "../commands/GetOutpostResolverCommand";
|
|
106
118
|
import {
|
|
107
119
|
GetResolverConfigCommandInput,
|
|
108
120
|
GetResolverConfigCommandOutput,
|
|
@@ -167,6 +179,10 @@ import {
|
|
|
167
179
|
ListFirewallRulesCommandInput,
|
|
168
180
|
ListFirewallRulesCommandOutput,
|
|
169
181
|
} from "../commands/ListFirewallRulesCommand";
|
|
182
|
+
import {
|
|
183
|
+
ListOutpostResolversCommandInput,
|
|
184
|
+
ListOutpostResolversCommandOutput,
|
|
185
|
+
} from "../commands/ListOutpostResolversCommand";
|
|
170
186
|
import {
|
|
171
187
|
ListResolverConfigsCommandInput,
|
|
172
188
|
ListResolverConfigsCommandOutput,
|
|
@@ -239,6 +255,10 @@ import {
|
|
|
239
255
|
UpdateFirewallRuleGroupAssociationCommandInput,
|
|
240
256
|
UpdateFirewallRuleGroupAssociationCommandOutput,
|
|
241
257
|
} from "../commands/UpdateFirewallRuleGroupAssociationCommand";
|
|
258
|
+
import {
|
|
259
|
+
UpdateOutpostResolverCommandInput,
|
|
260
|
+
UpdateOutpostResolverCommandOutput,
|
|
261
|
+
} from "../commands/UpdateOutpostResolverCommand";
|
|
242
262
|
import {
|
|
243
263
|
UpdateResolverConfigCommandInput,
|
|
244
264
|
UpdateResolverConfigCommandOutput,
|
|
@@ -283,6 +303,10 @@ export declare const se_CreateFirewallRuleGroupCommand: (
|
|
|
283
303
|
input: CreateFirewallRuleGroupCommandInput,
|
|
284
304
|
context: __SerdeContext
|
|
285
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_CreateOutpostResolverCommand: (
|
|
307
|
+
input: CreateOutpostResolverCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
286
310
|
export declare const se_CreateResolverEndpointCommand: (
|
|
287
311
|
input: CreateResolverEndpointCommandInput,
|
|
288
312
|
context: __SerdeContext
|
|
@@ -307,6 +331,10 @@ export declare const se_DeleteFirewallRuleGroupCommand: (
|
|
|
307
331
|
input: DeleteFirewallRuleGroupCommandInput,
|
|
308
332
|
context: __SerdeContext
|
|
309
333
|
) => Promise<__HttpRequest>;
|
|
334
|
+
export declare const se_DeleteOutpostResolverCommand: (
|
|
335
|
+
input: DeleteOutpostResolverCommandInput,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<__HttpRequest>;
|
|
310
338
|
export declare const se_DeleteResolverEndpointCommand: (
|
|
311
339
|
input: DeleteResolverEndpointCommandInput,
|
|
312
340
|
context: __SerdeContext
|
|
@@ -355,6 +383,10 @@ export declare const se_GetFirewallRuleGroupPolicyCommand: (
|
|
|
355
383
|
input: GetFirewallRuleGroupPolicyCommandInput,
|
|
356
384
|
context: __SerdeContext
|
|
357
385
|
) => Promise<__HttpRequest>;
|
|
386
|
+
export declare const se_GetOutpostResolverCommand: (
|
|
387
|
+
input: GetOutpostResolverCommandInput,
|
|
388
|
+
context: __SerdeContext
|
|
389
|
+
) => Promise<__HttpRequest>;
|
|
358
390
|
export declare const se_GetResolverConfigCommand: (
|
|
359
391
|
input: GetResolverConfigCommandInput,
|
|
360
392
|
context: __SerdeContext
|
|
@@ -419,6 +451,10 @@ export declare const se_ListFirewallRulesCommand: (
|
|
|
419
451
|
input: ListFirewallRulesCommandInput,
|
|
420
452
|
context: __SerdeContext
|
|
421
453
|
) => Promise<__HttpRequest>;
|
|
454
|
+
export declare const se_ListOutpostResolversCommand: (
|
|
455
|
+
input: ListOutpostResolversCommandInput,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<__HttpRequest>;
|
|
422
458
|
export declare const se_ListResolverConfigsCommand: (
|
|
423
459
|
input: ListResolverConfigsCommandInput,
|
|
424
460
|
context: __SerdeContext
|
|
@@ -491,6 +527,10 @@ export declare const se_UpdateFirewallRuleGroupAssociationCommand: (
|
|
|
491
527
|
input: UpdateFirewallRuleGroupAssociationCommandInput,
|
|
492
528
|
context: __SerdeContext
|
|
493
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const se_UpdateOutpostResolverCommand: (
|
|
531
|
+
input: UpdateOutpostResolverCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
494
534
|
export declare const se_UpdateResolverConfigCommand: (
|
|
495
535
|
input: UpdateResolverConfigCommandInput,
|
|
496
536
|
context: __SerdeContext
|
|
@@ -535,6 +575,10 @@ export declare const de_CreateFirewallRuleGroupCommand: (
|
|
|
535
575
|
output: __HttpResponse,
|
|
536
576
|
context: __SerdeContext
|
|
537
577
|
) => Promise<CreateFirewallRuleGroupCommandOutput>;
|
|
578
|
+
export declare const de_CreateOutpostResolverCommand: (
|
|
579
|
+
output: __HttpResponse,
|
|
580
|
+
context: __SerdeContext
|
|
581
|
+
) => Promise<CreateOutpostResolverCommandOutput>;
|
|
538
582
|
export declare const de_CreateResolverEndpointCommand: (
|
|
539
583
|
output: __HttpResponse,
|
|
540
584
|
context: __SerdeContext
|
|
@@ -559,6 +603,10 @@ export declare const de_DeleteFirewallRuleGroupCommand: (
|
|
|
559
603
|
output: __HttpResponse,
|
|
560
604
|
context: __SerdeContext
|
|
561
605
|
) => Promise<DeleteFirewallRuleGroupCommandOutput>;
|
|
606
|
+
export declare const de_DeleteOutpostResolverCommand: (
|
|
607
|
+
output: __HttpResponse,
|
|
608
|
+
context: __SerdeContext
|
|
609
|
+
) => Promise<DeleteOutpostResolverCommandOutput>;
|
|
562
610
|
export declare const de_DeleteResolverEndpointCommand: (
|
|
563
611
|
output: __HttpResponse,
|
|
564
612
|
context: __SerdeContext
|
|
@@ -607,6 +655,10 @@ export declare const de_GetFirewallRuleGroupPolicyCommand: (
|
|
|
607
655
|
output: __HttpResponse,
|
|
608
656
|
context: __SerdeContext
|
|
609
657
|
) => Promise<GetFirewallRuleGroupPolicyCommandOutput>;
|
|
658
|
+
export declare const de_GetOutpostResolverCommand: (
|
|
659
|
+
output: __HttpResponse,
|
|
660
|
+
context: __SerdeContext
|
|
661
|
+
) => Promise<GetOutpostResolverCommandOutput>;
|
|
610
662
|
export declare const de_GetResolverConfigCommand: (
|
|
611
663
|
output: __HttpResponse,
|
|
612
664
|
context: __SerdeContext
|
|
@@ -671,6 +723,10 @@ export declare const de_ListFirewallRulesCommand: (
|
|
|
671
723
|
output: __HttpResponse,
|
|
672
724
|
context: __SerdeContext
|
|
673
725
|
) => Promise<ListFirewallRulesCommandOutput>;
|
|
726
|
+
export declare const de_ListOutpostResolversCommand: (
|
|
727
|
+
output: __HttpResponse,
|
|
728
|
+
context: __SerdeContext
|
|
729
|
+
) => Promise<ListOutpostResolversCommandOutput>;
|
|
674
730
|
export declare const de_ListResolverConfigsCommand: (
|
|
675
731
|
output: __HttpResponse,
|
|
676
732
|
context: __SerdeContext
|
|
@@ -743,6 +799,10 @@ export declare const de_UpdateFirewallRuleGroupAssociationCommand: (
|
|
|
743
799
|
output: __HttpResponse,
|
|
744
800
|
context: __SerdeContext
|
|
745
801
|
) => Promise<UpdateFirewallRuleGroupAssociationCommandOutput>;
|
|
802
|
+
export declare const de_UpdateOutpostResolverCommand: (
|
|
803
|
+
output: __HttpResponse,
|
|
804
|
+
context: __SerdeContext
|
|
805
|
+
) => Promise<UpdateOutpostResolverCommandOutput>;
|
|
746
806
|
export declare const de_UpdateResolverConfigCommand: (
|
|
747
807
|
output: __HttpResponse,
|
|
748
808
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53resolver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53resolver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.374.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.370.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
48
|
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
@@ -52,13 +52,12 @@
|
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
62
61
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
63
62
|
"@tsconfig/node14": "1.0.3",
|
|
64
63
|
"@types/node": "^14.14.31",
|