@aws-sdk/client-iottwinmaker 3.300.0 → 3.301.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-types/commands/BatchPutPropertyValuesCommand.d.ts +26 -56
- package/dist-types/commands/CreateComponentTypeCommand.d.ts +55 -95
- package/dist-types/commands/CreateEntityCommand.d.ts +53 -103
- package/dist-types/commands/CreateSceneCommand.d.ts +4 -4
- package/dist-types/commands/CreateSyncJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
- package/dist-types/commands/DeleteComponentTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEntityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSceneCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +1 -1
- package/dist-types/commands/GetComponentTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetEntityCommand.d.ts +1 -1
- package/dist-types/commands/GetPropertyValueCommand.d.ts +26 -56
- package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +24 -54
- package/dist-types/commands/GetSceneCommand.d.ts +1 -1
- package/dist-types/commands/GetSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentTypesCommand.d.ts +3 -3
- package/dist-types/commands/ListEntitiesCommand.d.ts +3 -3
- package/dist-types/commands/ListScenesCommand.d.ts +1 -1
- package/dist-types/commands/ListSyncJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListSyncResourcesCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateComponentTypeCommand.d.ts +54 -94
- package/dist-types/commands/UpdateEntityCommand.d.ts +53 -103
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSceneCommand.d.ts +3 -3
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -28,35 +28,35 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
|
|
|
28
28
|
* import { IoTTwinMakerClient, GetPropertyValueCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
29
29
|
* // const { IoTTwinMakerClient, GetPropertyValueCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
30
30
|
* const client = new IoTTwinMakerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetPropertyValueRequest
|
|
32
32
|
* componentName: "STRING_VALUE",
|
|
33
33
|
* componentTypeId: "STRING_VALUE",
|
|
34
34
|
* entityId: "STRING_VALUE",
|
|
35
|
-
* selectedProperties: [ // required
|
|
35
|
+
* selectedProperties: [ // SelectedPropertyList // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* workspaceId: "STRING_VALUE", // required
|
|
39
39
|
* maxResults: Number("int"),
|
|
40
40
|
* nextToken: "STRING_VALUE",
|
|
41
41
|
* propertyGroupName: "STRING_VALUE",
|
|
42
|
-
* tabularConditions: {
|
|
43
|
-
* orderBy: [
|
|
44
|
-
* {
|
|
42
|
+
* tabularConditions: { // TabularConditions
|
|
43
|
+
* orderBy: [ // OrderByList
|
|
44
|
+
* { // OrderBy
|
|
45
45
|
* order: "STRING_VALUE",
|
|
46
46
|
* propertyName: "STRING_VALUE", // required
|
|
47
47
|
* },
|
|
48
48
|
* ],
|
|
49
|
-
* propertyFilters: [
|
|
50
|
-
* {
|
|
49
|
+
* propertyFilters: [ // PropertyFilters
|
|
50
|
+
* { // PropertyFilter
|
|
51
51
|
* propertyName: "STRING_VALUE",
|
|
52
52
|
* operator: "STRING_VALUE",
|
|
53
|
-
* value: {
|
|
53
|
+
* value: { // DataValue
|
|
54
54
|
* booleanValue: true || false,
|
|
55
55
|
* doubleValue: Number("double"),
|
|
56
56
|
* integerValue: Number("int"),
|
|
57
57
|
* longValue: Number("long"),
|
|
58
58
|
* stringValue: "STRING_VALUE",
|
|
59
|
-
* listValue: [
|
|
59
|
+
* listValue: [ // DataValueList
|
|
60
60
|
* {
|
|
61
61
|
* booleanValue: true || false,
|
|
62
62
|
* doubleValue: Number("double"),
|
|
@@ -64,56 +64,26 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
|
|
|
64
64
|
* longValue: Number("long"),
|
|
65
65
|
* stringValue: "STRING_VALUE",
|
|
66
66
|
* listValue: [
|
|
67
|
-
*
|
|
68
|
-
* booleanValue: "<DataValue>",
|
|
69
|
-
* doubleValue: "<DataValue>",
|
|
70
|
-
* integerValue: "<DataValue>",
|
|
71
|
-
* longValue: "<DataValue>",
|
|
72
|
-
* stringValue: "<DataValue>",
|
|
73
|
-
* listValue: "<DataValue>",
|
|
74
|
-
* mapValue: {
|
|
75
|
-
* "<keys>": {
|
|
76
|
-
* booleanValue: "<DataValue>",
|
|
77
|
-
* doubleValue: "<DataValue>",
|
|
78
|
-
* integerValue: "<DataValue>",
|
|
79
|
-
* longValue: "<DataValue>",
|
|
80
|
-
* stringValue: "<DataValue>",
|
|
81
|
-
* listValue: "<DataValue>",
|
|
82
|
-
* mapValue: {
|
|
83
|
-
* "<keys>": {
|
|
84
|
-
* booleanValue: "<DataValue>",
|
|
85
|
-
* doubleValue: "<DataValue>",
|
|
86
|
-
* integerValue: "<DataValue>",
|
|
87
|
-
* longValue: "<DataValue>",
|
|
88
|
-
* stringValue: "<DataValue>",
|
|
89
|
-
* listValue: "<DataValue>",
|
|
90
|
-
* mapValue: "<DataValue>",
|
|
91
|
-
* relationshipValue: {
|
|
92
|
-
* targetEntityId: "STRING_VALUE",
|
|
93
|
-
* targetComponentName: "STRING_VALUE",
|
|
94
|
-
* },
|
|
95
|
-
* expression: "STRING_VALUE",
|
|
96
|
-
* },
|
|
97
|
-
* },
|
|
98
|
-
* relationshipValue: {
|
|
99
|
-
* targetEntityId: "STRING_VALUE",
|
|
100
|
-
* targetComponentName: "STRING_VALUE",
|
|
101
|
-
* },
|
|
102
|
-
* expression: "STRING_VALUE",
|
|
103
|
-
* },
|
|
104
|
-
* },
|
|
105
|
-
* relationshipValue: "<DataValue>",
|
|
106
|
-
* expression: "<DataValue>",
|
|
107
|
-
* },
|
|
67
|
+
* "<DataValue>",
|
|
108
68
|
* ],
|
|
109
|
-
* mapValue:
|
|
110
|
-
*
|
|
111
|
-
*
|
|
69
|
+
* mapValue: { // DataValueMap
|
|
70
|
+
* "<keys>": "<DataValue>",
|
|
71
|
+
* },
|
|
72
|
+
* relationshipValue: { // RelationshipValue
|
|
73
|
+
* targetEntityId: "STRING_VALUE",
|
|
74
|
+
* targetComponentName: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* expression: "STRING_VALUE",
|
|
112
77
|
* },
|
|
113
78
|
* ],
|
|
114
|
-
* mapValue:
|
|
115
|
-
*
|
|
116
|
-
*
|
|
79
|
+
* mapValue: {
|
|
80
|
+
* "<keys>": "<DataValue>",
|
|
81
|
+
* },
|
|
82
|
+
* relationshipValue: {
|
|
83
|
+
* targetEntityId: "STRING_VALUE",
|
|
84
|
+
* targetComponentName: "STRING_VALUE",
|
|
85
|
+
* },
|
|
86
|
+
* expression: "STRING_VALUE",
|
|
117
87
|
* },
|
|
118
88
|
* },
|
|
119
89
|
* ],
|
|
@@ -30,25 +30,25 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
|
|
|
30
30
|
* import { IoTTwinMakerClient, GetPropertyValueHistoryCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
31
31
|
* // const { IoTTwinMakerClient, GetPropertyValueHistoryCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
32
32
|
* const client = new IoTTwinMakerClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetPropertyValueHistoryRequest
|
|
34
34
|
* workspaceId: "STRING_VALUE", // required
|
|
35
35
|
* entityId: "STRING_VALUE",
|
|
36
36
|
* componentName: "STRING_VALUE",
|
|
37
37
|
* componentTypeId: "STRING_VALUE",
|
|
38
|
-
* selectedProperties: [ // required
|
|
38
|
+
* selectedProperties: [ // SelectedPropertyList // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* propertyFilters: [
|
|
42
|
-
* {
|
|
41
|
+
* propertyFilters: [ // PropertyFilters
|
|
42
|
+
* { // PropertyFilter
|
|
43
43
|
* propertyName: "STRING_VALUE",
|
|
44
44
|
* operator: "STRING_VALUE",
|
|
45
|
-
* value: {
|
|
45
|
+
* value: { // DataValue
|
|
46
46
|
* booleanValue: true || false,
|
|
47
47
|
* doubleValue: Number("double"),
|
|
48
48
|
* integerValue: Number("int"),
|
|
49
49
|
* longValue: Number("long"),
|
|
50
50
|
* stringValue: "STRING_VALUE",
|
|
51
|
-
* listValue: [
|
|
51
|
+
* listValue: [ // DataValueList
|
|
52
52
|
* {
|
|
53
53
|
* booleanValue: true || false,
|
|
54
54
|
* doubleValue: Number("double"),
|
|
@@ -56,62 +56,32 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
|
|
|
56
56
|
* longValue: Number("long"),
|
|
57
57
|
* stringValue: "STRING_VALUE",
|
|
58
58
|
* listValue: [
|
|
59
|
-
*
|
|
60
|
-
* booleanValue: "<DataValue>",
|
|
61
|
-
* doubleValue: "<DataValue>",
|
|
62
|
-
* integerValue: "<DataValue>",
|
|
63
|
-
* longValue: "<DataValue>",
|
|
64
|
-
* stringValue: "<DataValue>",
|
|
65
|
-
* listValue: "<DataValue>",
|
|
66
|
-
* mapValue: {
|
|
67
|
-
* "<keys>": {
|
|
68
|
-
* booleanValue: "<DataValue>",
|
|
69
|
-
* doubleValue: "<DataValue>",
|
|
70
|
-
* integerValue: "<DataValue>",
|
|
71
|
-
* longValue: "<DataValue>",
|
|
72
|
-
* stringValue: "<DataValue>",
|
|
73
|
-
* listValue: "<DataValue>",
|
|
74
|
-
* mapValue: {
|
|
75
|
-
* "<keys>": {
|
|
76
|
-
* booleanValue: "<DataValue>",
|
|
77
|
-
* doubleValue: "<DataValue>",
|
|
78
|
-
* integerValue: "<DataValue>",
|
|
79
|
-
* longValue: "<DataValue>",
|
|
80
|
-
* stringValue: "<DataValue>",
|
|
81
|
-
* listValue: "<DataValue>",
|
|
82
|
-
* mapValue: "<DataValue>",
|
|
83
|
-
* relationshipValue: {
|
|
84
|
-
* targetEntityId: "STRING_VALUE",
|
|
85
|
-
* targetComponentName: "STRING_VALUE",
|
|
86
|
-
* },
|
|
87
|
-
* expression: "STRING_VALUE",
|
|
88
|
-
* },
|
|
89
|
-
* },
|
|
90
|
-
* relationshipValue: {
|
|
91
|
-
* targetEntityId: "STRING_VALUE",
|
|
92
|
-
* targetComponentName: "STRING_VALUE",
|
|
93
|
-
* },
|
|
94
|
-
* expression: "STRING_VALUE",
|
|
95
|
-
* },
|
|
96
|
-
* },
|
|
97
|
-
* relationshipValue: "<DataValue>",
|
|
98
|
-
* expression: "<DataValue>",
|
|
99
|
-
* },
|
|
59
|
+
* "<DataValue>",
|
|
100
60
|
* ],
|
|
101
|
-
* mapValue:
|
|
102
|
-
*
|
|
103
|
-
*
|
|
61
|
+
* mapValue: { // DataValueMap
|
|
62
|
+
* "<keys>": "<DataValue>",
|
|
63
|
+
* },
|
|
64
|
+
* relationshipValue: { // RelationshipValue
|
|
65
|
+
* targetEntityId: "STRING_VALUE",
|
|
66
|
+
* targetComponentName: "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* expression: "STRING_VALUE",
|
|
104
69
|
* },
|
|
105
70
|
* ],
|
|
106
|
-
* mapValue:
|
|
107
|
-
*
|
|
108
|
-
*
|
|
71
|
+
* mapValue: {
|
|
72
|
+
* "<keys>": "<DataValue>",
|
|
73
|
+
* },
|
|
74
|
+
* relationshipValue: {
|
|
75
|
+
* targetEntityId: "STRING_VALUE",
|
|
76
|
+
* targetComponentName: "STRING_VALUE",
|
|
77
|
+
* },
|
|
78
|
+
* expression: "STRING_VALUE",
|
|
109
79
|
* },
|
|
110
80
|
* },
|
|
111
81
|
* ],
|
|
112
82
|
* startDateTime: new Date("TIMESTAMP"),
|
|
113
83
|
* endDateTime: new Date("TIMESTAMP"),
|
|
114
|
-
* interpolation: {
|
|
84
|
+
* interpolation: { // InterpolationParameters
|
|
115
85
|
* interpolationType: "STRING_VALUE",
|
|
116
86
|
* intervalInSeconds: Number("long"),
|
|
117
87
|
* },
|
|
@@ -26,7 +26,7 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare
|
|
|
26
26
|
* import { IoTTwinMakerClient, GetSceneCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, GetSceneCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSceneRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* sceneId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB
|
|
|
26
26
|
* import { IoTTwinMakerClient, GetSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, GetSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSyncJobRequest
|
|
30
30
|
* syncSource: "STRING_VALUE", // required
|
|
31
31
|
* workspaceId: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad
|
|
|
26
26
|
* import { IoTTwinMakerClient, GetWorkspaceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, GetWorkspaceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetWorkspaceCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListComponentTypesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListComponentTypesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListComponentTypesRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
|
-
* filters: [
|
|
32
|
-
* { // Union: only one key present
|
|
31
|
+
* filters: [ // ListComponentTypesFilters
|
|
32
|
+
* { // ListComponentTypesFilter Union: only one key present
|
|
33
33
|
* extendsFrom: "STRING_VALUE",
|
|
34
34
|
* namespace: "STRING_VALUE",
|
|
35
35
|
* isAbstract: true || false,
|
|
@@ -26,10 +26,10 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListEntitiesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListEntitiesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEntitiesRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
|
-
* filters: [
|
|
32
|
-
* { // Union: only one key present
|
|
31
|
+
* filters: [ // ListEntitiesFilters
|
|
32
|
+
* { // ListEntitiesFilter Union: only one key present
|
|
33
33
|
* parentEntityId: "STRING_VALUE",
|
|
34
34
|
* componentTypeId: "STRING_VALUE",
|
|
35
35
|
* externalId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListScenesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListScenesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListScenesRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListSyncJobsCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListSyncJobsCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSyncJobsRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,11 +26,11 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListSyncResourcesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListSyncResourcesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSyncResourcesRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* syncSource: "STRING_VALUE", // required
|
|
32
|
-
* filters: [
|
|
33
|
-
* { // Union: only one key present
|
|
32
|
+
* filters: [ // SyncResourceFilters
|
|
33
|
+
* { // SyncResourceFilter Union: only one key present
|
|
34
34
|
* state: "STRING_VALUE",
|
|
35
35
|
* resourceType: "STRING_VALUE",
|
|
36
36
|
* resourceId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListTagsForResourceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceARN: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
26
26
|
* import { IoTTwinMakerClient, ListWorkspacesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, ListWorkspacesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListWorkspacesRequest
|
|
30
30
|
* maxResults: Number("int"),
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { IoTTwinMakerClient, TagResourceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, TagResourceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceARN: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { IoTTwinMakerClient, UntagResourceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UntagResourceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceARN: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,138 +26,98 @@ export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes
|
|
|
26
26
|
* import { IoTTwinMakerClient, UpdateComponentTypeCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UpdateComponentTypeCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateComponentTypeRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* isSingleton: true || false,
|
|
32
32
|
* componentTypeId: "STRING_VALUE", // required
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* propertyDefinitions: {
|
|
35
|
-
* "<keys>": {
|
|
36
|
-
* dataType: {
|
|
34
|
+
* propertyDefinitions: { // PropertyDefinitionsRequest
|
|
35
|
+
* "<keys>": { // PropertyDefinitionRequest
|
|
36
|
+
* dataType: { // DataType
|
|
37
37
|
* type: "STRING_VALUE", // required
|
|
38
38
|
* nestedType: {
|
|
39
39
|
* type: "STRING_VALUE", // required
|
|
40
|
-
* nestedType:
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
* "<DataValueList>",
|
|
59
|
-
* ],
|
|
60
|
-
* mapValue: {
|
|
61
|
-
* "<keys>": {
|
|
62
|
-
* booleanValue: "<DataValue>",
|
|
63
|
-
* doubleValue: "<DataValue>",
|
|
64
|
-
* integerValue: "<DataValue>",
|
|
65
|
-
* longValue: "<DataValue>",
|
|
66
|
-
* stringValue: "<DataValue>",
|
|
67
|
-
* listValue: "<DataValue>",
|
|
68
|
-
* mapValue: {
|
|
69
|
-
* "<keys>": {
|
|
70
|
-
* booleanValue: "<DataValue>",
|
|
71
|
-
* doubleValue: "<DataValue>",
|
|
72
|
-
* integerValue: "<DataValue>",
|
|
73
|
-
* longValue: "<DataValue>",
|
|
74
|
-
* stringValue: "<DataValue>",
|
|
75
|
-
* listValue: "<DataValue>",
|
|
76
|
-
* mapValue: "<DataValue>",
|
|
77
|
-
* relationshipValue: {
|
|
78
|
-
* targetEntityId: "STRING_VALUE",
|
|
79
|
-
* targetComponentName: "STRING_VALUE",
|
|
80
|
-
* },
|
|
81
|
-
* expression: "STRING_VALUE",
|
|
82
|
-
* },
|
|
83
|
-
* },
|
|
84
|
-
* relationshipValue: {
|
|
85
|
-
* targetEntityId: "STRING_VALUE",
|
|
86
|
-
* targetComponentName: "STRING_VALUE",
|
|
87
|
-
* },
|
|
88
|
-
* expression: "STRING_VALUE",
|
|
89
|
-
* },
|
|
90
|
-
* },
|
|
91
|
-
* relationshipValue: "<DataValue>",
|
|
92
|
-
* expression: "<DataValue>",
|
|
40
|
+
* nestedType: "<DataType>",
|
|
41
|
+
* allowedValues: [ // DataValueList
|
|
42
|
+
* { // DataValue
|
|
43
|
+
* booleanValue: true || false,
|
|
44
|
+
* doubleValue: Number("double"),
|
|
45
|
+
* integerValue: Number("int"),
|
|
46
|
+
* longValue: Number("long"),
|
|
47
|
+
* stringValue: "STRING_VALUE",
|
|
48
|
+
* listValue: [
|
|
49
|
+
* {
|
|
50
|
+
* booleanValue: true || false,
|
|
51
|
+
* doubleValue: Number("double"),
|
|
52
|
+
* integerValue: Number("int"),
|
|
53
|
+
* longValue: Number("long"),
|
|
54
|
+
* stringValue: "STRING_VALUE",
|
|
55
|
+
* listValue: "<DataValueList>",
|
|
56
|
+
* mapValue: { // DataValueMap
|
|
57
|
+
* "<keys>": "<DataValue>",
|
|
93
58
|
* },
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
59
|
+
* relationshipValue: { // RelationshipValue
|
|
60
|
+
* targetEntityId: "STRING_VALUE",
|
|
61
|
+
* targetComponentName: "STRING_VALUE",
|
|
62
|
+
* },
|
|
63
|
+
* expression: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* mapValue: {
|
|
67
|
+
* "<keys>": "<DataValue>",
|
|
68
|
+
* },
|
|
69
|
+
* relationshipValue: {
|
|
70
|
+
* targetEntityId: "STRING_VALUE",
|
|
71
|
+
* targetComponentName: "STRING_VALUE",
|
|
98
72
|
* },
|
|
99
|
-
*
|
|
100
|
-
* unitOfMeasure: "STRING_VALUE",
|
|
101
|
-
* relationship: {
|
|
102
|
-
* targetComponentTypeId: "STRING_VALUE",
|
|
103
|
-
* relationshipType: "STRING_VALUE",
|
|
73
|
+
* expression: "STRING_VALUE",
|
|
104
74
|
* },
|
|
105
|
-
* },
|
|
106
|
-
* allowedValues: [
|
|
107
|
-
* "<DataValueList>",
|
|
108
75
|
* ],
|
|
109
76
|
* unitOfMeasure: "STRING_VALUE",
|
|
110
|
-
* relationship: {
|
|
77
|
+
* relationship: { // Relationship
|
|
111
78
|
* targetComponentTypeId: "STRING_VALUE",
|
|
112
79
|
* relationshipType: "STRING_VALUE",
|
|
113
80
|
* },
|
|
114
81
|
* },
|
|
115
|
-
* allowedValues: "<
|
|
116
|
-
* unitOfMeasure: "
|
|
117
|
-
* relationship:
|
|
82
|
+
* allowedValues: "<DataValueList>",
|
|
83
|
+
* unitOfMeasure: "STRING_VALUE",
|
|
84
|
+
* relationship: {
|
|
85
|
+
* targetComponentTypeId: "STRING_VALUE",
|
|
86
|
+
* relationshipType: "STRING_VALUE",
|
|
87
|
+
* },
|
|
118
88
|
* },
|
|
119
89
|
* isRequiredInEntity: true || false,
|
|
120
90
|
* isExternalId: true || false,
|
|
121
91
|
* isStoredExternally: true || false,
|
|
122
92
|
* isTimeSeries: true || false,
|
|
123
|
-
* defaultValue:
|
|
124
|
-
*
|
|
125
|
-
* doubleValue: "<DataValue>",
|
|
126
|
-
* integerValue: "<DataValue>",
|
|
127
|
-
* longValue: "<DataValue>",
|
|
128
|
-
* stringValue: "<DataValue>",
|
|
129
|
-
* listValue: "<DataValue>",
|
|
130
|
-
* mapValue: "<DataValue>",
|
|
131
|
-
* relationshipValue: "<DataValue>",
|
|
132
|
-
* expression: "<DataValue>",
|
|
133
|
-
* },
|
|
134
|
-
* configuration: {
|
|
93
|
+
* defaultValue: "<DataValue>",
|
|
94
|
+
* configuration: { // Configuration
|
|
135
95
|
* "<keys>": "STRING_VALUE",
|
|
136
96
|
* },
|
|
137
97
|
* displayName: "STRING_VALUE",
|
|
138
98
|
* },
|
|
139
99
|
* },
|
|
140
|
-
* extendsFrom: [
|
|
100
|
+
* extendsFrom: [ // ExtendsFrom
|
|
141
101
|
* "STRING_VALUE",
|
|
142
102
|
* ],
|
|
143
|
-
* functions: {
|
|
144
|
-
* "<keys>": {
|
|
145
|
-
* requiredProperties: [
|
|
103
|
+
* functions: { // FunctionsRequest
|
|
104
|
+
* "<keys>": { // FunctionRequest
|
|
105
|
+
* requiredProperties: [ // RequiredProperties
|
|
146
106
|
* "STRING_VALUE",
|
|
147
107
|
* ],
|
|
148
108
|
* scope: "STRING_VALUE",
|
|
149
|
-
* implementedBy: {
|
|
150
|
-
* lambda: {
|
|
109
|
+
* implementedBy: { // DataConnector
|
|
110
|
+
* lambda: { // LambdaFunction
|
|
151
111
|
* arn: "STRING_VALUE", // required
|
|
152
112
|
* },
|
|
153
113
|
* isNative: true || false,
|
|
154
114
|
* },
|
|
155
115
|
* },
|
|
156
116
|
* },
|
|
157
|
-
* propertyGroups: {
|
|
158
|
-
* "<keys>": {
|
|
117
|
+
* propertyGroups: { // PropertyGroupsRequest
|
|
118
|
+
* "<keys>": { // PropertyGroupRequest
|
|
159
119
|
* groupType: "STRING_VALUE",
|
|
160
|
-
* propertyNames: [
|
|
120
|
+
* propertyNames: [ // PropertyNames
|
|
161
121
|
* "STRING_VALUE",
|
|
162
122
|
* ],
|
|
163
123
|
* },
|