@aws-sdk/client-iottwinmaker 3.211.0 → 3.213.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/IoTTwinMaker.js +45 -0
- package/dist-cjs/commands/ExecuteQueryCommand.js +46 -0
- package/dist-cjs/commands/GetPricingPlanCommand.js +46 -0
- package/dist-cjs/commands/UpdatePricingPlanCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +129 -9
- package/dist-cjs/pagination/ExecuteQueryPaginator.js +36 -0
- package/dist-cjs/pagination/GetPropertyValuePaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +540 -74
- package/dist-es/IoTTwinMaker.js +45 -0
- package/dist-es/commands/ExecuteQueryCommand.js +42 -0
- package/dist-es/commands/GetPricingPlanCommand.js +42 -0
- package/dist-es/commands/UpdatePricingPlanCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +107 -4
- package/dist-es/pagination/ExecuteQueryPaginator.js +32 -0
- package/dist-es/pagination/GetPropertyValuePaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +533 -73
- package/dist-types/IoTTwinMaker.d.ts +21 -0
- package/dist-types/IoTTwinMakerClient.d.ts +5 -2
- package/dist-types/commands/ExecuteQueryCommand.d.ts +37 -0
- package/dist-types/commands/GetPricingPlanCommand.d.ts +37 -0
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +424 -35
- package/dist-types/pagination/ExecuteQueryPaginator.d.ts +4 -0
- package/dist-types/pagination/GetPropertyValuePaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +51 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetPricingPlanCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +182 -14
- package/dist-types/ts3.4/pagination/ExecuteQueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetPropertyValuePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +28 -28
package/dist-cjs/IoTTwinMaker.js
CHANGED
|
@@ -10,8 +10,10 @@ const DeleteComponentTypeCommand_1 = require("./commands/DeleteComponentTypeComm
|
|
|
10
10
|
const DeleteEntityCommand_1 = require("./commands/DeleteEntityCommand");
|
|
11
11
|
const DeleteSceneCommand_1 = require("./commands/DeleteSceneCommand");
|
|
12
12
|
const DeleteWorkspaceCommand_1 = require("./commands/DeleteWorkspaceCommand");
|
|
13
|
+
const ExecuteQueryCommand_1 = require("./commands/ExecuteQueryCommand");
|
|
13
14
|
const GetComponentTypeCommand_1 = require("./commands/GetComponentTypeCommand");
|
|
14
15
|
const GetEntityCommand_1 = require("./commands/GetEntityCommand");
|
|
16
|
+
const GetPricingPlanCommand_1 = require("./commands/GetPricingPlanCommand");
|
|
15
17
|
const GetPropertyValueCommand_1 = require("./commands/GetPropertyValueCommand");
|
|
16
18
|
const GetPropertyValueHistoryCommand_1 = require("./commands/GetPropertyValueHistoryCommand");
|
|
17
19
|
const GetSceneCommand_1 = require("./commands/GetSceneCommand");
|
|
@@ -25,6 +27,7 @@ const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
|
25
27
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
26
28
|
const UpdateComponentTypeCommand_1 = require("./commands/UpdateComponentTypeCommand");
|
|
27
29
|
const UpdateEntityCommand_1 = require("./commands/UpdateEntityCommand");
|
|
30
|
+
const UpdatePricingPlanCommand_1 = require("./commands/UpdatePricingPlanCommand");
|
|
28
31
|
const UpdateSceneCommand_1 = require("./commands/UpdateSceneCommand");
|
|
29
32
|
const UpdateWorkspaceCommand_1 = require("./commands/UpdateWorkspaceCommand");
|
|
30
33
|
const IoTTwinMakerClient_1 = require("./IoTTwinMakerClient");
|
|
@@ -155,6 +158,20 @@ class IoTTwinMaker extends IoTTwinMakerClient_1.IoTTwinMakerClient {
|
|
|
155
158
|
return this.send(command, optionsOrCb);
|
|
156
159
|
}
|
|
157
160
|
}
|
|
161
|
+
executeQuery(args, optionsOrCb, cb) {
|
|
162
|
+
const command = new ExecuteQueryCommand_1.ExecuteQueryCommand(args);
|
|
163
|
+
if (typeof optionsOrCb === "function") {
|
|
164
|
+
this.send(command, optionsOrCb);
|
|
165
|
+
}
|
|
166
|
+
else if (typeof cb === "function") {
|
|
167
|
+
if (typeof optionsOrCb !== "object")
|
|
168
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
169
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
170
|
+
}
|
|
171
|
+
else {
|
|
172
|
+
return this.send(command, optionsOrCb);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
158
175
|
getComponentType(args, optionsOrCb, cb) {
|
|
159
176
|
const command = new GetComponentTypeCommand_1.GetComponentTypeCommand(args);
|
|
160
177
|
if (typeof optionsOrCb === "function") {
|
|
@@ -183,6 +200,20 @@ class IoTTwinMaker extends IoTTwinMakerClient_1.IoTTwinMakerClient {
|
|
|
183
200
|
return this.send(command, optionsOrCb);
|
|
184
201
|
}
|
|
185
202
|
}
|
|
203
|
+
getPricingPlan(args, optionsOrCb, cb) {
|
|
204
|
+
const command = new GetPricingPlanCommand_1.GetPricingPlanCommand(args);
|
|
205
|
+
if (typeof optionsOrCb === "function") {
|
|
206
|
+
this.send(command, optionsOrCb);
|
|
207
|
+
}
|
|
208
|
+
else if (typeof cb === "function") {
|
|
209
|
+
if (typeof optionsOrCb !== "object")
|
|
210
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
211
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
212
|
+
}
|
|
213
|
+
else {
|
|
214
|
+
return this.send(command, optionsOrCb);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
186
217
|
getPropertyValue(args, optionsOrCb, cb) {
|
|
187
218
|
const command = new GetPropertyValueCommand_1.GetPropertyValueCommand(args);
|
|
188
219
|
if (typeof optionsOrCb === "function") {
|
|
@@ -365,6 +396,20 @@ class IoTTwinMaker extends IoTTwinMakerClient_1.IoTTwinMakerClient {
|
|
|
365
396
|
return this.send(command, optionsOrCb);
|
|
366
397
|
}
|
|
367
398
|
}
|
|
399
|
+
updatePricingPlan(args, optionsOrCb, cb) {
|
|
400
|
+
const command = new UpdatePricingPlanCommand_1.UpdatePricingPlanCommand(args);
|
|
401
|
+
if (typeof optionsOrCb === "function") {
|
|
402
|
+
this.send(command, optionsOrCb);
|
|
403
|
+
}
|
|
404
|
+
else if (typeof cb === "function") {
|
|
405
|
+
if (typeof optionsOrCb !== "object")
|
|
406
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
407
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
408
|
+
}
|
|
409
|
+
else {
|
|
410
|
+
return this.send(command, optionsOrCb);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
368
413
|
updateScene(args, optionsOrCb, cb) {
|
|
369
414
|
const command = new UpdateSceneCommand_1.UpdateSceneCommand(args);
|
|
370
415
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecuteQueryCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class ExecuteQueryCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ExecuteQueryCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "IoTTwinMakerClient";
|
|
28
|
+
const commandName = "ExecuteQueryCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.ExecuteQueryRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.ExecuteQueryResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1ExecuteQueryCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1ExecuteQueryCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.ExecuteQueryCommand = ExecuteQueryCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetPricingPlanCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class GetPricingPlanCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetPricingPlanCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "IoTTwinMakerClient";
|
|
28
|
+
const commandName = "GetPricingPlanCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.GetPricingPlanRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.GetPricingPlanResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1GetPricingPlanCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1GetPricingPlanCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.GetPricingPlanCommand = GetPricingPlanCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdatePricingPlanCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class UpdatePricingPlanCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdatePricingPlanCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "IoTTwinMakerClient";
|
|
28
|
+
const commandName = "UpdatePricingPlanCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.UpdatePricingPlanRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.UpdatePricingPlanResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1UpdatePricingPlanCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1UpdatePricingPlanCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.UpdatePricingPlanCommand = UpdatePricingPlanCommand;
|
|
@@ -10,8 +10,10 @@ tslib_1.__exportStar(require("./DeleteComponentTypeCommand"), exports);
|
|
|
10
10
|
tslib_1.__exportStar(require("./DeleteEntityCommand"), exports);
|
|
11
11
|
tslib_1.__exportStar(require("./DeleteSceneCommand"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./DeleteWorkspaceCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./ExecuteQueryCommand"), exports);
|
|
13
14
|
tslib_1.__exportStar(require("./GetComponentTypeCommand"), exports);
|
|
14
15
|
tslib_1.__exportStar(require("./GetEntityCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./GetPricingPlanCommand"), exports);
|
|
15
17
|
tslib_1.__exportStar(require("./GetPropertyValueCommand"), exports);
|
|
16
18
|
tslib_1.__exportStar(require("./GetPropertyValueHistoryCommand"), exports);
|
|
17
19
|
tslib_1.__exportStar(require("./GetSceneCommand"), exports);
|
|
@@ -25,5 +27,6 @@ tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
|
25
27
|
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
26
28
|
tslib_1.__exportStar(require("./UpdateComponentTypeCommand"), exports);
|
|
27
29
|
tslib_1.__exportStar(require("./UpdateEntityCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./UpdatePricingPlanCommand"), exports);
|
|
28
31
|
tslib_1.__exportStar(require("./UpdateSceneCommand"), exports);
|
|
29
32
|
tslib_1.__exportStar(require("./UpdateWorkspaceCommand"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UpdateEntityRequestFilterSensitiveLog = exports.GetEntityResponseFilterSensitiveLog = exports.CreateEntityRequestFilterSensitiveLog = exports.ComponentUpdateRequestFilterSensitiveLog = exports.ComponentResponseFilterSensitiveLog = exports.ComponentRequestFilterSensitiveLog = void 0;
|
|
3
|
+
exports.DeleteWorkspaceRequestFilterSensitiveLog = exports.DeleteSceneResponseFilterSensitiveLog = exports.DeleteSceneRequestFilterSensitiveLog = exports.DeleteEntityResponseFilterSensitiveLog = exports.DeleteEntityRequestFilterSensitiveLog = exports.DeleteComponentTypeResponseFilterSensitiveLog = exports.DeleteComponentTypeRequestFilterSensitiveLog = exports.CreateWorkspaceResponseFilterSensitiveLog = exports.CreateWorkspaceRequestFilterSensitiveLog = exports.CreateSceneResponseFilterSensitiveLog = exports.CreateSceneRequestFilterSensitiveLog = exports.CreateEntityResponseFilterSensitiveLog = exports.ComponentPropertyGroupRequestFilterSensitiveLog = exports.CreateComponentTypeResponseFilterSensitiveLog = exports.PropertyGroupRequestFilterSensitiveLog = exports.RelationshipFilterSensitiveLog = exports.FunctionRequestFilterSensitiveLog = exports.DataConnectorFilterSensitiveLog = exports.LambdaFunctionFilterSensitiveLog = exports.RelationshipValueFilterSensitiveLog = exports.EntityPropertyReferenceFilterSensitiveLog = exports.ParentEntityUpdateType = exports.ComponentUpdateType = exports.TooManyTagsException = exports.ListEntitiesFilter = exports.ListComponentTypesFilter = exports.OrderByTime = exports.InterpolationType = exports.Order = exports.ConnectorTimeoutException = exports.ConnectorFailureException = exports.UpdateReason = exports.PricingMode = exports.PricingTier = exports.ErrorCode = exports.QueryTimeoutException = exports.ColumnType = exports.PropertyGroupUpdateType = exports.PropertyUpdateType = exports.ServiceQuotaExceededException = exports.State = exports.GroupType = exports.Type = exports.Scope = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.UpdateWorkspaceRequestFilterSensitiveLog = exports.UpdateSceneResponseFilterSensitiveLog = exports.UpdateSceneRequestFilterSensitiveLog = exports.UpdatePricingPlanResponseFilterSensitiveLog = exports.UpdatePricingPlanRequestFilterSensitiveLog = exports.UpdateEntityResponseFilterSensitiveLog = exports.ParentEntityUpdateRequestFilterSensitiveLog = exports.UpdateComponentTypeResponseFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.ListWorkspacesResponseFilterSensitiveLog = exports.WorkspaceSummaryFilterSensitiveLog = exports.ListWorkspacesRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListScenesResponseFilterSensitiveLog = exports.SceneSummaryFilterSensitiveLog = exports.ListScenesRequestFilterSensitiveLog = exports.ListEntitiesResponseFilterSensitiveLog = exports.EntitySummaryFilterSensitiveLog = exports.ListEntitiesRequestFilterSensitiveLog = exports.ListEntitiesFilterFilterSensitiveLog = exports.ListComponentTypesResponseFilterSensitiveLog = exports.ComponentTypeSummaryFilterSensitiveLog = exports.ListComponentTypesRequestFilterSensitiveLog = exports.ListComponentTypesFilterFilterSensitiveLog = exports.GetWorkspaceResponseFilterSensitiveLog = exports.GetWorkspaceRequestFilterSensitiveLog = exports.GetSceneResponseFilterSensitiveLog = exports.GetSceneRequestFilterSensitiveLog = exports.InterpolationParametersFilterSensitiveLog = exports.OrderByFilterSensitiveLog = exports.GetPricingPlanResponseFilterSensitiveLog = exports.PricingPlanFilterSensitiveLog = exports.BundleInformationFilterSensitiveLog = exports.GetPricingPlanRequestFilterSensitiveLog = exports.ComponentPropertyGroupResponseFilterSensitiveLog = exports.GetEntityRequestFilterSensitiveLog = exports.StatusFilterSensitiveLog = exports.ErrorDetailsFilterSensitiveLog = exports.PropertyGroupResponseFilterSensitiveLog = exports.FunctionResponseFilterSensitiveLog = exports.GetComponentTypeRequestFilterSensitiveLog = exports.ExecuteQueryResponseFilterSensitiveLog = exports.RowFilterSensitiveLog = exports.ColumnDescriptionFilterSensitiveLog = exports.ExecuteQueryRequestFilterSensitiveLog = exports.DeleteWorkspaceResponseFilterSensitiveLog = void 0;
|
|
5
|
+
exports.UpdateEntityRequestFilterSensitiveLog = exports.GetEntityResponseFilterSensitiveLog = exports.CreateEntityRequestFilterSensitiveLog = exports.ComponentUpdateRequestFilterSensitiveLog = exports.ComponentResponseFilterSensitiveLog = exports.ComponentRequestFilterSensitiveLog = exports.PropertyResponseFilterSensitiveLog = exports.PropertyRequestFilterSensitiveLog = exports.UpdateComponentTypeRequestFilterSensitiveLog = exports.GetComponentTypeResponseFilterSensitiveLog = exports.CreateComponentTypeRequestFilterSensitiveLog = exports.GetPropertyValueResponseFilterSensitiveLog = exports.BatchPutPropertyValuesResponseFilterSensitiveLog = exports.PropertyDefinitionResponseFilterSensitiveLog = exports.PropertyDefinitionRequestFilterSensitiveLog = exports.BatchPutPropertyErrorEntryFilterSensitiveLog = exports.GetPropertyValueHistoryResponseFilterSensitiveLog = exports.BatchPutPropertyValuesRequestFilterSensitiveLog = exports.GetPropertyValueRequestFilterSensitiveLog = exports.BatchPutPropertyErrorFilterSensitiveLog = exports.TabularConditionsFilterSensitiveLog = exports.PropertyValueHistoryFilterSensitiveLog = exports.PropertyValueEntryFilterSensitiveLog = exports.GetPropertyValueHistoryRequestFilterSensitiveLog = exports.DataTypeFilterSensitiveLog = exports.PropertyValueFilterSensitiveLog = exports.PropertyLatestValueFilterSensitiveLog = exports.PropertyFilterFilterSensitiveLog = exports.DataValueFilterSensitiveLog = exports.UpdateWorkspaceResponseFilterSensitiveLog = void 0;
|
|
6
6
|
const IoTTwinMakerServiceException_1 = require("./IoTTwinMakerServiceException");
|
|
7
7
|
class AccessDeniedException extends IoTTwinMakerServiceException_1.IoTTwinMakerServiceException {
|
|
8
8
|
constructor(opts) {
|
|
@@ -98,6 +98,10 @@ var Type;
|
|
|
98
98
|
Type["RELATIONSHIP"] = "RELATIONSHIP";
|
|
99
99
|
Type["STRING"] = "STRING";
|
|
100
100
|
})(Type = exports.Type || (exports.Type = {}));
|
|
101
|
+
var GroupType;
|
|
102
|
+
(function (GroupType) {
|
|
103
|
+
GroupType["TABULAR"] = "TABULAR";
|
|
104
|
+
})(GroupType = exports.GroupType || (exports.GroupType = {}));
|
|
101
105
|
var State;
|
|
102
106
|
(function (State) {
|
|
103
107
|
State["ACTIVE"] = "ACTIVE";
|
|
@@ -125,11 +129,58 @@ var PropertyUpdateType;
|
|
|
125
129
|
PropertyUpdateType["DELETE"] = "DELETE";
|
|
126
130
|
PropertyUpdateType["UPDATE"] = "UPDATE";
|
|
127
131
|
})(PropertyUpdateType = exports.PropertyUpdateType || (exports.PropertyUpdateType = {}));
|
|
132
|
+
var PropertyGroupUpdateType;
|
|
133
|
+
(function (PropertyGroupUpdateType) {
|
|
134
|
+
PropertyGroupUpdateType["CREATE"] = "CREATE";
|
|
135
|
+
PropertyGroupUpdateType["DELETE"] = "DELETE";
|
|
136
|
+
PropertyGroupUpdateType["UPDATE"] = "UPDATE";
|
|
137
|
+
})(PropertyGroupUpdateType = exports.PropertyGroupUpdateType || (exports.PropertyGroupUpdateType = {}));
|
|
138
|
+
var ColumnType;
|
|
139
|
+
(function (ColumnType) {
|
|
140
|
+
ColumnType["EDGE"] = "EDGE";
|
|
141
|
+
ColumnType["NODE"] = "NODE";
|
|
142
|
+
ColumnType["VALUE"] = "VALUE";
|
|
143
|
+
})(ColumnType = exports.ColumnType || (exports.ColumnType = {}));
|
|
144
|
+
class QueryTimeoutException extends IoTTwinMakerServiceException_1.IoTTwinMakerServiceException {
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "QueryTimeoutException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
this.name = "QueryTimeoutException";
|
|
152
|
+
this.$fault = "client";
|
|
153
|
+
this.$retryable = {};
|
|
154
|
+
Object.setPrototypeOf(this, QueryTimeoutException.prototype);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
exports.QueryTimeoutException = QueryTimeoutException;
|
|
128
158
|
var ErrorCode;
|
|
129
159
|
(function (ErrorCode) {
|
|
130
160
|
ErrorCode["INTERNAL_FAILURE"] = "INTERNAL_FAILURE";
|
|
131
161
|
ErrorCode["VALIDATION_ERROR"] = "VALIDATION_ERROR";
|
|
132
162
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
163
|
+
var PricingTier;
|
|
164
|
+
(function (PricingTier) {
|
|
165
|
+
PricingTier["TIER_1"] = "TIER_1";
|
|
166
|
+
PricingTier["TIER_2"] = "TIER_2";
|
|
167
|
+
PricingTier["TIER_3"] = "TIER_3";
|
|
168
|
+
PricingTier["TIER_4"] = "TIER_4";
|
|
169
|
+
})(PricingTier = exports.PricingTier || (exports.PricingTier = {}));
|
|
170
|
+
var PricingMode;
|
|
171
|
+
(function (PricingMode) {
|
|
172
|
+
PricingMode["BASIC"] = "BASIC";
|
|
173
|
+
PricingMode["STANDARD"] = "STANDARD";
|
|
174
|
+
PricingMode["TIERED_BUNDLE"] = "TIERED_BUNDLE";
|
|
175
|
+
})(PricingMode = exports.PricingMode || (exports.PricingMode = {}));
|
|
176
|
+
var UpdateReason;
|
|
177
|
+
(function (UpdateReason) {
|
|
178
|
+
UpdateReason["DEFAULT"] = "DEFAULT";
|
|
179
|
+
UpdateReason["ENTITY_COUNT_UPDATE"] = "ENTITY_COUNT_UPDATE";
|
|
180
|
+
UpdateReason["OVERWRITTEN"] = "OVERWRITTEN";
|
|
181
|
+
UpdateReason["PRICING_MODE_UPDATE"] = "PRICING_MODE_UPDATE";
|
|
182
|
+
UpdateReason["PRICING_TIER_UPDATE"] = "PRICING_TIER_UPDATE";
|
|
183
|
+
})(UpdateReason = exports.UpdateReason || (exports.UpdateReason = {}));
|
|
133
184
|
class ConnectorFailureException extends IoTTwinMakerServiceException_1.IoTTwinMakerServiceException {
|
|
134
185
|
constructor(opts) {
|
|
135
186
|
super({
|
|
@@ -156,6 +207,11 @@ class ConnectorTimeoutException extends IoTTwinMakerServiceException_1.IoTTwinMa
|
|
|
156
207
|
}
|
|
157
208
|
}
|
|
158
209
|
exports.ConnectorTimeoutException = ConnectorTimeoutException;
|
|
210
|
+
var Order;
|
|
211
|
+
(function (Order) {
|
|
212
|
+
Order["ASCENDING"] = "ASCENDING";
|
|
213
|
+
Order["DESCENDING"] = "DESCENDING";
|
|
214
|
+
})(Order = exports.Order || (exports.Order = {}));
|
|
159
215
|
var InterpolationType;
|
|
160
216
|
(function (InterpolationType) {
|
|
161
217
|
InterpolationType["LINEAR"] = "LINEAR";
|
|
@@ -237,10 +293,18 @@ const RelationshipFilterSensitiveLog = (obj) => ({
|
|
|
237
293
|
...obj,
|
|
238
294
|
});
|
|
239
295
|
exports.RelationshipFilterSensitiveLog = RelationshipFilterSensitiveLog;
|
|
296
|
+
const PropertyGroupRequestFilterSensitiveLog = (obj) => ({
|
|
297
|
+
...obj,
|
|
298
|
+
});
|
|
299
|
+
exports.PropertyGroupRequestFilterSensitiveLog = PropertyGroupRequestFilterSensitiveLog;
|
|
240
300
|
const CreateComponentTypeResponseFilterSensitiveLog = (obj) => ({
|
|
241
301
|
...obj,
|
|
242
302
|
});
|
|
243
303
|
exports.CreateComponentTypeResponseFilterSensitiveLog = CreateComponentTypeResponseFilterSensitiveLog;
|
|
304
|
+
const ComponentPropertyGroupRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
});
|
|
307
|
+
exports.ComponentPropertyGroupRequestFilterSensitiveLog = ComponentPropertyGroupRequestFilterSensitiveLog;
|
|
244
308
|
const CreateEntityResponseFilterSensitiveLog = (obj) => ({
|
|
245
309
|
...obj,
|
|
246
310
|
});
|
|
@@ -293,6 +357,22 @@ const DeleteWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
|
293
357
|
...obj,
|
|
294
358
|
});
|
|
295
359
|
exports.DeleteWorkspaceResponseFilterSensitiveLog = DeleteWorkspaceResponseFilterSensitiveLog;
|
|
360
|
+
const ExecuteQueryRequestFilterSensitiveLog = (obj) => ({
|
|
361
|
+
...obj,
|
|
362
|
+
});
|
|
363
|
+
exports.ExecuteQueryRequestFilterSensitiveLog = ExecuteQueryRequestFilterSensitiveLog;
|
|
364
|
+
const ColumnDescriptionFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
exports.ColumnDescriptionFilterSensitiveLog = ColumnDescriptionFilterSensitiveLog;
|
|
368
|
+
const RowFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
exports.RowFilterSensitiveLog = RowFilterSensitiveLog;
|
|
372
|
+
const ExecuteQueryResponseFilterSensitiveLog = (obj) => ({
|
|
373
|
+
...obj,
|
|
374
|
+
});
|
|
375
|
+
exports.ExecuteQueryResponseFilterSensitiveLog = ExecuteQueryResponseFilterSensitiveLog;
|
|
296
376
|
const GetComponentTypeRequestFilterSensitiveLog = (obj) => ({
|
|
297
377
|
...obj,
|
|
298
378
|
});
|
|
@@ -301,6 +381,10 @@ const FunctionResponseFilterSensitiveLog = (obj) => ({
|
|
|
301
381
|
...obj,
|
|
302
382
|
});
|
|
303
383
|
exports.FunctionResponseFilterSensitiveLog = FunctionResponseFilterSensitiveLog;
|
|
384
|
+
const PropertyGroupResponseFilterSensitiveLog = (obj) => ({
|
|
385
|
+
...obj,
|
|
386
|
+
});
|
|
387
|
+
exports.PropertyGroupResponseFilterSensitiveLog = PropertyGroupResponseFilterSensitiveLog;
|
|
304
388
|
const ErrorDetailsFilterSensitiveLog = (obj) => ({
|
|
305
389
|
...obj,
|
|
306
390
|
});
|
|
@@ -313,10 +397,30 @@ const GetEntityRequestFilterSensitiveLog = (obj) => ({
|
|
|
313
397
|
...obj,
|
|
314
398
|
});
|
|
315
399
|
exports.GetEntityRequestFilterSensitiveLog = GetEntityRequestFilterSensitiveLog;
|
|
316
|
-
const
|
|
400
|
+
const ComponentPropertyGroupResponseFilterSensitiveLog = (obj) => ({
|
|
317
401
|
...obj,
|
|
318
402
|
});
|
|
319
|
-
exports.
|
|
403
|
+
exports.ComponentPropertyGroupResponseFilterSensitiveLog = ComponentPropertyGroupResponseFilterSensitiveLog;
|
|
404
|
+
const GetPricingPlanRequestFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
exports.GetPricingPlanRequestFilterSensitiveLog = GetPricingPlanRequestFilterSensitiveLog;
|
|
408
|
+
const BundleInformationFilterSensitiveLog = (obj) => ({
|
|
409
|
+
...obj,
|
|
410
|
+
});
|
|
411
|
+
exports.BundleInformationFilterSensitiveLog = BundleInformationFilterSensitiveLog;
|
|
412
|
+
const PricingPlanFilterSensitiveLog = (obj) => ({
|
|
413
|
+
...obj,
|
|
414
|
+
});
|
|
415
|
+
exports.PricingPlanFilterSensitiveLog = PricingPlanFilterSensitiveLog;
|
|
416
|
+
const GetPricingPlanResponseFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
});
|
|
419
|
+
exports.GetPricingPlanResponseFilterSensitiveLog = GetPricingPlanResponseFilterSensitiveLog;
|
|
420
|
+
const OrderByFilterSensitiveLog = (obj) => ({
|
|
421
|
+
...obj,
|
|
422
|
+
});
|
|
423
|
+
exports.OrderByFilterSensitiveLog = OrderByFilterSensitiveLog;
|
|
320
424
|
const InterpolationParametersFilterSensitiveLog = (obj) => ({
|
|
321
425
|
...obj,
|
|
322
426
|
});
|
|
@@ -445,6 +549,14 @@ const UpdateEntityResponseFilterSensitiveLog = (obj) => ({
|
|
|
445
549
|
...obj,
|
|
446
550
|
});
|
|
447
551
|
exports.UpdateEntityResponseFilterSensitiveLog = UpdateEntityResponseFilterSensitiveLog;
|
|
552
|
+
const UpdatePricingPlanRequestFilterSensitiveLog = (obj) => ({
|
|
553
|
+
...obj,
|
|
554
|
+
});
|
|
555
|
+
exports.UpdatePricingPlanRequestFilterSensitiveLog = UpdatePricingPlanRequestFilterSensitiveLog;
|
|
556
|
+
const UpdatePricingPlanResponseFilterSensitiveLog = (obj) => ({
|
|
557
|
+
...obj,
|
|
558
|
+
});
|
|
559
|
+
exports.UpdatePricingPlanResponseFilterSensitiveLog = UpdatePricingPlanResponseFilterSensitiveLog;
|
|
448
560
|
const UpdateSceneRequestFilterSensitiveLog = (obj) => ({
|
|
449
561
|
...obj,
|
|
450
562
|
});
|
|
@@ -485,10 +597,6 @@ const GetPropertyValueHistoryRequestFilterSensitiveLog = (obj) => ({
|
|
|
485
597
|
...obj,
|
|
486
598
|
});
|
|
487
599
|
exports.GetPropertyValueHistoryRequestFilterSensitiveLog = GetPropertyValueHistoryRequestFilterSensitiveLog;
|
|
488
|
-
const GetPropertyValueResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
-
...obj,
|
|
490
|
-
});
|
|
491
|
-
exports.GetPropertyValueResponseFilterSensitiveLog = GetPropertyValueResponseFilterSensitiveLog;
|
|
492
600
|
const PropertyValueEntryFilterSensitiveLog = (obj) => ({
|
|
493
601
|
...obj,
|
|
494
602
|
});
|
|
@@ -497,10 +605,18 @@ const PropertyValueHistoryFilterSensitiveLog = (obj) => ({
|
|
|
497
605
|
...obj,
|
|
498
606
|
});
|
|
499
607
|
exports.PropertyValueHistoryFilterSensitiveLog = PropertyValueHistoryFilterSensitiveLog;
|
|
608
|
+
const TabularConditionsFilterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
exports.TabularConditionsFilterSensitiveLog = TabularConditionsFilterSensitiveLog;
|
|
500
612
|
const BatchPutPropertyErrorFilterSensitiveLog = (obj) => ({
|
|
501
613
|
...obj,
|
|
502
614
|
});
|
|
503
615
|
exports.BatchPutPropertyErrorFilterSensitiveLog = BatchPutPropertyErrorFilterSensitiveLog;
|
|
616
|
+
const GetPropertyValueRequestFilterSensitiveLog = (obj) => ({
|
|
617
|
+
...obj,
|
|
618
|
+
});
|
|
619
|
+
exports.GetPropertyValueRequestFilterSensitiveLog = GetPropertyValueRequestFilterSensitiveLog;
|
|
504
620
|
const BatchPutPropertyValuesRequestFilterSensitiveLog = (obj) => ({
|
|
505
621
|
...obj,
|
|
506
622
|
});
|
|
@@ -525,6 +641,10 @@ const BatchPutPropertyValuesResponseFilterSensitiveLog = (obj) => ({
|
|
|
525
641
|
...obj,
|
|
526
642
|
});
|
|
527
643
|
exports.BatchPutPropertyValuesResponseFilterSensitiveLog = BatchPutPropertyValuesResponseFilterSensitiveLog;
|
|
644
|
+
const GetPropertyValueResponseFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
exports.GetPropertyValueResponseFilterSensitiveLog = GetPropertyValueResponseFilterSensitiveLog;
|
|
528
648
|
const CreateComponentTypeRequestFilterSensitiveLog = (obj) => ({
|
|
529
649
|
...obj,
|
|
530
650
|
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateExecuteQuery = void 0;
|
|
4
|
+
const ExecuteQueryCommand_1 = require("../commands/ExecuteQueryCommand");
|
|
5
|
+
const IoTTwinMaker_1 = require("../IoTTwinMaker");
|
|
6
|
+
const IoTTwinMakerClient_1 = require("../IoTTwinMakerClient");
|
|
7
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.send(new ExecuteQueryCommand_1.ExecuteQueryCommand(input), ...args);
|
|
9
|
+
};
|
|
10
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
+
return await client.executeQuery(input, ...args);
|
|
12
|
+
};
|
|
13
|
+
async function* paginateExecuteQuery(config, input, ...additionalArguments) {
|
|
14
|
+
let token = config.startingToken || undefined;
|
|
15
|
+
let hasNext = true;
|
|
16
|
+
let page;
|
|
17
|
+
while (hasNext) {
|
|
18
|
+
input.nextToken = token;
|
|
19
|
+
input["maxResults"] = config.pageSize;
|
|
20
|
+
if (config.client instanceof IoTTwinMaker_1.IoTTwinMaker) {
|
|
21
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else if (config.client instanceof IoTTwinMakerClient_1.IoTTwinMakerClient) {
|
|
24
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
throw new Error("Invalid client, expected IoTTwinMaker | IoTTwinMakerClient");
|
|
28
|
+
}
|
|
29
|
+
yield page;
|
|
30
|
+
const prevToken = token;
|
|
31
|
+
token = page.nextToken;
|
|
32
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
exports.paginateExecuteQuery = paginateExecuteQuery;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateGetPropertyValue = void 0;
|
|
4
|
+
const GetPropertyValueCommand_1 = require("../commands/GetPropertyValueCommand");
|
|
5
|
+
const IoTTwinMaker_1 = require("../IoTTwinMaker");
|
|
6
|
+
const IoTTwinMakerClient_1 = require("../IoTTwinMakerClient");
|
|
7
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.send(new GetPropertyValueCommand_1.GetPropertyValueCommand(input), ...args);
|
|
9
|
+
};
|
|
10
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
+
return await client.getPropertyValue(input, ...args);
|
|
12
|
+
};
|
|
13
|
+
async function* paginateGetPropertyValue(config, input, ...additionalArguments) {
|
|
14
|
+
let token = config.startingToken || undefined;
|
|
15
|
+
let hasNext = true;
|
|
16
|
+
let page;
|
|
17
|
+
while (hasNext) {
|
|
18
|
+
input.nextToken = token;
|
|
19
|
+
input["maxResults"] = config.pageSize;
|
|
20
|
+
if (config.client instanceof IoTTwinMaker_1.IoTTwinMaker) {
|
|
21
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else if (config.client instanceof IoTTwinMakerClient_1.IoTTwinMakerClient) {
|
|
24
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
throw new Error("Invalid client, expected IoTTwinMaker | IoTTwinMakerClient");
|
|
28
|
+
}
|
|
29
|
+
yield page;
|
|
30
|
+
const prevToken = token;
|
|
31
|
+
token = page.nextToken;
|
|
32
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
exports.paginateGetPropertyValue = paginateGetPropertyValue;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./ExecuteQueryPaginator"), exports);
|
|
4
5
|
tslib_1.__exportStar(require("./GetPropertyValueHistoryPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./GetPropertyValuePaginator"), exports);
|
|
5
7
|
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
6
8
|
tslib_1.__exportStar(require("./ListComponentTypesPaginator"), exports);
|
|
7
9
|
tslib_1.__exportStar(require("./ListEntitiesPaginator"), exports);
|