@aws-sdk/client-iotdeviceadvisor 3.477.0 → 3.481.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/commands/CreateSuiteDefinitionCommand.js +18 -41
- package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +18 -41
- package/dist-cjs/commands/GetEndpointCommand.js +18 -41
- package/dist-cjs/commands/GetSuiteDefinitionCommand.js +18 -41
- package/dist-cjs/commands/GetSuiteRunCommand.js +18 -41
- package/dist-cjs/commands/GetSuiteRunReportCommand.js +18 -41
- package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +18 -41
- package/dist-cjs/commands/ListSuiteRunsCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/StartSuiteRunCommand.js +18 -41
- package/dist-cjs/commands/StopSuiteRunCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/commands/UpdateSuiteDefinitionCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/ListSuiteDefinitionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListSuiteRunsPaginator.js +2 -24
- package/dist-es/commands/CreateSuiteDefinitionCommand.js +18 -41
- package/dist-es/commands/DeleteSuiteDefinitionCommand.js +18 -41
- package/dist-es/commands/GetEndpointCommand.js +18 -41
- package/dist-es/commands/GetSuiteDefinitionCommand.js +18 -41
- package/dist-es/commands/GetSuiteRunCommand.js +18 -41
- package/dist-es/commands/GetSuiteRunReportCommand.js +18 -41
- package/dist-es/commands/ListSuiteDefinitionsCommand.js +18 -41
- package/dist-es/commands/ListSuiteRunsCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/StartSuiteRunCommand.js +18 -41
- package/dist-es/commands/StopSuiteRunCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/commands/UpdateSuiteDefinitionCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/ListSuiteDefinitionsPaginator.js +2 -23
- package/dist-es/pagination/ListSuiteRunsPaginator.js +2 -23
- package/dist-types/commands/CreateSuiteDefinitionCommand.d.ts +6 -21
- package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +6 -21
- package/dist-types/commands/GetEndpointCommand.d.ts +6 -21
- package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +6 -21
- package/dist-types/commands/GetSuiteRunCommand.d.ts +6 -21
- package/dist-types/commands/GetSuiteRunReportCommand.d.ts +6 -21
- package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +6 -21
- package/dist-types/commands/ListSuiteRunsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/StartSuiteRunCommand.d.ts +6 -21
- package/dist-types/commands/StopSuiteRunCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/ListSuiteDefinitionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSuiteRunsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StopSuiteRunCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdateSuiteDefinitionCommand.d.ts +12 -24
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListSuiteDefinitionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListSuiteRunsPaginator.d.ts +3 -3
- package/package.json +11 -11
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UntagResourceCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "IotDeviceAdvisorClient";
|
|
26
|
-
const commandName = "UntagResourceCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "IotSenateService",
|
|
35
|
-
operation: "UntagResource",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UntagResourceCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UntagResourceCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UntagResourceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("IotSenateService", "UntagResource", {})
|
|
19
|
+
.n("IotDeviceAdvisorClient", "UntagResourceCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UntagResourceCommand)
|
|
22
|
+
.de(de_UntagResourceCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UpdateSuiteDefinitionCommand, se_UpdateSuiteDefinitionCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UpdateSuiteDefinitionCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "IotDeviceAdvisorClient";
|
|
26
|
-
const commandName = "UpdateSuiteDefinitionCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "IotSenateService",
|
|
35
|
-
operation: "UpdateSuiteDefinition",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UpdateSuiteDefinitionCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UpdateSuiteDefinitionCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UpdateSuiteDefinitionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("IotSenateService", "UpdateSuiteDefinition", {})
|
|
19
|
+
.n("IotDeviceAdvisorClient", "UpdateSuiteDefinitionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateSuiteDefinitionCommand)
|
|
22
|
+
.de(de_UpdateSuiteDefinitionCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "iotdeviceadvisor",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListSuiteDefinitionsCommand, } from "../commands/ListSuiteDefinitionsCommand";
|
|
2
3
|
import { IotDeviceAdvisorClient } from "../IotDeviceAdvisorClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSuiteDefinitionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSuiteDefinitions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof IotDeviceAdvisorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected IotDeviceAdvisor | IotDeviceAdvisorClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListSuiteDefinitions = createPaginator(IotDeviceAdvisorClient, ListSuiteDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListSuiteRunsCommand, } from "../commands/ListSuiteRunsCommand";
|
|
2
3
|
import { IotDeviceAdvisorClient } from "../IotDeviceAdvisorClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSuiteRunsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSuiteRuns(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof IotDeviceAdvisorClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected IotDeviceAdvisor | IotDeviceAdvisorClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListSuiteRuns = createPaginator(IotDeviceAdvisorClient, ListSuiteRunsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { CreateSuiteDefinitionRequest, CreateSuiteDefinitionResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateSuiteDefinitionCommandInput extends CreateSuiteDefinition
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateSuiteDefinitionCommandOutput extends CreateSuiteDefinitionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateSuiteDefinitionCommand_base: {
|
|
24
|
+
new (input: CreateSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a Device Advisor test suite.</p>
|
|
@@ -78,23 +81,5 @@ export interface CreateSuiteDefinitionCommandOutput extends CreateSuiteDefinitio
|
|
|
78
81
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
79
82
|
*
|
|
80
83
|
*/
|
|
81
|
-
export declare class CreateSuiteDefinitionCommand extends
|
|
82
|
-
readonly input: CreateSuiteDefinitionCommandInput;
|
|
83
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
-
/**
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
constructor(input: CreateSuiteDefinitionCommandInput);
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private serialize;
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
private deserialize;
|
|
84
|
+
export declare class CreateSuiteDefinitionCommand extends CreateSuiteDefinitionCommand_base {
|
|
100
85
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { DeleteSuiteDefinitionRequest, DeleteSuiteDefinitionResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteSuiteDefinitionCommandInput extends DeleteSuiteDefinition
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteSuiteDefinitionCommandOutput extends DeleteSuiteDefinitionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteSuiteDefinitionCommand_base: {
|
|
24
|
+
new (input: DeleteSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes a Device Advisor test suite.</p>
|
|
@@ -56,23 +59,5 @@ export interface DeleteSuiteDefinitionCommandOutput extends DeleteSuiteDefinitio
|
|
|
56
59
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
57
60
|
*
|
|
58
61
|
*/
|
|
59
|
-
export declare class DeleteSuiteDefinitionCommand extends
|
|
60
|
-
readonly input: DeleteSuiteDefinitionCommandInput;
|
|
61
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
-
/**
|
|
63
|
-
* @public
|
|
64
|
-
*/
|
|
65
|
-
constructor(input: DeleteSuiteDefinitionCommandInput);
|
|
66
|
-
/**
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
69
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput>;
|
|
70
|
-
/**
|
|
71
|
-
* @internal
|
|
72
|
-
*/
|
|
73
|
-
private serialize;
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
private deserialize;
|
|
62
|
+
export declare class DeleteSuiteDefinitionCommand extends DeleteSuiteDefinitionCommand_base {
|
|
78
63
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { GetEndpointRequest, GetEndpointResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetEndpointCommandInput extends GetEndpointRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetEndpointCommandOutput extends GetEndpointResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetEndpointCommand_base: {
|
|
24
|
+
new (input: GetEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<GetEndpointCommandInput, GetEndpointCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets information about an Device Advisor endpoint.</p>
|
|
@@ -63,23 +66,5 @@ export interface GetEndpointCommandOutput extends GetEndpointResponse, __Metadat
|
|
|
63
66
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
64
67
|
*
|
|
65
68
|
*/
|
|
66
|
-
export declare class GetEndpointCommand extends
|
|
67
|
-
readonly input: GetEndpointCommandInput;
|
|
68
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
-
/**
|
|
70
|
-
* @public
|
|
71
|
-
*/
|
|
72
|
-
constructor(input: GetEndpointCommandInput);
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEndpointCommandInput, GetEndpointCommandOutput>;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
private serialize;
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
private deserialize;
|
|
69
|
+
export declare class GetEndpointCommand extends GetEndpointCommand_base {
|
|
85
70
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { GetSuiteDefinitionRequest, GetSuiteDefinitionResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetSuiteDefinitionCommandInput extends GetSuiteDefinitionReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetSuiteDefinitionCommand_base: {
|
|
24
|
+
new (input: GetSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets information about a Device Advisor test suite.</p>
|
|
@@ -85,23 +88,5 @@ export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionRespo
|
|
|
85
88
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
86
89
|
*
|
|
87
90
|
*/
|
|
88
|
-
export declare class GetSuiteDefinitionCommand extends
|
|
89
|
-
readonly input: GetSuiteDefinitionCommandInput;
|
|
90
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
constructor(input: GetSuiteDefinitionCommandInput);
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
private serialize;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private deserialize;
|
|
91
|
+
export declare class GetSuiteDefinitionCommand extends GetSuiteDefinitionCommand_base {
|
|
107
92
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { GetSuiteRunRequest, GetSuiteRunResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetSuiteRunCommandInput extends GetSuiteRunRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetSuiteRunCommandOutput extends GetSuiteRunResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetSuiteRunCommand_base: {
|
|
24
|
+
new (input: GetSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunCommandInput, GetSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets information about a Device Advisor test suite run.</p>
|
|
@@ -113,23 +116,5 @@ export interface GetSuiteRunCommandOutput extends GetSuiteRunResponse, __Metadat
|
|
|
113
116
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
114
117
|
*
|
|
115
118
|
*/
|
|
116
|
-
export declare class GetSuiteRunCommand extends
|
|
117
|
-
readonly input: GetSuiteRunCommandInput;
|
|
118
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
constructor(input: GetSuiteRunCommandInput);
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSuiteRunCommandInput, GetSuiteRunCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private serialize;
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
private deserialize;
|
|
119
|
+
export declare class GetSuiteRunCommand extends GetSuiteRunCommand_base {
|
|
135
120
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { GetSuiteRunReportRequest, GetSuiteRunReportResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetSuiteRunReportCommandInput extends GetSuiteRunReportRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetSuiteRunReportCommand_base: {
|
|
24
|
+
new (input: GetSuiteRunReportCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets a report download link for a successful Device Advisor qualifying test suite run.</p>
|
|
@@ -62,23 +65,5 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class GetSuiteRunReportCommand extends
|
|
66
|
-
readonly input: GetSuiteRunReportCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: GetSuiteRunReportCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class GetSuiteRunReportCommand extends GetSuiteRunReportCommand_base {
|
|
84
69
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { ListSuiteDefinitionsRequest, ListSuiteDefinitionsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListSuiteDefinitionsCommandInput extends ListSuiteDefinitionsRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListSuiteDefinitionsCommand_base: {
|
|
24
|
+
new (input: ListSuiteDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the Device Advisor test suites you have created.</p>
|
|
@@ -76,23 +79,5 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR
|
|
|
76
79
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
77
80
|
*
|
|
78
81
|
*/
|
|
79
|
-
export declare class ListSuiteDefinitionsCommand extends
|
|
80
|
-
readonly input: ListSuiteDefinitionsCommandInput;
|
|
81
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
constructor(input: ListSuiteDefinitionsCommandInput);
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput>;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private serialize;
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
private deserialize;
|
|
82
|
+
export declare class ListSuiteDefinitionsCommand extends ListSuiteDefinitionsCommand_base {
|
|
98
83
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { ListSuiteRunsRequest, ListSuiteRunsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListSuiteRunsCommandInput extends ListSuiteRunsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListSuiteRunsCommand_base: {
|
|
24
|
+
new (input: ListSuiteRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists runs of the specified Device Advisor test suite. You can list all runs of the test
|
|
@@ -76,23 +79,5 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met
|
|
|
76
79
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
77
80
|
*
|
|
78
81
|
*/
|
|
79
|
-
export declare class ListSuiteRunsCommand extends
|
|
80
|
-
readonly input: ListSuiteRunsCommandInput;
|
|
81
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
constructor(input: ListSuiteRunsCommandInput);
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput>;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private serialize;
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
private deserialize;
|
|
82
|
+
export declare class ListSuiteRunsCommand extends ListSuiteRunsCommand_base {
|
|
98
83
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the tags attached to an IoT Device Advisor resource.</p>
|
|
@@ -63,23 +66,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
63
66
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
64
67
|
*
|
|
65
68
|
*/
|
|
66
|
-
export declare class ListTagsForResourceCommand extends
|
|
67
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
68
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
-
/**
|
|
70
|
-
* @public
|
|
71
|
-
*/
|
|
72
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
private serialize;
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
private deserialize;
|
|
69
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
85
70
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
4
|
import { StartSuiteRunRequest, StartSuiteRunResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StartSuiteRunCommandInput extends StartSuiteRunRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartSuiteRunCommand_base: {
|
|
24
|
+
new (input: StartSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartSuiteRunCommandInput, StartSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Starts a Device Advisor test suite run.</p>
|
|
@@ -79,23 +82,5 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met
|
|
|
79
82
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
80
83
|
*
|
|
81
84
|
*/
|
|
82
|
-
export declare class StartSuiteRunCommand extends
|
|
83
|
-
readonly input: StartSuiteRunCommandInput;
|
|
84
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
constructor(input: StartSuiteRunCommandInput);
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSuiteRunCommandInput, StartSuiteRunCommandOutput>;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private serialize;
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
private deserialize;
|
|
85
|
+
export declare class StartSuiteRunCommand extends StartSuiteRunCommand_base {
|
|
101
86
|
}
|