@aws-sdk/client-synthetics 3.288.0 → 3.290.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/dist-types/commands/AssociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateCanaryCommand.d.ts +10 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +13 -0
- package/dist-types/commands/DeleteCanaryCommand.d.ts +13 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +13 -0
- package/dist-types/commands/DescribeCanariesCommand.d.ts +7 -0
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +7 -0
- package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +7 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +13 -0
- package/dist-types/commands/GetCanaryCommand.d.ts +7 -0
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +10 -0
- package/dist-types/commands/GetGroupCommand.d.ts +13 -0
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +10 -0
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +13 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartCanaryCommand.d.ts +13 -0
- package/dist-types/commands/StopCanaryCommand.d.ts +13 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCanaryCommand.d.ts +16 -0
- package/package.json +29 -29
|
@@ -32,6 +32,22 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
32
32
|
* @see {@link AssociateResourceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unknown internal error occurred.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>One of the specified resources was not found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeded a service quota value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>A parameter could not be validated.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class AssociateResourceCommand extends $Command<AssociateResourceCommandInput, AssociateResourceCommandOutput, SyntheticsClientResolvedConfig> {
|
|
37
53
|
readonly input: AssociateResourceCommandInput;
|
|
@@ -42,6 +42,16 @@ export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __Metad
|
|
|
42
42
|
* @see {@link CreateCanaryCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link InternalServerException} (server fault)
|
|
46
|
+
* <p>An unknown internal error occurred.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link RequestEntityTooLargeException} (client fault)
|
|
49
|
+
* <p>One of the input resources is larger than is allowed.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>A parameter could not be validated.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
45
55
|
*/
|
|
46
56
|
export declare class CreateCanaryCommand extends $Command<CreateCanaryCommandInput, CreateCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
47
57
|
readonly input: CreateCanaryCommandInput;
|
|
@@ -41,6 +41,19 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
41
41
|
* @see {@link CreateGroupCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link ConflictException} (client fault)
|
|
45
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p>An unknown internal error occurred.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
51
|
+
* <p>The request exceeded a service quota value.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>A parameter could not be validated.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
44
57
|
*/
|
|
45
58
|
export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, SyntheticsClientResolvedConfig> {
|
|
46
59
|
readonly input: CreateGroupCommandInput;
|
|
@@ -61,6 +61,19 @@ export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __Metad
|
|
|
61
61
|
* @see {@link DeleteCanaryCommandOutput} for command's `response` shape.
|
|
62
62
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
63
63
|
*
|
|
64
|
+
* @throws {@link ConflictException} (client fault)
|
|
65
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerException} (server fault)
|
|
68
|
+
* <p>An unknown internal error occurred.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>One of the specified resources was not found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>A parameter could not be validated.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
64
77
|
*/
|
|
65
78
|
export declare class DeleteCanaryCommand extends $Command<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
66
79
|
readonly input: DeleteCanaryCommandInput;
|
|
@@ -33,6 +33,19 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
|
|
|
33
33
|
* @see {@link DeleteGroupCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unknown internal error occurred.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>One of the specified resources was not found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>A parameter could not be validated.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
36
49
|
*/
|
|
37
50
|
export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, SyntheticsClientResolvedConfig> {
|
|
38
51
|
readonly input: DeleteGroupCommandInput;
|
|
@@ -38,6 +38,13 @@ export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse,
|
|
|
38
38
|
* @see {@link DescribeCanariesCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unknown internal error occurred.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>A parameter could not be validated.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
41
48
|
*/
|
|
42
49
|
export declare class DescribeCanariesCommand extends $Command<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig> {
|
|
43
50
|
readonly input: DescribeCanariesCommandInput;
|
|
@@ -38,6 +38,13 @@ export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLa
|
|
|
38
38
|
* @see {@link DescribeCanariesLastRunCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unknown internal error occurred.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>A parameter could not be validated.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
41
48
|
*/
|
|
42
49
|
export declare class DescribeCanariesLastRunCommand extends $Command<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig> {
|
|
43
50
|
readonly input: DescribeCanariesLastRunCommandInput;
|
|
@@ -31,6 +31,13 @@ export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVer
|
|
|
31
31
|
* @see {@link DescribeRuntimeVersionsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>An unknown internal error occurred.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ValidationException} (client fault)
|
|
38
|
+
* <p>A parameter could not be validated.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
*/
|
|
35
42
|
export declare class DescribeRuntimeVersionsCommand extends $Command<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig> {
|
|
36
43
|
readonly input: DescribeRuntimeVersionsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
29
29
|
* @see {@link DisassociateResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unknown internal error occurred.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>One of the specified resources was not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>A parameter could not be validated.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig> {
|
|
34
47
|
readonly input: DisassociateResourceCommandInput;
|
|
@@ -31,6 +31,13 @@ export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBea
|
|
|
31
31
|
* @see {@link GetCanaryCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>An unknown internal error occurred.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ValidationException} (client fault)
|
|
38
|
+
* <p>A parameter could not be validated.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
*/
|
|
35
42
|
export declare class GetCanaryCommand extends $Command<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
36
43
|
readonly input: GetCanaryCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __Met
|
|
|
29
29
|
* @see {@link GetCanaryRunsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>An unknown internal error occurred.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>One of the specified resources was not found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>A parameter could not be validated.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetCanaryRunsCommand extends $Command<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig> {
|
|
34
44
|
readonly input: GetCanaryRunsCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare
|
|
|
30
30
|
* @see {@link GetGroupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An unknown internal error occurred.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>One of the specified resources was not found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>A parameter could not be validated.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class GetGroupCommand extends $Command<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig> {
|
|
35
48
|
readonly input: GetGroupCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsR
|
|
|
30
30
|
* @see {@link ListAssociatedGroupsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>An unknown internal error occurred.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p>One of the specified resources was not found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>A parameter could not be validated.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class ListAssociatedGroupsCommand extends $Command<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig> {
|
|
35
45
|
readonly input: ListAssociatedGroupsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesRespo
|
|
|
29
29
|
* @see {@link ListGroupResourcesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unknown internal error occurred.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>One of the specified resources was not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>A parameter could not be validated.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListGroupResourcesCommand extends $Command<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig> {
|
|
34
47
|
readonly input: ListGroupResourcesCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
30
30
|
* @see {@link ListGroupsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>An unknown internal error occurred.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ValidationException} (client fault)
|
|
37
|
+
* <p>A parameter could not be validated.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig> {
|
|
35
42
|
readonly input: ListGroupsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request was not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
39
|
+
* <p>An internal failure occurred. Try the operation again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link NotFoundException} (client fault)
|
|
42
|
+
* <p>The specified resource was not found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
45
|
+
* <p>There were too many simultaneous requests. Try the operation again.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SyntheticsClientResolvedConfig> {
|
|
34
50
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface StartCanaryCommandOutput extends StartCanaryResponse, __Metadat
|
|
|
31
31
|
* @see {@link StartCanaryCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ConflictException} (client fault)
|
|
35
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>An unknown internal error occurred.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>One of the specified resources was not found.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>A parameter could not be validated.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class StartCanaryCommand extends $Command<StartCanaryCommandInput, StartCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
36
49
|
readonly input: StartCanaryCommandInput;
|
|
@@ -33,6 +33,19 @@ export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataB
|
|
|
33
33
|
* @see {@link StopCanaryCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unknown internal error occurred.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>One of the specified resources was not found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>A parameter could not be validated.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
36
49
|
*/
|
|
37
50
|
export declare class StopCanaryCommand extends $Command<StopCanaryCommandInput, StopCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
38
51
|
readonly input: StopCanaryCommandInput;
|
|
@@ -40,6 +40,22 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
40
40
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* <p>The request was not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ConflictException} (client fault)
|
|
47
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
50
|
+
* <p>An internal failure occurred. Try the operation again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>The specified resource was not found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
|
+
* <p>There were too many simultaneous requests. Try the operation again.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
43
59
|
*/
|
|
44
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SyntheticsClientResolvedConfig> {
|
|
45
61
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request was not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
39
|
+
* <p>An internal failure occurred. Try the operation again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link NotFoundException} (client fault)
|
|
42
|
+
* <p>The specified resource was not found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
45
|
+
* <p>There were too many simultaneous requests. Try the operation again.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SyntheticsClientResolvedConfig> {
|
|
34
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad
|
|
|
33
33
|
* @see {@link UpdateCanaryCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link SyntheticsClientResolvedConfig | config} for SyntheticsClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>A conflicting operation is already in progress.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unknown internal error occurred.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link RequestEntityTooLargeException} (client fault)
|
|
43
|
+
* <p>One of the input resources is larger than is allowed.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>One of the specified resources was not found.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>A parameter could not be validated.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class UpdateCanaryCommand extends $Command<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, SyntheticsClientResolvedConfig> {
|
|
38
54
|
readonly input: UpdateCanaryCommandInput;
|
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.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|