@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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
2
3
|
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
3
4
|
/**
|
|
4
5
|
* <p>Access is denied.</p>
|
|
@@ -166,6 +167,22 @@ export declare enum Type {
|
|
|
166
167
|
RELATIONSHIP = "RELATIONSHIP",
|
|
167
168
|
STRING = "STRING"
|
|
168
169
|
}
|
|
170
|
+
export declare enum GroupType {
|
|
171
|
+
TABULAR = "TABULAR"
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p/>
|
|
175
|
+
*/
|
|
176
|
+
export interface PropertyGroupRequest {
|
|
177
|
+
/**
|
|
178
|
+
* <p>The group type.</p>
|
|
179
|
+
*/
|
|
180
|
+
groupType?: GroupType | string;
|
|
181
|
+
/**
|
|
182
|
+
* <p>The names of properties.</p>
|
|
183
|
+
*/
|
|
184
|
+
propertyNames?: string[];
|
|
185
|
+
}
|
|
169
186
|
export declare enum State {
|
|
170
187
|
ACTIVE = "ACTIVE",
|
|
171
188
|
CREATING = "CREATING",
|
|
@@ -203,6 +220,28 @@ export declare enum PropertyUpdateType {
|
|
|
203
220
|
DELETE = "DELETE",
|
|
204
221
|
UPDATE = "UPDATE"
|
|
205
222
|
}
|
|
223
|
+
export declare enum PropertyGroupUpdateType {
|
|
224
|
+
CREATE = "CREATE",
|
|
225
|
+
DELETE = "DELETE",
|
|
226
|
+
UPDATE = "UPDATE"
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* <p/>
|
|
230
|
+
*/
|
|
231
|
+
export interface ComponentPropertyGroupRequest {
|
|
232
|
+
/**
|
|
233
|
+
* <p>The group type.</p>
|
|
234
|
+
*/
|
|
235
|
+
groupType?: GroupType | string;
|
|
236
|
+
/**
|
|
237
|
+
* <p>The property names.</p>
|
|
238
|
+
*/
|
|
239
|
+
propertyNames?: string[];
|
|
240
|
+
/**
|
|
241
|
+
* <p>The update type.</p>
|
|
242
|
+
*/
|
|
243
|
+
updateType?: PropertyGroupUpdateType | string;
|
|
244
|
+
}
|
|
206
245
|
export interface CreateEntityResponse {
|
|
207
246
|
/**
|
|
208
247
|
* <p>The ID of the entity.</p>
|
|
@@ -345,6 +384,78 @@ export interface DeleteWorkspaceRequest {
|
|
|
345
384
|
}
|
|
346
385
|
export interface DeleteWorkspaceResponse {
|
|
347
386
|
}
|
|
387
|
+
export interface ExecuteQueryRequest {
|
|
388
|
+
/**
|
|
389
|
+
* <p>The ID of the workspace.</p>
|
|
390
|
+
*/
|
|
391
|
+
workspaceId: string | undefined;
|
|
392
|
+
/**
|
|
393
|
+
* <p>The query statement.</p>
|
|
394
|
+
*/
|
|
395
|
+
queryStatement: string | undefined;
|
|
396
|
+
/**
|
|
397
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
398
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
399
|
+
*/
|
|
400
|
+
maxResults?: number;
|
|
401
|
+
/**
|
|
402
|
+
* <p>The string that specifies the next page of results.</p>
|
|
403
|
+
*/
|
|
404
|
+
nextToken?: string;
|
|
405
|
+
}
|
|
406
|
+
export declare enum ColumnType {
|
|
407
|
+
EDGE = "EDGE",
|
|
408
|
+
NODE = "NODE",
|
|
409
|
+
VALUE = "VALUE"
|
|
410
|
+
}
|
|
411
|
+
/**
|
|
412
|
+
* <p>A description of the column in the query results.</p>
|
|
413
|
+
*/
|
|
414
|
+
export interface ColumnDescription {
|
|
415
|
+
/**
|
|
416
|
+
* <p>The name of the column description.</p>
|
|
417
|
+
*/
|
|
418
|
+
name?: string;
|
|
419
|
+
/**
|
|
420
|
+
* <p>The type of the column description.</p>
|
|
421
|
+
*/
|
|
422
|
+
type?: ColumnType | string;
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* <p>Represents a single row in the query results.</p>
|
|
426
|
+
*/
|
|
427
|
+
export interface Row {
|
|
428
|
+
/**
|
|
429
|
+
* <p>The data in a row of query results.</p>
|
|
430
|
+
*/
|
|
431
|
+
rowData?: __DocumentType[];
|
|
432
|
+
}
|
|
433
|
+
export interface ExecuteQueryResponse {
|
|
434
|
+
/**
|
|
435
|
+
* <p>A list of ColumnDescription objects.</p>
|
|
436
|
+
*/
|
|
437
|
+
columnDescriptions?: ColumnDescription[];
|
|
438
|
+
/**
|
|
439
|
+
* <p>Represents a single row in the query results.</p>
|
|
440
|
+
*/
|
|
441
|
+
rows?: Row[];
|
|
442
|
+
/**
|
|
443
|
+
* <p>The string that specifies the next page of results.</p>
|
|
444
|
+
*/
|
|
445
|
+
nextToken?: string;
|
|
446
|
+
}
|
|
447
|
+
/**
|
|
448
|
+
* <p>The query timeout exception.</p>
|
|
449
|
+
*/
|
|
450
|
+
export declare class QueryTimeoutException extends __BaseException {
|
|
451
|
+
readonly name: "QueryTimeoutException";
|
|
452
|
+
readonly $fault: "client";
|
|
453
|
+
$retryable: {};
|
|
454
|
+
/**
|
|
455
|
+
* @internal
|
|
456
|
+
*/
|
|
457
|
+
constructor(opts: __ExceptionOptionType<QueryTimeoutException, __BaseException>);
|
|
458
|
+
}
|
|
348
459
|
export interface GetComponentTypeRequest {
|
|
349
460
|
/**
|
|
350
461
|
* <p>The ID of the workspace that contains the component type.</p>
|
|
@@ -376,6 +487,23 @@ export interface FunctionResponse {
|
|
|
376
487
|
*/
|
|
377
488
|
isInherited?: boolean;
|
|
378
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* <p>The property group response</p>
|
|
492
|
+
*/
|
|
493
|
+
export interface PropertyGroupResponse {
|
|
494
|
+
/**
|
|
495
|
+
* <p>The group types.</p>
|
|
496
|
+
*/
|
|
497
|
+
groupType: GroupType | string | undefined;
|
|
498
|
+
/**
|
|
499
|
+
* <p>The names of properties.</p>
|
|
500
|
+
*/
|
|
501
|
+
propertyNames: string[] | undefined;
|
|
502
|
+
/**
|
|
503
|
+
* <p>A Boolean value that specifies whether the property group is inherited from a parent entity</p>
|
|
504
|
+
*/
|
|
505
|
+
isInherited: boolean | undefined;
|
|
506
|
+
}
|
|
379
507
|
export declare enum ErrorCode {
|
|
380
508
|
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
381
509
|
VALIDATION_ERROR = "VALIDATION_ERROR"
|
|
@@ -416,6 +544,95 @@ export interface GetEntityRequest {
|
|
|
416
544
|
*/
|
|
417
545
|
entityId: string | undefined;
|
|
418
546
|
}
|
|
547
|
+
/**
|
|
548
|
+
* <p>The component property group response.</p>
|
|
549
|
+
*/
|
|
550
|
+
export interface ComponentPropertyGroupResponse {
|
|
551
|
+
/**
|
|
552
|
+
* <p>The group type.</p>
|
|
553
|
+
*/
|
|
554
|
+
groupType: GroupType | string | undefined;
|
|
555
|
+
/**
|
|
556
|
+
* <p>The names of properties</p>
|
|
557
|
+
*/
|
|
558
|
+
propertyNames: string[] | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* <p>A Boolean value that specifies whether the property group is inherited from a parent entity</p>
|
|
561
|
+
*/
|
|
562
|
+
isInherited: boolean | undefined;
|
|
563
|
+
}
|
|
564
|
+
export interface GetPricingPlanRequest {
|
|
565
|
+
}
|
|
566
|
+
export declare enum PricingTier {
|
|
567
|
+
TIER_1 = "TIER_1",
|
|
568
|
+
TIER_2 = "TIER_2",
|
|
569
|
+
TIER_3 = "TIER_3",
|
|
570
|
+
TIER_4 = "TIER_4"
|
|
571
|
+
}
|
|
572
|
+
/**
|
|
573
|
+
* <p>Information about pricing bundle.</p>
|
|
574
|
+
*/
|
|
575
|
+
export interface BundleInformation {
|
|
576
|
+
/**
|
|
577
|
+
* <p>The bundle names.</p>
|
|
578
|
+
*/
|
|
579
|
+
bundleNames: string[] | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>The pricing tier.</p>
|
|
582
|
+
*/
|
|
583
|
+
pricingTier?: PricingTier | string;
|
|
584
|
+
}
|
|
585
|
+
export declare enum PricingMode {
|
|
586
|
+
BASIC = "BASIC",
|
|
587
|
+
STANDARD = "STANDARD",
|
|
588
|
+
TIERED_BUNDLE = "TIERED_BUNDLE"
|
|
589
|
+
}
|
|
590
|
+
export declare enum UpdateReason {
|
|
591
|
+
DEFAULT = "DEFAULT",
|
|
592
|
+
ENTITY_COUNT_UPDATE = "ENTITY_COUNT_UPDATE",
|
|
593
|
+
OVERWRITTEN = "OVERWRITTEN",
|
|
594
|
+
PRICING_MODE_UPDATE = "PRICING_MODE_UPDATE",
|
|
595
|
+
PRICING_TIER_UPDATE = "PRICING_TIER_UPDATE"
|
|
596
|
+
}
|
|
597
|
+
/**
|
|
598
|
+
* <p>The pricing plan.</p>
|
|
599
|
+
*/
|
|
600
|
+
export interface PricingPlan {
|
|
601
|
+
/**
|
|
602
|
+
* <p>The billable entity count.</p>
|
|
603
|
+
*/
|
|
604
|
+
billableEntityCount?: number;
|
|
605
|
+
/**
|
|
606
|
+
* <p>The pricing plan's bundle information.</p>
|
|
607
|
+
*/
|
|
608
|
+
bundleInformation?: BundleInformation;
|
|
609
|
+
/**
|
|
610
|
+
* <p>The effective date and time of the pricing plan.</p>
|
|
611
|
+
*/
|
|
612
|
+
effectiveDateTime: Date | undefined;
|
|
613
|
+
/**
|
|
614
|
+
* <p>The pricing mode.</p>
|
|
615
|
+
*/
|
|
616
|
+
pricingMode: PricingMode | string | undefined;
|
|
617
|
+
/**
|
|
618
|
+
* <p>The set date and time for updating a pricing plan.</p>
|
|
619
|
+
*/
|
|
620
|
+
updateDateTime: Date | undefined;
|
|
621
|
+
/**
|
|
622
|
+
* <p>The update reason, for changing a pricing plan.</p>
|
|
623
|
+
*/
|
|
624
|
+
updateReason: UpdateReason | string | undefined;
|
|
625
|
+
}
|
|
626
|
+
export interface GetPricingPlanResponse {
|
|
627
|
+
/**
|
|
628
|
+
* <p>The chosen pricing plan for the current billing cycle.</p>
|
|
629
|
+
*/
|
|
630
|
+
currentPricingPlan: PricingPlan | undefined;
|
|
631
|
+
/**
|
|
632
|
+
* <p>The pending pricing plan.</p>
|
|
633
|
+
*/
|
|
634
|
+
pendingPricingPlan?: PricingPlan;
|
|
635
|
+
}
|
|
419
636
|
/**
|
|
420
637
|
* <p>The connector failed.</p>
|
|
421
638
|
*/
|
|
@@ -438,27 +655,22 @@ export declare class ConnectorTimeoutException extends __BaseException {
|
|
|
438
655
|
*/
|
|
439
656
|
constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
|
|
440
657
|
}
|
|
441
|
-
export
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
componentTypeId?: string;
|
|
450
|
-
/**
|
|
451
|
-
* <p>The ID of the entity whose property values the operation returns.</p>
|
|
452
|
-
*/
|
|
453
|
-
entityId?: string;
|
|
658
|
+
export declare enum Order {
|
|
659
|
+
ASCENDING = "ASCENDING",
|
|
660
|
+
DESCENDING = "DESCENDING"
|
|
661
|
+
}
|
|
662
|
+
/**
|
|
663
|
+
* <p>Filter criteria that orders the return output. It can be sorted in ascending or descending order.</p>
|
|
664
|
+
*/
|
|
665
|
+
export interface OrderBy {
|
|
454
666
|
/**
|
|
455
|
-
* <p>The
|
|
667
|
+
* <p>The set order that filters results.</p>
|
|
456
668
|
*/
|
|
457
|
-
|
|
669
|
+
order?: Order | string;
|
|
458
670
|
/**
|
|
459
|
-
* <p>The
|
|
671
|
+
* <p>The property name.</p>
|
|
460
672
|
*/
|
|
461
|
-
|
|
673
|
+
propertyName: string | undefined;
|
|
462
674
|
}
|
|
463
675
|
export declare enum InterpolationType {
|
|
464
676
|
LINEAR = "LINEAR"
|
|
@@ -623,7 +835,8 @@ export interface ListComponentTypesRequest {
|
|
|
623
835
|
*/
|
|
624
836
|
nextToken?: string;
|
|
625
837
|
/**
|
|
626
|
-
* <p>The maximum number of results to
|
|
838
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
839
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
627
840
|
*/
|
|
628
841
|
maxResults?: number;
|
|
629
842
|
}
|
|
@@ -733,7 +946,8 @@ export interface ListEntitiesRequest {
|
|
|
733
946
|
*/
|
|
734
947
|
filters?: ListEntitiesFilter[];
|
|
735
948
|
/**
|
|
736
|
-
* <p>The maximum number of results to
|
|
949
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
950
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
737
951
|
*/
|
|
738
952
|
maxResults?: number;
|
|
739
953
|
/**
|
|
@@ -851,7 +1065,8 @@ export interface ListTagsForResourceRequest {
|
|
|
851
1065
|
*/
|
|
852
1066
|
resourceARN: string | undefined;
|
|
853
1067
|
/**
|
|
854
|
-
* <p>The maximum number of results to
|
|
1068
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
1069
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
855
1070
|
*/
|
|
856
1071
|
maxResults?: number;
|
|
857
1072
|
/**
|
|
@@ -871,7 +1086,8 @@ export interface ListTagsForResourceResponse {
|
|
|
871
1086
|
}
|
|
872
1087
|
export interface ListWorkspacesRequest {
|
|
873
1088
|
/**
|
|
874
|
-
* <p>The maximum number of results to
|
|
1089
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
1090
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
875
1091
|
*/
|
|
876
1092
|
maxResults?: number;
|
|
877
1093
|
/**
|
|
@@ -999,6 +1215,26 @@ export interface UpdateEntityResponse {
|
|
|
999
1215
|
*/
|
|
1000
1216
|
state: State | string | undefined;
|
|
1001
1217
|
}
|
|
1218
|
+
export interface UpdatePricingPlanRequest {
|
|
1219
|
+
/**
|
|
1220
|
+
* <p>The pricing mode.</p>
|
|
1221
|
+
*/
|
|
1222
|
+
pricingMode: PricingMode | string | undefined;
|
|
1223
|
+
/**
|
|
1224
|
+
* <p>The bundle names.</p>
|
|
1225
|
+
*/
|
|
1226
|
+
bundleNames?: string[];
|
|
1227
|
+
}
|
|
1228
|
+
export interface UpdatePricingPlanResponse {
|
|
1229
|
+
/**
|
|
1230
|
+
* <p>Update the current pricing plan.</p>
|
|
1231
|
+
*/
|
|
1232
|
+
currentPricingPlan: PricingPlan | undefined;
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>Update the pending pricing plan.</p>
|
|
1235
|
+
*/
|
|
1236
|
+
pendingPricingPlan?: PricingPlan;
|
|
1237
|
+
}
|
|
1002
1238
|
export interface UpdateSceneRequest {
|
|
1003
1239
|
/**
|
|
1004
1240
|
* <p>The ID of the workspace that contains the scene.</p>
|
|
@@ -1250,7 +1486,8 @@ export interface GetPropertyValueHistoryRequest {
|
|
|
1250
1486
|
*/
|
|
1251
1487
|
nextToken?: string;
|
|
1252
1488
|
/**
|
|
1253
|
-
* <p>The maximum number of results to return.</p>
|
|
1489
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
1490
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
1254
1491
|
*/
|
|
1255
1492
|
maxResults?: number;
|
|
1256
1493
|
/**
|
|
@@ -1259,22 +1496,15 @@ export interface GetPropertyValueHistoryRequest {
|
|
|
1259
1496
|
orderByTime?: OrderByTime | string;
|
|
1260
1497
|
/**
|
|
1261
1498
|
* <p>The ISO8601 DateTime of the earliest property value to return.</p>
|
|
1262
|
-
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/
|
|
1499
|
+
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html">PropertyValue</a>.</p>
|
|
1263
1500
|
*/
|
|
1264
1501
|
startTime?: string;
|
|
1265
1502
|
/**
|
|
1266
1503
|
* <p>The ISO8601 DateTime of the latest property value to return.</p>
|
|
1267
|
-
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/
|
|
1504
|
+
* <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html">PropertyValue</a>.</p>
|
|
1268
1505
|
*/
|
|
1269
1506
|
endTime?: string;
|
|
1270
1507
|
}
|
|
1271
|
-
export interface GetPropertyValueResponse {
|
|
1272
|
-
/**
|
|
1273
|
-
* <p>An object that maps strings to the properties and latest property values in the response. Each string
|
|
1274
|
-
* in the mapping must be unique to this object.</p>
|
|
1275
|
-
*/
|
|
1276
|
-
propertyValues: Record<string, PropertyLatestValue> | undefined;
|
|
1277
|
-
}
|
|
1278
1508
|
/**
|
|
1279
1509
|
* <p>An object that specifies information about time series property values. This object is used and consumed by the <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_BatchPutPropertyValues.html">BatchPutPropertyValues</a> action.</p>
|
|
1280
1510
|
*/
|
|
@@ -1301,6 +1531,22 @@ export interface PropertyValueHistory {
|
|
|
1301
1531
|
*/
|
|
1302
1532
|
values?: PropertyValue[];
|
|
1303
1533
|
}
|
|
1534
|
+
/**
|
|
1535
|
+
* <p>The tabular conditions.</p>
|
|
1536
|
+
*/
|
|
1537
|
+
export interface TabularConditions {
|
|
1538
|
+
/**
|
|
1539
|
+
* <p>Filter criteria that orders the output. It can be sorted in ascending or descending order.</p>
|
|
1540
|
+
*/
|
|
1541
|
+
orderBy?: OrderBy[];
|
|
1542
|
+
/**
|
|
1543
|
+
* <p>You can filter the request using various logical operators and a key-value format. For example:</p>
|
|
1544
|
+
* <p>
|
|
1545
|
+
* <code>{"key": "serverType", "value": "webServer"}</code>
|
|
1546
|
+
* </p>
|
|
1547
|
+
*/
|
|
1548
|
+
propertyFilters?: PropertyFilter[];
|
|
1549
|
+
}
|
|
1304
1550
|
/**
|
|
1305
1551
|
* <p>An error returned by the <code>BatchPutProperty</code> action.</p>
|
|
1306
1552
|
*/
|
|
@@ -1318,6 +1564,45 @@ export interface BatchPutPropertyError {
|
|
|
1318
1564
|
*/
|
|
1319
1565
|
entry: PropertyValueEntry | undefined;
|
|
1320
1566
|
}
|
|
1567
|
+
export interface GetPropertyValueRequest {
|
|
1568
|
+
/**
|
|
1569
|
+
* <p>The name of the component whose property values the operation returns.</p>
|
|
1570
|
+
*/
|
|
1571
|
+
componentName?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* <p>The ID of the component type whose property values the operation returns.</p>
|
|
1574
|
+
*/
|
|
1575
|
+
componentTypeId?: string;
|
|
1576
|
+
/**
|
|
1577
|
+
* <p>The ID of the entity whose property values the operation returns.</p>
|
|
1578
|
+
*/
|
|
1579
|
+
entityId?: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* <p>The properties whose values the operation returns.</p>
|
|
1582
|
+
*/
|
|
1583
|
+
selectedProperties: string[] | undefined;
|
|
1584
|
+
/**
|
|
1585
|
+
* <p>The ID of the workspace whose values the operation returns.</p>
|
|
1586
|
+
*/
|
|
1587
|
+
workspaceId: string | undefined;
|
|
1588
|
+
/**
|
|
1589
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
1590
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
1591
|
+
*/
|
|
1592
|
+
maxResults?: number;
|
|
1593
|
+
/**
|
|
1594
|
+
* <p>The string that specifies the next page of results.</p>
|
|
1595
|
+
*/
|
|
1596
|
+
nextToken?: string;
|
|
1597
|
+
/**
|
|
1598
|
+
* <p>The property group name.</p>
|
|
1599
|
+
*/
|
|
1600
|
+
propertyGroupName?: string;
|
|
1601
|
+
/**
|
|
1602
|
+
* <p>The tabular conditions.</p>
|
|
1603
|
+
*/
|
|
1604
|
+
tabularConditions?: TabularConditions;
|
|
1605
|
+
}
|
|
1321
1606
|
export interface BatchPutPropertyValuesRequest {
|
|
1322
1607
|
/**
|
|
1323
1608
|
* <p>The ID of the workspace that contains the properties to set.</p>
|
|
@@ -1435,6 +1720,21 @@ export interface BatchPutPropertyValuesResponse {
|
|
|
1435
1720
|
*/
|
|
1436
1721
|
errorEntries: BatchPutPropertyErrorEntry[] | undefined;
|
|
1437
1722
|
}
|
|
1723
|
+
export interface GetPropertyValueResponse {
|
|
1724
|
+
/**
|
|
1725
|
+
* <p>An object that maps strings to the properties and latest property values in the response. Each string
|
|
1726
|
+
* in the mapping must be unique to this object.</p>
|
|
1727
|
+
*/
|
|
1728
|
+
propertyValues?: Record<string, PropertyLatestValue>;
|
|
1729
|
+
/**
|
|
1730
|
+
* <p>The string that specifies the next page of results.</p>
|
|
1731
|
+
*/
|
|
1732
|
+
nextToken?: string;
|
|
1733
|
+
/**
|
|
1734
|
+
* <p>A table of property values.</p>
|
|
1735
|
+
*/
|
|
1736
|
+
tabularPropertyValues?: Record<string, DataValue>[][];
|
|
1737
|
+
}
|
|
1438
1738
|
export interface CreateComponentTypeRequest {
|
|
1439
1739
|
/**
|
|
1440
1740
|
* <p>The ID of the workspace that contains the component type.</p>
|
|
@@ -1471,6 +1771,10 @@ export interface CreateComponentTypeRequest {
|
|
|
1471
1771
|
* <p>Metadata that you can use to manage the component type.</p>
|
|
1472
1772
|
*/
|
|
1473
1773
|
tags?: Record<string, string>;
|
|
1774
|
+
/**
|
|
1775
|
+
* <p/>
|
|
1776
|
+
*/
|
|
1777
|
+
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
1474
1778
|
}
|
|
1475
1779
|
export interface GetComponentTypeResponse {
|
|
1476
1780
|
/**
|
|
@@ -1529,6 +1833,11 @@ export interface GetComponentTypeResponse {
|
|
|
1529
1833
|
* <p>The current status of the component type.</p>
|
|
1530
1834
|
*/
|
|
1531
1835
|
status?: Status;
|
|
1836
|
+
/**
|
|
1837
|
+
* <p>The maximum number of results to return at one time. The default is 25.</p>
|
|
1838
|
+
* <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
|
|
1839
|
+
*/
|
|
1840
|
+
propertyGroups?: Record<string, PropertyGroupResponse>;
|
|
1532
1841
|
}
|
|
1533
1842
|
export interface UpdateComponentTypeRequest {
|
|
1534
1843
|
/**
|
|
@@ -1562,6 +1871,10 @@ export interface UpdateComponentTypeRequest {
|
|
|
1562
1871
|
* in the mapping must be unique to this object.</p>
|
|
1563
1872
|
*/
|
|
1564
1873
|
functions?: Record<string, FunctionRequest>;
|
|
1874
|
+
/**
|
|
1875
|
+
* <p>The property groups</p>
|
|
1876
|
+
*/
|
|
1877
|
+
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
1565
1878
|
}
|
|
1566
1879
|
/**
|
|
1567
1880
|
* <p>An object that sets information about a property.</p>
|
|
@@ -1610,6 +1923,10 @@ export interface ComponentRequest {
|
|
|
1610
1923
|
* in the mapping must be unique to this object.</p>
|
|
1611
1924
|
*/
|
|
1612
1925
|
properties?: Record<string, PropertyRequest>;
|
|
1926
|
+
/**
|
|
1927
|
+
* <p>The property groups.</p>
|
|
1928
|
+
*/
|
|
1929
|
+
propertyGroups?: Record<string, ComponentPropertyGroupRequest>;
|
|
1613
1930
|
}
|
|
1614
1931
|
/**
|
|
1615
1932
|
* <p>An object that returns information about a component type create or update request.</p>
|
|
@@ -1640,6 +1957,10 @@ export interface ComponentResponse {
|
|
|
1640
1957
|
* in the mapping must be unique to this object.</p>
|
|
1641
1958
|
*/
|
|
1642
1959
|
properties?: Record<string, PropertyResponse>;
|
|
1960
|
+
/**
|
|
1961
|
+
* <p>The property groups.</p>
|
|
1962
|
+
*/
|
|
1963
|
+
propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
|
|
1643
1964
|
}
|
|
1644
1965
|
/**
|
|
1645
1966
|
* <p>The component update request.</p>
|
|
@@ -1662,6 +1983,10 @@ export interface ComponentUpdateRequest {
|
|
|
1662
1983
|
* in the mapping must be unique to this object.</p>
|
|
1663
1984
|
*/
|
|
1664
1985
|
propertyUpdates?: Record<string, PropertyRequest>;
|
|
1986
|
+
/**
|
|
1987
|
+
* <p>The property group updates.</p>
|
|
1988
|
+
*/
|
|
1989
|
+
propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest>;
|
|
1665
1990
|
}
|
|
1666
1991
|
export interface CreateEntityRequest {
|
|
1667
1992
|
/**
|
|
@@ -1792,10 +2117,18 @@ export declare const FunctionRequestFilterSensitiveLog: (obj: FunctionRequest) =
|
|
|
1792
2117
|
* @internal
|
|
1793
2118
|
*/
|
|
1794
2119
|
export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
|
|
2120
|
+
/**
|
|
2121
|
+
* @internal
|
|
2122
|
+
*/
|
|
2123
|
+
export declare const PropertyGroupRequestFilterSensitiveLog: (obj: PropertyGroupRequest) => any;
|
|
1795
2124
|
/**
|
|
1796
2125
|
* @internal
|
|
1797
2126
|
*/
|
|
1798
2127
|
export declare const CreateComponentTypeResponseFilterSensitiveLog: (obj: CreateComponentTypeResponse) => any;
|
|
2128
|
+
/**
|
|
2129
|
+
* @internal
|
|
2130
|
+
*/
|
|
2131
|
+
export declare const ComponentPropertyGroupRequestFilterSensitiveLog: (obj: ComponentPropertyGroupRequest) => any;
|
|
1799
2132
|
/**
|
|
1800
2133
|
* @internal
|
|
1801
2134
|
*/
|
|
@@ -1848,6 +2181,22 @@ export declare const DeleteWorkspaceRequestFilterSensitiveLog: (obj: DeleteWorks
|
|
|
1848
2181
|
* @internal
|
|
1849
2182
|
*/
|
|
1850
2183
|
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (obj: DeleteWorkspaceResponse) => any;
|
|
2184
|
+
/**
|
|
2185
|
+
* @internal
|
|
2186
|
+
*/
|
|
2187
|
+
export declare const ExecuteQueryRequestFilterSensitiveLog: (obj: ExecuteQueryRequest) => any;
|
|
2188
|
+
/**
|
|
2189
|
+
* @internal
|
|
2190
|
+
*/
|
|
2191
|
+
export declare const ColumnDescriptionFilterSensitiveLog: (obj: ColumnDescription) => any;
|
|
2192
|
+
/**
|
|
2193
|
+
* @internal
|
|
2194
|
+
*/
|
|
2195
|
+
export declare const RowFilterSensitiveLog: (obj: Row) => any;
|
|
2196
|
+
/**
|
|
2197
|
+
* @internal
|
|
2198
|
+
*/
|
|
2199
|
+
export declare const ExecuteQueryResponseFilterSensitiveLog: (obj: ExecuteQueryResponse) => any;
|
|
1851
2200
|
/**
|
|
1852
2201
|
* @internal
|
|
1853
2202
|
*/
|
|
@@ -1856,6 +2205,10 @@ export declare const GetComponentTypeRequestFilterSensitiveLog: (obj: GetCompone
|
|
|
1856
2205
|
* @internal
|
|
1857
2206
|
*/
|
|
1858
2207
|
export declare const FunctionResponseFilterSensitiveLog: (obj: FunctionResponse) => any;
|
|
2208
|
+
/**
|
|
2209
|
+
* @internal
|
|
2210
|
+
*/
|
|
2211
|
+
export declare const PropertyGroupResponseFilterSensitiveLog: (obj: PropertyGroupResponse) => any;
|
|
1859
2212
|
/**
|
|
1860
2213
|
* @internal
|
|
1861
2214
|
*/
|
|
@@ -1871,7 +2224,27 @@ export declare const GetEntityRequestFilterSensitiveLog: (obj: GetEntityRequest)
|
|
|
1871
2224
|
/**
|
|
1872
2225
|
* @internal
|
|
1873
2226
|
*/
|
|
1874
|
-
export declare const
|
|
2227
|
+
export declare const ComponentPropertyGroupResponseFilterSensitiveLog: (obj: ComponentPropertyGroupResponse) => any;
|
|
2228
|
+
/**
|
|
2229
|
+
* @internal
|
|
2230
|
+
*/
|
|
2231
|
+
export declare const GetPricingPlanRequestFilterSensitiveLog: (obj: GetPricingPlanRequest) => any;
|
|
2232
|
+
/**
|
|
2233
|
+
* @internal
|
|
2234
|
+
*/
|
|
2235
|
+
export declare const BundleInformationFilterSensitiveLog: (obj: BundleInformation) => any;
|
|
2236
|
+
/**
|
|
2237
|
+
* @internal
|
|
2238
|
+
*/
|
|
2239
|
+
export declare const PricingPlanFilterSensitiveLog: (obj: PricingPlan) => any;
|
|
2240
|
+
/**
|
|
2241
|
+
* @internal
|
|
2242
|
+
*/
|
|
2243
|
+
export declare const GetPricingPlanResponseFilterSensitiveLog: (obj: GetPricingPlanResponse) => any;
|
|
2244
|
+
/**
|
|
2245
|
+
* @internal
|
|
2246
|
+
*/
|
|
2247
|
+
export declare const OrderByFilterSensitiveLog: (obj: OrderBy) => any;
|
|
1875
2248
|
/**
|
|
1876
2249
|
* @internal
|
|
1877
2250
|
*/
|
|
@@ -1984,6 +2357,14 @@ export declare const ParentEntityUpdateRequestFilterSensitiveLog: (obj: ParentEn
|
|
|
1984
2357
|
* @internal
|
|
1985
2358
|
*/
|
|
1986
2359
|
export declare const UpdateEntityResponseFilterSensitiveLog: (obj: UpdateEntityResponse) => any;
|
|
2360
|
+
/**
|
|
2361
|
+
* @internal
|
|
2362
|
+
*/
|
|
2363
|
+
export declare const UpdatePricingPlanRequestFilterSensitiveLog: (obj: UpdatePricingPlanRequest) => any;
|
|
2364
|
+
/**
|
|
2365
|
+
* @internal
|
|
2366
|
+
*/
|
|
2367
|
+
export declare const UpdatePricingPlanResponseFilterSensitiveLog: (obj: UpdatePricingPlanResponse) => any;
|
|
1987
2368
|
/**
|
|
1988
2369
|
* @internal
|
|
1989
2370
|
*/
|
|
@@ -2027,19 +2408,23 @@ export declare const GetPropertyValueHistoryRequestFilterSensitiveLog: (obj: Get
|
|
|
2027
2408
|
/**
|
|
2028
2409
|
* @internal
|
|
2029
2410
|
*/
|
|
2030
|
-
export declare const
|
|
2411
|
+
export declare const PropertyValueEntryFilterSensitiveLog: (obj: PropertyValueEntry) => any;
|
|
2031
2412
|
/**
|
|
2032
2413
|
* @internal
|
|
2033
2414
|
*/
|
|
2034
|
-
export declare const
|
|
2415
|
+
export declare const PropertyValueHistoryFilterSensitiveLog: (obj: PropertyValueHistory) => any;
|
|
2035
2416
|
/**
|
|
2036
2417
|
* @internal
|
|
2037
2418
|
*/
|
|
2038
|
-
export declare const
|
|
2419
|
+
export declare const TabularConditionsFilterSensitiveLog: (obj: TabularConditions) => any;
|
|
2039
2420
|
/**
|
|
2040
2421
|
* @internal
|
|
2041
2422
|
*/
|
|
2042
2423
|
export declare const BatchPutPropertyErrorFilterSensitiveLog: (obj: BatchPutPropertyError) => any;
|
|
2424
|
+
/**
|
|
2425
|
+
* @internal
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const GetPropertyValueRequestFilterSensitiveLog: (obj: GetPropertyValueRequest) => any;
|
|
2043
2428
|
/**
|
|
2044
2429
|
* @internal
|
|
2045
2430
|
*/
|
|
@@ -2064,6 +2449,10 @@ export declare const PropertyDefinitionResponseFilterSensitiveLog: (obj: Propert
|
|
|
2064
2449
|
* @internal
|
|
2065
2450
|
*/
|
|
2066
2451
|
export declare const BatchPutPropertyValuesResponseFilterSensitiveLog: (obj: BatchPutPropertyValuesResponse) => any;
|
|
2452
|
+
/**
|
|
2453
|
+
* @internal
|
|
2454
|
+
*/
|
|
2455
|
+
export declare const GetPropertyValueResponseFilterSensitiveLog: (obj: GetPropertyValueResponse) => any;
|
|
2067
2456
|
/**
|
|
2068
2457
|
* @internal
|
|
2069
2458
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
3
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateExecuteQuery(config: IoTTwinMakerPaginationConfiguration, input: ExecuteQueryCommandInput, ...additionalArguments: any): Paginator<ExecuteQueryCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
|
|
3
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateGetPropertyValue(config: IoTTwinMakerPaginationConfiguration, input: GetPropertyValueCommandInput, ...additionalArguments: any): Paginator<GetPropertyValueCommandOutput>;
|