@aws-sdk/client-iotdeviceadvisor 3.490.0 → 3.495.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/IotDeviceAdvisor.js +1 -39
- package/dist-cjs/IotDeviceAdvisorClient.js +1 -43
- package/dist-cjs/commands/CreateSuiteDefinitionCommand.js +1 -28
- package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +1 -28
- package/dist-cjs/commands/GetEndpointCommand.js +1 -28
- package/dist-cjs/commands/GetSuiteDefinitionCommand.js +1 -28
- package/dist-cjs/commands/GetSuiteRunCommand.js +1 -28
- package/dist-cjs/commands/GetSuiteRunReportCommand.js +1 -28
- package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +1 -28
- package/dist-cjs/commands/ListSuiteRunsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/StartSuiteRunCommand.js +1 -28
- package/dist-cjs/commands/StopSuiteRunCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateSuiteDefinitionCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -17
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1496 -11
- package/dist-cjs/models/IotDeviceAdvisorServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -103
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListSuiteDefinitionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListSuiteRunsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -6
- package/dist-cjs/protocols/Aws_restJson1.js +1 -950
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IotDeviceAdvisorServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class IotDeviceAdvisorServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, IotDeviceAdvisorServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.IotDeviceAdvisorServiceException = IotDeviceAdvisorServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,103 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TestCaseScenarioType = exports.TestCaseScenarioStatus = exports.Status = exports.SuiteRunStatus = exports.ResourceNotFoundException = exports.ValidationException = exports.InternalServerException = exports.Protocol = exports.ConflictException = exports.AuthenticationMethod = void 0;
|
|
4
|
-
const IotDeviceAdvisorServiceException_1 = require("./IotDeviceAdvisorServiceException");
|
|
5
|
-
exports.AuthenticationMethod = {
|
|
6
|
-
SignatureVersion4: "SignatureVersion4",
|
|
7
|
-
X509ClientCertificate: "X509ClientCertificate",
|
|
8
|
-
};
|
|
9
|
-
class ConflictException extends IotDeviceAdvisorServiceException_1.IotDeviceAdvisorServiceException {
|
|
10
|
-
constructor(opts) {
|
|
11
|
-
super({
|
|
12
|
-
name: "ConflictException",
|
|
13
|
-
$fault: "client",
|
|
14
|
-
...opts,
|
|
15
|
-
});
|
|
16
|
-
this.name = "ConflictException";
|
|
17
|
-
this.$fault = "client";
|
|
18
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
exports.ConflictException = ConflictException;
|
|
22
|
-
exports.Protocol = {
|
|
23
|
-
MqttV3_1_1: "MqttV3_1_1",
|
|
24
|
-
MqttV3_1_1_OverWebSocket: "MqttV3_1_1_OverWebSocket",
|
|
25
|
-
MqttV5: "MqttV5",
|
|
26
|
-
MqttV5_OverWebSocket: "MqttV5_OverWebSocket",
|
|
27
|
-
};
|
|
28
|
-
class InternalServerException extends IotDeviceAdvisorServiceException_1.IotDeviceAdvisorServiceException {
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "InternalServerException",
|
|
32
|
-
$fault: "server",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
this.name = "InternalServerException";
|
|
36
|
-
this.$fault = "server";
|
|
37
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
exports.InternalServerException = InternalServerException;
|
|
41
|
-
class ValidationException extends IotDeviceAdvisorServiceException_1.IotDeviceAdvisorServiceException {
|
|
42
|
-
constructor(opts) {
|
|
43
|
-
super({
|
|
44
|
-
name: "ValidationException",
|
|
45
|
-
$fault: "client",
|
|
46
|
-
...opts,
|
|
47
|
-
});
|
|
48
|
-
this.name = "ValidationException";
|
|
49
|
-
this.$fault = "client";
|
|
50
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
exports.ValidationException = ValidationException;
|
|
54
|
-
class ResourceNotFoundException extends IotDeviceAdvisorServiceException_1.IotDeviceAdvisorServiceException {
|
|
55
|
-
constructor(opts) {
|
|
56
|
-
super({
|
|
57
|
-
name: "ResourceNotFoundException",
|
|
58
|
-
$fault: "client",
|
|
59
|
-
...opts,
|
|
60
|
-
});
|
|
61
|
-
this.name = "ResourceNotFoundException";
|
|
62
|
-
this.$fault = "client";
|
|
63
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
67
|
-
exports.SuiteRunStatus = {
|
|
68
|
-
CANCELED: "CANCELED",
|
|
69
|
-
ERROR: "ERROR",
|
|
70
|
-
FAIL: "FAIL",
|
|
71
|
-
PASS: "PASS",
|
|
72
|
-
PASS_WITH_WARNINGS: "PASS_WITH_WARNINGS",
|
|
73
|
-
PENDING: "PENDING",
|
|
74
|
-
RUNNING: "RUNNING",
|
|
75
|
-
STOPPED: "STOPPED",
|
|
76
|
-
STOPPING: "STOPPING",
|
|
77
|
-
};
|
|
78
|
-
exports.Status = {
|
|
79
|
-
CANCELED: "CANCELED",
|
|
80
|
-
ERROR: "ERROR",
|
|
81
|
-
FAIL: "FAIL",
|
|
82
|
-
PASS: "PASS",
|
|
83
|
-
PASS_WITH_WARNINGS: "PASS_WITH_WARNINGS",
|
|
84
|
-
PENDING: "PENDING",
|
|
85
|
-
RUNNING: "RUNNING",
|
|
86
|
-
STOPPED: "STOPPED",
|
|
87
|
-
STOPPING: "STOPPING",
|
|
88
|
-
};
|
|
89
|
-
exports.TestCaseScenarioStatus = {
|
|
90
|
-
CANCELED: "CANCELED",
|
|
91
|
-
ERROR: "ERROR",
|
|
92
|
-
FAIL: "FAIL",
|
|
93
|
-
PASS: "PASS",
|
|
94
|
-
PASS_WITH_WARNINGS: "PASS_WITH_WARNINGS",
|
|
95
|
-
PENDING: "PENDING",
|
|
96
|
-
RUNNING: "RUNNING",
|
|
97
|
-
STOPPED: "STOPPED",
|
|
98
|
-
STOPPING: "STOPPING",
|
|
99
|
-
};
|
|
100
|
-
exports.TestCaseScenarioType = {
|
|
101
|
-
Advanced: "Advanced",
|
|
102
|
-
Basic: "Basic",
|
|
103
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListSuiteDefinitions = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListSuiteDefinitionsCommand_1 = require("../commands/ListSuiteDefinitionsCommand");
|
|
6
|
-
const IotDeviceAdvisorClient_1 = require("../IotDeviceAdvisorClient");
|
|
7
|
-
exports.paginateListSuiteDefinitions = (0, core_1.createPaginator)(IotDeviceAdvisorClient_1.IotDeviceAdvisorClient, ListSuiteDefinitionsCommand_1.ListSuiteDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListSuiteRuns = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListSuiteRunsCommand_1 = require("../commands/ListSuiteRunsCommand");
|
|
6
|
-
const IotDeviceAdvisorClient_1 = require("../IotDeviceAdvisorClient");
|
|
7
|
-
exports.paginateListSuiteRuns = (0, core_1.createPaginator)(IotDeviceAdvisorClient_1.IotDeviceAdvisorClient, ListSuiteRunsCommand_1.ListSuiteRunsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListSuiteDefinitionsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListSuiteRunsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|