@aws-sdk/client-iotdeviceadvisor 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/IotDeviceAdvisor.d.ts +256 -75
- package/dist-types/ts3.4/IotDeviceAdvisorClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopSuiteRunCommand.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/UpdateSuiteDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- 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/IotDeviceAdvisorServiceException.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 +499 -462
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListSuiteDefinitionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSuiteRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor
|
|
@@ -1,75 +1,256 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateSuiteDefinitionCommandInput,
|
|
4
|
+
CreateSuiteDefinitionCommandOutput,
|
|
5
|
+
} from "./commands/CreateSuiteDefinitionCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteSuiteDefinitionCommandInput,
|
|
8
|
+
DeleteSuiteDefinitionCommandOutput,
|
|
9
|
+
} from "./commands/DeleteSuiteDefinitionCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetEndpointCommandInput,
|
|
12
|
+
GetEndpointCommandOutput,
|
|
13
|
+
} from "./commands/GetEndpointCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetSuiteDefinitionCommandInput,
|
|
16
|
+
GetSuiteDefinitionCommandOutput,
|
|
17
|
+
} from "./commands/GetSuiteDefinitionCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetSuiteRunCommandInput,
|
|
20
|
+
GetSuiteRunCommandOutput,
|
|
21
|
+
} from "./commands/GetSuiteRunCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetSuiteRunReportCommandInput,
|
|
24
|
+
GetSuiteRunReportCommandOutput,
|
|
25
|
+
} from "./commands/GetSuiteRunReportCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListSuiteDefinitionsCommandInput,
|
|
28
|
+
ListSuiteDefinitionsCommandOutput,
|
|
29
|
+
} from "./commands/ListSuiteDefinitionsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListSuiteRunsCommandInput,
|
|
32
|
+
ListSuiteRunsCommandOutput,
|
|
33
|
+
} from "./commands/ListSuiteRunsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListTagsForResourceCommandInput,
|
|
36
|
+
ListTagsForResourceCommandOutput,
|
|
37
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
StartSuiteRunCommandInput,
|
|
40
|
+
StartSuiteRunCommandOutput,
|
|
41
|
+
} from "./commands/StartSuiteRunCommand";
|
|
42
|
+
import {
|
|
43
|
+
StopSuiteRunCommandInput,
|
|
44
|
+
StopSuiteRunCommandOutput,
|
|
45
|
+
} from "./commands/StopSuiteRunCommand";
|
|
46
|
+
import {
|
|
47
|
+
TagResourceCommandInput,
|
|
48
|
+
TagResourceCommandOutput,
|
|
49
|
+
} from "./commands/TagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UntagResourceCommandInput,
|
|
52
|
+
UntagResourceCommandOutput,
|
|
53
|
+
} from "./commands/UntagResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
UpdateSuiteDefinitionCommandInput,
|
|
56
|
+
UpdateSuiteDefinitionCommandOutput,
|
|
57
|
+
} from "./commands/UpdateSuiteDefinitionCommand";
|
|
58
|
+
import { IotDeviceAdvisorClient } from "./IotDeviceAdvisorClient";
|
|
59
|
+
|
|
60
|
+
export declare class IotDeviceAdvisor extends IotDeviceAdvisorClient {
|
|
61
|
+
createSuiteDefinition(
|
|
62
|
+
args: CreateSuiteDefinitionCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<CreateSuiteDefinitionCommandOutput>;
|
|
65
|
+
createSuiteDefinition(
|
|
66
|
+
args: CreateSuiteDefinitionCommandInput,
|
|
67
|
+
cb: (err: any, data?: CreateSuiteDefinitionCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
createSuiteDefinition(
|
|
70
|
+
args: CreateSuiteDefinitionCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: CreateSuiteDefinitionCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
|
|
75
|
+
deleteSuiteDefinition(
|
|
76
|
+
args: DeleteSuiteDefinitionCommandInput,
|
|
77
|
+
options?: __HttpHandlerOptions
|
|
78
|
+
): Promise<DeleteSuiteDefinitionCommandOutput>;
|
|
79
|
+
deleteSuiteDefinition(
|
|
80
|
+
args: DeleteSuiteDefinitionCommandInput,
|
|
81
|
+
cb: (err: any, data?: DeleteSuiteDefinitionCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
deleteSuiteDefinition(
|
|
84
|
+
args: DeleteSuiteDefinitionCommandInput,
|
|
85
|
+
options: __HttpHandlerOptions,
|
|
86
|
+
cb: (err: any, data?: DeleteSuiteDefinitionCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
|
|
89
|
+
getEndpoint(
|
|
90
|
+
args: GetEndpointCommandInput,
|
|
91
|
+
options?: __HttpHandlerOptions
|
|
92
|
+
): Promise<GetEndpointCommandOutput>;
|
|
93
|
+
getEndpoint(
|
|
94
|
+
args: GetEndpointCommandInput,
|
|
95
|
+
cb: (err: any, data?: GetEndpointCommandOutput) => void
|
|
96
|
+
): void;
|
|
97
|
+
getEndpoint(
|
|
98
|
+
args: GetEndpointCommandInput,
|
|
99
|
+
options: __HttpHandlerOptions,
|
|
100
|
+
cb: (err: any, data?: GetEndpointCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
|
|
103
|
+
getSuiteDefinition(
|
|
104
|
+
args: GetSuiteDefinitionCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<GetSuiteDefinitionCommandOutput>;
|
|
107
|
+
getSuiteDefinition(
|
|
108
|
+
args: GetSuiteDefinitionCommandInput,
|
|
109
|
+
cb: (err: any, data?: GetSuiteDefinitionCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
getSuiteDefinition(
|
|
112
|
+
args: GetSuiteDefinitionCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: GetSuiteDefinitionCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
|
|
117
|
+
getSuiteRun(
|
|
118
|
+
args: GetSuiteRunCommandInput,
|
|
119
|
+
options?: __HttpHandlerOptions
|
|
120
|
+
): Promise<GetSuiteRunCommandOutput>;
|
|
121
|
+
getSuiteRun(
|
|
122
|
+
args: GetSuiteRunCommandInput,
|
|
123
|
+
cb: (err: any, data?: GetSuiteRunCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
getSuiteRun(
|
|
126
|
+
args: GetSuiteRunCommandInput,
|
|
127
|
+
options: __HttpHandlerOptions,
|
|
128
|
+
cb: (err: any, data?: GetSuiteRunCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
|
|
131
|
+
getSuiteRunReport(
|
|
132
|
+
args: GetSuiteRunReportCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<GetSuiteRunReportCommandOutput>;
|
|
135
|
+
getSuiteRunReport(
|
|
136
|
+
args: GetSuiteRunReportCommandInput,
|
|
137
|
+
cb: (err: any, data?: GetSuiteRunReportCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
getSuiteRunReport(
|
|
140
|
+
args: GetSuiteRunReportCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: GetSuiteRunReportCommandOutput) => void
|
|
143
|
+
): void;
|
|
144
|
+
|
|
145
|
+
listSuiteDefinitions(
|
|
146
|
+
args: ListSuiteDefinitionsCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<ListSuiteDefinitionsCommandOutput>;
|
|
149
|
+
listSuiteDefinitions(
|
|
150
|
+
args: ListSuiteDefinitionsCommandInput,
|
|
151
|
+
cb: (err: any, data?: ListSuiteDefinitionsCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
listSuiteDefinitions(
|
|
154
|
+
args: ListSuiteDefinitionsCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: ListSuiteDefinitionsCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
|
|
159
|
+
listSuiteRuns(
|
|
160
|
+
args: ListSuiteRunsCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<ListSuiteRunsCommandOutput>;
|
|
163
|
+
listSuiteRuns(
|
|
164
|
+
args: ListSuiteRunsCommandInput,
|
|
165
|
+
cb: (err: any, data?: ListSuiteRunsCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
listSuiteRuns(
|
|
168
|
+
args: ListSuiteRunsCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: ListSuiteRunsCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
|
|
173
|
+
listTagsForResource(
|
|
174
|
+
args: ListTagsForResourceCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
177
|
+
listTagsForResource(
|
|
178
|
+
args: ListTagsForResourceCommandInput,
|
|
179
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
listTagsForResource(
|
|
182
|
+
args: ListTagsForResourceCommandInput,
|
|
183
|
+
options: __HttpHandlerOptions,
|
|
184
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
|
|
187
|
+
startSuiteRun(
|
|
188
|
+
args: StartSuiteRunCommandInput,
|
|
189
|
+
options?: __HttpHandlerOptions
|
|
190
|
+
): Promise<StartSuiteRunCommandOutput>;
|
|
191
|
+
startSuiteRun(
|
|
192
|
+
args: StartSuiteRunCommandInput,
|
|
193
|
+
cb: (err: any, data?: StartSuiteRunCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
startSuiteRun(
|
|
196
|
+
args: StartSuiteRunCommandInput,
|
|
197
|
+
options: __HttpHandlerOptions,
|
|
198
|
+
cb: (err: any, data?: StartSuiteRunCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
|
|
201
|
+
stopSuiteRun(
|
|
202
|
+
args: StopSuiteRunCommandInput,
|
|
203
|
+
options?: __HttpHandlerOptions
|
|
204
|
+
): Promise<StopSuiteRunCommandOutput>;
|
|
205
|
+
stopSuiteRun(
|
|
206
|
+
args: StopSuiteRunCommandInput,
|
|
207
|
+
cb: (err: any, data?: StopSuiteRunCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
stopSuiteRun(
|
|
210
|
+
args: StopSuiteRunCommandInput,
|
|
211
|
+
options: __HttpHandlerOptions,
|
|
212
|
+
cb: (err: any, data?: StopSuiteRunCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
|
|
215
|
+
tagResource(
|
|
216
|
+
args: TagResourceCommandInput,
|
|
217
|
+
options?: __HttpHandlerOptions
|
|
218
|
+
): Promise<TagResourceCommandOutput>;
|
|
219
|
+
tagResource(
|
|
220
|
+
args: TagResourceCommandInput,
|
|
221
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
tagResource(
|
|
224
|
+
args: TagResourceCommandInput,
|
|
225
|
+
options: __HttpHandlerOptions,
|
|
226
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
|
|
229
|
+
untagResource(
|
|
230
|
+
args: UntagResourceCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<UntagResourceCommandOutput>;
|
|
233
|
+
untagResource(
|
|
234
|
+
args: UntagResourceCommandInput,
|
|
235
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
untagResource(
|
|
238
|
+
args: UntagResourceCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
|
|
243
|
+
updateSuiteDefinition(
|
|
244
|
+
args: UpdateSuiteDefinitionCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<UpdateSuiteDefinitionCommandOutput>;
|
|
247
|
+
updateSuiteDefinition(
|
|
248
|
+
args: UpdateSuiteDefinitionCommandInput,
|
|
249
|
+
cb: (err: any, data?: UpdateSuiteDefinitionCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
updateSuiteDefinition(
|
|
252
|
+
args: UpdateSuiteDefinitionCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: UpdateSuiteDefinitionCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
}
|
|
@@ -1,87 +1,214 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateSuiteDefinitionCommandInput,
|
|
47
|
+
CreateSuiteDefinitionCommandOutput,
|
|
48
|
+
} from "./commands/CreateSuiteDefinitionCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteSuiteDefinitionCommandInput,
|
|
51
|
+
DeleteSuiteDefinitionCommandOutput,
|
|
52
|
+
} from "./commands/DeleteSuiteDefinitionCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetEndpointCommandInput,
|
|
55
|
+
GetEndpointCommandOutput,
|
|
56
|
+
} from "./commands/GetEndpointCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetSuiteDefinitionCommandInput,
|
|
59
|
+
GetSuiteDefinitionCommandOutput,
|
|
60
|
+
} from "./commands/GetSuiteDefinitionCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetSuiteRunCommandInput,
|
|
63
|
+
GetSuiteRunCommandOutput,
|
|
64
|
+
} from "./commands/GetSuiteRunCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetSuiteRunReportCommandInput,
|
|
67
|
+
GetSuiteRunReportCommandOutput,
|
|
68
|
+
} from "./commands/GetSuiteRunReportCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListSuiteDefinitionsCommandInput,
|
|
71
|
+
ListSuiteDefinitionsCommandOutput,
|
|
72
|
+
} from "./commands/ListSuiteDefinitionsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListSuiteRunsCommandInput,
|
|
75
|
+
ListSuiteRunsCommandOutput,
|
|
76
|
+
} from "./commands/ListSuiteRunsCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListTagsForResourceCommandInput,
|
|
79
|
+
ListTagsForResourceCommandOutput,
|
|
80
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
81
|
+
import {
|
|
82
|
+
StartSuiteRunCommandInput,
|
|
83
|
+
StartSuiteRunCommandOutput,
|
|
84
|
+
} from "./commands/StartSuiteRunCommand";
|
|
85
|
+
import {
|
|
86
|
+
StopSuiteRunCommandInput,
|
|
87
|
+
StopSuiteRunCommandOutput,
|
|
88
|
+
} from "./commands/StopSuiteRunCommand";
|
|
89
|
+
import {
|
|
90
|
+
TagResourceCommandInput,
|
|
91
|
+
TagResourceCommandOutput,
|
|
92
|
+
} from "./commands/TagResourceCommand";
|
|
93
|
+
import {
|
|
94
|
+
UntagResourceCommandInput,
|
|
95
|
+
UntagResourceCommandOutput,
|
|
96
|
+
} from "./commands/UntagResourceCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateSuiteDefinitionCommandInput,
|
|
99
|
+
UpdateSuiteDefinitionCommandOutput,
|
|
100
|
+
} from "./commands/UpdateSuiteDefinitionCommand";
|
|
101
|
+
export declare type ServiceInputTypes =
|
|
102
|
+
| CreateSuiteDefinitionCommandInput
|
|
103
|
+
| DeleteSuiteDefinitionCommandInput
|
|
104
|
+
| GetEndpointCommandInput
|
|
105
|
+
| GetSuiteDefinitionCommandInput
|
|
106
|
+
| GetSuiteRunCommandInput
|
|
107
|
+
| GetSuiteRunReportCommandInput
|
|
108
|
+
| ListSuiteDefinitionsCommandInput
|
|
109
|
+
| ListSuiteRunsCommandInput
|
|
110
|
+
| ListTagsForResourceCommandInput
|
|
111
|
+
| StartSuiteRunCommandInput
|
|
112
|
+
| StopSuiteRunCommandInput
|
|
113
|
+
| TagResourceCommandInput
|
|
114
|
+
| UntagResourceCommandInput
|
|
115
|
+
| UpdateSuiteDefinitionCommandInput;
|
|
116
|
+
export declare type ServiceOutputTypes =
|
|
117
|
+
| CreateSuiteDefinitionCommandOutput
|
|
118
|
+
| DeleteSuiteDefinitionCommandOutput
|
|
119
|
+
| GetEndpointCommandOutput
|
|
120
|
+
| GetSuiteDefinitionCommandOutput
|
|
121
|
+
| GetSuiteRunCommandOutput
|
|
122
|
+
| GetSuiteRunReportCommandOutput
|
|
123
|
+
| ListSuiteDefinitionsCommandOutput
|
|
124
|
+
| ListSuiteRunsCommandOutput
|
|
125
|
+
| ListTagsForResourceCommandOutput
|
|
126
|
+
| StartSuiteRunCommandOutput
|
|
127
|
+
| StopSuiteRunCommandOutput
|
|
128
|
+
| TagResourceCommandOutput
|
|
129
|
+
| UntagResourceCommandOutput
|
|
130
|
+
| UpdateSuiteDefinitionCommandOutput;
|
|
131
|
+
export interface ClientDefaults
|
|
132
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
133
|
+
requestHandler?: __HttpHandler;
|
|
134
|
+
|
|
135
|
+
sha256?: __HashConstructor;
|
|
136
|
+
|
|
137
|
+
urlParser?: __UrlParser;
|
|
138
|
+
|
|
139
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
140
|
+
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
|
|
143
|
+
base64Decoder?: __Decoder;
|
|
144
|
+
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
|
|
147
|
+
utf8Decoder?: __Decoder;
|
|
148
|
+
|
|
149
|
+
utf8Encoder?: __Encoder;
|
|
150
|
+
|
|
151
|
+
runtime?: string;
|
|
152
|
+
|
|
153
|
+
disableHostPrefix?: boolean;
|
|
154
|
+
|
|
155
|
+
maxAttempts?: number | __Provider<number>;
|
|
156
|
+
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
|
|
159
|
+
logger?: __Logger;
|
|
160
|
+
|
|
161
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
162
|
+
|
|
163
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
164
|
+
|
|
165
|
+
serviceId?: string;
|
|
166
|
+
|
|
167
|
+
region?: string | __Provider<string>;
|
|
168
|
+
|
|
169
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
170
|
+
|
|
171
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
172
|
+
|
|
173
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
174
|
+
|
|
175
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
176
|
+
}
|
|
177
|
+
declare type IotDeviceAdvisorClientConfigType = Partial<
|
|
178
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
179
|
+
> &
|
|
180
|
+
ClientDefaults &
|
|
181
|
+
RegionInputConfig &
|
|
182
|
+
EndpointsInputConfig &
|
|
183
|
+
RetryInputConfig &
|
|
184
|
+
HostHeaderInputConfig &
|
|
185
|
+
AwsAuthInputConfig &
|
|
186
|
+
UserAgentInputConfig;
|
|
187
|
+
|
|
188
|
+
export interface IotDeviceAdvisorClientConfig
|
|
189
|
+
extends IotDeviceAdvisorClientConfigType {}
|
|
190
|
+
declare type IotDeviceAdvisorClientResolvedConfigType =
|
|
191
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
192
|
+
Required<ClientDefaults> &
|
|
193
|
+
RegionResolvedConfig &
|
|
194
|
+
EndpointsResolvedConfig &
|
|
195
|
+
RetryResolvedConfig &
|
|
196
|
+
HostHeaderResolvedConfig &
|
|
197
|
+
AwsAuthResolvedConfig &
|
|
198
|
+
UserAgentResolvedConfig;
|
|
199
|
+
|
|
200
|
+
export interface IotDeviceAdvisorClientResolvedConfig
|
|
201
|
+
extends IotDeviceAdvisorClientResolvedConfigType {}
|
|
202
|
+
|
|
203
|
+
export declare class IotDeviceAdvisorClient extends __Client<
|
|
204
|
+
__HttpHandlerOptions,
|
|
205
|
+
ServiceInputTypes,
|
|
206
|
+
ServiceOutputTypes,
|
|
207
|
+
IotDeviceAdvisorClientResolvedConfig
|
|
208
|
+
> {
|
|
209
|
+
readonly config: IotDeviceAdvisorClientResolvedConfig;
|
|
210
|
+
constructor(configuration: IotDeviceAdvisorClientConfig);
|
|
211
|
+
|
|
212
|
+
destroy(): void;
|
|
213
|
+
}
|
|
214
|
+
export {};
|