@aws-sdk/client-iotthingsgraph 3.300.0 → 3.303.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 +84 -97
- package/dist-es/models/models_0.js +84 -97
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +1 -1
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +5 -5
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -2
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +1 -1
- package/dist-types/commands/GetEntitiesCommand.d.ts +2 -2
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/GetUploadStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/SearchEntitiesCommand.d.ts +5 -5
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +4 -4
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +4 -4
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +4 -4
- package/dist-types/commands/SearchThingsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -2
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +149 -84
- package/dist-types/ts3.4/models/models_0.d.ts +108 -84
- package/package.json +34 -34
|
@@ -54,10 +54,9 @@ class ThrottlingException extends IoTThingsGraphServiceException_1.IoTThingsGrap
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
exports.ThrottlingException = ThrottlingException;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
})(DefinitionLanguage = exports.DefinitionLanguage || (exports.DefinitionLanguage = {}));
|
|
57
|
+
exports.DefinitionLanguage = {
|
|
58
|
+
GRAPHQL: "GRAPHQL",
|
|
59
|
+
};
|
|
61
60
|
class LimitExceededException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {
|
|
62
61
|
constructor(opts) {
|
|
63
62
|
super({
|
|
@@ -84,22 +83,20 @@ class ResourceAlreadyExistsException extends IoTThingsGraphServiceException_1.Io
|
|
|
84
83
|
}
|
|
85
84
|
}
|
|
86
85
|
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
SystemInstanceDeploymentStatus["UNDEPLOY_IN_PROGRESS"] = "UNDEPLOY_IN_PROGRESS";
|
|
102
|
-
})(SystemInstanceDeploymentStatus = exports.SystemInstanceDeploymentStatus || (exports.SystemInstanceDeploymentStatus = {}));
|
|
86
|
+
exports.DeploymentTarget = {
|
|
87
|
+
CLOUD: "CLOUD",
|
|
88
|
+
GREENGRASS: "GREENGRASS",
|
|
89
|
+
};
|
|
90
|
+
exports.SystemInstanceDeploymentStatus = {
|
|
91
|
+
BOOTSTRAP: "BOOTSTRAP",
|
|
92
|
+
DELETED_IN_TARGET: "DELETED_IN_TARGET",
|
|
93
|
+
DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET",
|
|
94
|
+
DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS",
|
|
95
|
+
FAILED: "FAILED",
|
|
96
|
+
NOT_DEPLOYED: "NOT_DEPLOYED",
|
|
97
|
+
PENDING_DELETE: "PENDING_DELETE",
|
|
98
|
+
UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS",
|
|
99
|
+
};
|
|
103
100
|
class ResourceInUseException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {
|
|
104
101
|
constructor(opts) {
|
|
105
102
|
super({
|
|
@@ -113,80 +110,70 @@ class ResourceInUseException extends IoTThingsGraphServiceException_1.IoTThingsG
|
|
|
113
110
|
}
|
|
114
111
|
}
|
|
115
112
|
exports.ResourceInUseException = ResourceInUseException;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
var SystemInstanceFilterName;
|
|
184
|
-
(function (SystemInstanceFilterName) {
|
|
185
|
-
SystemInstanceFilterName["GREENGRASS_GROUP_NAME"] = "GREENGRASS_GROUP_NAME";
|
|
186
|
-
SystemInstanceFilterName["STATUS"] = "STATUS";
|
|
187
|
-
SystemInstanceFilterName["SYSTEM_TEMPLATE_ID"] = "SYSTEM_TEMPLATE_ID";
|
|
188
|
-
})(SystemInstanceFilterName = exports.SystemInstanceFilterName || (exports.SystemInstanceFilterName = {}));
|
|
189
|
-
var SystemTemplateFilterName;
|
|
190
|
-
(function (SystemTemplateFilterName) {
|
|
191
|
-
SystemTemplateFilterName["FLOW_TEMPLATE_ID"] = "FLOW_TEMPLATE_ID";
|
|
192
|
-
})(SystemTemplateFilterName = exports.SystemTemplateFilterName || (exports.SystemTemplateFilterName = {}));
|
|
113
|
+
exports.EntityType = {
|
|
114
|
+
ACTION: "ACTION",
|
|
115
|
+
CAPABILITY: "CAPABILITY",
|
|
116
|
+
DEVICE: "DEVICE",
|
|
117
|
+
DEVICE_MODEL: "DEVICE_MODEL",
|
|
118
|
+
ENUM: "ENUM",
|
|
119
|
+
EVENT: "EVENT",
|
|
120
|
+
MAPPING: "MAPPING",
|
|
121
|
+
PROPERTY: "PROPERTY",
|
|
122
|
+
SERVICE: "SERVICE",
|
|
123
|
+
STATE: "STATE",
|
|
124
|
+
};
|
|
125
|
+
exports.EntityFilterName = {
|
|
126
|
+
NAME: "NAME",
|
|
127
|
+
NAMESPACE: "NAMESPACE",
|
|
128
|
+
REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID",
|
|
129
|
+
SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH",
|
|
130
|
+
};
|
|
131
|
+
exports.FlowExecutionEventType = {
|
|
132
|
+
ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE",
|
|
133
|
+
ACTIVITY_FAILED: "ACTIVITY_FAILED",
|
|
134
|
+
ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED",
|
|
135
|
+
ACTIVITY_STARTED: "ACTIVITY_STARTED",
|
|
136
|
+
ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED",
|
|
137
|
+
EXECUTION_ABORTED: "EXECUTION_ABORTED",
|
|
138
|
+
EXECUTION_FAILED: "EXECUTION_FAILED",
|
|
139
|
+
EXECUTION_STARTED: "EXECUTION_STARTED",
|
|
140
|
+
EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED",
|
|
141
|
+
SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK",
|
|
142
|
+
START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK",
|
|
143
|
+
STEP_FAILED: "STEP_FAILED",
|
|
144
|
+
STEP_STARTED: "STEP_STARTED",
|
|
145
|
+
STEP_SUCCEEDED: "STEP_SUCCEEDED",
|
|
146
|
+
THING_ACTION_TASK: "THING_ACTION_TASK",
|
|
147
|
+
THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED",
|
|
148
|
+
THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED",
|
|
149
|
+
};
|
|
150
|
+
exports.FlowExecutionStatus = {
|
|
151
|
+
ABORTED: "ABORTED",
|
|
152
|
+
FAILED: "FAILED",
|
|
153
|
+
RUNNING: "RUNNING",
|
|
154
|
+
SUCCEEDED: "SUCCEEDED",
|
|
155
|
+
};
|
|
156
|
+
exports.FlowTemplateFilterName = {
|
|
157
|
+
DEVICE_MODEL_ID: "DEVICE_MODEL_ID",
|
|
158
|
+
};
|
|
159
|
+
exports.NamespaceDeletionStatusErrorCodes = {
|
|
160
|
+
VALIDATION_FAILED: "VALIDATION_FAILED",
|
|
161
|
+
};
|
|
162
|
+
exports.NamespaceDeletionStatus = {
|
|
163
|
+
FAILED: "FAILED",
|
|
164
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
165
|
+
SUCCEEDED: "SUCCEEDED",
|
|
166
|
+
};
|
|
167
|
+
exports.UploadStatus = {
|
|
168
|
+
FAILED: "FAILED",
|
|
169
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
170
|
+
SUCCEEDED: "SUCCEEDED",
|
|
171
|
+
};
|
|
172
|
+
exports.SystemInstanceFilterName = {
|
|
173
|
+
GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME",
|
|
174
|
+
STATUS: "STATUS",
|
|
175
|
+
SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID",
|
|
176
|
+
};
|
|
177
|
+
exports.SystemTemplateFilterName = {
|
|
178
|
+
FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID",
|
|
179
|
+
};
|
|
@@ -47,10 +47,9 @@ export class ThrottlingException extends __BaseException {
|
|
|
47
47
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
export
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
})(DefinitionLanguage || (DefinitionLanguage = {}));
|
|
50
|
+
export const DefinitionLanguage = {
|
|
51
|
+
GRAPHQL: "GRAPHQL",
|
|
52
|
+
};
|
|
54
53
|
export class LimitExceededException extends __BaseException {
|
|
55
54
|
constructor(opts) {
|
|
56
55
|
super({
|
|
@@ -75,22 +74,20 @@ export class ResourceAlreadyExistsException extends __BaseException {
|
|
|
75
74
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
76
75
|
}
|
|
77
76
|
}
|
|
78
|
-
export
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
SystemInstanceDeploymentStatus["UNDEPLOY_IN_PROGRESS"] = "UNDEPLOY_IN_PROGRESS";
|
|
93
|
-
})(SystemInstanceDeploymentStatus || (SystemInstanceDeploymentStatus = {}));
|
|
77
|
+
export const DeploymentTarget = {
|
|
78
|
+
CLOUD: "CLOUD",
|
|
79
|
+
GREENGRASS: "GREENGRASS",
|
|
80
|
+
};
|
|
81
|
+
export const SystemInstanceDeploymentStatus = {
|
|
82
|
+
BOOTSTRAP: "BOOTSTRAP",
|
|
83
|
+
DELETED_IN_TARGET: "DELETED_IN_TARGET",
|
|
84
|
+
DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET",
|
|
85
|
+
DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS",
|
|
86
|
+
FAILED: "FAILED",
|
|
87
|
+
NOT_DEPLOYED: "NOT_DEPLOYED",
|
|
88
|
+
PENDING_DELETE: "PENDING_DELETE",
|
|
89
|
+
UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS",
|
|
90
|
+
};
|
|
94
91
|
export class ResourceInUseException extends __BaseException {
|
|
95
92
|
constructor(opts) {
|
|
96
93
|
super({
|
|
@@ -103,80 +100,70 @@ export class ResourceInUseException extends __BaseException {
|
|
|
103
100
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
104
101
|
}
|
|
105
102
|
}
|
|
106
|
-
export
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
}
|
|
173
|
-
export var SystemInstanceFilterName;
|
|
174
|
-
(function (SystemInstanceFilterName) {
|
|
175
|
-
SystemInstanceFilterName["GREENGRASS_GROUP_NAME"] = "GREENGRASS_GROUP_NAME";
|
|
176
|
-
SystemInstanceFilterName["STATUS"] = "STATUS";
|
|
177
|
-
SystemInstanceFilterName["SYSTEM_TEMPLATE_ID"] = "SYSTEM_TEMPLATE_ID";
|
|
178
|
-
})(SystemInstanceFilterName || (SystemInstanceFilterName = {}));
|
|
179
|
-
export var SystemTemplateFilterName;
|
|
180
|
-
(function (SystemTemplateFilterName) {
|
|
181
|
-
SystemTemplateFilterName["FLOW_TEMPLATE_ID"] = "FLOW_TEMPLATE_ID";
|
|
182
|
-
})(SystemTemplateFilterName || (SystemTemplateFilterName = {}));
|
|
103
|
+
export const EntityType = {
|
|
104
|
+
ACTION: "ACTION",
|
|
105
|
+
CAPABILITY: "CAPABILITY",
|
|
106
|
+
DEVICE: "DEVICE",
|
|
107
|
+
DEVICE_MODEL: "DEVICE_MODEL",
|
|
108
|
+
ENUM: "ENUM",
|
|
109
|
+
EVENT: "EVENT",
|
|
110
|
+
MAPPING: "MAPPING",
|
|
111
|
+
PROPERTY: "PROPERTY",
|
|
112
|
+
SERVICE: "SERVICE",
|
|
113
|
+
STATE: "STATE",
|
|
114
|
+
};
|
|
115
|
+
export const EntityFilterName = {
|
|
116
|
+
NAME: "NAME",
|
|
117
|
+
NAMESPACE: "NAMESPACE",
|
|
118
|
+
REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID",
|
|
119
|
+
SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH",
|
|
120
|
+
};
|
|
121
|
+
export const FlowExecutionEventType = {
|
|
122
|
+
ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE",
|
|
123
|
+
ACTIVITY_FAILED: "ACTIVITY_FAILED",
|
|
124
|
+
ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED",
|
|
125
|
+
ACTIVITY_STARTED: "ACTIVITY_STARTED",
|
|
126
|
+
ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED",
|
|
127
|
+
EXECUTION_ABORTED: "EXECUTION_ABORTED",
|
|
128
|
+
EXECUTION_FAILED: "EXECUTION_FAILED",
|
|
129
|
+
EXECUTION_STARTED: "EXECUTION_STARTED",
|
|
130
|
+
EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED",
|
|
131
|
+
SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK",
|
|
132
|
+
START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK",
|
|
133
|
+
STEP_FAILED: "STEP_FAILED",
|
|
134
|
+
STEP_STARTED: "STEP_STARTED",
|
|
135
|
+
STEP_SUCCEEDED: "STEP_SUCCEEDED",
|
|
136
|
+
THING_ACTION_TASK: "THING_ACTION_TASK",
|
|
137
|
+
THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED",
|
|
138
|
+
THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED",
|
|
139
|
+
};
|
|
140
|
+
export const FlowExecutionStatus = {
|
|
141
|
+
ABORTED: "ABORTED",
|
|
142
|
+
FAILED: "FAILED",
|
|
143
|
+
RUNNING: "RUNNING",
|
|
144
|
+
SUCCEEDED: "SUCCEEDED",
|
|
145
|
+
};
|
|
146
|
+
export const FlowTemplateFilterName = {
|
|
147
|
+
DEVICE_MODEL_ID: "DEVICE_MODEL_ID",
|
|
148
|
+
};
|
|
149
|
+
export const NamespaceDeletionStatusErrorCodes = {
|
|
150
|
+
VALIDATION_FAILED: "VALIDATION_FAILED",
|
|
151
|
+
};
|
|
152
|
+
export const NamespaceDeletionStatus = {
|
|
153
|
+
FAILED: "FAILED",
|
|
154
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
155
|
+
SUCCEEDED: "SUCCEEDED",
|
|
156
|
+
};
|
|
157
|
+
export const UploadStatus = {
|
|
158
|
+
FAILED: "FAILED",
|
|
159
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
160
|
+
SUCCEEDED: "SUCCEEDED",
|
|
161
|
+
};
|
|
162
|
+
export const SystemInstanceFilterName = {
|
|
163
|
+
GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME",
|
|
164
|
+
STATUS: "STATUS",
|
|
165
|
+
SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID",
|
|
166
|
+
};
|
|
167
|
+
export const SystemTemplateFilterName = {
|
|
168
|
+
FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID",
|
|
169
|
+
};
|
|
@@ -29,7 +29,7 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
29
29
|
* import { IoTThingsGraphClient, AssociateEntityToThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, AssociateEntityToThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // AssociateEntityToThingRequest
|
|
33
33
|
* thingName: "STRING_VALUE", // required
|
|
34
34
|
* entityId: "STRING_VALUE", // required
|
|
35
35
|
* namespaceVersion: Number("long"),
|
|
@@ -30,8 +30,8 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
30
30
|
* import { IoTThingsGraphClient, CreateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
31
31
|
* // const { IoTThingsGraphClient, CreateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
32
32
|
* const client = new IoTThingsGraphClient(config);
|
|
33
|
-
* const input = {
|
|
34
|
-
* definition: {
|
|
33
|
+
* const input = { // CreateFlowTemplateRequest
|
|
34
|
+
* definition: { // DefinitionDocument
|
|
35
35
|
* language: "STRING_VALUE", // required
|
|
36
36
|
* text: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
@@ -36,21 +36,21 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
36
36
|
* import { IoTThingsGraphClient, CreateSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
37
37
|
* // const { IoTThingsGraphClient, CreateSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
38
38
|
* const client = new IoTThingsGraphClient(config);
|
|
39
|
-
* const input = {
|
|
40
|
-
* tags: [
|
|
41
|
-
* {
|
|
39
|
+
* const input = { // CreateSystemInstanceRequest
|
|
40
|
+
* tags: [ // TagList
|
|
41
|
+
* { // Tag
|
|
42
42
|
* key: "STRING_VALUE", // required
|
|
43
43
|
* value: "STRING_VALUE", // required
|
|
44
44
|
* },
|
|
45
45
|
* ],
|
|
46
|
-
* definition: {
|
|
46
|
+
* definition: { // DefinitionDocument
|
|
47
47
|
* language: "STRING_VALUE", // required
|
|
48
48
|
* text: "STRING_VALUE", // required
|
|
49
49
|
* },
|
|
50
50
|
* target: "STRING_VALUE", // required
|
|
51
51
|
* greengrassGroupName: "STRING_VALUE",
|
|
52
52
|
* s3BucketName: "STRING_VALUE",
|
|
53
|
-
* metricsConfiguration: {
|
|
53
|
+
* metricsConfiguration: { // MetricsConfiguration
|
|
54
54
|
* cloudMetricEnabled: true || false,
|
|
55
55
|
* metricRuleRoleArn: "STRING_VALUE",
|
|
56
56
|
* },
|
|
@@ -29,8 +29,8 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
29
29
|
* import { IoTThingsGraphClient, CreateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, CreateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* definition: {
|
|
32
|
+
* const input = { // CreateSystemTemplateRequest
|
|
33
|
+
* definition: { // DefinitionDocument
|
|
34
34
|
* language: "STRING_VALUE", // required
|
|
35
35
|
* text: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
29
29
|
* import { IoTThingsGraphClient, DeleteFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, DeleteFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteFlowTemplateRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteFlowTemplateCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR
|
|
|
30
30
|
* import { IoTThingsGraphClient, DeleteSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
31
31
|
* // const { IoTThingsGraphClient, DeleteSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
32
32
|
* const client = new IoTThingsGraphClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteSystemInstanceRequest
|
|
34
34
|
* id: "STRING_VALUE",
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSystemInstanceCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR
|
|
|
29
29
|
* import { IoTThingsGraphClient, DeleteSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, DeleteSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteSystemTemplateRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteSystemTemplateCommand(input);
|
|
@@ -39,7 +39,7 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR
|
|
|
39
39
|
* import { IoTThingsGraphClient, DeploySystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
40
40
|
* // const { IoTThingsGraphClient, DeploySystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
41
41
|
* const client = new IoTThingsGraphClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // DeploySystemInstanceRequest
|
|
43
43
|
* id: "STRING_VALUE",
|
|
44
44
|
* };
|
|
45
45
|
* const command = new DeploySystemInstanceCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat
|
|
|
28
28
|
* import { IoTThingsGraphClient, DeprecateFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, DeprecateFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeprecateFlowTemplateRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeprecateFlowTemplateCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem
|
|
|
28
28
|
* import { IoTThingsGraphClient, DeprecateSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, DeprecateSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeprecateSystemTemplateRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeprecateSystemTemplateCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons
|
|
|
28
28
|
* import { IoTThingsGraphClient, DescribeNamespaceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, DescribeNamespaceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeNamespaceRequest
|
|
32
32
|
* namespaceName: "STRING_VALUE",
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeNamespaceCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity
|
|
|
29
29
|
* import { IoTThingsGraphClient, DissociateEntityFromThingCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, DissociateEntityFromThingCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DissociateEntityFromThingRequest
|
|
33
33
|
* thingName: "STRING_VALUE", // required
|
|
34
34
|
* entityType: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -59,8 +59,8 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat
|
|
|
59
59
|
* import { IoTThingsGraphClient, GetEntitiesCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
60
60
|
* // const { IoTThingsGraphClient, GetEntitiesCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
61
61
|
* const client = new IoTThingsGraphClient(config);
|
|
62
|
-
* const input = {
|
|
63
|
-
* ids: [ // required
|
|
62
|
+
* const input = { // GetEntitiesRequest
|
|
63
|
+
* ids: [ // Urns // required
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
66
|
* namespaceVersion: Number("long"),
|
|
@@ -28,7 +28,7 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _
|
|
|
28
28
|
* import { IoTThingsGraphClient, GetFlowTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, GetFlowTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetFlowTemplateRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* revisionNumber: Number("long"),
|
|
34
34
|
* };
|
|
@@ -29,7 +29,7 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe
|
|
|
29
29
|
* import { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, GetFlowTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetFlowTemplateRevisionsRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -28,7 +28,7 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons
|
|
|
28
28
|
* import { IoTThingsGraphClient, GetSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, GetSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetSystemInstanceRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSystemInstanceCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons
|
|
|
28
28
|
* import { IoTThingsGraphClient, GetSystemTemplateCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
29
29
|
* // const { IoTThingsGraphClient, GetSystemTemplateCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
30
30
|
* const client = new IoTThingsGraphClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetSystemTemplateRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* revisionNumber: Number("long"),
|
|
34
34
|
* };
|
|
@@ -29,7 +29,7 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla
|
|
|
29
29
|
* import { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
|
|
30
30
|
* // const { IoTThingsGraphClient, GetSystemTemplateRevisionsCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
|
|
31
31
|
* const client = new IoTThingsGraphClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetSystemTemplateRevisionsRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|