@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
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
5
|
readonly name: "AccessDeniedException";
|
|
@@ -80,6 +81,13 @@ export declare enum Type {
|
|
|
80
81
|
RELATIONSHIP = "RELATIONSHIP",
|
|
81
82
|
STRING = "STRING",
|
|
82
83
|
}
|
|
84
|
+
export declare enum GroupType {
|
|
85
|
+
TABULAR = "TABULAR",
|
|
86
|
+
}
|
|
87
|
+
export interface PropertyGroupRequest {
|
|
88
|
+
groupType?: GroupType | string;
|
|
89
|
+
propertyNames?: string[];
|
|
90
|
+
}
|
|
83
91
|
export declare enum State {
|
|
84
92
|
ACTIVE = "ACTIVE",
|
|
85
93
|
CREATING = "CREATING",
|
|
@@ -104,6 +112,16 @@ export declare enum PropertyUpdateType {
|
|
|
104
112
|
DELETE = "DELETE",
|
|
105
113
|
UPDATE = "UPDATE",
|
|
106
114
|
}
|
|
115
|
+
export declare enum PropertyGroupUpdateType {
|
|
116
|
+
CREATE = "CREATE",
|
|
117
|
+
DELETE = "DELETE",
|
|
118
|
+
UPDATE = "UPDATE",
|
|
119
|
+
}
|
|
120
|
+
export interface ComponentPropertyGroupRequest {
|
|
121
|
+
groupType?: GroupType | string;
|
|
122
|
+
propertyNames?: string[];
|
|
123
|
+
updateType?: PropertyGroupUpdateType | string;
|
|
124
|
+
}
|
|
107
125
|
export interface CreateEntityResponse {
|
|
108
126
|
entityId: string | undefined;
|
|
109
127
|
arn: string | undefined;
|
|
@@ -157,6 +175,37 @@ export interface DeleteWorkspaceRequest {
|
|
|
157
175
|
workspaceId: string | undefined;
|
|
158
176
|
}
|
|
159
177
|
export interface DeleteWorkspaceResponse {}
|
|
178
|
+
export interface ExecuteQueryRequest {
|
|
179
|
+
workspaceId: string | undefined;
|
|
180
|
+
queryStatement: string | undefined;
|
|
181
|
+
maxResults?: number;
|
|
182
|
+
nextToken?: string;
|
|
183
|
+
}
|
|
184
|
+
export declare enum ColumnType {
|
|
185
|
+
EDGE = "EDGE",
|
|
186
|
+
NODE = "NODE",
|
|
187
|
+
VALUE = "VALUE",
|
|
188
|
+
}
|
|
189
|
+
export interface ColumnDescription {
|
|
190
|
+
name?: string;
|
|
191
|
+
type?: ColumnType | string;
|
|
192
|
+
}
|
|
193
|
+
export interface Row {
|
|
194
|
+
rowData?: __DocumentType[];
|
|
195
|
+
}
|
|
196
|
+
export interface ExecuteQueryResponse {
|
|
197
|
+
columnDescriptions?: ColumnDescription[];
|
|
198
|
+
rows?: Row[];
|
|
199
|
+
nextToken?: string;
|
|
200
|
+
}
|
|
201
|
+
export declare class QueryTimeoutException extends __BaseException {
|
|
202
|
+
readonly name: "QueryTimeoutException";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
$retryable: {};
|
|
205
|
+
constructor(
|
|
206
|
+
opts: __ExceptionOptionType<QueryTimeoutException, __BaseException>
|
|
207
|
+
);
|
|
208
|
+
}
|
|
160
209
|
export interface GetComponentTypeRequest {
|
|
161
210
|
workspaceId: string | undefined;
|
|
162
211
|
componentTypeId: string | undefined;
|
|
@@ -167,6 +216,11 @@ export interface FunctionResponse {
|
|
|
167
216
|
implementedBy?: DataConnector;
|
|
168
217
|
isInherited?: boolean;
|
|
169
218
|
}
|
|
219
|
+
export interface PropertyGroupResponse {
|
|
220
|
+
groupType: GroupType | string | undefined;
|
|
221
|
+
propertyNames: string[] | undefined;
|
|
222
|
+
isInherited: boolean | undefined;
|
|
223
|
+
}
|
|
170
224
|
export declare enum ErrorCode {
|
|
171
225
|
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
172
226
|
VALIDATION_ERROR = "VALIDATION_ERROR",
|
|
@@ -183,6 +237,46 @@ export interface GetEntityRequest {
|
|
|
183
237
|
workspaceId: string | undefined;
|
|
184
238
|
entityId: string | undefined;
|
|
185
239
|
}
|
|
240
|
+
export interface ComponentPropertyGroupResponse {
|
|
241
|
+
groupType: GroupType | string | undefined;
|
|
242
|
+
propertyNames: string[] | undefined;
|
|
243
|
+
isInherited: boolean | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface GetPricingPlanRequest {}
|
|
246
|
+
export declare enum PricingTier {
|
|
247
|
+
TIER_1 = "TIER_1",
|
|
248
|
+
TIER_2 = "TIER_2",
|
|
249
|
+
TIER_3 = "TIER_3",
|
|
250
|
+
TIER_4 = "TIER_4",
|
|
251
|
+
}
|
|
252
|
+
export interface BundleInformation {
|
|
253
|
+
bundleNames: string[] | undefined;
|
|
254
|
+
pricingTier?: PricingTier | string;
|
|
255
|
+
}
|
|
256
|
+
export declare enum PricingMode {
|
|
257
|
+
BASIC = "BASIC",
|
|
258
|
+
STANDARD = "STANDARD",
|
|
259
|
+
TIERED_BUNDLE = "TIERED_BUNDLE",
|
|
260
|
+
}
|
|
261
|
+
export declare enum UpdateReason {
|
|
262
|
+
DEFAULT = "DEFAULT",
|
|
263
|
+
ENTITY_COUNT_UPDATE = "ENTITY_COUNT_UPDATE",
|
|
264
|
+
OVERWRITTEN = "OVERWRITTEN",
|
|
265
|
+
PRICING_MODE_UPDATE = "PRICING_MODE_UPDATE",
|
|
266
|
+
PRICING_TIER_UPDATE = "PRICING_TIER_UPDATE",
|
|
267
|
+
}
|
|
268
|
+
export interface PricingPlan {
|
|
269
|
+
billableEntityCount?: number;
|
|
270
|
+
bundleInformation?: BundleInformation;
|
|
271
|
+
effectiveDateTime: Date | undefined;
|
|
272
|
+
pricingMode: PricingMode | string | undefined;
|
|
273
|
+
updateDateTime: Date | undefined;
|
|
274
|
+
updateReason: UpdateReason | string | undefined;
|
|
275
|
+
}
|
|
276
|
+
export interface GetPricingPlanResponse {
|
|
277
|
+
currentPricingPlan: PricingPlan | undefined;
|
|
278
|
+
pendingPricingPlan?: PricingPlan;
|
|
279
|
+
}
|
|
186
280
|
export declare class ConnectorFailureException extends __BaseException {
|
|
187
281
|
readonly name: "ConnectorFailureException";
|
|
188
282
|
readonly $fault: "client";
|
|
@@ -197,12 +291,13 @@ export declare class ConnectorTimeoutException extends __BaseException {
|
|
|
197
291
|
opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>
|
|
198
292
|
);
|
|
199
293
|
}
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
294
|
+
export declare enum Order {
|
|
295
|
+
ASCENDING = "ASCENDING",
|
|
296
|
+
DESCENDING = "DESCENDING",
|
|
297
|
+
}
|
|
298
|
+
export interface OrderBy {
|
|
299
|
+
order?: Order | string;
|
|
300
|
+
propertyName: string | undefined;
|
|
206
301
|
}
|
|
207
302
|
export declare enum InterpolationType {
|
|
208
303
|
LINEAR = "LINEAR",
|
|
@@ -439,6 +534,14 @@ export interface UpdateEntityResponse {
|
|
|
439
534
|
updateDateTime: Date | undefined;
|
|
440
535
|
state: State | string | undefined;
|
|
441
536
|
}
|
|
537
|
+
export interface UpdatePricingPlanRequest {
|
|
538
|
+
pricingMode: PricingMode | string | undefined;
|
|
539
|
+
bundleNames?: string[];
|
|
540
|
+
}
|
|
541
|
+
export interface UpdatePricingPlanResponse {
|
|
542
|
+
currentPricingPlan: PricingPlan | undefined;
|
|
543
|
+
pendingPricingPlan?: PricingPlan;
|
|
544
|
+
}
|
|
442
545
|
export interface UpdateSceneRequest {
|
|
443
546
|
workspaceId: string | undefined;
|
|
444
547
|
sceneId: string | undefined;
|
|
@@ -505,9 +608,6 @@ export interface GetPropertyValueHistoryRequest {
|
|
|
505
608
|
startTime?: string;
|
|
506
609
|
endTime?: string;
|
|
507
610
|
}
|
|
508
|
-
export interface GetPropertyValueResponse {
|
|
509
|
-
propertyValues: Record<string, PropertyLatestValue> | undefined;
|
|
510
|
-
}
|
|
511
611
|
export interface PropertyValueEntry {
|
|
512
612
|
entityPropertyReference: EntityPropertyReference | undefined;
|
|
513
613
|
propertyValues?: PropertyValue[];
|
|
@@ -516,11 +616,26 @@ export interface PropertyValueHistory {
|
|
|
516
616
|
entityPropertyReference: EntityPropertyReference | undefined;
|
|
517
617
|
values?: PropertyValue[];
|
|
518
618
|
}
|
|
619
|
+
export interface TabularConditions {
|
|
620
|
+
orderBy?: OrderBy[];
|
|
621
|
+
propertyFilters?: PropertyFilter[];
|
|
622
|
+
}
|
|
519
623
|
export interface BatchPutPropertyError {
|
|
520
624
|
errorCode: string | undefined;
|
|
521
625
|
errorMessage: string | undefined;
|
|
522
626
|
entry: PropertyValueEntry | undefined;
|
|
523
627
|
}
|
|
628
|
+
export interface GetPropertyValueRequest {
|
|
629
|
+
componentName?: string;
|
|
630
|
+
componentTypeId?: string;
|
|
631
|
+
entityId?: string;
|
|
632
|
+
selectedProperties: string[] | undefined;
|
|
633
|
+
workspaceId: string | undefined;
|
|
634
|
+
maxResults?: number;
|
|
635
|
+
nextToken?: string;
|
|
636
|
+
propertyGroupName?: string;
|
|
637
|
+
tabularConditions?: TabularConditions;
|
|
638
|
+
}
|
|
524
639
|
export interface BatchPutPropertyValuesRequest {
|
|
525
640
|
workspaceId: string | undefined;
|
|
526
641
|
entries: PropertyValueEntry[] | undefined;
|
|
@@ -556,6 +671,11 @@ export interface PropertyDefinitionResponse {
|
|
|
556
671
|
export interface BatchPutPropertyValuesResponse {
|
|
557
672
|
errorEntries: BatchPutPropertyErrorEntry[] | undefined;
|
|
558
673
|
}
|
|
674
|
+
export interface GetPropertyValueResponse {
|
|
675
|
+
propertyValues?: Record<string, PropertyLatestValue>;
|
|
676
|
+
nextToken?: string;
|
|
677
|
+
tabularPropertyValues?: Record<string, DataValue>[][];
|
|
678
|
+
}
|
|
559
679
|
export interface CreateComponentTypeRequest {
|
|
560
680
|
workspaceId: string | undefined;
|
|
561
681
|
isSingleton?: boolean;
|
|
@@ -565,6 +685,7 @@ export interface CreateComponentTypeRequest {
|
|
|
565
685
|
extendsFrom?: string[];
|
|
566
686
|
functions?: Record<string, FunctionRequest>;
|
|
567
687
|
tags?: Record<string, string>;
|
|
688
|
+
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
568
689
|
}
|
|
569
690
|
export interface GetComponentTypeResponse {
|
|
570
691
|
workspaceId: string | undefined;
|
|
@@ -580,6 +701,7 @@ export interface GetComponentTypeResponse {
|
|
|
580
701
|
isAbstract?: boolean;
|
|
581
702
|
isSchemaInitialized?: boolean;
|
|
582
703
|
status?: Status;
|
|
704
|
+
propertyGroups?: Record<string, PropertyGroupResponse>;
|
|
583
705
|
}
|
|
584
706
|
export interface UpdateComponentTypeRequest {
|
|
585
707
|
workspaceId: string | undefined;
|
|
@@ -589,6 +711,7 @@ export interface UpdateComponentTypeRequest {
|
|
|
589
711
|
propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
|
|
590
712
|
extendsFrom?: string[];
|
|
591
713
|
functions?: Record<string, FunctionRequest>;
|
|
714
|
+
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
592
715
|
}
|
|
593
716
|
export interface PropertyRequest {
|
|
594
717
|
definition?: PropertyDefinitionRequest;
|
|
@@ -603,6 +726,7 @@ export interface ComponentRequest {
|
|
|
603
726
|
description?: string;
|
|
604
727
|
componentTypeId?: string;
|
|
605
728
|
properties?: Record<string, PropertyRequest>;
|
|
729
|
+
propertyGroups?: Record<string, ComponentPropertyGroupRequest>;
|
|
606
730
|
}
|
|
607
731
|
export interface ComponentResponse {
|
|
608
732
|
componentName?: string;
|
|
@@ -611,12 +735,14 @@ export interface ComponentResponse {
|
|
|
611
735
|
status?: Status;
|
|
612
736
|
definedIn?: string;
|
|
613
737
|
properties?: Record<string, PropertyResponse>;
|
|
738
|
+
propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
|
|
614
739
|
}
|
|
615
740
|
export interface ComponentUpdateRequest {
|
|
616
741
|
updateType?: ComponentUpdateType | string;
|
|
617
742
|
description?: string;
|
|
618
743
|
componentTypeId?: string;
|
|
619
744
|
propertyUpdates?: Record<string, PropertyRequest>;
|
|
745
|
+
propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest>;
|
|
620
746
|
}
|
|
621
747
|
export interface CreateEntityRequest {
|
|
622
748
|
workspaceId: string | undefined;
|
|
@@ -664,9 +790,15 @@ export declare const FunctionRequestFilterSensitiveLog: (
|
|
|
664
790
|
obj: FunctionRequest
|
|
665
791
|
) => any;
|
|
666
792
|
export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
|
|
793
|
+
export declare const PropertyGroupRequestFilterSensitiveLog: (
|
|
794
|
+
obj: PropertyGroupRequest
|
|
795
|
+
) => any;
|
|
667
796
|
export declare const CreateComponentTypeResponseFilterSensitiveLog: (
|
|
668
797
|
obj: CreateComponentTypeResponse
|
|
669
798
|
) => any;
|
|
799
|
+
export declare const ComponentPropertyGroupRequestFilterSensitiveLog: (
|
|
800
|
+
obj: ComponentPropertyGroupRequest
|
|
801
|
+
) => any;
|
|
670
802
|
export declare const CreateEntityResponseFilterSensitiveLog: (
|
|
671
803
|
obj: CreateEntityResponse
|
|
672
804
|
) => any;
|
|
@@ -706,20 +838,44 @@ export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
|
|
|
706
838
|
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (
|
|
707
839
|
obj: DeleteWorkspaceResponse
|
|
708
840
|
) => any;
|
|
841
|
+
export declare const ExecuteQueryRequestFilterSensitiveLog: (
|
|
842
|
+
obj: ExecuteQueryRequest
|
|
843
|
+
) => any;
|
|
844
|
+
export declare const ColumnDescriptionFilterSensitiveLog: (
|
|
845
|
+
obj: ColumnDescription
|
|
846
|
+
) => any;
|
|
847
|
+
export declare const RowFilterSensitiveLog: (obj: Row) => any;
|
|
848
|
+
export declare const ExecuteQueryResponseFilterSensitiveLog: (
|
|
849
|
+
obj: ExecuteQueryResponse
|
|
850
|
+
) => any;
|
|
709
851
|
export declare const GetComponentTypeRequestFilterSensitiveLog: (
|
|
710
852
|
obj: GetComponentTypeRequest
|
|
711
853
|
) => any;
|
|
712
854
|
export declare const FunctionResponseFilterSensitiveLog: (
|
|
713
855
|
obj: FunctionResponse
|
|
714
856
|
) => any;
|
|
857
|
+
export declare const PropertyGroupResponseFilterSensitiveLog: (
|
|
858
|
+
obj: PropertyGroupResponse
|
|
859
|
+
) => any;
|
|
715
860
|
export declare const ErrorDetailsFilterSensitiveLog: (obj: ErrorDetails) => any;
|
|
716
861
|
export declare const StatusFilterSensitiveLog: (obj: Status) => any;
|
|
717
862
|
export declare const GetEntityRequestFilterSensitiveLog: (
|
|
718
863
|
obj: GetEntityRequest
|
|
719
864
|
) => any;
|
|
720
|
-
export declare const
|
|
721
|
-
obj:
|
|
865
|
+
export declare const ComponentPropertyGroupResponseFilterSensitiveLog: (
|
|
866
|
+
obj: ComponentPropertyGroupResponse
|
|
867
|
+
) => any;
|
|
868
|
+
export declare const GetPricingPlanRequestFilterSensitiveLog: (
|
|
869
|
+
obj: GetPricingPlanRequest
|
|
722
870
|
) => any;
|
|
871
|
+
export declare const BundleInformationFilterSensitiveLog: (
|
|
872
|
+
obj: BundleInformation
|
|
873
|
+
) => any;
|
|
874
|
+
export declare const PricingPlanFilterSensitiveLog: (obj: PricingPlan) => any;
|
|
875
|
+
export declare const GetPricingPlanResponseFilterSensitiveLog: (
|
|
876
|
+
obj: GetPricingPlanResponse
|
|
877
|
+
) => any;
|
|
878
|
+
export declare const OrderByFilterSensitiveLog: (obj: OrderBy) => any;
|
|
723
879
|
export declare const InterpolationParametersFilterSensitiveLog: (
|
|
724
880
|
obj: InterpolationParameters
|
|
725
881
|
) => any;
|
|
@@ -802,6 +958,12 @@ export declare const ParentEntityUpdateRequestFilterSensitiveLog: (
|
|
|
802
958
|
export declare const UpdateEntityResponseFilterSensitiveLog: (
|
|
803
959
|
obj: UpdateEntityResponse
|
|
804
960
|
) => any;
|
|
961
|
+
export declare const UpdatePricingPlanRequestFilterSensitiveLog: (
|
|
962
|
+
obj: UpdatePricingPlanRequest
|
|
963
|
+
) => any;
|
|
964
|
+
export declare const UpdatePricingPlanResponseFilterSensitiveLog: (
|
|
965
|
+
obj: UpdatePricingPlanResponse
|
|
966
|
+
) => any;
|
|
805
967
|
export declare const UpdateSceneRequestFilterSensitiveLog: (
|
|
806
968
|
obj: UpdateSceneRequest
|
|
807
969
|
) => any;
|
|
@@ -828,18 +990,21 @@ export declare const DataTypeFilterSensitiveLog: (obj: DataType) => any;
|
|
|
828
990
|
export declare const GetPropertyValueHistoryRequestFilterSensitiveLog: (
|
|
829
991
|
obj: GetPropertyValueHistoryRequest
|
|
830
992
|
) => any;
|
|
831
|
-
export declare const GetPropertyValueResponseFilterSensitiveLog: (
|
|
832
|
-
obj: GetPropertyValueResponse
|
|
833
|
-
) => any;
|
|
834
993
|
export declare const PropertyValueEntryFilterSensitiveLog: (
|
|
835
994
|
obj: PropertyValueEntry
|
|
836
995
|
) => any;
|
|
837
996
|
export declare const PropertyValueHistoryFilterSensitiveLog: (
|
|
838
997
|
obj: PropertyValueHistory
|
|
839
998
|
) => any;
|
|
999
|
+
export declare const TabularConditionsFilterSensitiveLog: (
|
|
1000
|
+
obj: TabularConditions
|
|
1001
|
+
) => any;
|
|
840
1002
|
export declare const BatchPutPropertyErrorFilterSensitiveLog: (
|
|
841
1003
|
obj: BatchPutPropertyError
|
|
842
1004
|
) => any;
|
|
1005
|
+
export declare const GetPropertyValueRequestFilterSensitiveLog: (
|
|
1006
|
+
obj: GetPropertyValueRequest
|
|
1007
|
+
) => any;
|
|
843
1008
|
export declare const BatchPutPropertyValuesRequestFilterSensitiveLog: (
|
|
844
1009
|
obj: BatchPutPropertyValuesRequest
|
|
845
1010
|
) => any;
|
|
@@ -858,6 +1023,9 @@ export declare const PropertyDefinitionResponseFilterSensitiveLog: (
|
|
|
858
1023
|
export declare const BatchPutPropertyValuesResponseFilterSensitiveLog: (
|
|
859
1024
|
obj: BatchPutPropertyValuesResponse
|
|
860
1025
|
) => any;
|
|
1026
|
+
export declare const GetPropertyValueResponseFilterSensitiveLog: (
|
|
1027
|
+
obj: GetPropertyValueResponse
|
|
1028
|
+
) => any;
|
|
861
1029
|
export declare const CreateComponentTypeRequestFilterSensitiveLog: (
|
|
862
1030
|
obj: CreateComponentTypeRequest
|
|
863
1031
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ExecuteQueryCommandInput,
|
|
4
|
+
ExecuteQueryCommandOutput,
|
|
5
|
+
} from "../commands/ExecuteQueryCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateExecuteQuery(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ExecuteQueryCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ExecuteQueryCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetPropertyValueCommandInput,
|
|
4
|
+
GetPropertyValueCommandOutput,
|
|
5
|
+
} from "../commands/GetPropertyValueCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetPropertyValue(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: GetPropertyValueCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetPropertyValueCommandOutput>;
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
DeleteWorkspaceCommandInput,
|
|
40
40
|
DeleteWorkspaceCommandOutput,
|
|
41
41
|
} from "../commands/DeleteWorkspaceCommand";
|
|
42
|
+
import {
|
|
43
|
+
ExecuteQueryCommandInput,
|
|
44
|
+
ExecuteQueryCommandOutput,
|
|
45
|
+
} from "../commands/ExecuteQueryCommand";
|
|
42
46
|
import {
|
|
43
47
|
GetComponentTypeCommandInput,
|
|
44
48
|
GetComponentTypeCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
GetEntityCommandInput,
|
|
48
52
|
GetEntityCommandOutput,
|
|
49
53
|
} from "../commands/GetEntityCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetPricingPlanCommandInput,
|
|
56
|
+
GetPricingPlanCommandOutput,
|
|
57
|
+
} from "../commands/GetPricingPlanCommand";
|
|
50
58
|
import {
|
|
51
59
|
GetPropertyValueCommandInput,
|
|
52
60
|
GetPropertyValueCommandOutput,
|
|
@@ -99,6 +107,10 @@ import {
|
|
|
99
107
|
UpdateEntityCommandInput,
|
|
100
108
|
UpdateEntityCommandOutput,
|
|
101
109
|
} from "../commands/UpdateEntityCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdatePricingPlanCommandInput,
|
|
112
|
+
UpdatePricingPlanCommandOutput,
|
|
113
|
+
} from "../commands/UpdatePricingPlanCommand";
|
|
102
114
|
import {
|
|
103
115
|
UpdateSceneCommandInput,
|
|
104
116
|
UpdateSceneCommandOutput,
|
|
@@ -143,6 +155,10 @@ export declare const serializeAws_restJson1DeleteWorkspaceCommand: (
|
|
|
143
155
|
input: DeleteWorkspaceCommandInput,
|
|
144
156
|
context: __SerdeContext
|
|
145
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1ExecuteQueryCommand: (
|
|
159
|
+
input: ExecuteQueryCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
146
162
|
export declare const serializeAws_restJson1GetComponentTypeCommand: (
|
|
147
163
|
input: GetComponentTypeCommandInput,
|
|
148
164
|
context: __SerdeContext
|
|
@@ -151,6 +167,10 @@ export declare const serializeAws_restJson1GetEntityCommand: (
|
|
|
151
167
|
input: GetEntityCommandInput,
|
|
152
168
|
context: __SerdeContext
|
|
153
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1GetPricingPlanCommand: (
|
|
171
|
+
input: GetPricingPlanCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
154
174
|
export declare const serializeAws_restJson1GetPropertyValueCommand: (
|
|
155
175
|
input: GetPropertyValueCommandInput,
|
|
156
176
|
context: __SerdeContext
|
|
@@ -203,6 +223,10 @@ export declare const serializeAws_restJson1UpdateEntityCommand: (
|
|
|
203
223
|
input: UpdateEntityCommandInput,
|
|
204
224
|
context: __SerdeContext
|
|
205
225
|
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_restJson1UpdatePricingPlanCommand: (
|
|
227
|
+
input: UpdatePricingPlanCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
206
230
|
export declare const serializeAws_restJson1UpdateSceneCommand: (
|
|
207
231
|
input: UpdateSceneCommandInput,
|
|
208
232
|
context: __SerdeContext
|
|
@@ -247,6 +271,10 @@ export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (
|
|
|
247
271
|
output: __HttpResponse,
|
|
248
272
|
context: __SerdeContext
|
|
249
273
|
) => Promise<DeleteWorkspaceCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1ExecuteQueryCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ExecuteQueryCommandOutput>;
|
|
250
278
|
export declare const deserializeAws_restJson1GetComponentTypeCommand: (
|
|
251
279
|
output: __HttpResponse,
|
|
252
280
|
context: __SerdeContext
|
|
@@ -255,6 +283,10 @@ export declare const deserializeAws_restJson1GetEntityCommand: (
|
|
|
255
283
|
output: __HttpResponse,
|
|
256
284
|
context: __SerdeContext
|
|
257
285
|
) => Promise<GetEntityCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1GetPricingPlanCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<GetPricingPlanCommandOutput>;
|
|
258
290
|
export declare const deserializeAws_restJson1GetPropertyValueCommand: (
|
|
259
291
|
output: __HttpResponse,
|
|
260
292
|
context: __SerdeContext
|
|
@@ -307,6 +339,10 @@ export declare const deserializeAws_restJson1UpdateEntityCommand: (
|
|
|
307
339
|
output: __HttpResponse,
|
|
308
340
|
context: __SerdeContext
|
|
309
341
|
) => Promise<UpdateEntityCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_restJson1UpdatePricingPlanCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<UpdatePricingPlanCommandOutput>;
|
|
310
346
|
export declare const deserializeAws_restJson1UpdateSceneCommand: (
|
|
311
347
|
output: __HttpResponse,
|
|
312
348
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iottwinmaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.213.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",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1"
|