@aws-sdk/client-iotthingsgraph 3.303.0 → 3.309.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/commands/AssociateEntityToThingCommand.js +2 -2
- package/dist-cjs/commands/CreateFlowTemplateCommand.js +2 -2
- package/dist-cjs/commands/CreateSystemInstanceCommand.js +2 -2
- package/dist-cjs/commands/CreateSystemTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeleteFlowTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeleteNamespaceCommand.js +2 -2
- package/dist-cjs/commands/DeleteSystemInstanceCommand.js +2 -2
- package/dist-cjs/commands/DeleteSystemTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeploySystemInstanceCommand.js +2 -2
- package/dist-cjs/commands/DeprecateFlowTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeprecateSystemTemplateCommand.js +2 -2
- package/dist-cjs/commands/DescribeNamespaceCommand.js +2 -2
- package/dist-cjs/commands/DissociateEntityFromThingCommand.js +2 -2
- package/dist-cjs/commands/GetEntitiesCommand.js +2 -2
- package/dist-cjs/commands/GetFlowTemplateCommand.js +2 -2
- package/dist-cjs/commands/GetFlowTemplateRevisionsCommand.js +2 -2
- package/dist-cjs/commands/GetNamespaceDeletionStatusCommand.js +2 -2
- package/dist-cjs/commands/GetSystemInstanceCommand.js +2 -2
- package/dist-cjs/commands/GetSystemTemplateCommand.js +2 -2
- package/dist-cjs/commands/GetSystemTemplateRevisionsCommand.js +2 -2
- package/dist-cjs/commands/GetUploadStatusCommand.js +2 -2
- package/dist-cjs/commands/ListFlowExecutionMessagesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/SearchEntitiesCommand.js +2 -2
- package/dist-cjs/commands/SearchFlowExecutionsCommand.js +2 -2
- package/dist-cjs/commands/SearchFlowTemplatesCommand.js +2 -2
- package/dist-cjs/commands/SearchSystemInstancesCommand.js +2 -2
- package/dist-cjs/commands/SearchSystemTemplatesCommand.js +2 -2
- package/dist-cjs/commands/SearchThingsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UndeploySystemInstanceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateFlowTemplateCommand.js +2 -2
- package/dist-cjs/commands/UpdateSystemTemplateCommand.js +2 -2
- package/dist-cjs/commands/UploadEntityDefinitionsCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_1.js +617 -625
- package/dist-es/commands/AssociateEntityToThingCommand.js +3 -3
- package/dist-es/commands/CreateFlowTemplateCommand.js +3 -3
- package/dist-es/commands/CreateSystemInstanceCommand.js +3 -3
- package/dist-es/commands/CreateSystemTemplateCommand.js +3 -3
- package/dist-es/commands/DeleteFlowTemplateCommand.js +3 -3
- package/dist-es/commands/DeleteNamespaceCommand.js +3 -3
- package/dist-es/commands/DeleteSystemInstanceCommand.js +3 -3
- package/dist-es/commands/DeleteSystemTemplateCommand.js +3 -3
- package/dist-es/commands/DeploySystemInstanceCommand.js +3 -3
- package/dist-es/commands/DeprecateFlowTemplateCommand.js +3 -3
- package/dist-es/commands/DeprecateSystemTemplateCommand.js +3 -3
- package/dist-es/commands/DescribeNamespaceCommand.js +3 -3
- package/dist-es/commands/DissociateEntityFromThingCommand.js +3 -3
- package/dist-es/commands/GetEntitiesCommand.js +3 -3
- package/dist-es/commands/GetFlowTemplateCommand.js +3 -3
- package/dist-es/commands/GetFlowTemplateRevisionsCommand.js +3 -3
- package/dist-es/commands/GetNamespaceDeletionStatusCommand.js +3 -3
- package/dist-es/commands/GetSystemInstanceCommand.js +3 -3
- package/dist-es/commands/GetSystemTemplateCommand.js +3 -3
- package/dist-es/commands/GetSystemTemplateRevisionsCommand.js +3 -3
- package/dist-es/commands/GetUploadStatusCommand.js +3 -3
- package/dist-es/commands/ListFlowExecutionMessagesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/SearchEntitiesCommand.js +3 -3
- package/dist-es/commands/SearchFlowExecutionsCommand.js +3 -3
- package/dist-es/commands/SearchFlowTemplatesCommand.js +3 -3
- package/dist-es/commands/SearchSystemInstancesCommand.js +3 -3
- package/dist-es/commands/SearchSystemTemplatesCommand.js +3 -3
- package/dist-es/commands/SearchThingsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UndeploySystemInstanceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateFlowTemplateCommand.js +3 -3
- package/dist-es/commands/UpdateSystemTemplateCommand.js +3 -3
- package/dist-es/commands/UploadEntityDefinitionsCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_1.js +545 -553
- package/dist-types/protocols/Aws_json1_1.d.ts +280 -70
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +70 -70
- package/package.json +29 -29
|
@@ -35,73 +35,283 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
35
35
|
import { UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput } from "../commands/UpdateFlowTemplateCommand";
|
|
36
36
|
import { UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput } from "../commands/UpdateSystemTemplateCommand";
|
|
37
37
|
import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput } from "../commands/UploadEntityDefinitionsCommand";
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export declare const
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
export declare const
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
export declare const
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export declare const
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
export declare const
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
export declare const
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
export declare const
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export declare const
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
export declare const
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
export declare const
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
export declare const
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
export declare const
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
export declare const
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
export declare const
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
export declare const
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
export declare const
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
export declare const
|
|
106
|
-
|
|
107
|
-
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_json1_1AssociateEntityToThingCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_AssociateEntityToThingCommand: (input: AssociateEntityToThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_json1_1CreateFlowTemplateCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_CreateFlowTemplateCommand: (input: CreateFlowTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_json1_1CreateSystemInstanceCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_CreateSystemInstanceCommand: (input: CreateSystemInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_json1_1CreateSystemTemplateCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_CreateSystemTemplateCommand: (input: CreateSystemTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_json1_1DeleteFlowTemplateCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_DeleteFlowTemplateCommand: (input: DeleteFlowTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_json1_1DeleteNamespaceCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_DeleteNamespaceCommand: (input: DeleteNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_json1_1DeleteSystemInstanceCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_DeleteSystemInstanceCommand: (input: DeleteSystemInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_json1_1DeleteSystemTemplateCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_DeleteSystemTemplateCommand: (input: DeleteSystemTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_json1_1DeploySystemInstanceCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_DeploySystemInstanceCommand: (input: DeploySystemInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_json1_1DeprecateFlowTemplateCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_DeprecateFlowTemplateCommand: (input: DeprecateFlowTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* serializeAws_json1_1DeprecateSystemTemplateCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const se_DeprecateSystemTemplateCommand: (input: DeprecateSystemTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
/**
|
|
83
|
+
* serializeAws_json1_1DescribeNamespaceCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const se_DescribeNamespaceCommand: (input: DescribeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
/**
|
|
87
|
+
* serializeAws_json1_1DissociateEntityFromThingCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const se_DissociateEntityFromThingCommand: (input: DissociateEntityFromThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_json1_1GetEntitiesCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_GetEntitiesCommand: (input: GetEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_json1_1GetFlowTemplateCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_GetFlowTemplateCommand: (input: GetFlowTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
+
/**
|
|
99
|
+
* serializeAws_json1_1GetFlowTemplateRevisionsCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const se_GetFlowTemplateRevisionsCommand: (input: GetFlowTemplateRevisionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
+
/**
|
|
103
|
+
* serializeAws_json1_1GetNamespaceDeletionStatusCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const se_GetNamespaceDeletionStatusCommand: (input: GetNamespaceDeletionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* serializeAws_json1_1GetSystemInstanceCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const se_GetSystemInstanceCommand: (input: GetSystemInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
/**
|
|
111
|
+
* serializeAws_json1_1GetSystemTemplateCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const se_GetSystemTemplateCommand: (input: GetSystemTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
/**
|
|
115
|
+
* serializeAws_json1_1GetSystemTemplateRevisionsCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const se_GetSystemTemplateRevisionsCommand: (input: GetSystemTemplateRevisionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
/**
|
|
119
|
+
* serializeAws_json1_1GetUploadStatusCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const se_GetUploadStatusCommand: (input: GetUploadStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
|
+
/**
|
|
123
|
+
* serializeAws_json1_1ListFlowExecutionMessagesCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const se_ListFlowExecutionMessagesCommand: (input: ListFlowExecutionMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
+
/**
|
|
127
|
+
* serializeAws_json1_1ListTagsForResourceCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
/**
|
|
131
|
+
* serializeAws_json1_1SearchEntitiesCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const se_SearchEntitiesCommand: (input: SearchEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
|
+
/**
|
|
135
|
+
* serializeAws_json1_1SearchFlowExecutionsCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const se_SearchFlowExecutionsCommand: (input: SearchFlowExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
+
/**
|
|
139
|
+
* serializeAws_json1_1SearchFlowTemplatesCommand
|
|
140
|
+
*/
|
|
141
|
+
export declare const se_SearchFlowTemplatesCommand: (input: SearchFlowTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
+
/**
|
|
143
|
+
* serializeAws_json1_1SearchSystemInstancesCommand
|
|
144
|
+
*/
|
|
145
|
+
export declare const se_SearchSystemInstancesCommand: (input: SearchSystemInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
|
+
/**
|
|
147
|
+
* serializeAws_json1_1SearchSystemTemplatesCommand
|
|
148
|
+
*/
|
|
149
|
+
export declare const se_SearchSystemTemplatesCommand: (input: SearchSystemTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
/**
|
|
151
|
+
* serializeAws_json1_1SearchThingsCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const se_SearchThingsCommand: (input: SearchThingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
+
/**
|
|
155
|
+
* serializeAws_json1_1TagResourceCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
|
+
/**
|
|
159
|
+
* serializeAws_json1_1UndeploySystemInstanceCommand
|
|
160
|
+
*/
|
|
161
|
+
export declare const se_UndeploySystemInstanceCommand: (input: UndeploySystemInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
|
+
/**
|
|
163
|
+
* serializeAws_json1_1UntagResourceCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
|
+
/**
|
|
167
|
+
* serializeAws_json1_1UpdateFlowTemplateCommand
|
|
168
|
+
*/
|
|
169
|
+
export declare const se_UpdateFlowTemplateCommand: (input: UpdateFlowTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
+
/**
|
|
171
|
+
* serializeAws_json1_1UpdateSystemTemplateCommand
|
|
172
|
+
*/
|
|
173
|
+
export declare const se_UpdateSystemTemplateCommand: (input: UpdateSystemTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
174
|
+
/**
|
|
175
|
+
* serializeAws_json1_1UploadEntityDefinitionsCommand
|
|
176
|
+
*/
|
|
177
|
+
export declare const se_UploadEntityDefinitionsCommand: (input: UploadEntityDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
|
+
/**
|
|
179
|
+
* deserializeAws_json1_1AssociateEntityToThingCommand
|
|
180
|
+
*/
|
|
181
|
+
export declare const de_AssociateEntityToThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateEntityToThingCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* deserializeAws_json1_1CreateFlowTemplateCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const de_CreateFlowTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFlowTemplateCommandOutput>;
|
|
186
|
+
/**
|
|
187
|
+
* deserializeAws_json1_1CreateSystemInstanceCommand
|
|
188
|
+
*/
|
|
189
|
+
export declare const de_CreateSystemInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSystemInstanceCommandOutput>;
|
|
190
|
+
/**
|
|
191
|
+
* deserializeAws_json1_1CreateSystemTemplateCommand
|
|
192
|
+
*/
|
|
193
|
+
export declare const de_CreateSystemTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSystemTemplateCommandOutput>;
|
|
194
|
+
/**
|
|
195
|
+
* deserializeAws_json1_1DeleteFlowTemplateCommand
|
|
196
|
+
*/
|
|
197
|
+
export declare const de_DeleteFlowTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFlowTemplateCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_json1_1DeleteNamespaceCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_DeleteNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNamespaceCommandOutput>;
|
|
202
|
+
/**
|
|
203
|
+
* deserializeAws_json1_1DeleteSystemInstanceCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const de_DeleteSystemInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSystemInstanceCommandOutput>;
|
|
206
|
+
/**
|
|
207
|
+
* deserializeAws_json1_1DeleteSystemTemplateCommand
|
|
208
|
+
*/
|
|
209
|
+
export declare const de_DeleteSystemTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSystemTemplateCommandOutput>;
|
|
210
|
+
/**
|
|
211
|
+
* deserializeAws_json1_1DeploySystemInstanceCommand
|
|
212
|
+
*/
|
|
213
|
+
export declare const de_DeploySystemInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeploySystemInstanceCommandOutput>;
|
|
214
|
+
/**
|
|
215
|
+
* deserializeAws_json1_1DeprecateFlowTemplateCommand
|
|
216
|
+
*/
|
|
217
|
+
export declare const de_DeprecateFlowTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeprecateFlowTemplateCommandOutput>;
|
|
218
|
+
/**
|
|
219
|
+
* deserializeAws_json1_1DeprecateSystemTemplateCommand
|
|
220
|
+
*/
|
|
221
|
+
export declare const de_DeprecateSystemTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeprecateSystemTemplateCommandOutput>;
|
|
222
|
+
/**
|
|
223
|
+
* deserializeAws_json1_1DescribeNamespaceCommand
|
|
224
|
+
*/
|
|
225
|
+
export declare const de_DescribeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNamespaceCommandOutput>;
|
|
226
|
+
/**
|
|
227
|
+
* deserializeAws_json1_1DissociateEntityFromThingCommand
|
|
228
|
+
*/
|
|
229
|
+
export declare const de_DissociateEntityFromThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DissociateEntityFromThingCommandOutput>;
|
|
230
|
+
/**
|
|
231
|
+
* deserializeAws_json1_1GetEntitiesCommand
|
|
232
|
+
*/
|
|
233
|
+
export declare const de_GetEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntitiesCommandOutput>;
|
|
234
|
+
/**
|
|
235
|
+
* deserializeAws_json1_1GetFlowTemplateCommand
|
|
236
|
+
*/
|
|
237
|
+
export declare const de_GetFlowTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFlowTemplateCommandOutput>;
|
|
238
|
+
/**
|
|
239
|
+
* deserializeAws_json1_1GetFlowTemplateRevisionsCommand
|
|
240
|
+
*/
|
|
241
|
+
export declare const de_GetFlowTemplateRevisionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFlowTemplateRevisionsCommandOutput>;
|
|
242
|
+
/**
|
|
243
|
+
* deserializeAws_json1_1GetNamespaceDeletionStatusCommand
|
|
244
|
+
*/
|
|
245
|
+
export declare const de_GetNamespaceDeletionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNamespaceDeletionStatusCommandOutput>;
|
|
246
|
+
/**
|
|
247
|
+
* deserializeAws_json1_1GetSystemInstanceCommand
|
|
248
|
+
*/
|
|
249
|
+
export declare const de_GetSystemInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSystemInstanceCommandOutput>;
|
|
250
|
+
/**
|
|
251
|
+
* deserializeAws_json1_1GetSystemTemplateCommand
|
|
252
|
+
*/
|
|
253
|
+
export declare const de_GetSystemTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSystemTemplateCommandOutput>;
|
|
254
|
+
/**
|
|
255
|
+
* deserializeAws_json1_1GetSystemTemplateRevisionsCommand
|
|
256
|
+
*/
|
|
257
|
+
export declare const de_GetSystemTemplateRevisionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSystemTemplateRevisionsCommandOutput>;
|
|
258
|
+
/**
|
|
259
|
+
* deserializeAws_json1_1GetUploadStatusCommand
|
|
260
|
+
*/
|
|
261
|
+
export declare const de_GetUploadStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUploadStatusCommandOutput>;
|
|
262
|
+
/**
|
|
263
|
+
* deserializeAws_json1_1ListFlowExecutionMessagesCommand
|
|
264
|
+
*/
|
|
265
|
+
export declare const de_ListFlowExecutionMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFlowExecutionMessagesCommandOutput>;
|
|
266
|
+
/**
|
|
267
|
+
* deserializeAws_json1_1ListTagsForResourceCommand
|
|
268
|
+
*/
|
|
269
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
270
|
+
/**
|
|
271
|
+
* deserializeAws_json1_1SearchEntitiesCommand
|
|
272
|
+
*/
|
|
273
|
+
export declare const de_SearchEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchEntitiesCommandOutput>;
|
|
274
|
+
/**
|
|
275
|
+
* deserializeAws_json1_1SearchFlowExecutionsCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const de_SearchFlowExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchFlowExecutionsCommandOutput>;
|
|
278
|
+
/**
|
|
279
|
+
* deserializeAws_json1_1SearchFlowTemplatesCommand
|
|
280
|
+
*/
|
|
281
|
+
export declare const de_SearchFlowTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchFlowTemplatesCommandOutput>;
|
|
282
|
+
/**
|
|
283
|
+
* deserializeAws_json1_1SearchSystemInstancesCommand
|
|
284
|
+
*/
|
|
285
|
+
export declare const de_SearchSystemInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSystemInstancesCommandOutput>;
|
|
286
|
+
/**
|
|
287
|
+
* deserializeAws_json1_1SearchSystemTemplatesCommand
|
|
288
|
+
*/
|
|
289
|
+
export declare const de_SearchSystemTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSystemTemplatesCommandOutput>;
|
|
290
|
+
/**
|
|
291
|
+
* deserializeAws_json1_1SearchThingsCommand
|
|
292
|
+
*/
|
|
293
|
+
export declare const de_SearchThingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchThingsCommandOutput>;
|
|
294
|
+
/**
|
|
295
|
+
* deserializeAws_json1_1TagResourceCommand
|
|
296
|
+
*/
|
|
297
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
298
|
+
/**
|
|
299
|
+
* deserializeAws_json1_1UndeploySystemInstanceCommand
|
|
300
|
+
*/
|
|
301
|
+
export declare const de_UndeploySystemInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UndeploySystemInstanceCommandOutput>;
|
|
302
|
+
/**
|
|
303
|
+
* deserializeAws_json1_1UntagResourceCommand
|
|
304
|
+
*/
|
|
305
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* deserializeAws_json1_1UpdateFlowTemplateCommand
|
|
308
|
+
*/
|
|
309
|
+
export declare const de_UpdateFlowTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowTemplateCommandOutput>;
|
|
310
|
+
/**
|
|
311
|
+
* deserializeAws_json1_1UpdateSystemTemplateCommand
|
|
312
|
+
*/
|
|
313
|
+
export declare const de_UpdateSystemTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSystemTemplateCommandOutput>;
|
|
314
|
+
/**
|
|
315
|
+
* deserializeAws_json1_1UploadEntityDefinitionsCommand
|
|
316
|
+
*/
|
|
317
|
+
export declare const de_UploadEntityDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadEntityDefinitionsCommandOutput>;
|