@aws-sdk/client-synthetics 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Synthetics.d.ts +382 -110
- package/dist-types/ts3.4/SyntheticsClient.d.ts +255 -94
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SyntheticsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +804 -732
- package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { StartCanaryRequest, StartCanaryResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SyntheticsClientResolvedConfig,
|
|
13
|
+
} from "../SyntheticsClient";
|
|
14
|
+
export interface StartCanaryCommandInput extends StartCanaryRequest {}
|
|
15
|
+
export interface StartCanaryCommandOutput
|
|
16
|
+
extends StartCanaryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StartCanaryCommand extends $Command<
|
|
20
|
+
StartCanaryCommandInput,
|
|
21
|
+
StartCanaryCommandOutput,
|
|
22
|
+
SyntheticsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartCanaryCommandInput;
|
|
25
|
+
constructor(input: StartCanaryCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SyntheticsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartCanaryCommandInput, StartCanaryCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { StopCanaryRequest, StopCanaryResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SyntheticsClientResolvedConfig,
|
|
13
|
+
} from "../SyntheticsClient";
|
|
14
|
+
export interface StopCanaryCommandInput extends StopCanaryRequest {}
|
|
15
|
+
export interface StopCanaryCommandOutput
|
|
16
|
+
extends StopCanaryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StopCanaryCommand extends $Command<
|
|
20
|
+
StopCanaryCommandInput,
|
|
21
|
+
StopCanaryCommandOutput,
|
|
22
|
+
SyntheticsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StopCanaryCommandInput;
|
|
25
|
+
constructor(input: StopCanaryCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SyntheticsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StopCanaryCommandInput, StopCanaryCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SyntheticsClientResolvedConfig,
|
|
13
|
+
} from "../SyntheticsClient";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
SyntheticsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SyntheticsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UntagResourceRequest,
|
|
10
|
+
UntagResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SyntheticsClientResolvedConfig,
|
|
16
|
+
} from "../SyntheticsClient";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
SyntheticsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SyntheticsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateCanaryRequest, UpdateCanaryResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SyntheticsClientResolvedConfig,
|
|
13
|
+
} from "../SyntheticsClient";
|
|
14
|
+
export interface UpdateCanaryCommandInput extends UpdateCanaryRequest {}
|
|
15
|
+
export interface UpdateCanaryCommandOutput
|
|
16
|
+
extends UpdateCanaryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateCanaryCommand extends $Command<
|
|
20
|
+
UpdateCanaryCommandInput,
|
|
21
|
+
UpdateCanaryCommandOutput,
|
|
22
|
+
SyntheticsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateCanaryCommandInput;
|
|
25
|
+
constructor(input: UpdateCanaryCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SyntheticsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateCanaryCommandInput, UpdateCanaryCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export * from "./AssociateResourceCommand";
|
|
2
|
-
export * from "./CreateCanaryCommand";
|
|
3
|
-
export * from "./CreateGroupCommand";
|
|
4
|
-
export * from "./DeleteCanaryCommand";
|
|
5
|
-
export * from "./DeleteGroupCommand";
|
|
6
|
-
export * from "./DescribeCanariesCommand";
|
|
7
|
-
export * from "./DescribeCanariesLastRunCommand";
|
|
8
|
-
export * from "./DescribeRuntimeVersionsCommand";
|
|
9
|
-
export * from "./DisassociateResourceCommand";
|
|
10
|
-
export * from "./GetCanaryCommand";
|
|
11
|
-
export * from "./GetCanaryRunsCommand";
|
|
12
|
-
export * from "./GetGroupCommand";
|
|
13
|
-
export * from "./ListAssociatedGroupsCommand";
|
|
14
|
-
export * from "./ListGroupResourcesCommand";
|
|
15
|
-
export * from "./ListGroupsCommand";
|
|
16
|
-
export * from "./ListTagsForResourceCommand";
|
|
17
|
-
export * from "./StartCanaryCommand";
|
|
18
|
-
export * from "./StopCanaryCommand";
|
|
19
|
-
export * from "./TagResourceCommand";
|
|
20
|
-
export * from "./UntagResourceCommand";
|
|
21
|
-
export * from "./UpdateCanaryCommand";
|
|
1
|
+
export * from "./AssociateResourceCommand";
|
|
2
|
+
export * from "./CreateCanaryCommand";
|
|
3
|
+
export * from "./CreateGroupCommand";
|
|
4
|
+
export * from "./DeleteCanaryCommand";
|
|
5
|
+
export * from "./DeleteGroupCommand";
|
|
6
|
+
export * from "./DescribeCanariesCommand";
|
|
7
|
+
export * from "./DescribeCanariesLastRunCommand";
|
|
8
|
+
export * from "./DescribeRuntimeVersionsCommand";
|
|
9
|
+
export * from "./DisassociateResourceCommand";
|
|
10
|
+
export * from "./GetCanaryCommand";
|
|
11
|
+
export * from "./GetCanaryRunsCommand";
|
|
12
|
+
export * from "./GetGroupCommand";
|
|
13
|
+
export * from "./ListAssociatedGroupsCommand";
|
|
14
|
+
export * from "./ListGroupResourcesCommand";
|
|
15
|
+
export * from "./ListGroupsCommand";
|
|
16
|
+
export * from "./ListTagsForResourceCommand";
|
|
17
|
+
export * from "./StartCanaryCommand";
|
|
18
|
+
export * from "./StopCanaryCommand";
|
|
19
|
+
export * from "./TagResourceCommand";
|
|
20
|
+
export * from "./UntagResourceCommand";
|
|
21
|
+
export * from "./UpdateCanaryCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Synthetics";
|
|
2
|
-
export * from "./SyntheticsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { SyntheticsServiceException } from "./models/SyntheticsServiceException";
|
|
1
|
+
export * from "./Synthetics";
|
|
2
|
+
export * from "./SyntheticsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { SyntheticsServiceException } from "./models/SyntheticsServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class SyntheticsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|