@aws-sdk/client-synthetics 3.928.0 → 3.929.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-cjs/index.js +988 -1115
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SyntheticsClient.js +2 -0
- package/dist-es/commands/AssociateResourceCommand.js +3 -9
- package/dist-es/commands/CreateCanaryCommand.js +3 -9
- package/dist-es/commands/CreateGroupCommand.js +3 -9
- package/dist-es/commands/DeleteCanaryCommand.js +3 -9
- package/dist-es/commands/DeleteGroupCommand.js +3 -9
- package/dist-es/commands/DescribeCanariesCommand.js +3 -9
- package/dist-es/commands/DescribeCanariesLastRunCommand.js +3 -9
- package/dist-es/commands/DescribeRuntimeVersionsCommand.js +3 -9
- package/dist-es/commands/DisassociateResourceCommand.js +3 -9
- package/dist-es/commands/GetCanaryCommand.js +3 -9
- package/dist-es/commands/GetCanaryRunsCommand.js +3 -9
- package/dist-es/commands/GetGroupCommand.js +3 -9
- package/dist-es/commands/ListAssociatedGroupsCommand.js +3 -9
- package/dist-es/commands/ListGroupResourcesCommand.js +3 -9
- package/dist-es/commands/ListGroupsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartCanaryCommand.js +3 -9
- package/dist-es/commands/StartCanaryDryRunCommand.js +3 -9
- package/dist-es/commands/StopCanaryCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateCanaryCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +927 -0
- package/dist-types/SyntheticsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +133 -0
- package/dist-types/ts3.4/SyntheticsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -935
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/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 { StartCanaryDryRunCommandInput, StartCanaryDryRunCommandOutput } from "../commands/StartCanaryDryRunCommand";
|
|
21
|
-
import { StopCanaryCommandInput, StopCanaryCommandOutput } from "../commands/StopCanaryCommand";
|
|
22
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
23
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
24
|
-
import { UpdateCanaryCommandInput, UpdateCanaryCommandOutput } from "../commands/UpdateCanaryCommand";
|
|
25
|
-
/**
|
|
26
|
-
* serializeAws_restJson1AssociateResourceCommand
|
|
27
|
-
*/
|
|
28
|
-
export declare const se_AssociateResourceCommand: (input: AssociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
-
/**
|
|
30
|
-
* serializeAws_restJson1CreateCanaryCommand
|
|
31
|
-
*/
|
|
32
|
-
export declare const se_CreateCanaryCommand: (input: CreateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1CreateGroupCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1DeleteCanaryCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_DeleteCanaryCommand: (input: DeleteCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1DeleteGroupCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1DescribeCanariesCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_DescribeCanariesCommand: (input: DescribeCanariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1DescribeCanariesLastRunCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_DescribeCanariesLastRunCommand: (input: DescribeCanariesLastRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1DescribeRuntimeVersionsCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_DescribeRuntimeVersionsCommand: (input: DescribeRuntimeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1DisassociateResourceCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_DisassociateResourceCommand: (input: DisassociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1GetCanaryCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_GetCanaryCommand: (input: GetCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1GetCanaryRunsCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_GetCanaryRunsCommand: (input: GetCanaryRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1GetGroupCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_GetGroupCommand: (input: GetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1ListAssociatedGroupsCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_ListAssociatedGroupsCommand: (input: ListAssociatedGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1ListGroupResourcesCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_ListGroupResourcesCommand: (input: ListGroupResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1ListGroupsCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_ListGroupsCommand: (input: ListGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1StartCanaryCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_StartCanaryCommand: (input: StartCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1StartCanaryDryRunCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_StartCanaryDryRunCommand: (input: StartCanaryDryRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1StopCanaryCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_StopCanaryCommand: (input: StopCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1TagResourceCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1UpdateCanaryCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_UpdateCanaryCommand: (input: UpdateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* deserializeAws_restJson1AssociateResourceCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const de_AssociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateResourceCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* deserializeAws_restJson1CreateCanaryCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const de_CreateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCanaryCommandOutput>;
|
|
121
|
-
/**
|
|
122
|
-
* deserializeAws_restJson1CreateGroupCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const de_CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* deserializeAws_restJson1DeleteCanaryCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const de_DeleteCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCanaryCommandOutput>;
|
|
129
|
-
/**
|
|
130
|
-
* deserializeAws_restJson1DeleteGroupCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const de_DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
133
|
-
/**
|
|
134
|
-
* deserializeAws_restJson1DescribeCanariesCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const de_DescribeCanariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* deserializeAws_restJson1DescribeCanariesLastRunCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const de_DescribeCanariesLastRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesLastRunCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* deserializeAws_restJson1DescribeRuntimeVersionsCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const de_DescribeRuntimeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
145
|
-
/**
|
|
146
|
-
* deserializeAws_restJson1DisassociateResourceCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const de_DisassociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateResourceCommandOutput>;
|
|
149
|
-
/**
|
|
150
|
-
* deserializeAws_restJson1GetCanaryCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const de_GetCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryCommandOutput>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_restJson1GetCanaryRunsCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_GetCanaryRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryRunsCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_restJson1GetGroupCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_GetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_restJson1ListAssociatedGroupsCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_ListAssociatedGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedGroupsCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_restJson1ListGroupResourcesCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_ListGroupResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupResourcesCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_restJson1ListGroupsCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_ListGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1StartCanaryCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_StartCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCanaryCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1StartCanaryDryRunCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_StartCanaryDryRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCanaryDryRunCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1StopCanaryCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_StopCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCanaryCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1UpdateCanaryCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_UpdateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCanaryCommandOutput>;
|
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/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
|
-
StartCanaryDryRunCommandInput,
|
|
76
|
-
StartCanaryDryRunCommandOutput,
|
|
77
|
-
} from "../commands/StartCanaryDryRunCommand";
|
|
78
|
-
import {
|
|
79
|
-
StopCanaryCommandInput,
|
|
80
|
-
StopCanaryCommandOutput,
|
|
81
|
-
} from "../commands/StopCanaryCommand";
|
|
82
|
-
import {
|
|
83
|
-
TagResourceCommandInput,
|
|
84
|
-
TagResourceCommandOutput,
|
|
85
|
-
} from "../commands/TagResourceCommand";
|
|
86
|
-
import {
|
|
87
|
-
UntagResourceCommandInput,
|
|
88
|
-
UntagResourceCommandOutput,
|
|
89
|
-
} from "../commands/UntagResourceCommand";
|
|
90
|
-
import {
|
|
91
|
-
UpdateCanaryCommandInput,
|
|
92
|
-
UpdateCanaryCommandOutput,
|
|
93
|
-
} from "../commands/UpdateCanaryCommand";
|
|
94
|
-
export declare const se_AssociateResourceCommand: (
|
|
95
|
-
input: AssociateResourceCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_CreateCanaryCommand: (
|
|
99
|
-
input: CreateCanaryCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_CreateGroupCommand: (
|
|
103
|
-
input: CreateGroupCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_DeleteCanaryCommand: (
|
|
107
|
-
input: DeleteCanaryCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_DeleteGroupCommand: (
|
|
111
|
-
input: DeleteGroupCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DescribeCanariesCommand: (
|
|
115
|
-
input: DescribeCanariesCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DescribeCanariesLastRunCommand: (
|
|
119
|
-
input: DescribeCanariesLastRunCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DescribeRuntimeVersionsCommand: (
|
|
123
|
-
input: DescribeRuntimeVersionsCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_DisassociateResourceCommand: (
|
|
127
|
-
input: DisassociateResourceCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_GetCanaryCommand: (
|
|
131
|
-
input: GetCanaryCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_GetCanaryRunsCommand: (
|
|
135
|
-
input: GetCanaryRunsCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_GetGroupCommand: (
|
|
139
|
-
input: GetGroupCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_ListAssociatedGroupsCommand: (
|
|
143
|
-
input: ListAssociatedGroupsCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ListGroupResourcesCommand: (
|
|
147
|
-
input: ListGroupResourcesCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_ListGroupsCommand: (
|
|
151
|
-
input: ListGroupsCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
155
|
-
input: ListTagsForResourceCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_StartCanaryCommand: (
|
|
159
|
-
input: StartCanaryCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_StartCanaryDryRunCommand: (
|
|
163
|
-
input: StartCanaryDryRunCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_StopCanaryCommand: (
|
|
167
|
-
input: StopCanaryCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_TagResourceCommand: (
|
|
171
|
-
input: TagResourceCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_UntagResourceCommand: (
|
|
175
|
-
input: UntagResourceCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_UpdateCanaryCommand: (
|
|
179
|
-
input: UpdateCanaryCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const de_AssociateResourceCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<AssociateResourceCommandOutput>;
|
|
186
|
-
export declare const de_CreateCanaryCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<CreateCanaryCommandOutput>;
|
|
190
|
-
export declare const de_CreateGroupCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<CreateGroupCommandOutput>;
|
|
194
|
-
export declare const de_DeleteCanaryCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<DeleteCanaryCommandOutput>;
|
|
198
|
-
export declare const de_DeleteGroupCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<DeleteGroupCommandOutput>;
|
|
202
|
-
export declare const de_DescribeCanariesCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<DescribeCanariesCommandOutput>;
|
|
206
|
-
export declare const de_DescribeCanariesLastRunCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<DescribeCanariesLastRunCommandOutput>;
|
|
210
|
-
export declare const de_DescribeRuntimeVersionsCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
214
|
-
export declare const de_DisassociateResourceCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<DisassociateResourceCommandOutput>;
|
|
218
|
-
export declare const de_GetCanaryCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<GetCanaryCommandOutput>;
|
|
222
|
-
export declare const de_GetCanaryRunsCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<GetCanaryRunsCommandOutput>;
|
|
226
|
-
export declare const de_GetGroupCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<GetGroupCommandOutput>;
|
|
230
|
-
export declare const de_ListAssociatedGroupsCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<ListAssociatedGroupsCommandOutput>;
|
|
234
|
-
export declare const de_ListGroupResourcesCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<ListGroupResourcesCommandOutput>;
|
|
238
|
-
export declare const de_ListGroupsCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<ListGroupsCommandOutput>;
|
|
242
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
246
|
-
export declare const de_StartCanaryCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<StartCanaryCommandOutput>;
|
|
250
|
-
export declare const de_StartCanaryDryRunCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<StartCanaryDryRunCommandOutput>;
|
|
254
|
-
export declare const de_StopCanaryCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<StopCanaryCommandOutput>;
|
|
258
|
-
export declare const de_TagResourceCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<TagResourceCommandOutput>;
|
|
262
|
-
export declare const de_UntagResourceCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
266
|
-
export declare const de_UpdateCanaryCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<UpdateCanaryCommandOutput>;
|