@aws-sdk/client-iotdeviceadvisor 3.533.0 → 3.535.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-types/IotDeviceAdvisor.d.ts +4 -1
- package/dist-types/IotDeviceAdvisorClient.d.ts +1 -1
- package/dist-types/commands/CreateSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/GetEndpointCommand.d.ts +2 -1
- package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/GetSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/GetSuiteRunReportCommand.d.ts +2 -1
- package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSuiteRunsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/StopSuiteRunCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +134 -134
- package/dist-types/ts3.4/IotDeviceAdvisor.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopSuiteRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSuiteDefinitionCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -30,6 +30,7 @@ export interface IotDeviceAdvisor {
|
|
|
30
30
|
/**
|
|
31
31
|
* @see {@link GetEndpointCommand}
|
|
32
32
|
*/
|
|
33
|
+
getEndpoint(): Promise<GetEndpointCommandOutput>;
|
|
33
34
|
getEndpoint(args: GetEndpointCommandInput, options?: __HttpHandlerOptions): Promise<GetEndpointCommandOutput>;
|
|
34
35
|
getEndpoint(args: GetEndpointCommandInput, cb: (err: any, data?: GetEndpointCommandOutput) => void): void;
|
|
35
36
|
getEndpoint(args: GetEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEndpointCommandOutput) => void): void;
|
|
@@ -54,12 +55,14 @@ export interface IotDeviceAdvisor {
|
|
|
54
55
|
/**
|
|
55
56
|
* @see {@link ListSuiteDefinitionsCommand}
|
|
56
57
|
*/
|
|
58
|
+
listSuiteDefinitions(): Promise<ListSuiteDefinitionsCommandOutput>;
|
|
57
59
|
listSuiteDefinitions(args: ListSuiteDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSuiteDefinitionsCommandOutput>;
|
|
58
60
|
listSuiteDefinitions(args: ListSuiteDefinitionsCommandInput, cb: (err: any, data?: ListSuiteDefinitionsCommandOutput) => void): void;
|
|
59
61
|
listSuiteDefinitions(args: ListSuiteDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSuiteDefinitionsCommandOutput) => void): void;
|
|
60
62
|
/**
|
|
61
63
|
* @see {@link ListSuiteRunsCommand}
|
|
62
64
|
*/
|
|
65
|
+
listSuiteRuns(): Promise<ListSuiteRunsCommandOutput>;
|
|
63
66
|
listSuiteRuns(args: ListSuiteRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListSuiteRunsCommandOutput>;
|
|
64
67
|
listSuiteRuns(args: ListSuiteRunsCommandInput, cb: (err: any, data?: ListSuiteRunsCommandOutput) => void): void;
|
|
65
68
|
listSuiteRuns(args: ListSuiteRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSuiteRunsCommandOutput) => void): void;
|
|
@@ -101,7 +104,6 @@ export interface IotDeviceAdvisor {
|
|
|
101
104
|
updateSuiteDefinition(args: UpdateSuiteDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSuiteDefinitionCommandOutput) => void): void;
|
|
102
105
|
}
|
|
103
106
|
/**
|
|
104
|
-
* @public
|
|
105
107
|
* <p>Amazon Web Services IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT
|
|
106
108
|
* devices during device software development. Device Advisor provides pre-built tests that you
|
|
107
109
|
* can use to validate IoT devices for reliable and secure connectivity with Amazon Web Services IoT Core
|
|
@@ -111,6 +113,7 @@ export interface IotDeviceAdvisor {
|
|
|
111
113
|
* qualification reports to submit to the Amazon Web Services Partner Network to get your device
|
|
112
114
|
* qualified for the Amazon Web Services Partner Device Catalog without the need to send your device in
|
|
113
115
|
* and wait for it to be tested.</p>
|
|
116
|
+
* @public
|
|
114
117
|
*/
|
|
115
118
|
export declare class IotDeviceAdvisor extends IotDeviceAdvisorClient implements IotDeviceAdvisor {
|
|
116
119
|
}
|
|
@@ -165,7 +165,6 @@ export type IotDeviceAdvisorClientResolvedConfigType = __SmithyResolvedConfigura
|
|
|
165
165
|
export interface IotDeviceAdvisorClientResolvedConfig extends IotDeviceAdvisorClientResolvedConfigType {
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
|
-
* @public
|
|
169
168
|
* <p>Amazon Web Services IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT
|
|
170
169
|
* devices during device software development. Device Advisor provides pre-built tests that you
|
|
171
170
|
* can use to validate IoT devices for reliable and secure connectivity with Amazon Web Services IoT Core
|
|
@@ -175,6 +174,7 @@ export interface IotDeviceAdvisorClientResolvedConfig extends IotDeviceAdvisorCl
|
|
|
175
174
|
* qualification reports to submit to the Amazon Web Services Partner Network to get your device
|
|
176
175
|
* qualified for the Amazon Web Services Partner Device Catalog without the need to send your device in
|
|
177
176
|
* and wait for it to be tested.</p>
|
|
177
|
+
* @public
|
|
178
178
|
*/
|
|
179
179
|
export declare class IotDeviceAdvisorClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IotDeviceAdvisorClientResolvedConfig> {
|
|
180
180
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateSuiteDefinitionCommandOutput extends CreateSuiteDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateSuiteDefinitionCommand_base: {
|
|
24
24
|
new (input: CreateSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSuiteDefinitionCommandInput, CreateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a Device Advisor test suite.</p>
|
|
30
30
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">CreateSuiteDefinition</a> action.</p>
|
|
31
31
|
* @example
|
|
@@ -80,6 +80,7 @@ declare const CreateSuiteDefinitionCommand_base: {
|
|
|
80
80
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class CreateSuiteDefinitionCommand extends CreateSuiteDefinitionCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteSuiteDefinitionCommandOutput extends DeleteSuiteDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteSuiteDefinitionCommand_base: {
|
|
24
24
|
new (input: DeleteSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSuiteDefinitionCommandInput, DeleteSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a Device Advisor test suite.</p>
|
|
30
30
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">DeleteSuiteDefinition</a> action.</p>
|
|
31
31
|
* @example
|
|
@@ -58,6 +58,7 @@ declare const DeleteSuiteDefinitionCommand_base: {
|
|
|
58
58
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
59
59
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
60
60
|
*
|
|
61
|
+
* @public
|
|
61
62
|
*/
|
|
62
63
|
export declare class DeleteSuiteDefinitionCommand extends DeleteSuiteDefinitionCommand_base {
|
|
63
64
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEndpointCommandOutput extends GetEndpointResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEndpointCommand_base: {
|
|
24
24
|
new (input: GetEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<GetEndpointCommandInput, GetEndpointCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetEndpointCommandInput]): import("@smithy/smithy-client").CommandImpl<GetEndpointCommandInput, GetEndpointCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about an Device Advisor endpoint.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -65,6 +65,7 @@ declare const GetEndpointCommand_base: {
|
|
|
65
65
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class GetEndpointCommand extends GetEndpointCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSuiteDefinitionCommand_base: {
|
|
24
24
|
new (input: GetSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteDefinitionCommandInput, GetSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about a Device Advisor test suite.</p>
|
|
30
30
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">GetSuiteDefinition</a> action.</p>
|
|
31
31
|
* @example
|
|
@@ -87,6 +87,7 @@ declare const GetSuiteDefinitionCommand_base: {
|
|
|
87
87
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class GetSuiteDefinitionCommand extends GetSuiteDefinitionCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSuiteRunCommandOutput extends GetSuiteRunResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSuiteRunCommand_base: {
|
|
24
24
|
new (input: GetSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunCommandInput, GetSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunCommandInput, GetSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about a Device Advisor test suite run.</p>
|
|
30
30
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">GetSuiteRun</a> action.</p>
|
|
31
31
|
* @example
|
|
@@ -115,6 +115,7 @@ declare const GetSuiteRunCommand_base: {
|
|
|
115
115
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
116
116
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
117
117
|
*
|
|
118
|
+
* @public
|
|
118
119
|
*/
|
|
119
120
|
export declare class GetSuiteRunCommand extends GetSuiteRunCommand_base {
|
|
120
121
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetSuiteRunReportCommand_base: {
|
|
24
24
|
new (input: GetSuiteRunReportCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetSuiteRunReportCommandInput): import("@smithy/smithy-client").CommandImpl<GetSuiteRunReportCommandInput, GetSuiteRunReportCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets a report download link for a successful Device Advisor qualifying test suite run.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const GetSuiteRunReportCommand_base: {
|
|
|
64
64
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class GetSuiteRunReportCommand extends GetSuiteRunReportCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSuiteDefinitionsCommand_base: {
|
|
24
24
|
new (input: ListSuiteDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSuiteDefinitionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the Device Advisor test suites you have created.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -78,6 +78,7 @@ declare const ListSuiteDefinitionsCommand_base: {
|
|
|
78
78
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListSuiteDefinitionsCommand extends ListSuiteDefinitionsCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSuiteRunsCommand_base: {
|
|
24
24
|
new (input: ListSuiteRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSuiteRunsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists runs of the specified Device Advisor test suite. You can list all runs of the test
|
|
30
30
|
* suite, or the runs of a specific version of the test suite.</p>
|
|
31
31
|
* <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>
|
|
@@ -78,6 +78,7 @@ declare const ListSuiteRunsCommand_base: {
|
|
|
78
78
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListSuiteRunsCommand extends ListSuiteRunsCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags attached to an IoT Device Advisor resource.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -65,6 +65,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
65
65
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartSuiteRunCommand_base: {
|
|
24
24
|
new (input: StartSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartSuiteRunCommandInput, StartSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartSuiteRunCommandInput, StartSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts a Device Advisor test suite run.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -81,6 +81,7 @@ declare const StartSuiteRunCommand_base: {
|
|
|
81
81
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class StartSuiteRunCommand extends StartSuiteRunCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopSuiteRunCommand_base: {
|
|
24
24
|
new (input: StopSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<StopSuiteRunCommandInput, StopSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopSuiteRunCommandInput): import("@smithy/smithy-client").CommandImpl<StopSuiteRunCommandInput, StopSuiteRunCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stops a Device Advisor test suite run that is currently running.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -62,6 +62,7 @@ declare const StopSuiteRunCommand_base: {
|
|
|
62
62
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class StopSuiteRunCommand extends StopSuiteRunCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds to and modifies existing tags of an IoT Device Advisor resource.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const TagResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from an IoT Device Advisor resource.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const UntagResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateSuiteDefinitionCommand_base: {
|
|
24
24
|
new (input: UpdateSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateSuiteDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput, IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a Device Advisor test suite.</p>
|
|
30
30
|
* <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>
|
|
31
31
|
* @example
|
|
@@ -80,6 +80,7 @@ declare const UpdateSuiteDefinitionCommand_base: {
|
|
|
80
80
|
* @throws {@link IotDeviceAdvisorServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from IotDeviceAdvisor service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class UpdateSuiteDefinitionCommand extends UpdateSuiteDefinitionCommand_base {
|
|
85
86
|
}
|