@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.
Files changed (41) hide show
  1. package/dist-cjs/models/models_0.js +4 -1
  2. package/dist-cjs/protocols/Aws_restJson1.js +1 -0
  3. package/dist-es/models/models_0.js +3 -0
  4. package/dist-es/protocols/Aws_restJson1.js +1 -0
  5. package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +66 -0
  6. package/dist-types/commands/CreateComponentTypeCommand.d.ts +8 -0
  7. package/dist-types/commands/CreateEntityCommand.d.ts +9 -0
  8. package/dist-types/commands/CreateSceneCommand.d.ts +7 -0
  9. package/dist-types/commands/CreateSyncJobCommand.d.ts +8 -0
  10. package/dist-types/commands/CreateWorkspaceCommand.d.ts +7 -0
  11. package/dist-types/commands/DeleteComponentTypeCommand.d.ts +6 -0
  12. package/dist-types/commands/DeleteEntityCommand.d.ts +6 -0
  13. package/dist-types/commands/DeleteSceneCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteSyncJobCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +4 -0
  16. package/dist-types/commands/ExecuteQueryCommand.d.ts +19 -0
  17. package/dist-types/commands/GetComponentTypeCommand.d.ts +119 -0
  18. package/dist-types/commands/GetEntityCommand.d.ts +119 -0
  19. package/dist-types/commands/GetPricingPlanCommand.d.ts +31 -0
  20. package/dist-types/commands/GetPropertyValueCommand.d.ts +60 -0
  21. package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +59 -0
  22. package/dist-types/commands/GetSceneCommand.d.ts +25 -0
  23. package/dist-types/commands/GetSyncJobCommand.d.ts +18 -0
  24. package/dist-types/commands/GetWorkspaceCommand.d.ts +12 -0
  25. package/dist-types/commands/ListComponentTypesCommand.d.ts +25 -0
  26. package/dist-types/commands/ListEntitiesCommand.d.ts +25 -0
  27. package/dist-types/commands/ListScenesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListSyncJobsCommand.d.ts +22 -0
  29. package/dist-types/commands/ListSyncResourcesCommand.d.ts +21 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
  31. package/dist-types/commands/ListWorkspacesCommand.d.ts +15 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  34. package/dist-types/commands/UpdateComponentTypeCommand.d.ts +9 -0
  35. package/dist-types/commands/UpdateEntityCommand.d.ts +7 -0
  36. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +31 -0
  37. package/dist-types/commands/UpdateSceneCommand.d.ts +6 -0
  38. package/dist-types/commands/UpdateWorkspaceCommand.d.ts +6 -0
  39. package/dist-types/models/models_0.d.ts +29 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +10 -0
  41. package/package.json +16 -16
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ParentEntityUpdateType = exports.ComponentUpdateType = exports.TooManyTagsException = exports.SyncResourceFilter = exports.SyncResourceState = exports.SyncResourceType = exports.ListEntitiesFilter = exports.ListComponentTypesFilter = exports.OrderByTime = exports.InterpolationType = exports.Order = exports.ConnectorTimeoutException = exports.ConnectorFailureException = exports.UpdateReason = exports.PricingMode = exports.PricingTier = exports.ErrorCode = exports.QueryTimeoutException = exports.ColumnType = exports.SyncJobState = exports.PropertyGroupUpdateType = exports.PropertyUpdateType = exports.ServiceQuotaExceededException = exports.State = exports.GroupType = exports.Type = exports.Scope = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
3
+ exports.ParentEntityUpdateType = exports.ComponentUpdateType = exports.TooManyTagsException = exports.SyncResourceFilter = exports.SyncResourceState = exports.SyncResourceType = exports.ListEntitiesFilter = exports.ListComponentTypesFilter = exports.SceneErrorCode = exports.OrderByTime = exports.InterpolationType = exports.Order = exports.ConnectorTimeoutException = exports.ConnectorFailureException = exports.UpdateReason = exports.PricingMode = exports.PricingTier = exports.ErrorCode = exports.QueryTimeoutException = exports.ColumnType = exports.SyncJobState = exports.PropertyGroupUpdateType = exports.PropertyUpdateType = exports.ServiceQuotaExceededException = exports.State = exports.GroupType = exports.Type = exports.Scope = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
4
4
  const IoTTwinMakerServiceException_1 = require("./IoTTwinMakerServiceException");
5
5
  class AccessDeniedException extends IoTTwinMakerServiceException_1.IoTTwinMakerServiceException {
6
6
  constructor(opts) {
@@ -215,6 +215,9 @@ exports.OrderByTime = {
215
215
  ASCENDING: "ASCENDING",
216
216
  DESCENDING: "DESCENDING",
217
217
  };
218
+ exports.SceneErrorCode = {
219
+ MATTERPORT_ERROR: "MATTERPORT_ERROR",
220
+ };
218
221
  var ListComponentTypesFilter;
219
222
  (function (ListComponentTypesFilter) {
220
223
  ListComponentTypesFilter.visit = (value, visitor) => {
@@ -1899,6 +1899,7 @@ const de_GetSceneCommand = async (output, context) => {
1899
1899
  contentLocation: smithy_client_1.expectString,
1900
1900
  creationDateTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
1901
1901
  description: smithy_client_1.expectString,
1902
+ error: smithy_client_1._json,
1902
1903
  generatedSceneMetadata: smithy_client_1._json,
1903
1904
  sceneId: smithy_client_1.expectString,
1904
1905
  sceneMetadata: smithy_client_1._json,
@@ -202,6 +202,9 @@ export const OrderByTime = {
202
202
  ASCENDING: "ASCENDING",
203
203
  DESCENDING: "DESCENDING",
204
204
  };
205
+ export const SceneErrorCode = {
206
+ MATTERPORT_ERROR: "MATTERPORT_ERROR",
207
+ };
205
208
  export var ListComponentTypesFilter;
206
209
  (function (ListComponentTypesFilter) {
207
210
  ListComponentTypesFilter.visit = (value, visitor) => {
@@ -1844,6 +1844,7 @@ export const de_GetSceneCommand = async (output, context) => {
1844
1844
  contentLocation: __expectString,
1845
1845
  creationDateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1846
1846
  description: __expectString,
1847
+ error: _json,
1847
1848
  generatedSceneMetadata: _json,
1848
1849
  sceneId: __expectString,
1849
1850
  sceneMetadata: _json,
@@ -84,6 +84,70 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
84
84
  * };
85
85
  * const command = new BatchPutPropertyValuesCommand(input);
86
86
  * const response = await client.send(command);
87
+ * // { // BatchPutPropertyValuesResponse
88
+ * // errorEntries: [ // ErrorEntries // required
89
+ * // { // BatchPutPropertyErrorEntry
90
+ * // errors: [ // Errors // required
91
+ * // { // BatchPutPropertyError
92
+ * // errorCode: "STRING_VALUE", // required
93
+ * // errorMessage: "STRING_VALUE", // required
94
+ * // entry: { // PropertyValueEntry
95
+ * // entityPropertyReference: { // EntityPropertyReference
96
+ * // componentName: "STRING_VALUE",
97
+ * // externalIdProperty: { // ExternalIdProperty
98
+ * // "<keys>": "STRING_VALUE",
99
+ * // },
100
+ * // entityId: "STRING_VALUE",
101
+ * // propertyName: "STRING_VALUE", // required
102
+ * // },
103
+ * // propertyValues: [ // PropertyValues
104
+ * // { // PropertyValue
105
+ * // timestamp: new Date("TIMESTAMP"),
106
+ * // value: { // DataValue
107
+ * // booleanValue: true || false,
108
+ * // doubleValue: Number("double"),
109
+ * // integerValue: Number("int"),
110
+ * // longValue: Number("long"),
111
+ * // stringValue: "STRING_VALUE",
112
+ * // listValue: [ // DataValueList
113
+ * // {
114
+ * // booleanValue: true || false,
115
+ * // doubleValue: Number("double"),
116
+ * // integerValue: Number("int"),
117
+ * // longValue: Number("long"),
118
+ * // stringValue: "STRING_VALUE",
119
+ * // listValue: [
120
+ * // "<DataValue>",
121
+ * // ],
122
+ * // mapValue: { // DataValueMap
123
+ * // "<keys>": "<DataValue>",
124
+ * // },
125
+ * // relationshipValue: { // RelationshipValue
126
+ * // targetEntityId: "STRING_VALUE",
127
+ * // targetComponentName: "STRING_VALUE",
128
+ * // },
129
+ * // expression: "STRING_VALUE",
130
+ * // },
131
+ * // ],
132
+ * // mapValue: {
133
+ * // "<keys>": "<DataValue>",
134
+ * // },
135
+ * // relationshipValue: {
136
+ * // targetEntityId: "STRING_VALUE",
137
+ * // targetComponentName: "STRING_VALUE",
138
+ * // },
139
+ * // expression: "STRING_VALUE",
140
+ * // },
141
+ * // time: "STRING_VALUE",
142
+ * // },
143
+ * // ],
144
+ * // },
145
+ * // },
146
+ * // ],
147
+ * // },
148
+ * // ],
149
+ * // };
150
+ *
87
151
  * ```
88
152
  *
89
153
  * @param BatchPutPropertyValuesCommandInput - {@link BatchPutPropertyValuesCommandInput}
@@ -104,6 +168,8 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
104
168
  * @throws {@link ValidationException} (client fault)
105
169
  * <p>Failed</p>
106
170
  *
171
+ * @throws {@link IoTTwinMakerServiceException}
172
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
107
173
  *
108
174
  */
109
175
  export declare class BatchPutPropertyValuesCommand extends $Command<BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -129,6 +129,12 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes
129
129
  * };
130
130
  * const command = new CreateComponentTypeCommand(input);
131
131
  * const response = await client.send(command);
132
+ * // { // CreateComponentTypeResponse
133
+ * // arn: "STRING_VALUE", // required
134
+ * // creationDateTime: new Date("TIMESTAMP"), // required
135
+ * // state: "STRING_VALUE", // required
136
+ * // };
137
+ *
132
138
  * ```
133
139
  *
134
140
  * @param CreateComponentTypeCommandInput - {@link CreateComponentTypeCommandInput}
@@ -155,6 +161,8 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes
155
161
  * @throws {@link ValidationException} (client fault)
156
162
  * <p>Failed</p>
157
163
  *
164
+ * @throws {@link IoTTwinMakerServiceException}
165
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
158
166
  *
159
167
  */
160
168
  export declare class CreateComponentTypeCommand extends $Command<CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -123,6 +123,13 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
123
123
  * };
124
124
  * const command = new CreateEntityCommand(input);
125
125
  * const response = await client.send(command);
126
+ * // { // CreateEntityResponse
127
+ * // entityId: "STRING_VALUE", // required
128
+ * // arn: "STRING_VALUE", // required
129
+ * // creationDateTime: new Date("TIMESTAMP"), // required
130
+ * // state: "STRING_VALUE", // required
131
+ * // };
132
+ *
126
133
  * ```
127
134
  *
128
135
  * @param CreateEntityCommandInput - {@link CreateEntityCommandInput}
@@ -149,6 +156,8 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
149
156
  * @throws {@link ValidationException} (client fault)
150
157
  * <p>Failed</p>
151
158
  *
159
+ * @throws {@link IoTTwinMakerServiceException}
160
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
152
161
  *
153
162
  */
154
163
  export declare class CreateEntityCommand extends $Command<CreateEntityCommandInput, CreateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -43,6 +43,11 @@ export interface CreateSceneCommandOutput extends CreateSceneResponse, __Metadat
43
43
  * };
44
44
  * const command = new CreateSceneCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // CreateSceneResponse
47
+ * // arn: "STRING_VALUE", // required
48
+ * // creationDateTime: new Date("TIMESTAMP"), // required
49
+ * // };
50
+ *
46
51
  * ```
47
52
  *
48
53
  * @param CreateSceneCommandInput - {@link CreateSceneCommandInput}
@@ -69,6 +74,8 @@ export interface CreateSceneCommandOutput extends CreateSceneResponse, __Metadat
69
74
  * @throws {@link ValidationException} (client fault)
70
75
  * <p>Failed</p>
71
76
  *
77
+ * @throws {@link IoTTwinMakerServiceException}
78
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
72
79
  *
73
80
  */
74
81
  export declare class CreateSceneCommand extends $Command<CreateSceneCommandInput, CreateSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -36,6 +36,12 @@ export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met
36
36
  * };
37
37
  * const command = new CreateSyncJobCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // CreateSyncJobResponse
40
+ * // arn: "STRING_VALUE", // required
41
+ * // creationDateTime: new Date("TIMESTAMP"), // required
42
+ * // state: "STRING_VALUE", // required
43
+ * // };
44
+ *
39
45
  * ```
40
46
  *
41
47
  * @param CreateSyncJobCommandInput - {@link CreateSyncJobCommandInput}
@@ -62,6 +68,8 @@ export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met
62
68
  * @throws {@link ValidationException} (client fault)
63
69
  * <p>Failed</p>
64
70
  *
71
+ * @throws {@link IoTTwinMakerServiceException}
72
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
65
73
  *
66
74
  */
67
75
  export declare class CreateSyncJobCommand extends $Command<CreateSyncJobCommandInput, CreateSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -37,6 +37,11 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
37
37
  * };
38
38
  * const command = new CreateWorkspaceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // CreateWorkspaceResponse
41
+ * // arn: "STRING_VALUE", // required
42
+ * // creationDateTime: new Date("TIMESTAMP"), // required
43
+ * // };
44
+ *
40
45
  * ```
41
46
  *
42
47
  * @param CreateWorkspaceCommandInput - {@link CreateWorkspaceCommandInput}
@@ -63,6 +68,8 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
63
68
  * @throws {@link ValidationException} (client fault)
64
69
  * <p>Failed</p>
65
70
  *
71
+ * @throws {@link IoTTwinMakerServiceException}
72
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
66
73
  *
67
74
  */
68
75
  export declare class CreateWorkspaceCommand extends $Command<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes
32
32
  * };
33
33
  * const command = new DeleteComponentTypeCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteComponentTypeResponse
36
+ * // state: "STRING_VALUE", // required
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeleteComponentTypeCommandInput - {@link DeleteComponentTypeCommandInput}
@@ -55,6 +59,8 @@ export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes
55
59
  * @throws {@link ValidationException} (client fault)
56
60
  * <p>Failed</p>
57
61
  *
62
+ * @throws {@link IoTTwinMakerServiceException}
63
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
58
64
  *
59
65
  */
60
66
  export declare class DeleteComponentTypeCommand extends $Command<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad
33
33
  * };
34
34
  * const command = new DeleteEntityCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteEntityResponse
37
+ * // state: "STRING_VALUE", // required
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param DeleteEntityCommandInput - {@link DeleteEntityCommandInput}
@@ -56,6 +60,8 @@ export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad
56
60
  * @throws {@link ValidationException} (client fault)
57
61
  * <p>Failed</p>
58
62
  *
63
+ * @throws {@link IoTTwinMakerServiceException}
64
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
59
65
  *
60
66
  */
61
67
  export declare class DeleteEntityCommand extends $Command<DeleteEntityCommandInput, DeleteEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat
32
32
  * };
33
33
  * const command = new DeleteSceneCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteSceneCommandInput - {@link DeleteSceneCommandInput}
@@ -55,6 +57,8 @@ export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat
55
57
  * @throws {@link ValidationException} (client fault)
56
58
  * <p>Failed</p>
57
59
  *
60
+ * @throws {@link IoTTwinMakerServiceException}
61
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeleteSceneCommand extends $Command<DeleteSceneCommandInput, DeleteSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met
32
32
  * };
33
33
  * const command = new DeleteSyncJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteSyncJobResponse
36
+ * // state: "STRING_VALUE", // required
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeleteSyncJobCommandInput - {@link DeleteSyncJobCommandInput}
@@ -58,6 +62,8 @@ export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met
58
62
  * @throws {@link ValidationException} (client fault)
59
63
  * <p>Failed</p>
60
64
  *
65
+ * @throws {@link IoTTwinMakerServiceException}
66
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
61
67
  *
62
68
  */
63
69
  export declare class DeleteSyncJobCommand extends $Command<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
31
31
  * };
32
32
  * const command = new DeleteWorkspaceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteWorkspaceCommandInput - {@link DeleteWorkspaceCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
54
56
  * @throws {@link ValidationException} (client fault)
55
57
  * <p>Failed</p>
56
58
  *
59
+ * @throws {@link IoTTwinMakerServiceException}
60
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteWorkspaceCommand extends $Command<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -35,6 +35,23 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
35
35
  * };
36
36
  * const command = new ExecuteQueryCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ExecuteQueryResponse
39
+ * // columnDescriptions: [ // ColumnDescriptions
40
+ * // { // ColumnDescription
41
+ * // name: "STRING_VALUE",
42
+ * // type: "STRING_VALUE",
43
+ * // },
44
+ * // ],
45
+ * // rows: [ // Rows
46
+ * // { // Row
47
+ * // rowData: [ // RowData
48
+ * // "DOCUMENT_VALUE",
49
+ * // ],
50
+ * // },
51
+ * // ],
52
+ * // nextToken: "STRING_VALUE",
53
+ * // };
54
+ *
38
55
  * ```
39
56
  *
40
57
  * @param ExecuteQueryCommandInput - {@link ExecuteQueryCommandInput}
@@ -61,6 +78,8 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
61
78
  * @throws {@link ValidationException} (client fault)
62
79
  * <p>Failed</p>
63
80
  *
81
+ * @throws {@link IoTTwinMakerServiceException}
82
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
64
83
  *
65
84
  */
66
85
  export declare class ExecuteQueryCommand extends $Command<ExecuteQueryCommandInput, ExecuteQueryCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -32,6 +32,123 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse,
32
32
  * };
33
33
  * const command = new GetComponentTypeCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetComponentTypeResponse
36
+ * // workspaceId: "STRING_VALUE", // required
37
+ * // isSingleton: true || false,
38
+ * // componentTypeId: "STRING_VALUE", // required
39
+ * // description: "STRING_VALUE",
40
+ * // propertyDefinitions: { // PropertyDefinitionsResponse
41
+ * // "<keys>": { // PropertyDefinitionResponse
42
+ * // dataType: { // DataType
43
+ * // type: "STRING_VALUE", // required
44
+ * // nestedType: {
45
+ * // type: "STRING_VALUE", // required
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>",
64
+ * // },
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",
78
+ * // },
79
+ * // expression: "STRING_VALUE",
80
+ * // },
81
+ * // ],
82
+ * // unitOfMeasure: "STRING_VALUE",
83
+ * // relationship: { // Relationship
84
+ * // targetComponentTypeId: "STRING_VALUE",
85
+ * // relationshipType: "STRING_VALUE",
86
+ * // },
87
+ * // },
88
+ * // allowedValues: "<DataValueList>",
89
+ * // unitOfMeasure: "STRING_VALUE",
90
+ * // relationship: {
91
+ * // targetComponentTypeId: "STRING_VALUE",
92
+ * // relationshipType: "STRING_VALUE",
93
+ * // },
94
+ * // },
95
+ * // isTimeSeries: true || false, // required
96
+ * // isRequiredInEntity: true || false, // required
97
+ * // isExternalId: true || false, // required
98
+ * // isStoredExternally: true || false, // required
99
+ * // isImported: true || false, // required
100
+ * // isFinal: true || false, // required
101
+ * // isInherited: true || false, // required
102
+ * // defaultValue: "<DataValue>",
103
+ * // configuration: { // Configuration
104
+ * // "<keys>": "STRING_VALUE",
105
+ * // },
106
+ * // displayName: "STRING_VALUE",
107
+ * // },
108
+ * // },
109
+ * // extendsFrom: [ // ExtendsFrom
110
+ * // "STRING_VALUE",
111
+ * // ],
112
+ * // functions: { // FunctionsResponse
113
+ * // "<keys>": { // FunctionResponse
114
+ * // requiredProperties: [ // RequiredProperties
115
+ * // "STRING_VALUE",
116
+ * // ],
117
+ * // scope: "STRING_VALUE",
118
+ * // implementedBy: { // DataConnector
119
+ * // lambda: { // LambdaFunction
120
+ * // arn: "STRING_VALUE", // required
121
+ * // },
122
+ * // isNative: true || false,
123
+ * // },
124
+ * // isInherited: true || false,
125
+ * // },
126
+ * // },
127
+ * // creationDateTime: new Date("TIMESTAMP"), // required
128
+ * // updateDateTime: new Date("TIMESTAMP"), // required
129
+ * // arn: "STRING_VALUE", // required
130
+ * // isAbstract: true || false,
131
+ * // isSchemaInitialized: true || false,
132
+ * // status: { // Status
133
+ * // state: "STRING_VALUE",
134
+ * // error: { // ErrorDetails
135
+ * // code: "STRING_VALUE",
136
+ * // message: "STRING_VALUE",
137
+ * // },
138
+ * // },
139
+ * // propertyGroups: { // PropertyGroupsResponse
140
+ * // "<keys>": { // PropertyGroupResponse
141
+ * // groupType: "STRING_VALUE", // required
142
+ * // propertyNames: [ // PropertyNames // required
143
+ * // "STRING_VALUE",
144
+ * // ],
145
+ * // isInherited: true || false, // required
146
+ * // },
147
+ * // },
148
+ * // syncSource: "STRING_VALUE",
149
+ * // componentTypeName: "STRING_VALUE",
150
+ * // };
151
+ *
35
152
  * ```
36
153
  *
37
154
  * @param GetComponentTypeCommandInput - {@link GetComponentTypeCommandInput}
@@ -55,6 +172,8 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse,
55
172
  * @throws {@link ValidationException} (client fault)
56
173
  * <p>Failed</p>
57
174
  *
175
+ * @throws {@link IoTTwinMakerServiceException}
176
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
58
177
  *
59
178
  */
60
179
  export declare class GetComponentTypeCommand extends $Command<GetComponentTypeCommandInput, GetComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
@@ -32,6 +32,123 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
32
32
  * };
33
33
  * const command = new GetEntityCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetEntityResponse
36
+ * // entityId: "STRING_VALUE", // required
37
+ * // entityName: "STRING_VALUE", // required
38
+ * // arn: "STRING_VALUE", // required
39
+ * // status: { // Status
40
+ * // state: "STRING_VALUE",
41
+ * // error: { // ErrorDetails
42
+ * // code: "STRING_VALUE",
43
+ * // message: "STRING_VALUE",
44
+ * // },
45
+ * // },
46
+ * // workspaceId: "STRING_VALUE", // required
47
+ * // description: "STRING_VALUE",
48
+ * // components: { // ComponentsMap
49
+ * // "<keys>": { // ComponentResponse
50
+ * // componentName: "STRING_VALUE",
51
+ * // description: "STRING_VALUE",
52
+ * // componentTypeId: "STRING_VALUE",
53
+ * // status: {
54
+ * // state: "STRING_VALUE",
55
+ * // error: {
56
+ * // code: "STRING_VALUE",
57
+ * // message: "STRING_VALUE",
58
+ * // },
59
+ * // },
60
+ * // definedIn: "STRING_VALUE",
61
+ * // properties: { // PropertyResponses
62
+ * // "<keys>": { // PropertyResponse
63
+ * // definition: { // PropertyDefinitionResponse
64
+ * // dataType: { // DataType
65
+ * // type: "STRING_VALUE", // required
66
+ * // nestedType: {
67
+ * // type: "STRING_VALUE", // required
68
+ * // nestedType: "<DataType>",
69
+ * // allowedValues: [ // DataValueList
70
+ * // { // DataValue
71
+ * // booleanValue: true || false,
72
+ * // doubleValue: Number("double"),
73
+ * // integerValue: Number("int"),
74
+ * // longValue: Number("long"),
75
+ * // stringValue: "STRING_VALUE",
76
+ * // listValue: [
77
+ * // {
78
+ * // booleanValue: true || false,
79
+ * // doubleValue: Number("double"),
80
+ * // integerValue: Number("int"),
81
+ * // longValue: Number("long"),
82
+ * // stringValue: "STRING_VALUE",
83
+ * // listValue: "<DataValueList>",
84
+ * // mapValue: { // DataValueMap
85
+ * // "<keys>": "<DataValue>",
86
+ * // },
87
+ * // relationshipValue: { // RelationshipValue
88
+ * // targetEntityId: "STRING_VALUE",
89
+ * // targetComponentName: "STRING_VALUE",
90
+ * // },
91
+ * // expression: "STRING_VALUE",
92
+ * // },
93
+ * // ],
94
+ * // mapValue: {
95
+ * // "<keys>": "<DataValue>",
96
+ * // },
97
+ * // relationshipValue: {
98
+ * // targetEntityId: "STRING_VALUE",
99
+ * // targetComponentName: "STRING_VALUE",
100
+ * // },
101
+ * // expression: "STRING_VALUE",
102
+ * // },
103
+ * // ],
104
+ * // unitOfMeasure: "STRING_VALUE",
105
+ * // relationship: { // Relationship
106
+ * // targetComponentTypeId: "STRING_VALUE",
107
+ * // relationshipType: "STRING_VALUE",
108
+ * // },
109
+ * // },
110
+ * // allowedValues: "<DataValueList>",
111
+ * // unitOfMeasure: "STRING_VALUE",
112
+ * // relationship: {
113
+ * // targetComponentTypeId: "STRING_VALUE",
114
+ * // relationshipType: "STRING_VALUE",
115
+ * // },
116
+ * // },
117
+ * // isTimeSeries: true || false, // required
118
+ * // isRequiredInEntity: true || false, // required
119
+ * // isExternalId: true || false, // required
120
+ * // isStoredExternally: true || false, // required
121
+ * // isImported: true || false, // required
122
+ * // isFinal: true || false, // required
123
+ * // isInherited: true || false, // required
124
+ * // defaultValue: "<DataValue>",
125
+ * // configuration: { // Configuration
126
+ * // "<keys>": "STRING_VALUE",
127
+ * // },
128
+ * // displayName: "STRING_VALUE",
129
+ * // },
130
+ * // value: "<DataValue>",
131
+ * // },
132
+ * // },
133
+ * // propertyGroups: { // ComponentPropertyGroupResponses
134
+ * // "<keys>": { // ComponentPropertyGroupResponse
135
+ * // groupType: "STRING_VALUE", // required
136
+ * // propertyNames: [ // PropertyNames // required
137
+ * // "STRING_VALUE",
138
+ * // ],
139
+ * // isInherited: true || false, // required
140
+ * // },
141
+ * // },
142
+ * // syncSource: "STRING_VALUE",
143
+ * // },
144
+ * // },
145
+ * // parentEntityId: "STRING_VALUE", // required
146
+ * // hasChildEntities: true || false, // required
147
+ * // creationDateTime: new Date("TIMESTAMP"), // required
148
+ * // updateDateTime: new Date("TIMESTAMP"), // required
149
+ * // syncSource: "STRING_VALUE",
150
+ * // };
151
+ *
35
152
  * ```
36
153
  *
37
154
  * @param GetEntityCommandInput - {@link GetEntityCommandInput}
@@ -55,6 +172,8 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
55
172
  * @throws {@link ValidationException} (client fault)
56
173
  * <p>Failed</p>
57
174
  *
175
+ * @throws {@link IoTTwinMakerServiceException}
176
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
58
177
  *
59
178
  */
60
179
  export declare class GetEntityCommand extends $Command<GetEntityCommandInput, GetEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {