@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.
- package/CHANGELOG.md +16 -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,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
+
};
|