@aws-sdk/client-iotdeviceadvisor 3.296.0 → 3.298.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 +2 -3
- package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +2 -3
- package/dist-cjs/commands/GetEndpointCommand.js +2 -3
- package/dist-cjs/commands/GetSuiteDefinitionCommand.js +2 -3
- package/dist-cjs/commands/GetSuiteRunCommand.js +2 -3
- package/dist-cjs/commands/GetSuiteRunReportCommand.js +2 -3
- package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +2 -3
- package/dist-cjs/commands/ListSuiteRunsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/StartSuiteRunCommand.js +2 -3
- package/dist-cjs/commands/StopSuiteRunCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateSuiteDefinitionCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -149
- package/dist-es/commands/CreateSuiteDefinitionCommand.js +2 -3
- package/dist-es/commands/DeleteSuiteDefinitionCommand.js +2 -3
- package/dist-es/commands/GetEndpointCommand.js +2 -3
- package/dist-es/commands/GetSuiteDefinitionCommand.js +2 -3
- package/dist-es/commands/GetSuiteRunCommand.js +2 -3
- package/dist-es/commands/GetSuiteRunReportCommand.js +2 -3
- package/dist-es/commands/ListSuiteDefinitionsCommand.js +2 -3
- package/dist-es/commands/ListSuiteRunsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/StartSuiteRunCommand.js +2 -3
- package/dist-es/commands/StopSuiteRunCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateSuiteDefinitionCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -111
- package/dist-types/IotDeviceAdvisor.d.ts +15 -0
- package/dist-types/IotDeviceAdvisorClient.d.ts +24 -4
- package/dist-types/commands/CreateSuiteDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/GetEndpointCommand.d.ts +16 -0
- package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/GetSuiteRunCommand.d.ts +16 -0
- package/dist-types/commands/GetSuiteRunReportCommand.d.ts +16 -0
- package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListSuiteRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartSuiteRunCommand.d.ts +16 -0
- package/dist-types/commands/StopSuiteRunCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +16 -0
- package/dist-types/models/IotDeviceAdvisorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +112 -148
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListSuiteDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSuiteRunsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -105
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { GetSuiteRunReportRequest, GetSuiteRunReportResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSuiteRunReportCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSuiteRunReportCommandInput extends GetSuiteRunReportRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSuiteRunReportCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a report download link for a successful Device Advisor qualifying test suite run.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">GetSuiteRunReport</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSuiteRunReportCommandInput - {@link GetSuiteRunReportCommandInput}
|
|
35
|
+
* @returns {@link GetSuiteRunReportCommandOutput}
|
|
29
36
|
* @see {@link GetSuiteRunReportCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSuiteRunReportCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons
|
|
|
44
51
|
export declare class GetSuiteRunReportCommand extends $Command<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: GetSuiteRunReportCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetSuiteRunReportCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { ListSuiteDefinitionsRequest, ListSuiteDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSuiteDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSuiteDefinitionsCommandInput extends ListSuiteDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSuiteDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the Device Advisor test suites you have created.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">ListSuiteDefinitions</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListSuiteDefinitionsCommandInput - {@link ListSuiteDefinitionsCommandInput}
|
|
35
|
+
* @returns {@link ListSuiteDefinitionsCommandOutput}
|
|
29
36
|
* @see {@link ListSuiteDefinitionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListSuiteDefinitionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR
|
|
|
41
48
|
export declare class ListSuiteDefinitionsCommand extends $Command<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
42
49
|
readonly input: ListSuiteDefinitionsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListSuiteDefinitionsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { ListSuiteRunsRequest, ListSuiteRunsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSuiteRunsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSuiteRunsCommandInput extends ListSuiteRunsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSuiteRunsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists runs of the specified Device Advisor test suite. You can list all runs of the test
|
|
18
23
|
* suite, or the runs of a specific version of the test suite.</p>
|
|
19
24
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">ListSuiteRuns</a> action.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListSuiteRunsCommandInput - {@link ListSuiteRunsCommandInput}
|
|
36
|
+
* @returns {@link ListSuiteRunsCommandOutput}
|
|
30
37
|
* @see {@link ListSuiteRunsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListSuiteRunsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met
|
|
|
42
49
|
export declare class ListSuiteRunsCommand extends $Command<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
43
50
|
readonly input: ListSuiteRunsCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: ListSuiteRunsCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags attached to an IoT Device Advisor resource.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">ListTagsForResource</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
35
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
29
36
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
44
51
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: ListTagsForResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListTagsForResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { StartSuiteRunRequest, StartSuiteRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartSuiteRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartSuiteRunCommandInput extends StartSuiteRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartSuiteRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a Device Advisor test suite run.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">StartSuiteRun</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartSuiteRunCommandInput - {@link StartSuiteRunCommandInput}
|
|
35
|
+
* @returns {@link StartSuiteRunCommandOutput}
|
|
29
36
|
* @see {@link StartSuiteRunCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartSuiteRunCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met
|
|
|
44
51
|
export declare class StartSuiteRunCommand extends $Command<StartSuiteRunCommandInput, StartSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: StartSuiteRunCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: StartSuiteRunCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSuiteRunCommandInput, StartSuiteRunCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { StopSuiteRunRequest, StopSuiteRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopSuiteRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopSuiteRunCommandInput extends StopSuiteRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopSuiteRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a Device Advisor test suite run that is currently running.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">StopSuiteRun</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StopSuiteRunCommandInput - {@link StopSuiteRunCommandInput}
|
|
35
|
+
* @returns {@link StopSuiteRunCommandOutput}
|
|
29
36
|
* @see {@link StopSuiteRunCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StopSuiteRunCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __Metad
|
|
|
44
51
|
export declare class StopSuiteRunCommand extends $Command<StopSuiteRunCommandInput, StopSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: StopSuiteRunCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: StopSuiteRunCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSuiteRunCommandInput, StopSuiteRunCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds to and modifies existing tags of an IoT Device Advisor resource.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">TagResource</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
44
51
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: TagResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: TagResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from an IoT Device Advisor resource.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">UntagResource</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
35
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
29
36
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
44
51
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
45
52
|
readonly input: UntagResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: UntagResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient";
|
|
5
5
|
import { UpdateSuiteDefinitionRequest, UpdateSuiteDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSuiteDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSuiteDefinitionCommandInput extends UpdateSuiteDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSuiteDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a Device Advisor test suite.</p>
|
|
18
23
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">UpdateSuiteDefinition</a> action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateSuiteDefinitionCommandInput - {@link UpdateSuiteDefinitionCommandInput}
|
|
35
|
+
* @returns {@link UpdateSuiteDefinitionCommandOutput}
|
|
29
36
|
* @see {@link UpdateSuiteDefinitionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateSuiteDefinitionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitio
|
|
|
41
48
|
export declare class UpdateSuiteDefinitionCommand extends $Command<UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig> {
|
|
42
49
|
readonly input: UpdateSuiteDefinitionCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: UpdateSuiteDefinitionCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IotDeviceAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from IotDeviceAdvisor service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class IotDeviceAdvisorServiceException extends __ServiceException {
|