@aws-sdk/client-synthetics 3.118.0 → 3.124.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 +30 -0
- package/README.md +7 -7
- package/dist-cjs/Synthetics.js +120 -0
- package/dist-cjs/commands/AssociateResourceCommand.js +36 -0
- package/dist-cjs/commands/CreateGroupCommand.js +36 -0
- package/dist-cjs/commands/DeleteGroupCommand.js +36 -0
- package/dist-cjs/commands/DisassociateResourceCommand.js +36 -0
- package/dist-cjs/commands/GetGroupCommand.js +36 -0
- package/dist-cjs/commands/ListAssociatedGroupsCommand.js +36 -0
- package/dist-cjs/commands/ListGroupResourcesCommand.js +36 -0
- package/dist-cjs/commands/ListGroupsCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +236 -58
- package/dist-cjs/pagination/ListAssociatedGroupsPaginator.js +36 -0
- package/dist-cjs/pagination/ListGroupResourcesPaginator.js +36 -0
- package/dist-cjs/pagination/ListGroupsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +866 -139
- package/dist-es/Synthetics.js +120 -0
- package/dist-es/commands/AssociateResourceCommand.js +39 -0
- package/dist-es/commands/CreateGroupCommand.js +39 -0
- package/dist-es/commands/DeleteGroupCommand.js +39 -0
- package/dist-es/commands/DisassociateResourceCommand.js +39 -0
- package/dist-es/commands/GetGroupCommand.js +39 -0
- package/dist-es/commands/ListAssociatedGroupsCommand.js +39 -0
- package/dist-es/commands/ListGroupResourcesCommand.js +39 -0
- package/dist-es/commands/ListGroupsCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +189 -52
- package/dist-es/pagination/ListAssociatedGroupsPaginator.js +75 -0
- package/dist-es/pagination/ListGroupResourcesPaginator.js +75 -0
- package/dist-es/pagination/ListGroupsPaginator.js +75 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1104 -179
- package/dist-types/Synthetics.d.ts +90 -11
- package/dist-types/SyntheticsClient.d.ts +10 -2
- package/dist-types/commands/AssociateResourceCommand.d.ts +38 -0
- package/dist-types/commands/CreateCanaryCommand.d.ts +1 -1
- package/dist-types/commands/CreateGroupCommand.d.ts +47 -0
- package/dist-types/commands/DeleteCanaryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGroupCommand.d.ts +39 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +35 -0
- package/dist-types/commands/GetGroupCommand.d.ts +36 -0
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +36 -0
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +35 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +36 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StopCanaryCommand.d.ts +1 -2
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCanaryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +450 -52
- package/dist-types/pagination/ListAssociatedGroupsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListGroupResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/Synthetics.d.ts +40 -0
- package/dist-types/ts3.4/SyntheticsClient.d.ts +10 -2
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +243 -27
- package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -33,6 +33,70 @@ export declare namespace ArtifactConfigOutput {
|
|
|
33
33
|
|
|
34
34
|
const filterSensitiveLog: (obj: ArtifactConfigOutput) => any;
|
|
35
35
|
}
|
|
36
|
+
export interface AssociateResourceRequest {
|
|
37
|
+
|
|
38
|
+
GroupIdentifier: string | undefined;
|
|
39
|
+
|
|
40
|
+
ResourceArn: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace AssociateResourceRequest {
|
|
43
|
+
|
|
44
|
+
const filterSensitiveLog: (obj: AssociateResourceRequest) => any;
|
|
45
|
+
}
|
|
46
|
+
export interface AssociateResourceResponse {
|
|
47
|
+
}
|
|
48
|
+
export declare namespace AssociateResourceResponse {
|
|
49
|
+
|
|
50
|
+
const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export declare class ConflictException extends __BaseException {
|
|
54
|
+
readonly name: "ConflictException";
|
|
55
|
+
readonly $fault: "client";
|
|
56
|
+
Message?: string;
|
|
57
|
+
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export declare class InternalServerException extends __BaseException {
|
|
62
|
+
readonly name: "InternalServerException";
|
|
63
|
+
readonly $fault: "server";
|
|
64
|
+
Message?: string;
|
|
65
|
+
|
|
66
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
70
|
+
readonly name: "ResourceNotFoundException";
|
|
71
|
+
readonly $fault: "client";
|
|
72
|
+
Message?: string;
|
|
73
|
+
|
|
74
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
78
|
+
readonly name: "ServiceQuotaExceededException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
Message?: string;
|
|
81
|
+
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare class ValidationException extends __BaseException {
|
|
86
|
+
readonly name: "ValidationException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string;
|
|
89
|
+
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare class BadRequestException extends __BaseException {
|
|
94
|
+
readonly name: "BadRequestException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
Message?: string;
|
|
97
|
+
|
|
98
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
99
|
+
}
|
|
36
100
|
|
|
37
101
|
export interface BaseScreenshot {
|
|
38
102
|
|
|
@@ -302,14 +366,6 @@ export declare namespace CanaryScheduleInput {
|
|
|
302
366
|
const filterSensitiveLog: (obj: CanaryScheduleInput) => any;
|
|
303
367
|
}
|
|
304
368
|
|
|
305
|
-
export declare class ConflictException extends __BaseException {
|
|
306
|
-
readonly name: "ConflictException";
|
|
307
|
-
readonly $fault: "client";
|
|
308
|
-
Message?: string;
|
|
309
|
-
|
|
310
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
311
|
-
}
|
|
312
|
-
|
|
313
369
|
export interface VpcConfigInput {
|
|
314
370
|
|
|
315
371
|
SubnetIds?: string[];
|
|
@@ -359,14 +415,6 @@ export declare namespace CreateCanaryResponse {
|
|
|
359
415
|
const filterSensitiveLog: (obj: CreateCanaryResponse) => any;
|
|
360
416
|
}
|
|
361
417
|
|
|
362
|
-
export declare class InternalServerException extends __BaseException {
|
|
363
|
-
readonly name: "InternalServerException";
|
|
364
|
-
readonly $fault: "server";
|
|
365
|
-
Message?: string;
|
|
366
|
-
|
|
367
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
368
|
-
}
|
|
369
|
-
|
|
370
418
|
export declare class RequestEntityTooLargeException extends __BaseException {
|
|
371
419
|
readonly name: "RequestEntityTooLargeException";
|
|
372
420
|
readonly $fault: "client";
|
|
@@ -374,13 +422,42 @@ export declare class RequestEntityTooLargeException extends __BaseException {
|
|
|
374
422
|
|
|
375
423
|
constructor(opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>);
|
|
376
424
|
}
|
|
425
|
+
export interface CreateGroupRequest {
|
|
426
|
+
|
|
427
|
+
Name: string | undefined;
|
|
428
|
+
|
|
429
|
+
Tags?: Record<string, string>;
|
|
430
|
+
}
|
|
431
|
+
export declare namespace CreateGroupRequest {
|
|
432
|
+
|
|
433
|
+
const filterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
434
|
+
}
|
|
377
435
|
|
|
378
|
-
export
|
|
379
|
-
readonly name: "ValidationException";
|
|
380
|
-
readonly $fault: "client";
|
|
381
|
-
Message?: string;
|
|
436
|
+
export interface Group {
|
|
382
437
|
|
|
383
|
-
|
|
438
|
+
Id?: string;
|
|
439
|
+
|
|
440
|
+
Name?: string;
|
|
441
|
+
|
|
442
|
+
Arn?: string;
|
|
443
|
+
|
|
444
|
+
Tags?: Record<string, string>;
|
|
445
|
+
|
|
446
|
+
CreatedTime?: Date;
|
|
447
|
+
|
|
448
|
+
LastModifiedTime?: Date;
|
|
449
|
+
}
|
|
450
|
+
export declare namespace Group {
|
|
451
|
+
|
|
452
|
+
const filterSensitiveLog: (obj: Group) => any;
|
|
453
|
+
}
|
|
454
|
+
export interface CreateGroupResponse {
|
|
455
|
+
|
|
456
|
+
Group?: Group;
|
|
457
|
+
}
|
|
458
|
+
export declare namespace CreateGroupResponse {
|
|
459
|
+
|
|
460
|
+
const filterSensitiveLog: (obj: CreateGroupResponse) => any;
|
|
384
461
|
}
|
|
385
462
|
export interface DeleteCanaryRequest {
|
|
386
463
|
|
|
@@ -398,13 +475,19 @@ export declare namespace DeleteCanaryResponse {
|
|
|
398
475
|
|
|
399
476
|
const filterSensitiveLog: (obj: DeleteCanaryResponse) => any;
|
|
400
477
|
}
|
|
401
|
-
|
|
402
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
403
|
-
readonly name: "ResourceNotFoundException";
|
|
404
|
-
readonly $fault: "client";
|
|
405
|
-
Message?: string;
|
|
478
|
+
export interface DeleteGroupRequest {
|
|
406
479
|
|
|
407
|
-
|
|
480
|
+
GroupIdentifier: string | undefined;
|
|
481
|
+
}
|
|
482
|
+
export declare namespace DeleteGroupRequest {
|
|
483
|
+
|
|
484
|
+
const filterSensitiveLog: (obj: DeleteGroupRequest) => any;
|
|
485
|
+
}
|
|
486
|
+
export interface DeleteGroupResponse {
|
|
487
|
+
}
|
|
488
|
+
export declare namespace DeleteGroupResponse {
|
|
489
|
+
|
|
490
|
+
const filterSensitiveLog: (obj: DeleteGroupResponse) => any;
|
|
408
491
|
}
|
|
409
492
|
export interface DescribeCanariesRequest {
|
|
410
493
|
|
|
@@ -485,6 +568,22 @@ export declare namespace DescribeRuntimeVersionsResponse {
|
|
|
485
568
|
|
|
486
569
|
const filterSensitiveLog: (obj: DescribeRuntimeVersionsResponse) => any;
|
|
487
570
|
}
|
|
571
|
+
export interface DisassociateResourceRequest {
|
|
572
|
+
|
|
573
|
+
GroupIdentifier: string | undefined;
|
|
574
|
+
|
|
575
|
+
ResourceArn: string | undefined;
|
|
576
|
+
}
|
|
577
|
+
export declare namespace DisassociateResourceRequest {
|
|
578
|
+
|
|
579
|
+
const filterSensitiveLog: (obj: DisassociateResourceRequest) => any;
|
|
580
|
+
}
|
|
581
|
+
export interface DisassociateResourceResponse {
|
|
582
|
+
}
|
|
583
|
+
export declare namespace DisassociateResourceResponse {
|
|
584
|
+
|
|
585
|
+
const filterSensitiveLog: (obj: DisassociateResourceResponse) => any;
|
|
586
|
+
}
|
|
488
587
|
export interface GetCanaryRequest {
|
|
489
588
|
|
|
490
589
|
Name: string | undefined;
|
|
@@ -523,6 +622,107 @@ export declare namespace GetCanaryRunsResponse {
|
|
|
523
622
|
|
|
524
623
|
const filterSensitiveLog: (obj: GetCanaryRunsResponse) => any;
|
|
525
624
|
}
|
|
625
|
+
export interface GetGroupRequest {
|
|
626
|
+
|
|
627
|
+
GroupIdentifier: string | undefined;
|
|
628
|
+
}
|
|
629
|
+
export declare namespace GetGroupRequest {
|
|
630
|
+
|
|
631
|
+
const filterSensitiveLog: (obj: GetGroupRequest) => any;
|
|
632
|
+
}
|
|
633
|
+
export interface GetGroupResponse {
|
|
634
|
+
|
|
635
|
+
Group?: Group;
|
|
636
|
+
}
|
|
637
|
+
export declare namespace GetGroupResponse {
|
|
638
|
+
|
|
639
|
+
const filterSensitiveLog: (obj: GetGroupResponse) => any;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
export interface GroupSummary {
|
|
643
|
+
|
|
644
|
+
Id?: string;
|
|
645
|
+
|
|
646
|
+
Name?: string;
|
|
647
|
+
|
|
648
|
+
Arn?: string;
|
|
649
|
+
}
|
|
650
|
+
export declare namespace GroupSummary {
|
|
651
|
+
|
|
652
|
+
const filterSensitiveLog: (obj: GroupSummary) => any;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
export declare class InternalFailureException extends __BaseException {
|
|
656
|
+
readonly name: "InternalFailureException";
|
|
657
|
+
readonly $fault: "server";
|
|
658
|
+
Message?: string;
|
|
659
|
+
|
|
660
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
661
|
+
}
|
|
662
|
+
export interface ListAssociatedGroupsRequest {
|
|
663
|
+
|
|
664
|
+
NextToken?: string;
|
|
665
|
+
|
|
666
|
+
MaxResults?: number;
|
|
667
|
+
|
|
668
|
+
ResourceArn: string | undefined;
|
|
669
|
+
}
|
|
670
|
+
export declare namespace ListAssociatedGroupsRequest {
|
|
671
|
+
|
|
672
|
+
const filterSensitiveLog: (obj: ListAssociatedGroupsRequest) => any;
|
|
673
|
+
}
|
|
674
|
+
export interface ListAssociatedGroupsResponse {
|
|
675
|
+
|
|
676
|
+
Groups?: GroupSummary[];
|
|
677
|
+
|
|
678
|
+
NextToken?: string;
|
|
679
|
+
}
|
|
680
|
+
export declare namespace ListAssociatedGroupsResponse {
|
|
681
|
+
|
|
682
|
+
const filterSensitiveLog: (obj: ListAssociatedGroupsResponse) => any;
|
|
683
|
+
}
|
|
684
|
+
export interface ListGroupResourcesRequest {
|
|
685
|
+
|
|
686
|
+
NextToken?: string;
|
|
687
|
+
|
|
688
|
+
MaxResults?: number;
|
|
689
|
+
|
|
690
|
+
GroupIdentifier: string | undefined;
|
|
691
|
+
}
|
|
692
|
+
export declare namespace ListGroupResourcesRequest {
|
|
693
|
+
|
|
694
|
+
const filterSensitiveLog: (obj: ListGroupResourcesRequest) => any;
|
|
695
|
+
}
|
|
696
|
+
export interface ListGroupResourcesResponse {
|
|
697
|
+
|
|
698
|
+
Resources?: string[];
|
|
699
|
+
|
|
700
|
+
NextToken?: string;
|
|
701
|
+
}
|
|
702
|
+
export declare namespace ListGroupResourcesResponse {
|
|
703
|
+
|
|
704
|
+
const filterSensitiveLog: (obj: ListGroupResourcesResponse) => any;
|
|
705
|
+
}
|
|
706
|
+
export interface ListGroupsRequest {
|
|
707
|
+
|
|
708
|
+
NextToken?: string;
|
|
709
|
+
|
|
710
|
+
MaxResults?: number;
|
|
711
|
+
}
|
|
712
|
+
export declare namespace ListGroupsRequest {
|
|
713
|
+
|
|
714
|
+
const filterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
715
|
+
}
|
|
716
|
+
export interface ListGroupsResponse {
|
|
717
|
+
|
|
718
|
+
Groups?: GroupSummary[];
|
|
719
|
+
|
|
720
|
+
NextToken?: string;
|
|
721
|
+
}
|
|
722
|
+
export declare namespace ListGroupsResponse {
|
|
723
|
+
|
|
724
|
+
const filterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
725
|
+
}
|
|
526
726
|
export interface ListTagsForResourceRequest {
|
|
527
727
|
|
|
528
728
|
ResourceArn: string | undefined;
|
|
@@ -539,6 +739,22 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
539
739
|
|
|
540
740
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
541
741
|
}
|
|
742
|
+
|
|
743
|
+
export declare class NotFoundException extends __BaseException {
|
|
744
|
+
readonly name: "NotFoundException";
|
|
745
|
+
readonly $fault: "client";
|
|
746
|
+
Message?: string;
|
|
747
|
+
|
|
748
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
752
|
+
readonly name: "TooManyRequestsException";
|
|
753
|
+
readonly $fault: "client";
|
|
754
|
+
Message?: string;
|
|
755
|
+
|
|
756
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
757
|
+
}
|
|
542
758
|
export interface StartCanaryRequest {
|
|
543
759
|
|
|
544
760
|
Name: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput } from "../commands/ListAssociatedGroupsCommand";
|
|
3
|
+
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAssociatedGroups(config: SyntheticsPaginationConfiguration, input: ListAssociatedGroupsCommandInput, ...additionalArguments: any): Paginator<ListAssociatedGroupsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput } from "../commands/ListGroupResourcesCommand";
|
|
3
|
+
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListGroupResources(config: SyntheticsPaginationConfiguration, input: ListGroupResourcesCommandInput, ...additionalArguments: any): Paginator<ListGroupResourcesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
3
|
+
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListGroups(config: SyntheticsPaginationConfiguration, input: ListGroupsCommandInput, ...additionalArguments: any): Paginator<ListGroupsCommandOutput>;
|
|
@@ -3,3 +3,6 @@ export * from "./DescribeCanariesPaginator";
|
|
|
3
3
|
export * from "./DescribeRuntimeVersionsPaginator";
|
|
4
4
|
export * from "./GetCanaryRunsPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListAssociatedGroupsPaginator";
|
|
7
|
+
export * from "./ListGroupResourcesPaginator";
|
|
8
|
+
export * from "./ListGroupsPaginator";
|
|
@@ -1,38 +1,62 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "../commands/AssociateResourceCommand";
|
|
3
4
|
import { CreateCanaryCommandInput, CreateCanaryCommandOutput } from "../commands/CreateCanaryCommand";
|
|
5
|
+
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
|
|
4
6
|
import { DeleteCanaryCommandInput, DeleteCanaryCommandOutput } from "../commands/DeleteCanaryCommand";
|
|
7
|
+
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
5
8
|
import { DescribeCanariesCommandInput, DescribeCanariesCommandOutput } from "../commands/DescribeCanariesCommand";
|
|
6
9
|
import { DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput } from "../commands/DescribeCanariesLastRunCommand";
|
|
7
10
|
import { DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput } from "../commands/DescribeRuntimeVersionsCommand";
|
|
11
|
+
import { DisassociateResourceCommandInput, DisassociateResourceCommandOutput } from "../commands/DisassociateResourceCommand";
|
|
8
12
|
import { GetCanaryCommandInput, GetCanaryCommandOutput } from "../commands/GetCanaryCommand";
|
|
9
13
|
import { GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput } from "../commands/GetCanaryRunsCommand";
|
|
14
|
+
import { GetGroupCommandInput, GetGroupCommandOutput } from "../commands/GetGroupCommand";
|
|
15
|
+
import { ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput } from "../commands/ListAssociatedGroupsCommand";
|
|
16
|
+
import { ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput } from "../commands/ListGroupResourcesCommand";
|
|
17
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
10
18
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
11
19
|
import { StartCanaryCommandInput, StartCanaryCommandOutput } from "../commands/StartCanaryCommand";
|
|
12
20
|
import { StopCanaryCommandInput, StopCanaryCommandOutput } from "../commands/StopCanaryCommand";
|
|
13
21
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
14
22
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
15
23
|
import { UpdateCanaryCommandInput, UpdateCanaryCommandOutput } from "../commands/UpdateCanaryCommand";
|
|
24
|
+
export declare const serializeAws_restJson1AssociateResourceCommand: (input: AssociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
25
|
export declare const serializeAws_restJson1CreateCanaryCommand: (input: CreateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
27
|
export declare const serializeAws_restJson1DeleteCanaryCommand: (input: DeleteCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
29
|
export declare const serializeAws_restJson1DescribeCanariesCommand: (input: DescribeCanariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
30
|
export declare const serializeAws_restJson1DescribeCanariesLastRunCommand: (input: DescribeCanariesLastRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
31
|
export declare const serializeAws_restJson1DescribeRuntimeVersionsCommand: (input: DescribeRuntimeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_restJson1DisassociateResourceCommand: (input: DisassociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
33
|
export declare const serializeAws_restJson1GetCanaryCommand: (input: GetCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
34
|
export declare const serializeAws_restJson1GetCanaryRunsCommand: (input: GetCanaryRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_restJson1GetGroupCommand: (input: GetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_restJson1ListAssociatedGroupsCommand: (input: ListAssociatedGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_restJson1ListGroupResourcesCommand: (input: ListGroupResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_restJson1ListGroupsCommand: (input: ListGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
39
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
40
|
export declare const serializeAws_restJson1StartCanaryCommand: (input: StartCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
41
|
export declare const serializeAws_restJson1StopCanaryCommand: (input: StopCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
42
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
43
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
44
|
export declare const serializeAws_restJson1UpdateCanaryCommand: (input: UpdateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const deserializeAws_restJson1AssociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateResourceCommandOutput>;
|
|
29
46
|
export declare const deserializeAws_restJson1CreateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCanaryCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_restJson1CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
30
48
|
export declare const deserializeAws_restJson1DeleteCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCanaryCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_restJson1DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
31
50
|
export declare const deserializeAws_restJson1DescribeCanariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesCommandOutput>;
|
|
32
51
|
export declare const deserializeAws_restJson1DescribeCanariesLastRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesLastRunCommandOutput>;
|
|
33
52
|
export declare const deserializeAws_restJson1DescribeRuntimeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_restJson1DisassociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateResourceCommandOutput>;
|
|
34
54
|
export declare const deserializeAws_restJson1GetCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryCommandOutput>;
|
|
35
55
|
export declare const deserializeAws_restJson1GetCanaryRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryRunsCommandOutput>;
|
|
56
|
+
export declare const deserializeAws_restJson1GetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupCommandOutput>;
|
|
57
|
+
export declare const deserializeAws_restJson1ListAssociatedGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedGroupsCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_restJson1ListGroupResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupResourcesCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_restJson1ListGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsCommandOutput>;
|
|
36
60
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
37
61
|
export declare const deserializeAws_restJson1StartCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCanaryCommandOutput>;
|
|
38
62
|
export declare const deserializeAws_restJson1StopCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCanaryCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-synthetics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Synthetics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.124.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.121.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.121.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.110.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.118.1",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
33
|
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.118.1",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
39
|
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
40
|
"@aws-sdk/types": "3.110.0",
|