@aws-sdk/client-iotdeviceadvisor 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IotDeviceAdvisorServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +54 -1
- package/dist-cjs/protocols/Aws_restJson1.js +131 -396
- package/dist-es/index.js +1 -0
- package/dist-es/models/IotDeviceAdvisorServiceException.js +12 -0
- package/dist-es/models/models_0.js +50 -1
- package/dist-es/protocols/Aws_restJson1.js +273 -457
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IotDeviceAdvisorServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +22 -21
- package/dist-types/ts3.4/IotDeviceAdvisor.d.ts +75 -0
- package/dist-types/ts3.4/IotDeviceAdvisorClient.d.ts +87 -0
- package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopSuiteRunCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSuiteDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/IotDeviceAdvisorServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +502 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListSuiteDefinitionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListSuiteRunsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +44 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class ConflictException extends __BaseException {
|
|
5
|
+
readonly name: "ConflictException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface DeviceUnderTest {
|
|
12
|
+
|
|
13
|
+
thingArn?: string;
|
|
14
|
+
|
|
15
|
+
certificateArn?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace DeviceUnderTest {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: DeviceUnderTest) => any;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface SuiteDefinitionConfiguration {
|
|
23
|
+
|
|
24
|
+
suiteDefinitionName?: string;
|
|
25
|
+
|
|
26
|
+
devices?: DeviceUnderTest[];
|
|
27
|
+
|
|
28
|
+
intendedForQualification?: boolean;
|
|
29
|
+
|
|
30
|
+
rootGroup?: string;
|
|
31
|
+
|
|
32
|
+
devicePermissionRoleArn?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace SuiteDefinitionConfiguration {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
|
|
37
|
+
}
|
|
38
|
+
export interface CreateSuiteDefinitionRequest {
|
|
39
|
+
|
|
40
|
+
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
41
|
+
|
|
42
|
+
tags?: {
|
|
43
|
+
[key: string]: string;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export declare namespace CreateSuiteDefinitionRequest {
|
|
47
|
+
|
|
48
|
+
const filterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
|
|
49
|
+
}
|
|
50
|
+
export interface CreateSuiteDefinitionResponse {
|
|
51
|
+
|
|
52
|
+
suiteDefinitionId?: string;
|
|
53
|
+
|
|
54
|
+
suiteDefinitionArn?: string;
|
|
55
|
+
|
|
56
|
+
suiteDefinitionName?: string;
|
|
57
|
+
|
|
58
|
+
createdAt?: Date;
|
|
59
|
+
}
|
|
60
|
+
export declare namespace CreateSuiteDefinitionResponse {
|
|
61
|
+
|
|
62
|
+
const filterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export declare class InternalServerException extends __BaseException {
|
|
66
|
+
readonly name: "InternalServerException";
|
|
67
|
+
readonly $fault: "server";
|
|
68
|
+
|
|
69
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export declare class ValidationException extends __BaseException {
|
|
73
|
+
readonly name: "ValidationException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
|
|
76
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
77
|
+
}
|
|
78
|
+
export interface DeleteSuiteDefinitionRequest {
|
|
79
|
+
|
|
80
|
+
suiteDefinitionId: string | undefined;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace DeleteSuiteDefinitionRequest {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
|
|
85
|
+
}
|
|
86
|
+
export interface DeleteSuiteDefinitionResponse {
|
|
87
|
+
}
|
|
88
|
+
export declare namespace DeleteSuiteDefinitionResponse {
|
|
89
|
+
|
|
90
|
+
const filterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
|
|
91
|
+
}
|
|
92
|
+
export interface GetEndpointRequest {
|
|
93
|
+
|
|
94
|
+
thingArn?: string;
|
|
95
|
+
|
|
96
|
+
certificateArn?: string;
|
|
97
|
+
}
|
|
98
|
+
export declare namespace GetEndpointRequest {
|
|
99
|
+
|
|
100
|
+
const filterSensitiveLog: (obj: GetEndpointRequest) => any;
|
|
101
|
+
}
|
|
102
|
+
export interface GetEndpointResponse {
|
|
103
|
+
|
|
104
|
+
endpoint?: string;
|
|
105
|
+
}
|
|
106
|
+
export declare namespace GetEndpointResponse {
|
|
107
|
+
|
|
108
|
+
const filterSensitiveLog: (obj: GetEndpointResponse) => any;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
112
|
+
readonly name: "ResourceNotFoundException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
|
|
115
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
116
|
+
}
|
|
117
|
+
export interface GetSuiteDefinitionRequest {
|
|
118
|
+
|
|
119
|
+
suiteDefinitionId: string | undefined;
|
|
120
|
+
|
|
121
|
+
suiteDefinitionVersion?: string;
|
|
122
|
+
}
|
|
123
|
+
export declare namespace GetSuiteDefinitionRequest {
|
|
124
|
+
|
|
125
|
+
const filterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
|
|
126
|
+
}
|
|
127
|
+
export interface GetSuiteDefinitionResponse {
|
|
128
|
+
|
|
129
|
+
suiteDefinitionId?: string;
|
|
130
|
+
|
|
131
|
+
suiteDefinitionArn?: string;
|
|
132
|
+
|
|
133
|
+
suiteDefinitionVersion?: string;
|
|
134
|
+
|
|
135
|
+
latestVersion?: string;
|
|
136
|
+
|
|
137
|
+
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
138
|
+
|
|
139
|
+
createdAt?: Date;
|
|
140
|
+
|
|
141
|
+
lastModifiedAt?: Date;
|
|
142
|
+
|
|
143
|
+
tags?: {
|
|
144
|
+
[key: string]: string;
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
export declare namespace GetSuiteDefinitionResponse {
|
|
148
|
+
|
|
149
|
+
const filterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
|
|
150
|
+
}
|
|
151
|
+
export interface GetSuiteRunRequest {
|
|
152
|
+
|
|
153
|
+
suiteDefinitionId: string | undefined;
|
|
154
|
+
|
|
155
|
+
suiteRunId: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export declare namespace GetSuiteRunRequest {
|
|
158
|
+
|
|
159
|
+
const filterSensitiveLog: (obj: GetSuiteRunRequest) => any;
|
|
160
|
+
}
|
|
161
|
+
export declare enum SuiteRunStatus {
|
|
162
|
+
CANCELED = "CANCELED",
|
|
163
|
+
ERROR = "ERROR",
|
|
164
|
+
FAIL = "FAIL",
|
|
165
|
+
PASS = "PASS",
|
|
166
|
+
PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
|
|
167
|
+
PENDING = "PENDING",
|
|
168
|
+
RUNNING = "RUNNING",
|
|
169
|
+
STOPPED = "STOPPED",
|
|
170
|
+
STOPPING = "STOPPING"
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface SuiteRunConfiguration {
|
|
174
|
+
|
|
175
|
+
primaryDevice?: DeviceUnderTest;
|
|
176
|
+
|
|
177
|
+
selectedTestList?: string[];
|
|
178
|
+
|
|
179
|
+
parallelRun?: boolean;
|
|
180
|
+
}
|
|
181
|
+
export declare namespace SuiteRunConfiguration {
|
|
182
|
+
|
|
183
|
+
const filterSensitiveLog: (obj: SuiteRunConfiguration) => any;
|
|
184
|
+
}
|
|
185
|
+
export declare enum Status {
|
|
186
|
+
CANCELED = "CANCELED",
|
|
187
|
+
ERROR = "ERROR",
|
|
188
|
+
FAIL = "FAIL",
|
|
189
|
+
PASS = "PASS",
|
|
190
|
+
PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
|
|
191
|
+
PENDING = "PENDING",
|
|
192
|
+
RUNNING = "RUNNING",
|
|
193
|
+
STOPPED = "STOPPED",
|
|
194
|
+
STOPPING = "STOPPING"
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export interface TestCaseRun {
|
|
198
|
+
|
|
199
|
+
testCaseRunId?: string;
|
|
200
|
+
|
|
201
|
+
testCaseDefinitionId?: string;
|
|
202
|
+
|
|
203
|
+
testCaseDefinitionName?: string;
|
|
204
|
+
|
|
205
|
+
status?: Status | string;
|
|
206
|
+
|
|
207
|
+
startTime?: Date;
|
|
208
|
+
|
|
209
|
+
endTime?: Date;
|
|
210
|
+
|
|
211
|
+
logUrl?: string;
|
|
212
|
+
|
|
213
|
+
warnings?: string;
|
|
214
|
+
|
|
215
|
+
failure?: string;
|
|
216
|
+
}
|
|
217
|
+
export declare namespace TestCaseRun {
|
|
218
|
+
|
|
219
|
+
const filterSensitiveLog: (obj: TestCaseRun) => any;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface GroupResult {
|
|
223
|
+
|
|
224
|
+
groupId?: string;
|
|
225
|
+
|
|
226
|
+
groupName?: string;
|
|
227
|
+
|
|
228
|
+
tests?: TestCaseRun[];
|
|
229
|
+
}
|
|
230
|
+
export declare namespace GroupResult {
|
|
231
|
+
|
|
232
|
+
const filterSensitiveLog: (obj: GroupResult) => any;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface TestResult {
|
|
236
|
+
|
|
237
|
+
groups?: GroupResult[];
|
|
238
|
+
}
|
|
239
|
+
export declare namespace TestResult {
|
|
240
|
+
|
|
241
|
+
const filterSensitiveLog: (obj: TestResult) => any;
|
|
242
|
+
}
|
|
243
|
+
export interface GetSuiteRunResponse {
|
|
244
|
+
|
|
245
|
+
suiteDefinitionId?: string;
|
|
246
|
+
|
|
247
|
+
suiteDefinitionVersion?: string;
|
|
248
|
+
|
|
249
|
+
suiteRunId?: string;
|
|
250
|
+
|
|
251
|
+
suiteRunArn?: string;
|
|
252
|
+
|
|
253
|
+
suiteRunConfiguration?: SuiteRunConfiguration;
|
|
254
|
+
|
|
255
|
+
testResult?: TestResult;
|
|
256
|
+
|
|
257
|
+
startTime?: Date;
|
|
258
|
+
|
|
259
|
+
endTime?: Date;
|
|
260
|
+
|
|
261
|
+
status?: SuiteRunStatus | string;
|
|
262
|
+
|
|
263
|
+
errorReason?: string;
|
|
264
|
+
|
|
265
|
+
tags?: {
|
|
266
|
+
[key: string]: string;
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
export declare namespace GetSuiteRunResponse {
|
|
270
|
+
|
|
271
|
+
const filterSensitiveLog: (obj: GetSuiteRunResponse) => any;
|
|
272
|
+
}
|
|
273
|
+
export interface GetSuiteRunReportRequest {
|
|
274
|
+
|
|
275
|
+
suiteDefinitionId: string | undefined;
|
|
276
|
+
|
|
277
|
+
suiteRunId: string | undefined;
|
|
278
|
+
}
|
|
279
|
+
export declare namespace GetSuiteRunReportRequest {
|
|
280
|
+
|
|
281
|
+
const filterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
|
|
282
|
+
}
|
|
283
|
+
export interface GetSuiteRunReportResponse {
|
|
284
|
+
|
|
285
|
+
qualificationReportDownloadUrl?: string;
|
|
286
|
+
}
|
|
287
|
+
export declare namespace GetSuiteRunReportResponse {
|
|
288
|
+
|
|
289
|
+
const filterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
|
|
290
|
+
}
|
|
291
|
+
export interface ListSuiteDefinitionsRequest {
|
|
292
|
+
|
|
293
|
+
maxResults?: number;
|
|
294
|
+
|
|
295
|
+
nextToken?: string;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace ListSuiteDefinitionsRequest {
|
|
298
|
+
|
|
299
|
+
const filterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface SuiteDefinitionInformation {
|
|
303
|
+
|
|
304
|
+
suiteDefinitionId?: string;
|
|
305
|
+
|
|
306
|
+
suiteDefinitionName?: string;
|
|
307
|
+
|
|
308
|
+
defaultDevices?: DeviceUnderTest[];
|
|
309
|
+
|
|
310
|
+
intendedForQualification?: boolean;
|
|
311
|
+
|
|
312
|
+
createdAt?: Date;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace SuiteDefinitionInformation {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
|
|
317
|
+
}
|
|
318
|
+
export interface ListSuiteDefinitionsResponse {
|
|
319
|
+
|
|
320
|
+
suiteDefinitionInformationList?: SuiteDefinitionInformation[];
|
|
321
|
+
|
|
322
|
+
nextToken?: string;
|
|
323
|
+
}
|
|
324
|
+
export declare namespace ListSuiteDefinitionsResponse {
|
|
325
|
+
|
|
326
|
+
const filterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
|
|
327
|
+
}
|
|
328
|
+
export interface ListSuiteRunsRequest {
|
|
329
|
+
|
|
330
|
+
suiteDefinitionId?: string;
|
|
331
|
+
|
|
332
|
+
suiteDefinitionVersion?: string;
|
|
333
|
+
|
|
334
|
+
maxResults?: number;
|
|
335
|
+
|
|
336
|
+
nextToken?: string;
|
|
337
|
+
}
|
|
338
|
+
export declare namespace ListSuiteRunsRequest {
|
|
339
|
+
|
|
340
|
+
const filterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export interface SuiteRunInformation {
|
|
344
|
+
|
|
345
|
+
suiteDefinitionId?: string;
|
|
346
|
+
|
|
347
|
+
suiteDefinitionVersion?: string;
|
|
348
|
+
|
|
349
|
+
suiteDefinitionName?: string;
|
|
350
|
+
|
|
351
|
+
suiteRunId?: string;
|
|
352
|
+
|
|
353
|
+
createdAt?: Date;
|
|
354
|
+
|
|
355
|
+
startedAt?: Date;
|
|
356
|
+
|
|
357
|
+
endAt?: Date;
|
|
358
|
+
|
|
359
|
+
status?: SuiteRunStatus | string;
|
|
360
|
+
|
|
361
|
+
passed?: number;
|
|
362
|
+
|
|
363
|
+
failed?: number;
|
|
364
|
+
}
|
|
365
|
+
export declare namespace SuiteRunInformation {
|
|
366
|
+
|
|
367
|
+
const filterSensitiveLog: (obj: SuiteRunInformation) => any;
|
|
368
|
+
}
|
|
369
|
+
export interface ListSuiteRunsResponse {
|
|
370
|
+
|
|
371
|
+
suiteRunsList?: SuiteRunInformation[];
|
|
372
|
+
|
|
373
|
+
nextToken?: string;
|
|
374
|
+
}
|
|
375
|
+
export declare namespace ListSuiteRunsResponse {
|
|
376
|
+
|
|
377
|
+
const filterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
|
|
378
|
+
}
|
|
379
|
+
export interface ListTagsForResourceRequest {
|
|
380
|
+
|
|
381
|
+
resourceArn: string | undefined;
|
|
382
|
+
}
|
|
383
|
+
export declare namespace ListTagsForResourceRequest {
|
|
384
|
+
|
|
385
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
386
|
+
}
|
|
387
|
+
export interface ListTagsForResourceResponse {
|
|
388
|
+
|
|
389
|
+
tags?: {
|
|
390
|
+
[key: string]: string;
|
|
391
|
+
};
|
|
392
|
+
}
|
|
393
|
+
export declare namespace ListTagsForResourceResponse {
|
|
394
|
+
|
|
395
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
396
|
+
}
|
|
397
|
+
export interface StartSuiteRunRequest {
|
|
398
|
+
|
|
399
|
+
suiteDefinitionId: string | undefined;
|
|
400
|
+
|
|
401
|
+
suiteDefinitionVersion?: string;
|
|
402
|
+
|
|
403
|
+
suiteRunConfiguration?: SuiteRunConfiguration;
|
|
404
|
+
|
|
405
|
+
tags?: {
|
|
406
|
+
[key: string]: string;
|
|
407
|
+
};
|
|
408
|
+
}
|
|
409
|
+
export declare namespace StartSuiteRunRequest {
|
|
410
|
+
|
|
411
|
+
const filterSensitiveLog: (obj: StartSuiteRunRequest) => any;
|
|
412
|
+
}
|
|
413
|
+
export interface StartSuiteRunResponse {
|
|
414
|
+
|
|
415
|
+
suiteRunId?: string;
|
|
416
|
+
|
|
417
|
+
suiteRunArn?: string;
|
|
418
|
+
|
|
419
|
+
createdAt?: Date;
|
|
420
|
+
}
|
|
421
|
+
export declare namespace StartSuiteRunResponse {
|
|
422
|
+
|
|
423
|
+
const filterSensitiveLog: (obj: StartSuiteRunResponse) => any;
|
|
424
|
+
}
|
|
425
|
+
export interface StopSuiteRunRequest {
|
|
426
|
+
|
|
427
|
+
suiteDefinitionId: string | undefined;
|
|
428
|
+
|
|
429
|
+
suiteRunId: string | undefined;
|
|
430
|
+
}
|
|
431
|
+
export declare namespace StopSuiteRunRequest {
|
|
432
|
+
|
|
433
|
+
const filterSensitiveLog: (obj: StopSuiteRunRequest) => any;
|
|
434
|
+
}
|
|
435
|
+
export interface StopSuiteRunResponse {
|
|
436
|
+
}
|
|
437
|
+
export declare namespace StopSuiteRunResponse {
|
|
438
|
+
|
|
439
|
+
const filterSensitiveLog: (obj: StopSuiteRunResponse) => any;
|
|
440
|
+
}
|
|
441
|
+
export interface TagResourceRequest {
|
|
442
|
+
|
|
443
|
+
resourceArn: string | undefined;
|
|
444
|
+
|
|
445
|
+
tags: {
|
|
446
|
+
[key: string]: string;
|
|
447
|
+
} | undefined;
|
|
448
|
+
}
|
|
449
|
+
export declare namespace TagResourceRequest {
|
|
450
|
+
|
|
451
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
452
|
+
}
|
|
453
|
+
export interface TagResourceResponse {
|
|
454
|
+
}
|
|
455
|
+
export declare namespace TagResourceResponse {
|
|
456
|
+
|
|
457
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
458
|
+
}
|
|
459
|
+
export interface UntagResourceRequest {
|
|
460
|
+
|
|
461
|
+
resourceArn: string | undefined;
|
|
462
|
+
|
|
463
|
+
tagKeys: string[] | undefined;
|
|
464
|
+
}
|
|
465
|
+
export declare namespace UntagResourceRequest {
|
|
466
|
+
|
|
467
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
468
|
+
}
|
|
469
|
+
export interface UntagResourceResponse {
|
|
470
|
+
}
|
|
471
|
+
export declare namespace UntagResourceResponse {
|
|
472
|
+
|
|
473
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
474
|
+
}
|
|
475
|
+
export interface UpdateSuiteDefinitionRequest {
|
|
476
|
+
|
|
477
|
+
suiteDefinitionId: string | undefined;
|
|
478
|
+
|
|
479
|
+
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
480
|
+
}
|
|
481
|
+
export declare namespace UpdateSuiteDefinitionRequest {
|
|
482
|
+
|
|
483
|
+
const filterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
|
|
484
|
+
}
|
|
485
|
+
export interface UpdateSuiteDefinitionResponse {
|
|
486
|
+
|
|
487
|
+
suiteDefinitionId?: string;
|
|
488
|
+
|
|
489
|
+
suiteDefinitionArn?: string;
|
|
490
|
+
|
|
491
|
+
suiteDefinitionName?: string;
|
|
492
|
+
|
|
493
|
+
suiteDefinitionVersion?: string;
|
|
494
|
+
|
|
495
|
+
createdAt?: Date;
|
|
496
|
+
|
|
497
|
+
lastUpdatedAt?: Date;
|
|
498
|
+
}
|
|
499
|
+
export declare namespace UpdateSuiteDefinitionResponse {
|
|
500
|
+
|
|
501
|
+
const filterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
|
|
502
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { IotDeviceAdvisor } from "../IotDeviceAdvisor";
|
|
3
|
+
import { IotDeviceAdvisorClient } from "../IotDeviceAdvisorClient";
|
|
4
|
+
export interface IotDeviceAdvisorPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: IotDeviceAdvisor | IotDeviceAdvisorClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput } from "../commands/ListSuiteDefinitionsCommand";
|
|
3
|
+
import { IotDeviceAdvisorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListSuiteDefinitions(config: IotDeviceAdvisorPaginationConfiguration, input: ListSuiteDefinitionsCommandInput, ...additionalArguments: any): Paginator<ListSuiteDefinitionsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput } from "../commands/ListSuiteRunsCommand";
|
|
3
|
+
import { IotDeviceAdvisorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListSuiteRuns(config: IotDeviceAdvisorPaginationConfiguration, input: ListSuiteRunsCommandInput, ...additionalArguments: any): Paginator<ListSuiteRunsCommandOutput>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput } from "../commands/CreateSuiteDefinitionCommand";
|
|
4
|
+
import { DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput } from "../commands/DeleteSuiteDefinitionCommand";
|
|
5
|
+
import { GetEndpointCommandInput, GetEndpointCommandOutput } from "../commands/GetEndpointCommand";
|
|
6
|
+
import { GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput } from "../commands/GetSuiteDefinitionCommand";
|
|
7
|
+
import { GetSuiteRunCommandInput, GetSuiteRunCommandOutput } from "../commands/GetSuiteRunCommand";
|
|
8
|
+
import { GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput } from "../commands/GetSuiteRunReportCommand";
|
|
9
|
+
import { ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput } from "../commands/ListSuiteDefinitionsCommand";
|
|
10
|
+
import { ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput } from "../commands/ListSuiteRunsCommand";
|
|
11
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
12
|
+
import { StartSuiteRunCommandInput, StartSuiteRunCommandOutput } from "../commands/StartSuiteRunCommand";
|
|
13
|
+
import { StopSuiteRunCommandInput, StopSuiteRunCommandOutput } from "../commands/StopSuiteRunCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
16
|
+
import { UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput } from "../commands/UpdateSuiteDefinitionCommand";
|
|
17
|
+
export declare const serializeAws_restJson1CreateSuiteDefinitionCommand: (input: CreateSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1DeleteSuiteDefinitionCommand: (input: DeleteSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1GetEndpointCommand: (input: GetEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_restJson1GetSuiteDefinitionCommand: (input: GetSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1GetSuiteRunCommand: (input: GetSuiteRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_restJson1GetSuiteRunReportCommand: (input: GetSuiteRunReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1ListSuiteDefinitionsCommand: (input: ListSuiteDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1ListSuiteRunsCommand: (input: ListSuiteRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1StartSuiteRunCommand: (input: StartSuiteRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_restJson1StopSuiteRunCommand: (input: StopSuiteRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1UpdateSuiteDefinitionCommand: (input: UpdateSuiteDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const deserializeAws_restJson1CreateSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSuiteDefinitionCommandOutput>;
|
|
32
|
+
export declare const deserializeAws_restJson1DeleteSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSuiteDefinitionCommandOutput>;
|
|
33
|
+
export declare const deserializeAws_restJson1GetEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEndpointCommandOutput>;
|
|
34
|
+
export declare const deserializeAws_restJson1GetSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteDefinitionCommandOutput>;
|
|
35
|
+
export declare const deserializeAws_restJson1GetSuiteRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteRunCommandOutput>;
|
|
36
|
+
export declare const deserializeAws_restJson1GetSuiteRunReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSuiteRunReportCommandOutput>;
|
|
37
|
+
export declare const deserializeAws_restJson1ListSuiteDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSuiteDefinitionsCommandOutput>;
|
|
38
|
+
export declare const deserializeAws_restJson1ListSuiteRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSuiteRunsCommandOutput>;
|
|
39
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
40
|
+
export declare const deserializeAws_restJson1StartSuiteRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSuiteRunCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1StopSuiteRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSuiteRunCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_restJson1UpdateSuiteDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSuiteDefinitionCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: IotDeviceAdvisorClientConfig) => {
|
|
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: (body: any) => number | undefined;
|
|
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
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: IotDeviceAdvisorClientConfig) => {
|
|
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: (body: any) => number | undefined;
|
|
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<string>;
|
|
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
|
+
};
|