@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
|
@@ -26,140 +26,90 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
|
|
|
26
26
|
* import { IoTTwinMakerClient, UpdateEntityCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UpdateEntityCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateEntityRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* entityId: "STRING_VALUE", // required
|
|
32
32
|
* entityName: "STRING_VALUE",
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* componentUpdates: {
|
|
35
|
-
* "<keys>": {
|
|
34
|
+
* componentUpdates: { // ComponentUpdatesMapRequest
|
|
35
|
+
* "<keys>": { // ComponentUpdateRequest
|
|
36
36
|
* updateType: "STRING_VALUE",
|
|
37
37
|
* description: "STRING_VALUE",
|
|
38
38
|
* componentTypeId: "STRING_VALUE",
|
|
39
|
-
* propertyUpdates: {
|
|
40
|
-
* "<keys>": {
|
|
41
|
-
* definition: {
|
|
42
|
-
* dataType: {
|
|
39
|
+
* propertyUpdates: { // PropertyRequests
|
|
40
|
+
* "<keys>": { // PropertyRequest
|
|
41
|
+
* definition: { // PropertyDefinitionRequest
|
|
42
|
+
* dataType: { // DataType
|
|
43
43
|
* type: "STRING_VALUE", // required
|
|
44
44
|
* nestedType: {
|
|
45
45
|
* type: "STRING_VALUE", // required
|
|
46
|
-
* nestedType:
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
* "<DataValueList>",
|
|
65
|
-
* ],
|
|
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>",
|
|
46
|
+
* nestedType: "<DataType>",
|
|
47
|
+
* allowedValues: [ // DataValueList
|
|
48
|
+
* { // DataValue
|
|
49
|
+
* booleanValue: true || false,
|
|
50
|
+
* doubleValue: Number("double"),
|
|
51
|
+
* integerValue: Number("int"),
|
|
52
|
+
* longValue: Number("long"),
|
|
53
|
+
* stringValue: "STRING_VALUE",
|
|
54
|
+
* listValue: [
|
|
55
|
+
* {
|
|
56
|
+
* booleanValue: true || false,
|
|
57
|
+
* doubleValue: Number("double"),
|
|
58
|
+
* integerValue: Number("int"),
|
|
59
|
+
* longValue: Number("long"),
|
|
60
|
+
* stringValue: "STRING_VALUE",
|
|
61
|
+
* listValue: "<DataValueList>",
|
|
62
|
+
* mapValue: { // DataValueMap
|
|
63
|
+
* "<keys>": "<DataValue>",
|
|
99
64
|
* },
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
65
|
+
* relationshipValue: { // RelationshipValue
|
|
66
|
+
* targetEntityId: "STRING_VALUE",
|
|
67
|
+
* targetComponentName: "STRING_VALUE",
|
|
68
|
+
* },
|
|
69
|
+
* expression: "STRING_VALUE",
|
|
70
|
+
* },
|
|
71
|
+
* ],
|
|
72
|
+
* mapValue: {
|
|
73
|
+
* "<keys>": "<DataValue>",
|
|
74
|
+
* },
|
|
75
|
+
* relationshipValue: {
|
|
76
|
+
* targetEntityId: "STRING_VALUE",
|
|
77
|
+
* targetComponentName: "STRING_VALUE",
|
|
104
78
|
* },
|
|
105
|
-
*
|
|
106
|
-
* unitOfMeasure: "STRING_VALUE",
|
|
107
|
-
* relationship: {
|
|
108
|
-
* targetComponentTypeId: "STRING_VALUE",
|
|
109
|
-
* relationshipType: "STRING_VALUE",
|
|
79
|
+
* expression: "STRING_VALUE",
|
|
110
80
|
* },
|
|
111
|
-
* },
|
|
112
|
-
* allowedValues: [
|
|
113
|
-
* "<DataValueList>",
|
|
114
81
|
* ],
|
|
115
82
|
* unitOfMeasure: "STRING_VALUE",
|
|
116
|
-
* relationship: {
|
|
83
|
+
* relationship: { // Relationship
|
|
117
84
|
* targetComponentTypeId: "STRING_VALUE",
|
|
118
85
|
* relationshipType: "STRING_VALUE",
|
|
119
86
|
* },
|
|
120
87
|
* },
|
|
121
|
-
* allowedValues: "<
|
|
122
|
-
* unitOfMeasure: "
|
|
123
|
-
* relationship:
|
|
88
|
+
* allowedValues: "<DataValueList>",
|
|
89
|
+
* unitOfMeasure: "STRING_VALUE",
|
|
90
|
+
* relationship: {
|
|
91
|
+
* targetComponentTypeId: "STRING_VALUE",
|
|
92
|
+
* relationshipType: "STRING_VALUE",
|
|
93
|
+
* },
|
|
124
94
|
* },
|
|
125
95
|
* isRequiredInEntity: true || false,
|
|
126
96
|
* isExternalId: true || false,
|
|
127
97
|
* isStoredExternally: true || false,
|
|
128
98
|
* isTimeSeries: true || false,
|
|
129
|
-
* defaultValue:
|
|
130
|
-
*
|
|
131
|
-
* doubleValue: "<DataValue>",
|
|
132
|
-
* integerValue: "<DataValue>",
|
|
133
|
-
* longValue: "<DataValue>",
|
|
134
|
-
* stringValue: "<DataValue>",
|
|
135
|
-
* listValue: "<DataValue>",
|
|
136
|
-
* mapValue: "<DataValue>",
|
|
137
|
-
* relationshipValue: "<DataValue>",
|
|
138
|
-
* expression: "<DataValue>",
|
|
139
|
-
* },
|
|
140
|
-
* configuration: {
|
|
99
|
+
* defaultValue: "<DataValue>",
|
|
100
|
+
* configuration: { // Configuration
|
|
141
101
|
* "<keys>": "STRING_VALUE",
|
|
142
102
|
* },
|
|
143
103
|
* displayName: "STRING_VALUE",
|
|
144
104
|
* },
|
|
145
|
-
* value:
|
|
146
|
-
* booleanValue: "<DataValue>",
|
|
147
|
-
* doubleValue: "<DataValue>",
|
|
148
|
-
* integerValue: "<DataValue>",
|
|
149
|
-
* longValue: "<DataValue>",
|
|
150
|
-
* stringValue: "<DataValue>",
|
|
151
|
-
* listValue: "<DataValue>",
|
|
152
|
-
* mapValue: "<DataValue>",
|
|
153
|
-
* relationshipValue: "<DataValue>",
|
|
154
|
-
* expression: "<DataValue>",
|
|
155
|
-
* },
|
|
105
|
+
* value: "<DataValue>",
|
|
156
106
|
* updateType: "STRING_VALUE",
|
|
157
107
|
* },
|
|
158
108
|
* },
|
|
159
|
-
* propertyGroupUpdates: {
|
|
160
|
-
* "<keys>": {
|
|
109
|
+
* propertyGroupUpdates: { // ComponentPropertyGroupRequests
|
|
110
|
+
* "<keys>": { // ComponentPropertyGroupRequest
|
|
161
111
|
* groupType: "STRING_VALUE",
|
|
162
|
-
* propertyNames: [
|
|
112
|
+
* propertyNames: [ // PropertyNames
|
|
163
113
|
* "STRING_VALUE",
|
|
164
114
|
* ],
|
|
165
115
|
* updateType: "STRING_VALUE",
|
|
@@ -167,7 +117,7 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
|
|
|
167
117
|
* },
|
|
168
118
|
* },
|
|
169
119
|
* },
|
|
170
|
-
* parentEntityUpdate: {
|
|
120
|
+
* parentEntityUpdate: { // ParentEntityUpdateRequest
|
|
171
121
|
* updateType: "STRING_VALUE", // required
|
|
172
122
|
* parentEntityId: "STRING_VALUE",
|
|
173
123
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons
|
|
|
26
26
|
* import { IoTTwinMakerClient, UpdatePricingPlanCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UpdatePricingPlanCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdatePricingPlanRequest
|
|
30
30
|
* pricingMode: "STRING_VALUE", // required
|
|
31
|
-
* bundleNames: [
|
|
31
|
+
* bundleNames: [ // PricingBundles
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,15 +26,15 @@ export interface UpdateSceneCommandOutput extends UpdateSceneResponse, __Metadat
|
|
|
26
26
|
* import { IoTTwinMakerClient, UpdateSceneCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UpdateSceneCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateSceneRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* sceneId: "STRING_VALUE", // required
|
|
32
32
|
* contentLocation: "STRING_VALUE",
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* capabilities: [
|
|
34
|
+
* capabilities: [ // SceneCapabilities
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* sceneMetadata: {
|
|
37
|
+
* sceneMetadata: { // SceneMetadataMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _
|
|
|
26
26
|
* import { IoTTwinMakerClient, UpdateWorkspaceCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
27
27
|
* // const { IoTTwinMakerClient, UpdateWorkspaceCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
28
28
|
* const client = new IoTTwinMakerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
32
|
* role: "STRING_VALUE",
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|