@aws-sdk/client-iottwinmaker 3.224.0 → 3.227.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 +75 -0
- package/dist-cjs/commands/CreateSyncJobCommand.js +46 -0
- package/dist-cjs/commands/DeleteSyncJobCommand.js +46 -0
- package/dist-cjs/commands/GetSyncJobCommand.js +46 -0
- package/dist-cjs/commands/ListSyncJobsCommand.js +46 -0
- package/dist-cjs/commands/ListSyncResourcesCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +1 -10
- package/dist-cjs/models/models_0.js +111 -3
- package/dist-cjs/pagination/ListSyncJobsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSyncResourcesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +510 -2
- package/dist-es/IoTTwinMaker.js +75 -0
- package/dist-es/commands/CreateSyncJobCommand.js +42 -0
- package/dist-es/commands/DeleteSyncJobCommand.js +42 -0
- package/dist-es/commands/GetSyncJobCommand.js +42 -0
- package/dist-es/commands/ListSyncJobsCommand.js +42 -0
- package/dist-es/commands/ListSyncResourcesCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +1 -10
- package/dist-es/models/models_0.js +93 -0
- package/dist-es/pagination/ListSyncJobsPaginator.js +32 -0
- package/dist-es/pagination/ListSyncResourcesPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +499 -1
- package/dist-types/IoTTwinMaker.d.ts +35 -0
- package/dist-types/IoTTwinMakerClient.d.ts +7 -2
- package/dist-types/commands/CreateSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/DeleteSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/GetSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/ListSyncJobsCommand.d.ts +37 -0
- package/dist-types/commands/ListSyncResourcesCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +421 -1
- package/dist-types/pagination/ListSyncJobsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSyncResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +85 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateSyncJobCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSyncJobCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSyncJobCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSyncJobsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSyncResourcesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +200 -0
- package/dist-types/ts3.4/pagination/ListSyncJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSyncResourcesPaginator.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 +60 -0
- package/package.json +28 -28
|
@@ -140,6 +140,24 @@ export interface CreateSceneResponse {
|
|
|
140
140
|
arn: string | undefined;
|
|
141
141
|
creationDateTime: Date | undefined;
|
|
142
142
|
}
|
|
143
|
+
export interface CreateSyncJobRequest {
|
|
144
|
+
workspaceId: string | undefined;
|
|
145
|
+
syncSource: string | undefined;
|
|
146
|
+
syncRole: string | undefined;
|
|
147
|
+
tags?: Record<string, string>;
|
|
148
|
+
}
|
|
149
|
+
export declare enum SyncJobState {
|
|
150
|
+
ACTIVE = "ACTIVE",
|
|
151
|
+
CREATING = "CREATING",
|
|
152
|
+
DELETING = "DELETING",
|
|
153
|
+
ERROR = "ERROR",
|
|
154
|
+
INITIALIZING = "INITIALIZING",
|
|
155
|
+
}
|
|
156
|
+
export interface CreateSyncJobResponse {
|
|
157
|
+
arn: string | undefined;
|
|
158
|
+
creationDateTime: Date | undefined;
|
|
159
|
+
state: SyncJobState | string | undefined;
|
|
160
|
+
}
|
|
143
161
|
export interface CreateWorkspaceRequest {
|
|
144
162
|
workspaceId: string | undefined;
|
|
145
163
|
description?: string;
|
|
@@ -171,6 +189,13 @@ export interface DeleteSceneRequest {
|
|
|
171
189
|
sceneId: string | undefined;
|
|
172
190
|
}
|
|
173
191
|
export interface DeleteSceneResponse {}
|
|
192
|
+
export interface DeleteSyncJobRequest {
|
|
193
|
+
workspaceId: string | undefined;
|
|
194
|
+
syncSource: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface DeleteSyncJobResponse {
|
|
197
|
+
state: SyncJobState | string | undefined;
|
|
198
|
+
}
|
|
174
199
|
export interface DeleteWorkspaceRequest {
|
|
175
200
|
workspaceId: string | undefined;
|
|
176
201
|
}
|
|
@@ -223,6 +248,9 @@ export interface PropertyGroupResponse {
|
|
|
223
248
|
}
|
|
224
249
|
export declare enum ErrorCode {
|
|
225
250
|
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
251
|
+
SYNC_CREATING_ERROR = "SYNC_CREATING_ERROR",
|
|
252
|
+
SYNC_INITIALIZING_ERROR = "SYNC_INITIALIZING_ERROR",
|
|
253
|
+
SYNC_PROCESSING_ERROR = "SYNC_PROCESSING_ERROR",
|
|
226
254
|
VALIDATION_ERROR = "VALIDATION_ERROR",
|
|
227
255
|
}
|
|
228
256
|
export interface ErrorDetails {
|
|
@@ -324,6 +352,23 @@ export interface GetSceneResponse {
|
|
|
324
352
|
description?: string;
|
|
325
353
|
capabilities?: string[];
|
|
326
354
|
}
|
|
355
|
+
export interface GetSyncJobRequest {
|
|
356
|
+
syncSource: string | undefined;
|
|
357
|
+
workspaceId?: string;
|
|
358
|
+
}
|
|
359
|
+
export interface SyncJobStatus {
|
|
360
|
+
state?: SyncJobState | string;
|
|
361
|
+
error?: ErrorDetails;
|
|
362
|
+
}
|
|
363
|
+
export interface GetSyncJobResponse {
|
|
364
|
+
arn: string | undefined;
|
|
365
|
+
workspaceId: string | undefined;
|
|
366
|
+
syncSource: string | undefined;
|
|
367
|
+
syncRole: string | undefined;
|
|
368
|
+
status: SyncJobStatus | undefined;
|
|
369
|
+
creationDateTime: Date | undefined;
|
|
370
|
+
updateDateTime: Date | undefined;
|
|
371
|
+
}
|
|
327
372
|
export interface GetWorkspaceRequest {
|
|
328
373
|
workspaceId: string | undefined;
|
|
329
374
|
}
|
|
@@ -387,6 +432,7 @@ export interface ComponentTypeSummary {
|
|
|
387
432
|
updateDateTime: Date | undefined;
|
|
388
433
|
description?: string;
|
|
389
434
|
status?: Status;
|
|
435
|
+
componentTypeName?: string;
|
|
390
436
|
}
|
|
391
437
|
export interface ListComponentTypesResponse {
|
|
392
438
|
workspaceId: string | undefined;
|
|
@@ -470,6 +516,107 @@ export interface ListScenesResponse {
|
|
|
470
516
|
sceneSummaries?: SceneSummary[];
|
|
471
517
|
nextToken?: string;
|
|
472
518
|
}
|
|
519
|
+
export interface ListSyncJobsRequest {
|
|
520
|
+
workspaceId: string | undefined;
|
|
521
|
+
maxResults?: number;
|
|
522
|
+
nextToken?: string;
|
|
523
|
+
}
|
|
524
|
+
export interface SyncJobSummary {
|
|
525
|
+
arn?: string;
|
|
526
|
+
workspaceId?: string;
|
|
527
|
+
syncSource?: string;
|
|
528
|
+
status?: SyncJobStatus;
|
|
529
|
+
creationDateTime?: Date;
|
|
530
|
+
updateDateTime?: Date;
|
|
531
|
+
}
|
|
532
|
+
export interface ListSyncJobsResponse {
|
|
533
|
+
syncJobSummaries?: SyncJobSummary[];
|
|
534
|
+
nextToken?: string;
|
|
535
|
+
}
|
|
536
|
+
export declare enum SyncResourceType {
|
|
537
|
+
COMPONENT_TYPE = "COMPONENT_TYPE",
|
|
538
|
+
ENTITY = "ENTITY",
|
|
539
|
+
}
|
|
540
|
+
export declare enum SyncResourceState {
|
|
541
|
+
DELETED = "DELETED",
|
|
542
|
+
ERROR = "ERROR",
|
|
543
|
+
INITIALIZING = "INITIALIZING",
|
|
544
|
+
IN_SYNC = "IN_SYNC",
|
|
545
|
+
PROCESSING = "PROCESSING",
|
|
546
|
+
}
|
|
547
|
+
export declare type SyncResourceFilter =
|
|
548
|
+
| SyncResourceFilter.ExternalIdMember
|
|
549
|
+
| SyncResourceFilter.ResourceIdMember
|
|
550
|
+
| SyncResourceFilter.ResourceTypeMember
|
|
551
|
+
| SyncResourceFilter.StateMember
|
|
552
|
+
| SyncResourceFilter.$UnknownMember;
|
|
553
|
+
export declare namespace SyncResourceFilter {
|
|
554
|
+
interface StateMember {
|
|
555
|
+
state: SyncResourceState | string;
|
|
556
|
+
resourceType?: never;
|
|
557
|
+
resourceId?: never;
|
|
558
|
+
externalId?: never;
|
|
559
|
+
$unknown?: never;
|
|
560
|
+
}
|
|
561
|
+
interface ResourceTypeMember {
|
|
562
|
+
state?: never;
|
|
563
|
+
resourceType: SyncResourceType | string;
|
|
564
|
+
resourceId?: never;
|
|
565
|
+
externalId?: never;
|
|
566
|
+
$unknown?: never;
|
|
567
|
+
}
|
|
568
|
+
interface ResourceIdMember {
|
|
569
|
+
state?: never;
|
|
570
|
+
resourceType?: never;
|
|
571
|
+
resourceId: string;
|
|
572
|
+
externalId?: never;
|
|
573
|
+
$unknown?: never;
|
|
574
|
+
}
|
|
575
|
+
interface ExternalIdMember {
|
|
576
|
+
state?: never;
|
|
577
|
+
resourceType?: never;
|
|
578
|
+
resourceId?: never;
|
|
579
|
+
externalId: string;
|
|
580
|
+
$unknown?: never;
|
|
581
|
+
}
|
|
582
|
+
interface $UnknownMember {
|
|
583
|
+
state?: never;
|
|
584
|
+
resourceType?: never;
|
|
585
|
+
resourceId?: never;
|
|
586
|
+
externalId?: never;
|
|
587
|
+
$unknown: [string, any];
|
|
588
|
+
}
|
|
589
|
+
interface Visitor<T> {
|
|
590
|
+
state: (value: SyncResourceState | string) => T;
|
|
591
|
+
resourceType: (value: SyncResourceType | string) => T;
|
|
592
|
+
resourceId: (value: string) => T;
|
|
593
|
+
externalId: (value: string) => T;
|
|
594
|
+
_: (name: string, value: any) => T;
|
|
595
|
+
}
|
|
596
|
+
const visit: <T>(value: SyncResourceFilter, visitor: Visitor<T>) => T;
|
|
597
|
+
}
|
|
598
|
+
export interface ListSyncResourcesRequest {
|
|
599
|
+
workspaceId: string | undefined;
|
|
600
|
+
syncSource: string | undefined;
|
|
601
|
+
filters?: SyncResourceFilter[];
|
|
602
|
+
maxResults?: number;
|
|
603
|
+
nextToken?: string;
|
|
604
|
+
}
|
|
605
|
+
export interface SyncResourceStatus {
|
|
606
|
+
state?: SyncResourceState | string;
|
|
607
|
+
error?: ErrorDetails;
|
|
608
|
+
}
|
|
609
|
+
export interface SyncResourceSummary {
|
|
610
|
+
resourceType?: SyncResourceType | string;
|
|
611
|
+
externalId?: string;
|
|
612
|
+
resourceId?: string;
|
|
613
|
+
status?: SyncResourceStatus;
|
|
614
|
+
updateDateTime?: Date;
|
|
615
|
+
}
|
|
616
|
+
export interface ListSyncResourcesResponse {
|
|
617
|
+
syncResources?: SyncResourceSummary[];
|
|
618
|
+
nextToken?: string;
|
|
619
|
+
}
|
|
473
620
|
export interface ListTagsForResourceRequest {
|
|
474
621
|
resourceARN: string | undefined;
|
|
475
622
|
maxResults?: number;
|
|
@@ -655,6 +802,7 @@ export interface PropertyDefinitionRequest {
|
|
|
655
802
|
isTimeSeries?: boolean;
|
|
656
803
|
defaultValue?: DataValue;
|
|
657
804
|
configuration?: Record<string, string>;
|
|
805
|
+
displayName?: string;
|
|
658
806
|
}
|
|
659
807
|
export interface PropertyDefinitionResponse {
|
|
660
808
|
dataType: DataType | undefined;
|
|
@@ -667,6 +815,7 @@ export interface PropertyDefinitionResponse {
|
|
|
667
815
|
isInherited: boolean | undefined;
|
|
668
816
|
defaultValue?: DataValue;
|
|
669
817
|
configuration?: Record<string, string>;
|
|
818
|
+
displayName?: string;
|
|
670
819
|
}
|
|
671
820
|
export interface BatchPutPropertyValuesResponse {
|
|
672
821
|
errorEntries: BatchPutPropertyErrorEntry[] | undefined;
|
|
@@ -686,6 +835,7 @@ export interface CreateComponentTypeRequest {
|
|
|
686
835
|
functions?: Record<string, FunctionRequest>;
|
|
687
836
|
tags?: Record<string, string>;
|
|
688
837
|
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
838
|
+
componentTypeName?: string;
|
|
689
839
|
}
|
|
690
840
|
export interface GetComponentTypeResponse {
|
|
691
841
|
workspaceId: string | undefined;
|
|
@@ -702,6 +852,8 @@ export interface GetComponentTypeResponse {
|
|
|
702
852
|
isSchemaInitialized?: boolean;
|
|
703
853
|
status?: Status;
|
|
704
854
|
propertyGroups?: Record<string, PropertyGroupResponse>;
|
|
855
|
+
syncSource?: string;
|
|
856
|
+
componentTypeName?: string;
|
|
705
857
|
}
|
|
706
858
|
export interface UpdateComponentTypeRequest {
|
|
707
859
|
workspaceId: string | undefined;
|
|
@@ -712,6 +864,7 @@ export interface UpdateComponentTypeRequest {
|
|
|
712
864
|
extendsFrom?: string[];
|
|
713
865
|
functions?: Record<string, FunctionRequest>;
|
|
714
866
|
propertyGroups?: Record<string, PropertyGroupRequest>;
|
|
867
|
+
componentTypeName?: string;
|
|
715
868
|
}
|
|
716
869
|
export interface PropertyRequest {
|
|
717
870
|
definition?: PropertyDefinitionRequest;
|
|
@@ -736,6 +889,7 @@ export interface ComponentResponse {
|
|
|
736
889
|
definedIn?: string;
|
|
737
890
|
properties?: Record<string, PropertyResponse>;
|
|
738
891
|
propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
|
|
892
|
+
syncSource?: string;
|
|
739
893
|
}
|
|
740
894
|
export interface ComponentUpdateRequest {
|
|
741
895
|
updateType?: ComponentUpdateType | string;
|
|
@@ -765,6 +919,7 @@ export interface GetEntityResponse {
|
|
|
765
919
|
hasChildEntities: boolean | undefined;
|
|
766
920
|
creationDateTime: Date | undefined;
|
|
767
921
|
updateDateTime: Date | undefined;
|
|
922
|
+
syncSource?: string;
|
|
768
923
|
}
|
|
769
924
|
export interface UpdateEntityRequest {
|
|
770
925
|
workspaceId: string | undefined;
|
|
@@ -808,6 +963,12 @@ export declare const CreateSceneRequestFilterSensitiveLog: (
|
|
|
808
963
|
export declare const CreateSceneResponseFilterSensitiveLog: (
|
|
809
964
|
obj: CreateSceneResponse
|
|
810
965
|
) => any;
|
|
966
|
+
export declare const CreateSyncJobRequestFilterSensitiveLog: (
|
|
967
|
+
obj: CreateSyncJobRequest
|
|
968
|
+
) => any;
|
|
969
|
+
export declare const CreateSyncJobResponseFilterSensitiveLog: (
|
|
970
|
+
obj: CreateSyncJobResponse
|
|
971
|
+
) => any;
|
|
811
972
|
export declare const CreateWorkspaceRequestFilterSensitiveLog: (
|
|
812
973
|
obj: CreateWorkspaceRequest
|
|
813
974
|
) => any;
|
|
@@ -832,6 +993,12 @@ export declare const DeleteSceneRequestFilterSensitiveLog: (
|
|
|
832
993
|
export declare const DeleteSceneResponseFilterSensitiveLog: (
|
|
833
994
|
obj: DeleteSceneResponse
|
|
834
995
|
) => any;
|
|
996
|
+
export declare const DeleteSyncJobRequestFilterSensitiveLog: (
|
|
997
|
+
obj: DeleteSyncJobRequest
|
|
998
|
+
) => any;
|
|
999
|
+
export declare const DeleteSyncJobResponseFilterSensitiveLog: (
|
|
1000
|
+
obj: DeleteSyncJobResponse
|
|
1001
|
+
) => any;
|
|
835
1002
|
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
|
|
836
1003
|
obj: DeleteWorkspaceRequest
|
|
837
1004
|
) => any;
|
|
@@ -885,6 +1052,15 @@ export declare const GetSceneRequestFilterSensitiveLog: (
|
|
|
885
1052
|
export declare const GetSceneResponseFilterSensitiveLog: (
|
|
886
1053
|
obj: GetSceneResponse
|
|
887
1054
|
) => any;
|
|
1055
|
+
export declare const GetSyncJobRequestFilterSensitiveLog: (
|
|
1056
|
+
obj: GetSyncJobRequest
|
|
1057
|
+
) => any;
|
|
1058
|
+
export declare const SyncJobStatusFilterSensitiveLog: (
|
|
1059
|
+
obj: SyncJobStatus
|
|
1060
|
+
) => any;
|
|
1061
|
+
export declare const GetSyncJobResponseFilterSensitiveLog: (
|
|
1062
|
+
obj: GetSyncJobResponse
|
|
1063
|
+
) => any;
|
|
888
1064
|
export declare const GetWorkspaceRequestFilterSensitiveLog: (
|
|
889
1065
|
obj: GetWorkspaceRequest
|
|
890
1066
|
) => any;
|
|
@@ -922,6 +1098,30 @@ export declare const SceneSummaryFilterSensitiveLog: (obj: SceneSummary) => any;
|
|
|
922
1098
|
export declare const ListScenesResponseFilterSensitiveLog: (
|
|
923
1099
|
obj: ListScenesResponse
|
|
924
1100
|
) => any;
|
|
1101
|
+
export declare const ListSyncJobsRequestFilterSensitiveLog: (
|
|
1102
|
+
obj: ListSyncJobsRequest
|
|
1103
|
+
) => any;
|
|
1104
|
+
export declare const SyncJobSummaryFilterSensitiveLog: (
|
|
1105
|
+
obj: SyncJobSummary
|
|
1106
|
+
) => any;
|
|
1107
|
+
export declare const ListSyncJobsResponseFilterSensitiveLog: (
|
|
1108
|
+
obj: ListSyncJobsResponse
|
|
1109
|
+
) => any;
|
|
1110
|
+
export declare const SyncResourceFilterFilterSensitiveLog: (
|
|
1111
|
+
obj: SyncResourceFilter
|
|
1112
|
+
) => any;
|
|
1113
|
+
export declare const ListSyncResourcesRequestFilterSensitiveLog: (
|
|
1114
|
+
obj: ListSyncResourcesRequest
|
|
1115
|
+
) => any;
|
|
1116
|
+
export declare const SyncResourceStatusFilterSensitiveLog: (
|
|
1117
|
+
obj: SyncResourceStatus
|
|
1118
|
+
) => any;
|
|
1119
|
+
export declare const SyncResourceSummaryFilterSensitiveLog: (
|
|
1120
|
+
obj: SyncResourceSummary
|
|
1121
|
+
) => any;
|
|
1122
|
+
export declare const ListSyncResourcesResponseFilterSensitiveLog: (
|
|
1123
|
+
obj: ListSyncResourcesResponse
|
|
1124
|
+
) => any;
|
|
925
1125
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
926
1126
|
obj: ListTagsForResourceRequest
|
|
927
1127
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSyncJobsCommandInput,
|
|
4
|
+
ListSyncJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListSyncJobsCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSyncJobs(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListSyncJobsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSyncJobsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSyncResourcesCommandInput,
|
|
4
|
+
ListSyncResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListSyncResourcesCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSyncResources(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListSyncResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSyncResourcesCommandOutput>;
|
|
@@ -5,4 +5,6 @@ export * from "./Interfaces";
|
|
|
5
5
|
export * from "./ListComponentTypesPaginator";
|
|
6
6
|
export * from "./ListEntitiesPaginator";
|
|
7
7
|
export * from "./ListScenesPaginator";
|
|
8
|
+
export * from "./ListSyncJobsPaginator";
|
|
9
|
+
export * from "./ListSyncResourcesPaginator";
|
|
8
10
|
export * from "./ListWorkspacesPaginator";
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateSceneCommandInput,
|
|
20
20
|
CreateSceneCommandOutput,
|
|
21
21
|
} from "../commands/CreateSceneCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateSyncJobCommandInput,
|
|
24
|
+
CreateSyncJobCommandOutput,
|
|
25
|
+
} from "../commands/CreateSyncJobCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateWorkspaceCommandInput,
|
|
24
28
|
CreateWorkspaceCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DeleteSceneCommandInput,
|
|
36
40
|
DeleteSceneCommandOutput,
|
|
37
41
|
} from "../commands/DeleteSceneCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteSyncJobCommandInput,
|
|
44
|
+
DeleteSyncJobCommandOutput,
|
|
45
|
+
} from "../commands/DeleteSyncJobCommand";
|
|
38
46
|
import {
|
|
39
47
|
DeleteWorkspaceCommandInput,
|
|
40
48
|
DeleteWorkspaceCommandOutput,
|
|
@@ -67,6 +75,10 @@ import {
|
|
|
67
75
|
GetSceneCommandInput,
|
|
68
76
|
GetSceneCommandOutput,
|
|
69
77
|
} from "../commands/GetSceneCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetSyncJobCommandInput,
|
|
80
|
+
GetSyncJobCommandOutput,
|
|
81
|
+
} from "../commands/GetSyncJobCommand";
|
|
70
82
|
import {
|
|
71
83
|
GetWorkspaceCommandInput,
|
|
72
84
|
GetWorkspaceCommandOutput,
|
|
@@ -83,6 +95,14 @@ import {
|
|
|
83
95
|
ListScenesCommandInput,
|
|
84
96
|
ListScenesCommandOutput,
|
|
85
97
|
} from "../commands/ListScenesCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListSyncJobsCommandInput,
|
|
100
|
+
ListSyncJobsCommandOutput,
|
|
101
|
+
} from "../commands/ListSyncJobsCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListSyncResourcesCommandInput,
|
|
104
|
+
ListSyncResourcesCommandOutput,
|
|
105
|
+
} from "../commands/ListSyncResourcesCommand";
|
|
86
106
|
import {
|
|
87
107
|
ListTagsForResourceCommandInput,
|
|
88
108
|
ListTagsForResourceCommandOutput,
|
|
@@ -135,6 +155,10 @@ export declare const serializeAws_restJson1CreateSceneCommand: (
|
|
|
135
155
|
input: CreateSceneCommandInput,
|
|
136
156
|
context: __SerdeContext
|
|
137
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1CreateSyncJobCommand: (
|
|
159
|
+
input: CreateSyncJobCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
138
162
|
export declare const serializeAws_restJson1CreateWorkspaceCommand: (
|
|
139
163
|
input: CreateWorkspaceCommandInput,
|
|
140
164
|
context: __SerdeContext
|
|
@@ -151,6 +175,10 @@ export declare const serializeAws_restJson1DeleteSceneCommand: (
|
|
|
151
175
|
input: DeleteSceneCommandInput,
|
|
152
176
|
context: __SerdeContext
|
|
153
177
|
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1DeleteSyncJobCommand: (
|
|
179
|
+
input: DeleteSyncJobCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
154
182
|
export declare const serializeAws_restJson1DeleteWorkspaceCommand: (
|
|
155
183
|
input: DeleteWorkspaceCommandInput,
|
|
156
184
|
context: __SerdeContext
|
|
@@ -183,6 +211,10 @@ export declare const serializeAws_restJson1GetSceneCommand: (
|
|
|
183
211
|
input: GetSceneCommandInput,
|
|
184
212
|
context: __SerdeContext
|
|
185
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_restJson1GetSyncJobCommand: (
|
|
215
|
+
input: GetSyncJobCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
186
218
|
export declare const serializeAws_restJson1GetWorkspaceCommand: (
|
|
187
219
|
input: GetWorkspaceCommandInput,
|
|
188
220
|
context: __SerdeContext
|
|
@@ -199,6 +231,14 @@ export declare const serializeAws_restJson1ListScenesCommand: (
|
|
|
199
231
|
input: ListScenesCommandInput,
|
|
200
232
|
context: __SerdeContext
|
|
201
233
|
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_restJson1ListSyncJobsCommand: (
|
|
235
|
+
input: ListSyncJobsCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_restJson1ListSyncResourcesCommand: (
|
|
239
|
+
input: ListSyncResourcesCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
202
242
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
203
243
|
input: ListTagsForResourceCommandInput,
|
|
204
244
|
context: __SerdeContext
|
|
@@ -251,6 +291,10 @@ export declare const deserializeAws_restJson1CreateSceneCommand: (
|
|
|
251
291
|
output: __HttpResponse,
|
|
252
292
|
context: __SerdeContext
|
|
253
293
|
) => Promise<CreateSceneCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1CreateSyncJobCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<CreateSyncJobCommandOutput>;
|
|
254
298
|
export declare const deserializeAws_restJson1CreateWorkspaceCommand: (
|
|
255
299
|
output: __HttpResponse,
|
|
256
300
|
context: __SerdeContext
|
|
@@ -267,6 +311,10 @@ export declare const deserializeAws_restJson1DeleteSceneCommand: (
|
|
|
267
311
|
output: __HttpResponse,
|
|
268
312
|
context: __SerdeContext
|
|
269
313
|
) => Promise<DeleteSceneCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_restJson1DeleteSyncJobCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<DeleteSyncJobCommandOutput>;
|
|
270
318
|
export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (
|
|
271
319
|
output: __HttpResponse,
|
|
272
320
|
context: __SerdeContext
|
|
@@ -299,6 +347,10 @@ export declare const deserializeAws_restJson1GetSceneCommand: (
|
|
|
299
347
|
output: __HttpResponse,
|
|
300
348
|
context: __SerdeContext
|
|
301
349
|
) => Promise<GetSceneCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_restJson1GetSyncJobCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<GetSyncJobCommandOutput>;
|
|
302
354
|
export declare const deserializeAws_restJson1GetWorkspaceCommand: (
|
|
303
355
|
output: __HttpResponse,
|
|
304
356
|
context: __SerdeContext
|
|
@@ -315,6 +367,14 @@ export declare const deserializeAws_restJson1ListScenesCommand: (
|
|
|
315
367
|
output: __HttpResponse,
|
|
316
368
|
context: __SerdeContext
|
|
317
369
|
) => Promise<ListScenesCommandOutput>;
|
|
370
|
+
export declare const deserializeAws_restJson1ListSyncJobsCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<ListSyncJobsCommandOutput>;
|
|
374
|
+
export declare const deserializeAws_restJson1ListSyncResourcesCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<ListSyncResourcesCommandOutput>;
|
|
318
378
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
319
379
|
output: __HttpResponse,
|
|
320
380
|
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.227.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.226.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.226.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.226.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.226.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.226.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.226.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.226.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.226.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.226.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.226.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.226.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.226.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.226.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.226.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.226.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.226.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.226.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.226.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.226.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.226.0",
|
|
42
|
+
"@aws-sdk/types": "3.226.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.226.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.226.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.226.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.226.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.226.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.226.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"
|