@aws-sdk/client-iottwinmaker 3.321.1 → 3.326.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/models/models_0.js +4 -1
- package/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +66 -0
- package/dist-types/commands/CreateComponentTypeCommand.d.ts +8 -0
- package/dist-types/commands/CreateEntityCommand.d.ts +9 -0
- package/dist-types/commands/CreateSceneCommand.d.ts +7 -0
- package/dist-types/commands/CreateSyncJobCommand.d.ts +8 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +7 -0
- package/dist-types/commands/DeleteComponentTypeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteEntityCommand.d.ts +6 -0
- package/dist-types/commands/DeleteSceneCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSyncJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +4 -0
- package/dist-types/commands/ExecuteQueryCommand.d.ts +19 -0
- package/dist-types/commands/GetComponentTypeCommand.d.ts +119 -0
- package/dist-types/commands/GetEntityCommand.d.ts +119 -0
- package/dist-types/commands/GetPricingPlanCommand.d.ts +31 -0
- package/dist-types/commands/GetPropertyValueCommand.d.ts +60 -0
- package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +59 -0
- package/dist-types/commands/GetSceneCommand.d.ts +25 -0
- package/dist-types/commands/GetSyncJobCommand.d.ts +18 -0
- package/dist-types/commands/GetWorkspaceCommand.d.ts +12 -0
- package/dist-types/commands/ListComponentTypesCommand.d.ts +25 -0
- package/dist-types/commands/ListEntitiesCommand.d.ts +25 -0
- package/dist-types/commands/ListScenesCommand.d.ts +16 -0
- package/dist-types/commands/ListSyncJobsCommand.d.ts +22 -0
- package/dist-types/commands/ListSyncResourcesCommand.d.ts +21 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +15 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateComponentTypeCommand.d.ts +9 -0
- package/dist-types/commands/UpdateEntityCommand.d.ts +7 -0
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +31 -0
- package/dist-types/commands/UpdateSceneCommand.d.ts +6 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +29 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/package.json +16 -16
|
@@ -29,6 +29,35 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new GetPricingPlanCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // GetPricingPlanResponse
|
|
33
|
+
* // currentPricingPlan: { // PricingPlan
|
|
34
|
+
* // billableEntityCount: Number("long"),
|
|
35
|
+
* // bundleInformation: { // BundleInformation
|
|
36
|
+
* // bundleNames: [ // PricingBundles // required
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // pricingTier: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // effectiveDateTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // pricingMode: "STRING_VALUE", // required
|
|
43
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // updateReason: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // pendingPricingPlan: {
|
|
47
|
+
* // billableEntityCount: Number("long"),
|
|
48
|
+
* // bundleInformation: {
|
|
49
|
+
* // bundleNames: [ // required
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // pricingTier: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // effectiveDateTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // pricingMode: "STRING_VALUE", // required
|
|
56
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // updateReason: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
32
61
|
* ```
|
|
33
62
|
*
|
|
34
63
|
* @param GetPricingPlanCommandInput - {@link GetPricingPlanCommandInput}
|
|
@@ -49,6 +78,8 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M
|
|
|
49
78
|
* @throws {@link ValidationException} (client fault)
|
|
50
79
|
* <p>Failed</p>
|
|
51
80
|
*
|
|
81
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
52
83
|
*
|
|
53
84
|
*/
|
|
54
85
|
export declare class GetPricingPlanCommand extends $Command<GetPricingPlanCommandInput, GetPricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -91,6 +91,64 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
|
|
|
91
91
|
* };
|
|
92
92
|
* const command = new GetPropertyValueCommand(input);
|
|
93
93
|
* const response = await client.send(command);
|
|
94
|
+
* // { // GetPropertyValueResponse
|
|
95
|
+
* // propertyValues: { // PropertyLatestValueMap
|
|
96
|
+
* // "<keys>": { // PropertyLatestValue
|
|
97
|
+
* // propertyReference: { // EntityPropertyReference
|
|
98
|
+
* // componentName: "STRING_VALUE",
|
|
99
|
+
* // externalIdProperty: { // ExternalIdProperty
|
|
100
|
+
* // "<keys>": "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // entityId: "STRING_VALUE",
|
|
103
|
+
* // propertyName: "STRING_VALUE", // required
|
|
104
|
+
* // },
|
|
105
|
+
* // propertyValue: { // DataValue
|
|
106
|
+
* // booleanValue: true || false,
|
|
107
|
+
* // doubleValue: Number("double"),
|
|
108
|
+
* // integerValue: Number("int"),
|
|
109
|
+
* // longValue: Number("long"),
|
|
110
|
+
* // stringValue: "STRING_VALUE",
|
|
111
|
+
* // listValue: [ // DataValueList
|
|
112
|
+
* // {
|
|
113
|
+
* // booleanValue: true || false,
|
|
114
|
+
* // doubleValue: Number("double"),
|
|
115
|
+
* // integerValue: Number("int"),
|
|
116
|
+
* // longValue: Number("long"),
|
|
117
|
+
* // stringValue: "STRING_VALUE",
|
|
118
|
+
* // listValue: [
|
|
119
|
+
* // "<DataValue>",
|
|
120
|
+
* // ],
|
|
121
|
+
* // mapValue: { // DataValueMap
|
|
122
|
+
* // "<keys>": "<DataValue>",
|
|
123
|
+
* // },
|
|
124
|
+
* // relationshipValue: { // RelationshipValue
|
|
125
|
+
* // targetEntityId: "STRING_VALUE",
|
|
126
|
+
* // targetComponentName: "STRING_VALUE",
|
|
127
|
+
* // },
|
|
128
|
+
* // expression: "STRING_VALUE",
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // mapValue: {
|
|
132
|
+
* // "<keys>": "<DataValue>",
|
|
133
|
+
* // },
|
|
134
|
+
* // relationshipValue: {
|
|
135
|
+
* // targetEntityId: "STRING_VALUE",
|
|
136
|
+
* // targetComponentName: "STRING_VALUE",
|
|
137
|
+
* // },
|
|
138
|
+
* // expression: "STRING_VALUE",
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // },
|
|
142
|
+
* // nextToken: "STRING_VALUE",
|
|
143
|
+
* // tabularPropertyValues: [ // TabularPropertyValues
|
|
144
|
+
* // [ // TabularPropertyValue
|
|
145
|
+
* // { // PropertyTableValue
|
|
146
|
+
* // "<keys>": "<DataValue>",
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // ],
|
|
150
|
+
* // };
|
|
151
|
+
*
|
|
94
152
|
* ```
|
|
95
153
|
*
|
|
96
154
|
* @param GetPropertyValueCommandInput - {@link GetPropertyValueCommandInput}
|
|
@@ -120,6 +178,8 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse,
|
|
|
120
178
|
* @throws {@link ValidationException} (client fault)
|
|
121
179
|
* <p>Failed</p>
|
|
122
180
|
*
|
|
181
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
182
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
123
183
|
*
|
|
124
184
|
*/
|
|
125
185
|
export declare class GetPropertyValueCommand extends $Command<GetPropertyValueCommandInput, GetPropertyValueCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -93,6 +93,63 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
|
|
|
93
93
|
* };
|
|
94
94
|
* const command = new GetPropertyValueHistoryCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
+
* // { // GetPropertyValueHistoryResponse
|
|
97
|
+
* // propertyValues: [ // PropertyValueList // required
|
|
98
|
+
* // { // PropertyValueHistory
|
|
99
|
+
* // entityPropertyReference: { // EntityPropertyReference
|
|
100
|
+
* // componentName: "STRING_VALUE",
|
|
101
|
+
* // externalIdProperty: { // ExternalIdProperty
|
|
102
|
+
* // "<keys>": "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // entityId: "STRING_VALUE",
|
|
105
|
+
* // propertyName: "STRING_VALUE", // required
|
|
106
|
+
* // },
|
|
107
|
+
* // values: [ // Values
|
|
108
|
+
* // { // PropertyValue
|
|
109
|
+
* // timestamp: new Date("TIMESTAMP"),
|
|
110
|
+
* // value: { // DataValue
|
|
111
|
+
* // booleanValue: true || false,
|
|
112
|
+
* // doubleValue: Number("double"),
|
|
113
|
+
* // integerValue: Number("int"),
|
|
114
|
+
* // longValue: Number("long"),
|
|
115
|
+
* // stringValue: "STRING_VALUE",
|
|
116
|
+
* // listValue: [ // DataValueList
|
|
117
|
+
* // {
|
|
118
|
+
* // booleanValue: true || false,
|
|
119
|
+
* // doubleValue: Number("double"),
|
|
120
|
+
* // integerValue: Number("int"),
|
|
121
|
+
* // longValue: Number("long"),
|
|
122
|
+
* // stringValue: "STRING_VALUE",
|
|
123
|
+
* // listValue: [
|
|
124
|
+
* // "<DataValue>",
|
|
125
|
+
* // ],
|
|
126
|
+
* // mapValue: { // DataValueMap
|
|
127
|
+
* // "<keys>": "<DataValue>",
|
|
128
|
+
* // },
|
|
129
|
+
* // relationshipValue: { // RelationshipValue
|
|
130
|
+
* // targetEntityId: "STRING_VALUE",
|
|
131
|
+
* // targetComponentName: "STRING_VALUE",
|
|
132
|
+
* // },
|
|
133
|
+
* // expression: "STRING_VALUE",
|
|
134
|
+
* // },
|
|
135
|
+
* // ],
|
|
136
|
+
* // mapValue: {
|
|
137
|
+
* // "<keys>": "<DataValue>",
|
|
138
|
+
* // },
|
|
139
|
+
* // relationshipValue: {
|
|
140
|
+
* // targetEntityId: "STRING_VALUE",
|
|
141
|
+
* // targetComponentName: "STRING_VALUE",
|
|
142
|
+
* // },
|
|
143
|
+
* // expression: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // time: "STRING_VALUE",
|
|
146
|
+
* // },
|
|
147
|
+
* // ],
|
|
148
|
+
* // },
|
|
149
|
+
* // ],
|
|
150
|
+
* // nextToken: "STRING_VALUE",
|
|
151
|
+
* // };
|
|
152
|
+
*
|
|
96
153
|
* ```
|
|
97
154
|
*
|
|
98
155
|
* @param GetPropertyValueHistoryCommandInput - {@link GetPropertyValueHistoryCommandInput}
|
|
@@ -122,6 +179,8 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi
|
|
|
122
179
|
* @throws {@link ValidationException} (client fault)
|
|
123
180
|
* <p>Failed</p>
|
|
124
181
|
*
|
|
182
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
183
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
125
184
|
*
|
|
126
185
|
*/
|
|
127
186
|
export declare class GetPropertyValueHistoryCommand extends $Command<GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -32,6 +32,29 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSceneCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSceneResponse
|
|
36
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
37
|
+
* // sceneId: "STRING_VALUE", // required
|
|
38
|
+
* // contentLocation: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // capabilities: [ // SceneCapabilities
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // sceneMetadata: { // SceneMetadataMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // generatedSceneMetadata: { // GeneratedSceneMetadataMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // error: { // SceneError
|
|
53
|
+
* // code: "STRING_VALUE",
|
|
54
|
+
* // message: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
35
58
|
* ```
|
|
36
59
|
*
|
|
37
60
|
* @param GetSceneCommandInput - {@link GetSceneCommandInput}
|
|
@@ -55,6 +78,8 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare
|
|
|
55
78
|
* @throws {@link ValidationException} (client fault)
|
|
56
79
|
* <p>Failed</p>
|
|
57
80
|
*
|
|
81
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
58
83
|
*
|
|
59
84
|
*/
|
|
60
85
|
export declare class GetSceneCommand extends $Command<GetSceneCommandInput, GetSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSyncJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSyncJobResponse
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
38
|
+
* // syncSource: "STRING_VALUE", // required
|
|
39
|
+
* // syncRole: "STRING_VALUE", // required
|
|
40
|
+
* // status: { // SyncJobStatus
|
|
41
|
+
* // state: "STRING_VALUE",
|
|
42
|
+
* // error: { // ErrorDetails
|
|
43
|
+
* // code: "STRING_VALUE",
|
|
44
|
+
* // message: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param GetSyncJobCommandInput - {@link GetSyncJobCommandInput}
|
|
@@ -58,6 +74,8 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB
|
|
|
58
74
|
* @throws {@link ValidationException} (client fault)
|
|
59
75
|
* <p>Failed</p>
|
|
60
76
|
*
|
|
77
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
61
79
|
*
|
|
62
80
|
*/
|
|
63
81
|
export declare class GetSyncJobCommand extends $Command<GetSyncJobCommandInput, GetSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetWorkspaceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetWorkspaceResponse
|
|
35
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // s3Location: "STRING_VALUE", // required
|
|
39
|
+
* // role: "STRING_VALUE", // required
|
|
40
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetWorkspaceCommandInput - {@link GetWorkspaceCommandInput}
|
|
@@ -54,6 +64,8 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad
|
|
|
54
64
|
* @throws {@link ValidationException} (client fault)
|
|
55
65
|
* <p>Failed</p>
|
|
56
66
|
*
|
|
67
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
57
69
|
*
|
|
58
70
|
*/
|
|
59
71
|
export declare class GetWorkspaceCommand extends $Command<GetWorkspaceCommandInput, GetWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -40,6 +40,29 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListComponentTypesCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListComponentTypesResponse
|
|
44
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
45
|
+
* // componentTypeSummaries: [ // ComponentTypeSummaries // required
|
|
46
|
+
* // { // ComponentTypeSummary
|
|
47
|
+
* // arn: "STRING_VALUE", // required
|
|
48
|
+
* // componentTypeId: "STRING_VALUE", // required
|
|
49
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // description: "STRING_VALUE",
|
|
52
|
+
* // status: { // Status
|
|
53
|
+
* // state: "STRING_VALUE",
|
|
54
|
+
* // error: { // ErrorDetails
|
|
55
|
+
* // code: "STRING_VALUE",
|
|
56
|
+
* // message: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // componentTypeName: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // maxResults: Number("int"),
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
43
66
|
* ```
|
|
44
67
|
*
|
|
45
68
|
* @param ListComponentTypesCommandInput - {@link ListComponentTypesCommandInput}
|
|
@@ -60,6 +83,8 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo
|
|
|
60
83
|
* @throws {@link ValidationException} (client fault)
|
|
61
84
|
* <p>Failed</p>
|
|
62
85
|
*
|
|
86
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
63
88
|
*
|
|
64
89
|
*/
|
|
65
90
|
export declare class ListComponentTypesCommand extends $Command<ListComponentTypesCommandInput, ListComponentTypesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -40,6 +40,29 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListEntitiesCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListEntitiesResponse
|
|
44
|
+
* // entitySummaries: [ // EntitySummaries
|
|
45
|
+
* // { // EntitySummary
|
|
46
|
+
* // entityId: "STRING_VALUE", // required
|
|
47
|
+
* // entityName: "STRING_VALUE", // required
|
|
48
|
+
* // arn: "STRING_VALUE", // required
|
|
49
|
+
* // parentEntityId: "STRING_VALUE",
|
|
50
|
+
* // status: { // Status
|
|
51
|
+
* // state: "STRING_VALUE",
|
|
52
|
+
* // error: { // ErrorDetails
|
|
53
|
+
* // code: "STRING_VALUE",
|
|
54
|
+
* // message: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // description: "STRING_VALUE",
|
|
58
|
+
* // hasChildEntities: true || false,
|
|
59
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // nextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
43
66
|
* ```
|
|
44
67
|
*
|
|
45
68
|
* @param ListEntitiesCommandInput - {@link ListEntitiesCommandInput}
|
|
@@ -60,6 +83,8 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
60
83
|
* @throws {@link ValidationException} (client fault)
|
|
61
84
|
* <p>Failed</p>
|
|
62
85
|
*
|
|
86
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
63
88
|
*
|
|
64
89
|
*/
|
|
65
90
|
export declare class ListEntitiesCommand extends $Command<ListEntitiesCommandInput, ListEntitiesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListScenesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListScenesResponse
|
|
37
|
+
* // sceneSummaries: [ // SceneSummaries
|
|
38
|
+
* // { // SceneSummary
|
|
39
|
+
* // sceneId: "STRING_VALUE", // required
|
|
40
|
+
* // contentLocation: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // description: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListScenesCommandInput - {@link ListScenesCommandInput}
|
|
@@ -53,6 +67,8 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB
|
|
|
53
67
|
* @throws {@link ValidationException} (client fault)
|
|
54
68
|
* <p>Failed</p>
|
|
55
69
|
*
|
|
70
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
56
72
|
*
|
|
57
73
|
*/
|
|
58
74
|
export declare class ListScenesCommand extends $Command<ListScenesCommandInput, ListScenesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -33,6 +33,26 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSyncJobsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSyncJobsResponse
|
|
37
|
+
* // syncJobSummaries: [ // SyncJobSummaries
|
|
38
|
+
* // { // SyncJobSummary
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // workspaceId: "STRING_VALUE",
|
|
41
|
+
* // syncSource: "STRING_VALUE",
|
|
42
|
+
* // status: { // SyncJobStatus
|
|
43
|
+
* // state: "STRING_VALUE",
|
|
44
|
+
* // error: { // ErrorDetails
|
|
45
|
+
* // code: "STRING_VALUE",
|
|
46
|
+
* // message: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // creationDateTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // updateDateTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param ListSyncJobsCommandInput - {@link ListSyncJobsCommandInput}
|
|
@@ -56,6 +76,8 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad
|
|
|
56
76
|
* @throws {@link ValidationException} (client fault)
|
|
57
77
|
* <p>Failed</p>
|
|
58
78
|
*
|
|
79
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
59
81
|
*
|
|
60
82
|
*/
|
|
61
83
|
export declare class ListSyncJobsCommand extends $Command<ListSyncJobsCommandInput, ListSyncJobsCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -42,6 +42,25 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new ListSyncResourcesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // ListSyncResourcesResponse
|
|
46
|
+
* // syncResources: [ // SyncResourceSummaries
|
|
47
|
+
* // { // SyncResourceSummary
|
|
48
|
+
* // resourceType: "STRING_VALUE",
|
|
49
|
+
* // externalId: "STRING_VALUE",
|
|
50
|
+
* // resourceId: "STRING_VALUE",
|
|
51
|
+
* // status: { // SyncResourceStatus
|
|
52
|
+
* // state: "STRING_VALUE",
|
|
53
|
+
* // error: { // ErrorDetails
|
|
54
|
+
* // code: "STRING_VALUE",
|
|
55
|
+
* // message: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // updateDateTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
45
64
|
* ```
|
|
46
65
|
*
|
|
47
66
|
* @param ListSyncResourcesCommandInput - {@link ListSyncResourcesCommandInput}
|
|
@@ -65,6 +84,8 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons
|
|
|
65
84
|
* @throws {@link ValidationException} (client fault)
|
|
66
85
|
* <p>Failed</p>
|
|
67
86
|
*
|
|
87
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
68
89
|
*
|
|
69
90
|
*/
|
|
70
91
|
export declare class ListSyncResourcesCommand extends $Command<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTagsForResourceResponse
|
|
37
|
+
* // tags: { // TagMap
|
|
38
|
+
* // "<keys>": "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // nextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -47,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
47
54
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
55
|
* <p>The resource wasn't found.</p>
|
|
49
56
|
*
|
|
57
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
50
59
|
*
|
|
51
60
|
*/
|
|
52
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -32,6 +32,19 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListWorkspacesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListWorkspacesResponse
|
|
36
|
+
* // workspaceSummaries: [ // WorkspaceSummaries
|
|
37
|
+
* // { // WorkspaceSummary
|
|
38
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // creationDateTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
35
48
|
* ```
|
|
36
49
|
*
|
|
37
50
|
* @param ListWorkspacesCommandInput - {@link ListWorkspacesCommandInput}
|
|
@@ -52,6 +65,8 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
52
65
|
* @throws {@link ValidationException} (client fault)
|
|
53
66
|
* <p>Failed</p>
|
|
54
67
|
*
|
|
68
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
55
70
|
*
|
|
56
71
|
*/
|
|
57
72
|
export declare class ListWorkspacesCommand extends $Command<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link TooManyTagsException} (client fault)
|
|
52
54
|
* <p>The number of tags exceeds the limit.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
48
50
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
51
|
* <p>The resource wasn't found.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -126,6 +126,13 @@ export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes
|
|
|
126
126
|
* };
|
|
127
127
|
* const command = new UpdateComponentTypeCommand(input);
|
|
128
128
|
* const response = await client.send(command);
|
|
129
|
+
* // { // UpdateComponentTypeResponse
|
|
130
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
131
|
+
* // arn: "STRING_VALUE", // required
|
|
132
|
+
* // componentTypeId: "STRING_VALUE", // required
|
|
133
|
+
* // state: "STRING_VALUE", // required
|
|
134
|
+
* // };
|
|
135
|
+
*
|
|
129
136
|
* ```
|
|
130
137
|
*
|
|
131
138
|
* @param UpdateComponentTypeCommandInput - {@link UpdateComponentTypeCommandInput}
|
|
@@ -152,6 +159,8 @@ export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes
|
|
|
152
159
|
* @throws {@link ValidationException} (client fault)
|
|
153
160
|
* <p>Failed</p>
|
|
154
161
|
*
|
|
162
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
163
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
155
164
|
*
|
|
156
165
|
*/
|
|
157
166
|
export declare class UpdateComponentTypeCommand extends $Command<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -124,6 +124,11 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
|
|
|
124
124
|
* };
|
|
125
125
|
* const command = new UpdateEntityCommand(input);
|
|
126
126
|
* const response = await client.send(command);
|
|
127
|
+
* // { // UpdateEntityResponse
|
|
128
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
129
|
+
* // state: "STRING_VALUE", // required
|
|
130
|
+
* // };
|
|
131
|
+
*
|
|
127
132
|
* ```
|
|
128
133
|
*
|
|
129
134
|
* @param UpdateEntityCommandInput - {@link UpdateEntityCommandInput}
|
|
@@ -153,6 +158,8 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad
|
|
|
153
158
|
* @throws {@link ValidationException} (client fault)
|
|
154
159
|
* <p>Failed</p>
|
|
155
160
|
*
|
|
161
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
162
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
156
163
|
*
|
|
157
164
|
*/
|
|
158
165
|
export declare class UpdateEntityCommand extends $Command<UpdateEntityCommandInput, UpdateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
@@ -34,6 +34,35 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdatePricingPlanCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdatePricingPlanResponse
|
|
38
|
+
* // currentPricingPlan: { // PricingPlan
|
|
39
|
+
* // billableEntityCount: Number("long"),
|
|
40
|
+
* // bundleInformation: { // BundleInformation
|
|
41
|
+
* // bundleNames: [ // PricingBundles // required
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // pricingTier: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // effectiveDateTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // pricingMode: "STRING_VALUE", // required
|
|
48
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // updateReason: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // pendingPricingPlan: {
|
|
52
|
+
* // billableEntityCount: Number("long"),
|
|
53
|
+
* // bundleInformation: {
|
|
54
|
+
* // bundleNames: [ // required
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // pricingTier: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // effectiveDateTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // pricingMode: "STRING_VALUE", // required
|
|
61
|
+
* // updateDateTime: new Date("TIMESTAMP"), // required
|
|
62
|
+
* // updateReason: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
37
66
|
* ```
|
|
38
67
|
*
|
|
39
68
|
* @param UpdatePricingPlanCommandInput - {@link UpdatePricingPlanCommandInput}
|
|
@@ -54,6 +83,8 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons
|
|
|
54
83
|
* @throws {@link ValidationException} (client fault)
|
|
55
84
|
* <p>Failed</p>
|
|
56
85
|
*
|
|
86
|
+
* @throws {@link IoTTwinMakerServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
|
|
57
88
|
*
|
|
58
89
|
*/
|
|
59
90
|
export declare class UpdatePricingPlanCommand extends $Command<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
|