@aws-sdk/client-iotdeviceadvisor 3.299.0 → 3.300.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/commands/CreateSuiteDefinitionCommand.d.ts +19 -0
- package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +3 -0
- package/dist-types/commands/GetEndpointCommand.d.ts +4 -0
- package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/GetSuiteRunCommand.d.ts +4 -0
- package/dist-types/commands/GetSuiteRunReportCommand.d.ts +4 -0
- package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +4 -0
- package/dist-types/commands/ListSuiteRunsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartSuiteRunCommand.d.ts +17 -0
- package/dist-types/commands/StopSuiteRunCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +17 -0
- package/package.json +8 -8
|
@@ -27,6 +27,25 @@ export interface CreateSuiteDefinitionCommandOutput extends CreateSuiteDefinitio
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, CreateSuiteDefinitionCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, CreateSuiteDefinitionCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionConfiguration: {
|
|
32
|
+
* suiteDefinitionName: "STRING_VALUE", // required
|
|
33
|
+
* devices: [
|
|
34
|
+
* {
|
|
35
|
+
* thingArn: "STRING_VALUE",
|
|
36
|
+
* certificateArn: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* intendedForQualification: true || false,
|
|
40
|
+
* isLongDurationTest: true || false,
|
|
41
|
+
* rootGroup: "STRING_VALUE", // required
|
|
42
|
+
* devicePermissionRoleArn: "STRING_VALUE", // required
|
|
43
|
+
* protocol: "MqttV3_1_1" || "MqttV5",
|
|
44
|
+
* },
|
|
45
|
+
* tags: {
|
|
46
|
+
* "<keys>": "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* };
|
|
30
49
|
* const command = new CreateSuiteDefinitionCommand(input);
|
|
31
50
|
* const response = await client.send(command);
|
|
32
51
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteSuiteDefinitionCommandOutput extends DeleteSuiteDefinitio
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, DeleteSuiteDefinitionCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, DeleteSuiteDefinitionCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteSuiteDefinitionCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetEndpointCommandOutput extends GetEndpointResponse, __Metadat
|
|
|
26
26
|
* import { IotDeviceAdvisorClient, GetEndpointCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
27
27
|
* // const { IotDeviceAdvisorClient, GetEndpointCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
28
28
|
* const client = new IotDeviceAdvisorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* thingArn: "STRING_VALUE",
|
|
31
|
+
* certificateArn: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetEndpointCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionRespo
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, GetSuiteDefinitionCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, GetSuiteDefinitionCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteDefinitionVersion: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new GetSuiteDefinitionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface GetSuiteRunCommandOutput extends GetSuiteRunResponse, __Metadat
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, GetSuiteRunCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, GetSuiteRunCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteRunId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new GetSuiteRunCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, GetSuiteRunReportCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, GetSuiteRunReportCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteRunId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new GetSuiteRunReportCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, ListSuiteDefinitionsCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, ListSuiteDefinitionsCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListSuiteDefinitionsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met
|
|
|
28
28
|
* import { IotDeviceAdvisorClient, ListSuiteRunsCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
29
29
|
* // const { IotDeviceAdvisorClient, ListSuiteRunsCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
30
30
|
* const client = new IotDeviceAdvisorClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* suiteDefinitionId: "STRING_VALUE",
|
|
33
|
+
* suiteDefinitionVersion: "STRING_VALUE",
|
|
34
|
+
* maxResults: Number("int"),
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
31
37
|
* const command = new ListSuiteRunsCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* resourceArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,23 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, StartSuiteRunCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, StartSuiteRunCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteDefinitionVersion: "STRING_VALUE",
|
|
33
|
+
* suiteRunConfiguration: {
|
|
34
|
+
* primaryDevice: {
|
|
35
|
+
* thingArn: "STRING_VALUE",
|
|
36
|
+
* certificateArn: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* selectedTestList: [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* parallelRun: true || false,
|
|
42
|
+
* },
|
|
43
|
+
* tags: {
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
30
47
|
* const command = new StartSuiteRunCommand(input);
|
|
31
48
|
* const response = await client.send(command);
|
|
32
49
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __Metad
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, StopSuiteRunCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, StopSuiteRunCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteRunId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new StopSuiteRunCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, TagResourceCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, TagResourceCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* resourceArn: "STRING_VALUE", // required
|
|
32
|
+
* tags: { // required
|
|
33
|
+
* "<keys>": "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
30
36
|
* const command = new TagResourceCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, UntagResourceCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, UntagResourceCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* resourceArn: "STRING_VALUE", // required
|
|
32
|
+
* tagKeys: [ // required
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
30
36
|
* const command = new UntagResourceCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -27,6 +27,23 @@ export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitio
|
|
|
27
27
|
* import { IotDeviceAdvisorClient, UpdateSuiteDefinitionCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import
|
|
28
28
|
* // const { IotDeviceAdvisorClient, UpdateSuiteDefinitionCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import
|
|
29
29
|
* const client = new IotDeviceAdvisorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* suiteDefinitionId: "STRING_VALUE", // required
|
|
32
|
+
* suiteDefinitionConfiguration: {
|
|
33
|
+
* suiteDefinitionName: "STRING_VALUE", // required
|
|
34
|
+
* devices: [
|
|
35
|
+
* {
|
|
36
|
+
* thingArn: "STRING_VALUE",
|
|
37
|
+
* certificateArn: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* intendedForQualification: true || false,
|
|
41
|
+
* isLongDurationTest: true || false,
|
|
42
|
+
* rootGroup: "STRING_VALUE", // required
|
|
43
|
+
* devicePermissionRoleArn: "STRING_VALUE", // required
|
|
44
|
+
* protocol: "MqttV3_1_1" || "MqttV5",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
30
47
|
* const command = new UpdateSuiteDefinitionCommand(input);
|
|
31
48
|
* const response = await client.send(command);
|
|
32
49
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotdeviceadvisor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotdeviceadvisor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|