@aws-sdk/client-synthetics 3.168.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Synthetics.d.ts +382 -110
  3. package/dist-types/ts3.4/SyntheticsClient.d.ts +255 -94
  4. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +6 -6
  28. package/dist-types/ts3.4/models/SyntheticsServiceException.d.ts +8 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +804 -732
  31. package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  45. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput } from "../commands/DescribeCanariesLastRunCommand";
3
- import { SyntheticsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeCanariesLastRun(config: SyntheticsPaginationConfiguration, input: DescribeCanariesLastRunCommandInput, ...additionalArguments: any): Paginator<DescribeCanariesLastRunCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeCanariesLastRunCommandInput,
4
+ DescribeCanariesLastRunCommandOutput,
5
+ } from "../commands/DescribeCanariesLastRunCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeCanariesLastRun(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: DescribeCanariesLastRunCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeCanariesLastRunCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeCanariesCommandInput, DescribeCanariesCommandOutput } from "../commands/DescribeCanariesCommand";
3
- import { SyntheticsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeCanaries(config: SyntheticsPaginationConfiguration, input: DescribeCanariesCommandInput, ...additionalArguments: any): Paginator<DescribeCanariesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeCanariesCommandInput,
4
+ DescribeCanariesCommandOutput,
5
+ } from "../commands/DescribeCanariesCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeCanaries(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: DescribeCanariesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeCanariesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput } from "../commands/DescribeRuntimeVersionsCommand";
3
- import { SyntheticsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeRuntimeVersions(config: SyntheticsPaginationConfiguration, input: DescribeRuntimeVersionsCommandInput, ...additionalArguments: any): Paginator<DescribeRuntimeVersionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeRuntimeVersionsCommandInput,
4
+ DescribeRuntimeVersionsCommandOutput,
5
+ } from "../commands/DescribeRuntimeVersionsCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeRuntimeVersions(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: DescribeRuntimeVersionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeRuntimeVersionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput } from "../commands/GetCanaryRunsCommand";
3
- import { SyntheticsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetCanaryRuns(config: SyntheticsPaginationConfiguration, input: GetCanaryRunsCommandInput, ...additionalArguments: any): Paginator<GetCanaryRunsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetCanaryRunsCommandInput,
4
+ GetCanaryRunsCommandOutput,
5
+ } from "../commands/GetCanaryRunsCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetCanaryRuns(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: GetCanaryRunsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetCanaryRunsCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Synthetics } from "../Synthetics";
3
- import { SyntheticsClient } from "../SyntheticsClient";
4
- export interface SyntheticsPaginationConfiguration extends PaginationConfiguration {
5
- client: Synthetics | SyntheticsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Synthetics } from "../Synthetics";
3
+ import { SyntheticsClient } from "../SyntheticsClient";
4
+ export interface SyntheticsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Synthetics | SyntheticsClient;
7
+ }
@@ -1,4 +1,11 @@
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>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAssociatedGroupsCommandInput,
4
+ ListAssociatedGroupsCommandOutput,
5
+ } from "../commands/ListAssociatedGroupsCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAssociatedGroups(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: ListAssociatedGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAssociatedGroupsCommandOutput>;
@@ -1,4 +1,11 @@
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>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListGroupResourcesCommandInput,
4
+ ListGroupResourcesCommandOutput,
5
+ } from "../commands/ListGroupResourcesCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListGroupResources(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: ListGroupResourcesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListGroupResourcesCommandOutput>;
@@ -1,4 +1,11 @@
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>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListGroupsCommandInput,
4
+ ListGroupsCommandOutput,
5
+ } from "../commands/ListGroupsCommand";
6
+ import { SyntheticsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListGroups(
8
+ config: SyntheticsPaginationConfiguration,
9
+ input: ListGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListGroupsCommandOutput>;
@@ -1,8 +1,8 @@
1
- export * from "./DescribeCanariesLastRunPaginator";
2
- export * from "./DescribeCanariesPaginator";
3
- export * from "./DescribeRuntimeVersionsPaginator";
4
- export * from "./GetCanaryRunsPaginator";
5
- export * from "./Interfaces";
6
- export * from "./ListAssociatedGroupsPaginator";
7
- export * from "./ListGroupResourcesPaginator";
8
- export * from "./ListGroupsPaginator";
1
+ export * from "./DescribeCanariesLastRunPaginator";
2
+ export * from "./DescribeCanariesPaginator";
3
+ export * from "./DescribeRuntimeVersionsPaginator";
4
+ export * from "./GetCanaryRunsPaginator";
5
+ export * from "./Interfaces";
6
+ export * from "./ListAssociatedGroupsPaginator";
7
+ export * from "./ListGroupResourcesPaginator";
8
+ export * from "./ListGroupsPaginator";
@@ -1,65 +1,257 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "../commands/AssociateResourceCommand";
4
- import { CreateCanaryCommandInput, CreateCanaryCommandOutput } from "../commands/CreateCanaryCommand";
5
- import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
6
- import { DeleteCanaryCommandInput, DeleteCanaryCommandOutput } from "../commands/DeleteCanaryCommand";
7
- import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
8
- import { DescribeCanariesCommandInput, DescribeCanariesCommandOutput } from "../commands/DescribeCanariesCommand";
9
- import { DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput } from "../commands/DescribeCanariesLastRunCommand";
10
- import { DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput } from "../commands/DescribeRuntimeVersionsCommand";
11
- import { DisassociateResourceCommandInput, DisassociateResourceCommandOutput } from "../commands/DisassociateResourceCommand";
12
- import { GetCanaryCommandInput, GetCanaryCommandOutput } from "../commands/GetCanaryCommand";
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";
18
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
19
- import { StartCanaryCommandInput, StartCanaryCommandOutput } from "../commands/StartCanaryCommand";
20
- import { StopCanaryCommandInput, StopCanaryCommandOutput } from "../commands/StopCanaryCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
23
- import { UpdateCanaryCommandInput, UpdateCanaryCommandOutput } from "../commands/UpdateCanaryCommand";
24
- export declare const serializeAws_restJson1AssociateResourceCommand: (input: AssociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1CreateCanaryCommand: (input: CreateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1DeleteCanaryCommand: (input: DeleteCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DescribeCanariesCommand: (input: DescribeCanariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DescribeCanariesLastRunCommand: (input: DescribeCanariesLastRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DescribeRuntimeVersionsCommand: (input: DescribeRuntimeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DisassociateResourceCommand: (input: DisassociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1GetCanaryCommand: (input: GetCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
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>;
39
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1StartCanaryCommand: (input: StartCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1StopCanaryCommand: (input: StopCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1UpdateCanaryCommand: (input: UpdateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const deserializeAws_restJson1AssociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateResourceCommandOutput>;
46
- export declare const deserializeAws_restJson1CreateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCanaryCommandOutput>;
47
- export declare const deserializeAws_restJson1CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
48
- export declare const deserializeAws_restJson1DeleteCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCanaryCommandOutput>;
49
- export declare const deserializeAws_restJson1DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
50
- export declare const deserializeAws_restJson1DescribeCanariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesCommandOutput>;
51
- export declare const deserializeAws_restJson1DescribeCanariesLastRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesLastRunCommandOutput>;
52
- export declare const deserializeAws_restJson1DescribeRuntimeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuntimeVersionsCommandOutput>;
53
- export declare const deserializeAws_restJson1DisassociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateResourceCommandOutput>;
54
- export declare const deserializeAws_restJson1GetCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryCommandOutput>;
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>;
60
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
61
- export declare const deserializeAws_restJson1StartCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCanaryCommandOutput>;
62
- export declare const deserializeAws_restJson1StopCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCanaryCommandOutput>;
63
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
64
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
65
- export declare const deserializeAws_restJson1UpdateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCanaryCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AssociateResourceCommandInput,
8
+ AssociateResourceCommandOutput,
9
+ } from "../commands/AssociateResourceCommand";
10
+ import {
11
+ CreateCanaryCommandInput,
12
+ CreateCanaryCommandOutput,
13
+ } from "../commands/CreateCanaryCommand";
14
+ import {
15
+ CreateGroupCommandInput,
16
+ CreateGroupCommandOutput,
17
+ } from "../commands/CreateGroupCommand";
18
+ import {
19
+ DeleteCanaryCommandInput,
20
+ DeleteCanaryCommandOutput,
21
+ } from "../commands/DeleteCanaryCommand";
22
+ import {
23
+ DeleteGroupCommandInput,
24
+ DeleteGroupCommandOutput,
25
+ } from "../commands/DeleteGroupCommand";
26
+ import {
27
+ DescribeCanariesCommandInput,
28
+ DescribeCanariesCommandOutput,
29
+ } from "../commands/DescribeCanariesCommand";
30
+ import {
31
+ DescribeCanariesLastRunCommandInput,
32
+ DescribeCanariesLastRunCommandOutput,
33
+ } from "../commands/DescribeCanariesLastRunCommand";
34
+ import {
35
+ DescribeRuntimeVersionsCommandInput,
36
+ DescribeRuntimeVersionsCommandOutput,
37
+ } from "../commands/DescribeRuntimeVersionsCommand";
38
+ import {
39
+ DisassociateResourceCommandInput,
40
+ DisassociateResourceCommandOutput,
41
+ } from "../commands/DisassociateResourceCommand";
42
+ import {
43
+ GetCanaryCommandInput,
44
+ GetCanaryCommandOutput,
45
+ } from "../commands/GetCanaryCommand";
46
+ import {
47
+ GetCanaryRunsCommandInput,
48
+ GetCanaryRunsCommandOutput,
49
+ } from "../commands/GetCanaryRunsCommand";
50
+ import {
51
+ GetGroupCommandInput,
52
+ GetGroupCommandOutput,
53
+ } from "../commands/GetGroupCommand";
54
+ import {
55
+ ListAssociatedGroupsCommandInput,
56
+ ListAssociatedGroupsCommandOutput,
57
+ } from "../commands/ListAssociatedGroupsCommand";
58
+ import {
59
+ ListGroupResourcesCommandInput,
60
+ ListGroupResourcesCommandOutput,
61
+ } from "../commands/ListGroupResourcesCommand";
62
+ import {
63
+ ListGroupsCommandInput,
64
+ ListGroupsCommandOutput,
65
+ } from "../commands/ListGroupsCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "../commands/ListTagsForResourceCommand";
70
+ import {
71
+ StartCanaryCommandInput,
72
+ StartCanaryCommandOutput,
73
+ } from "../commands/StartCanaryCommand";
74
+ import {
75
+ StopCanaryCommandInput,
76
+ StopCanaryCommandOutput,
77
+ } from "../commands/StopCanaryCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateCanaryCommandInput,
88
+ UpdateCanaryCommandOutput,
89
+ } from "../commands/UpdateCanaryCommand";
90
+ export declare const serializeAws_restJson1AssociateResourceCommand: (
91
+ input: AssociateResourceCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1CreateCanaryCommand: (
95
+ input: CreateCanaryCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1CreateGroupCommand: (
99
+ input: CreateGroupCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1DeleteCanaryCommand: (
103
+ input: DeleteCanaryCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1DeleteGroupCommand: (
107
+ input: DeleteGroupCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DescribeCanariesCommand: (
111
+ input: DescribeCanariesCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DescribeCanariesLastRunCommand: (
115
+ input: DescribeCanariesLastRunCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DescribeRuntimeVersionsCommand: (
119
+ input: DescribeRuntimeVersionsCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DisassociateResourceCommand: (
123
+ input: DisassociateResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1GetCanaryCommand: (
127
+ input: GetCanaryCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1GetCanaryRunsCommand: (
131
+ input: GetCanaryRunsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1GetGroupCommand: (
135
+ input: GetGroupCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1ListAssociatedGroupsCommand: (
139
+ input: ListAssociatedGroupsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1ListGroupResourcesCommand: (
143
+ input: ListGroupResourcesCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1ListGroupsCommand: (
147
+ input: ListGroupsCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
151
+ input: ListTagsForResourceCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1StartCanaryCommand: (
155
+ input: StartCanaryCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1StopCanaryCommand: (
159
+ input: StopCanaryCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1TagResourceCommand: (
163
+ input: TagResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1UntagResourceCommand: (
167
+ input: UntagResourceCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1UpdateCanaryCommand: (
171
+ input: UpdateCanaryCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const deserializeAws_restJson1AssociateResourceCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<AssociateResourceCommandOutput>;
178
+ export declare const deserializeAws_restJson1CreateCanaryCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<CreateCanaryCommandOutput>;
182
+ export declare const deserializeAws_restJson1CreateGroupCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<CreateGroupCommandOutput>;
186
+ export declare const deserializeAws_restJson1DeleteCanaryCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteCanaryCommandOutput>;
190
+ export declare const deserializeAws_restJson1DeleteGroupCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DeleteGroupCommandOutput>;
194
+ export declare const deserializeAws_restJson1DescribeCanariesCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<DescribeCanariesCommandOutput>;
198
+ export declare const deserializeAws_restJson1DescribeCanariesLastRunCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DescribeCanariesLastRunCommandOutput>;
202
+ export declare const deserializeAws_restJson1DescribeRuntimeVersionsCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<DescribeRuntimeVersionsCommandOutput>;
206
+ export declare const deserializeAws_restJson1DisassociateResourceCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DisassociateResourceCommandOutput>;
210
+ export declare const deserializeAws_restJson1GetCanaryCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<GetCanaryCommandOutput>;
214
+ export declare const deserializeAws_restJson1GetCanaryRunsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<GetCanaryRunsCommandOutput>;
218
+ export declare const deserializeAws_restJson1GetGroupCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<GetGroupCommandOutput>;
222
+ export declare const deserializeAws_restJson1ListAssociatedGroupsCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<ListAssociatedGroupsCommandOutput>;
226
+ export declare const deserializeAws_restJson1ListGroupResourcesCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListGroupResourcesCommandOutput>;
230
+ export declare const deserializeAws_restJson1ListGroupsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListGroupsCommandOutput>;
234
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListTagsForResourceCommandOutput>;
238
+ export declare const deserializeAws_restJson1StartCanaryCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<StartCanaryCommandOutput>;
242
+ export declare const deserializeAws_restJson1StopCanaryCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<StopCanaryCommandOutput>;
246
+ export declare const deserializeAws_restJson1TagResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<TagResourceCommandOutput>;
250
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<UntagResourceCommandOutput>;
254
+ export declare const deserializeAws_restJson1UpdateCanaryCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<UpdateCanaryCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { SyntheticsClientConfig } from "./SyntheticsClient";
3
-
4
- export declare const getRuntimeConfig: (config: SyntheticsClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SyntheticsClientConfig } from "./SyntheticsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: SyntheticsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };