@aws-sdk/client-migrationhuborchestrator 3.986.0 → 3.988.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/index.js +50 -1025
- package/dist-cjs/models/MigrationHubOrchestratorServiceException.js +12 -0
- package/dist-cjs/models/errors.js +85 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +804 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +54 -48
- package/dist-types/schemas/schemas_0.d.ts +12 -5
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -5
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var MigrationHubOrchestratorServiceException = require('./models/MigrationHubOrchestratorServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,875 +113,6 @@ class MigrationHubOrchestratorClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class MigrationHubOrchestratorServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, MigrationHubOrchestratorServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends MigrationHubOrchestratorServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
$retryable = {};
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class ResourceNotFoundException extends MigrationHubOrchestratorServiceException {
|
|
134
|
-
name = "ResourceNotFoundException";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "ResourceNotFoundException",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ValidationException extends MigrationHubOrchestratorServiceException {
|
|
146
|
-
name = "ValidationException";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
$retryable = {};
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "ValidationException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class InternalServerException extends MigrationHubOrchestratorServiceException {
|
|
159
|
-
name = "InternalServerException";
|
|
160
|
-
$fault = "server";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "InternalServerException",
|
|
164
|
-
$fault: "server",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ThrottlingException extends MigrationHubOrchestratorServiceException {
|
|
171
|
-
name = "ThrottlingException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ThrottlingException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class ConflictException extends MigrationHubOrchestratorServiceException {
|
|
183
|
-
name = "ConflictException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
$retryable = {};
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ConflictException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
const _ADE = "AccessDeniedException";
|
|
197
|
-
const _CE = "ConflictException";
|
|
198
|
-
const _CMWR = "CreateMigrationWorkflowRequest";
|
|
199
|
-
const _CMWRr = "CreateMigrationWorkflowResponse";
|
|
200
|
-
const _CT = "CreateTemplate";
|
|
201
|
-
const _CTR = "CreateTemplateRequest";
|
|
202
|
-
const _CTRr = "CreateTemplateResponse";
|
|
203
|
-
const _CW = "CreateWorkflow";
|
|
204
|
-
const _CWS = "CreateWorkflowStep";
|
|
205
|
-
const _CWSG = "CreateWorkflowStepGroup";
|
|
206
|
-
const _CWSGR = "CreateWorkflowStepGroupRequest";
|
|
207
|
-
const _CWSGRr = "CreateWorkflowStepGroupResponse";
|
|
208
|
-
const _CWSR = "CreateWorkflowStepRequest";
|
|
209
|
-
const _CWSRr = "CreateWorkflowStepResponse";
|
|
210
|
-
const _DMWR = "DeleteMigrationWorkflowRequest";
|
|
211
|
-
const _DMWRe = "DeleteMigrationWorkflowResponse";
|
|
212
|
-
const _DT = "DeleteTemplate";
|
|
213
|
-
const _DTR = "DeleteTemplateRequest";
|
|
214
|
-
const _DTRe = "DeleteTemplateResponse";
|
|
215
|
-
const _DW = "DeleteWorkflow";
|
|
216
|
-
const _DWS = "DeleteWorkflowStep";
|
|
217
|
-
const _DWSG = "DeleteWorkflowStepGroup";
|
|
218
|
-
const _DWSGR = "DeleteWorkflowStepGroupRequest";
|
|
219
|
-
const _DWSGRe = "DeleteWorkflowStepGroupResponse";
|
|
220
|
-
const _DWSR = "DeleteWorkflowStepRequest";
|
|
221
|
-
const _DWSRe = "DeleteWorkflowStepResponse";
|
|
222
|
-
const _GMWR = "GetMigrationWorkflowRequest";
|
|
223
|
-
const _GMWRe = "GetMigrationWorkflowResponse";
|
|
224
|
-
const _GMWTR = "GetMigrationWorkflowTemplateRequest";
|
|
225
|
-
const _GMWTRe = "GetMigrationWorkflowTemplateResponse";
|
|
226
|
-
const _GT = "GetTemplate";
|
|
227
|
-
const _GTS = "GetTemplateStep";
|
|
228
|
-
const _GTSG = "GetTemplateStepGroup";
|
|
229
|
-
const _GTSGR = "GetTemplateStepGroupRequest";
|
|
230
|
-
const _GTSGRe = "GetTemplateStepGroupResponse";
|
|
231
|
-
const _GTSR = "GetTemplateStepRequest";
|
|
232
|
-
const _GTSRe = "GetTemplateStepResponse";
|
|
233
|
-
const _GW = "GetWorkflow";
|
|
234
|
-
const _GWS = "GetWorkflowStep";
|
|
235
|
-
const _GWSG = "GetWorkflowStepGroup";
|
|
236
|
-
const _GWSGR = "GetWorkflowStepGroupRequest";
|
|
237
|
-
const _GWSGRe = "GetWorkflowStepGroupResponse";
|
|
238
|
-
const _GWSR = "GetWorkflowStepRequest";
|
|
239
|
-
const _GWSRe = "GetWorkflowStepResponse";
|
|
240
|
-
const _ISE = "InternalServerException";
|
|
241
|
-
const _LMWR = "ListMigrationWorkflowsRequest";
|
|
242
|
-
const _LMWRi = "ListMigrationWorkflowsResponse";
|
|
243
|
-
const _LMWTR = "ListMigrationWorkflowTemplatesRequest";
|
|
244
|
-
const _LMWTRi = "ListMigrationWorkflowTemplatesResponse";
|
|
245
|
-
const _LP = "ListPlugins";
|
|
246
|
-
const _LPR = "ListPluginsRequest";
|
|
247
|
-
const _LPRi = "ListPluginsResponse";
|
|
248
|
-
const _LT = "ListTemplates";
|
|
249
|
-
const _LTFR = "ListTagsForResource";
|
|
250
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
251
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
252
|
-
const _LTS = "ListTemplateSteps";
|
|
253
|
-
const _LTSG = "ListTemplateStepGroups";
|
|
254
|
-
const _LTSGR = "ListTemplateStepGroupsRequest";
|
|
255
|
-
const _LTSGRi = "ListTemplateStepGroupsResponse";
|
|
256
|
-
const _LTSR = "ListTemplateStepsRequest";
|
|
257
|
-
const _LTSRi = "ListTemplateStepsResponse";
|
|
258
|
-
const _LW = "ListWorkflows";
|
|
259
|
-
const _LWS = "ListWorkflowSteps";
|
|
260
|
-
const _LWSG = "ListWorkflowStepGroups";
|
|
261
|
-
const _LWSGR = "ListWorkflowStepGroupsRequest";
|
|
262
|
-
const _LWSGRi = "ListWorkflowStepGroupsResponse";
|
|
263
|
-
const _LWSR = "ListWorkflowStepsRequest";
|
|
264
|
-
const _LWSRi = "ListWorkflowStepsResponse";
|
|
265
|
-
const _MWS = "MigrationWorkflowSummary";
|
|
266
|
-
const _MWSL = "MigrationWorkflowSummaryList";
|
|
267
|
-
const _PC = "PlatformCommand";
|
|
268
|
-
const _PS = "PluginSummary";
|
|
269
|
-
const _PSK = "PlatformScriptKey";
|
|
270
|
-
const _PSl = "PluginSummaries";
|
|
271
|
-
const _RNFE = "ResourceNotFoundException";
|
|
272
|
-
const _RWS = "RetryWorkflowStep";
|
|
273
|
-
const _RWSR = "RetryWorkflowStepRequest";
|
|
274
|
-
const _RWSRe = "RetryWorkflowStepResponse";
|
|
275
|
-
const _SAC = "StepAutomationConfiguration";
|
|
276
|
-
const _SI = "StepInput";
|
|
277
|
-
const _SIP = "StepInputParameters";
|
|
278
|
-
const _SMWR = "StartMigrationWorkflowRequest";
|
|
279
|
-
const _SMWRt = "StartMigrationWorkflowResponse";
|
|
280
|
-
const _SMWRto = "StopMigrationWorkflowRequest";
|
|
281
|
-
const _SMWRtop = "StopMigrationWorkflowResponse";
|
|
282
|
-
const _SO = "StepOutput";
|
|
283
|
-
const _SOL = "StepOutputList";
|
|
284
|
-
const _SW = "StartWorkflow";
|
|
285
|
-
const _SWt = "StopWorkflow";
|
|
286
|
-
const _T = "Tool";
|
|
287
|
-
const _TE = "ThrottlingException";
|
|
288
|
-
const _TI = "TemplateInput";
|
|
289
|
-
const _TIL = "TemplateInputList";
|
|
290
|
-
const _TL = "ToolsList";
|
|
291
|
-
const _TR = "TagResource";
|
|
292
|
-
const _TRR = "TagResourceRequest";
|
|
293
|
-
const _TRRa = "TagResourceResponse";
|
|
294
|
-
const _TS = "TemplateSummary";
|
|
295
|
-
const _TSGS = "TemplateStepGroupSummary";
|
|
296
|
-
const _TSGSL = "TemplateStepGroupSummaryList";
|
|
297
|
-
const _TSL = "TemplateSummaryList";
|
|
298
|
-
const _TSS = "TemplateStepSummary";
|
|
299
|
-
const _TSSL = "TemplateStepSummaryList";
|
|
300
|
-
const _TSe = "TemplateSource";
|
|
301
|
-
const _UMWR = "UpdateMigrationWorkflowRequest";
|
|
302
|
-
const _UMWRp = "UpdateMigrationWorkflowResponse";
|
|
303
|
-
const _UR = "UntagResource";
|
|
304
|
-
const _URR = "UntagResourceRequest";
|
|
305
|
-
const _URRn = "UntagResourceResponse";
|
|
306
|
-
const _UT = "UpdateTemplate";
|
|
307
|
-
const _UTR = "UpdateTemplateRequest";
|
|
308
|
-
const _UTRp = "UpdateTemplateResponse";
|
|
309
|
-
const _UW = "UpdateWorkflow";
|
|
310
|
-
const _UWS = "UpdateWorkflowStep";
|
|
311
|
-
const _UWSG = "UpdateWorkflowStepGroup";
|
|
312
|
-
const _UWSGR = "UpdateWorkflowStepGroupRequest";
|
|
313
|
-
const _UWSGRp = "UpdateWorkflowStepGroupResponse";
|
|
314
|
-
const _UWSR = "UpdateWorkflowStepRequest";
|
|
315
|
-
const _UWSRp = "UpdateWorkflowStepResponse";
|
|
316
|
-
const _VE = "ValidationException";
|
|
317
|
-
const _WSAC = "WorkflowStepAutomationConfiguration";
|
|
318
|
-
const _WSGS = "WorkflowStepGroupSummary";
|
|
319
|
-
const _WSGSL = "WorkflowStepGroupsSummaryList";
|
|
320
|
-
const _WSO = "WorkflowStepOutput";
|
|
321
|
-
const _WSOL = "WorkflowStepOutputList";
|
|
322
|
-
const _WSOU = "WorkflowStepOutputUnion";
|
|
323
|
-
const _WSS = "WorkflowStepSummary";
|
|
324
|
-
const _WSSL = "WorkflowStepsSummaryList";
|
|
325
|
-
const _a = "arn";
|
|
326
|
-
const _aACI = "adsApplicationConfigurationId";
|
|
327
|
-
const _aACN = "adsApplicationConfigurationName";
|
|
328
|
-
const _aAN = "adsApplicationName";
|
|
329
|
-
const _aCI = "applicationConfigurationId";
|
|
330
|
-
const _c = "client";
|
|
331
|
-
const _cS = "completedSteps";
|
|
332
|
-
const _cT = "creationTime";
|
|
333
|
-
const _cTl = "clientToken";
|
|
334
|
-
const _co = "command";
|
|
335
|
-
const _d = "description";
|
|
336
|
-
const _dT = "dataType";
|
|
337
|
-
const _e = "error";
|
|
338
|
-
const _eT = "endTime";
|
|
339
|
-
const _h = "hostname";
|
|
340
|
-
const _hE = "httpError";
|
|
341
|
-
const _hQ = "httpQuery";
|
|
342
|
-
const _ht = "http";
|
|
343
|
-
const _i = "id";
|
|
344
|
-
const _iA = "ipAddress";
|
|
345
|
-
const _iN = "inputName";
|
|
346
|
-
const _iP = "inputParameters";
|
|
347
|
-
const _iV = "integerValue";
|
|
348
|
-
const _in = "inputs";
|
|
349
|
-
const _l = "linux";
|
|
350
|
-
const _lMT = "lastModifiedTime";
|
|
351
|
-
const _lOSV = "listOfStringsValue";
|
|
352
|
-
const _lOSVi = "listOfStringValue";
|
|
353
|
-
const _lST = "lastStartTime";
|
|
354
|
-
const _lSTa = "lastStopTime";
|
|
355
|
-
const _m = "message";
|
|
356
|
-
const _mOSV = "mapOfStringValue";
|
|
357
|
-
const _mR = "maxResults";
|
|
358
|
-
const _mWS = "migrationWorkflowSummary";
|
|
359
|
-
const _n = "name";
|
|
360
|
-
const _nOSC = "noOfSrvCompleted";
|
|
361
|
-
const _nOSF = "noOfSrvFailed";
|
|
362
|
-
const _nT = "nextToken";
|
|
363
|
-
const _ne = "next";
|
|
364
|
-
const _o = "outputs";
|
|
365
|
-
const _ow = "owner";
|
|
366
|
-
const _p = "previous";
|
|
367
|
-
const _pI = "pluginId";
|
|
368
|
-
const _pl = "plugins";
|
|
369
|
-
const _r = "required";
|
|
370
|
-
const _rA = "resourceArn";
|
|
371
|
-
const _rE = "runEnvironment";
|
|
372
|
-
const _rT = "registeredTime";
|
|
373
|
-
const _s = "status";
|
|
374
|
-
const _sAC = "stepAutomationConfiguration";
|
|
375
|
-
const _sAT = "stepActionType";
|
|
376
|
-
const _sGI = "stepGroupId";
|
|
377
|
-
const _sI = "stepId";
|
|
378
|
-
const _sL = "scriptLocation";
|
|
379
|
-
const _sLSB = "scriptLocationS3Bucket";
|
|
380
|
-
const _sLSK = "scriptLocationS3Key";
|
|
381
|
-
const _sM = "statusMessage";
|
|
382
|
-
const _sOL = "scriptOutputLocation";
|
|
383
|
-
const _sT = "stepTargets";
|
|
384
|
-
const _sTt = "stepTarget";
|
|
385
|
-
const _sV = "stringValue";
|
|
386
|
-
const _se = "server";
|
|
387
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhuborchestrator";
|
|
388
|
-
const _t = "tags";
|
|
389
|
-
const _tA = "templateArn";
|
|
390
|
-
const _tC = "templateClass";
|
|
391
|
-
const _tD = "templateDescription";
|
|
392
|
-
const _tI = "templateId";
|
|
393
|
-
const _tK = "tagKeys";
|
|
394
|
-
const _tN = "templateName";
|
|
395
|
-
const _tNOS = "totalNoOfSrv";
|
|
396
|
-
const _tS = "templateSource";
|
|
397
|
-
const _tSGS = "templateStepGroupSummary";
|
|
398
|
-
const _tSSL = "templateStepSummaryList";
|
|
399
|
-
const _tSe = "templateSummary";
|
|
400
|
-
const _tSo = "totalSteps";
|
|
401
|
-
const _tT = "targetType";
|
|
402
|
-
const _to = "tools";
|
|
403
|
-
const _u = "url";
|
|
404
|
-
const _v = "version";
|
|
405
|
-
const _va = "value";
|
|
406
|
-
const _w = "windows";
|
|
407
|
-
const _wB = "workflowBucket";
|
|
408
|
-
const _wI = "workflowInputs";
|
|
409
|
-
const _wIo = "workflowId";
|
|
410
|
-
const _wSAC = "workflowStepAutomationConfiguration";
|
|
411
|
-
const _wSGS = "workflowStepGroupsSummary";
|
|
412
|
-
const _wSS = "workflowStepsSummary";
|
|
413
|
-
const n0 = "com.amazonaws.migrationhuborchestrator";
|
|
414
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
415
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
416
|
-
[_m],
|
|
417
|
-
[0], 1
|
|
418
|
-
];
|
|
419
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
420
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
421
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
422
|
-
[_m],
|
|
423
|
-
[0], 1
|
|
424
|
-
];
|
|
425
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
426
|
-
var CreateMigrationWorkflowRequest$ = [3, n0, _CMWR,
|
|
427
|
-
0,
|
|
428
|
-
[_n, _tI, _iP, _d, _aCI, _sT, _t],
|
|
429
|
-
[0, 0, [() => StepInputParameters, 0], 0, 0, 64 | 0, 128 | 0], 3
|
|
430
|
-
];
|
|
431
|
-
var CreateMigrationWorkflowResponse$ = [3, n0, _CMWRr,
|
|
432
|
-
0,
|
|
433
|
-
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _s, _cT, _t],
|
|
434
|
-
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 128 | 0]
|
|
435
|
-
];
|
|
436
|
-
var CreateTemplateRequest$ = [3, n0, _CTR,
|
|
437
|
-
0,
|
|
438
|
-
[_tN, _tS, _tD, _cTl, _t],
|
|
439
|
-
[0, () => TemplateSource$, 0, [0, 4], 128 | 0], 2
|
|
440
|
-
];
|
|
441
|
-
var CreateTemplateResponse$ = [3, n0, _CTRr,
|
|
442
|
-
0,
|
|
443
|
-
[_tI, _tA, _t],
|
|
444
|
-
[0, 0, 128 | 0]
|
|
445
|
-
];
|
|
446
|
-
var CreateWorkflowStepGroupRequest$ = [3, n0, _CWSGR,
|
|
447
|
-
0,
|
|
448
|
-
[_wIo, _n, _d, _ne, _p],
|
|
449
|
-
[0, 0, 0, 64 | 0, 64 | 0], 2
|
|
450
|
-
];
|
|
451
|
-
var CreateWorkflowStepGroupResponse$ = [3, n0, _CWSGRr,
|
|
452
|
-
0,
|
|
453
|
-
[_wIo, _n, _i, _d, _to, _ne, _p, _cT],
|
|
454
|
-
[0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4]
|
|
455
|
-
];
|
|
456
|
-
var CreateWorkflowStepRequest$ = [3, n0, _CWSR,
|
|
457
|
-
0,
|
|
458
|
-
[_n, _sGI, _wIo, _sAT, _d, _wSAC, _sTt, _o, _p, _ne],
|
|
459
|
-
[0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0], 4
|
|
460
|
-
];
|
|
461
|
-
var CreateWorkflowStepResponse$ = [3, n0, _CWSRr,
|
|
462
|
-
0,
|
|
463
|
-
[_i, _sGI, _wIo, _n],
|
|
464
|
-
[0, 0, 0, 0]
|
|
465
|
-
];
|
|
466
|
-
var DeleteMigrationWorkflowRequest$ = [3, n0, _DMWR,
|
|
467
|
-
0,
|
|
468
|
-
[_i],
|
|
469
|
-
[[0, 1]], 1
|
|
470
|
-
];
|
|
471
|
-
var DeleteMigrationWorkflowResponse$ = [3, n0, _DMWRe,
|
|
472
|
-
0,
|
|
473
|
-
[_i, _a, _s],
|
|
474
|
-
[0, 0, 0]
|
|
475
|
-
];
|
|
476
|
-
var DeleteTemplateRequest$ = [3, n0, _DTR,
|
|
477
|
-
0,
|
|
478
|
-
[_i],
|
|
479
|
-
[[0, 1]], 1
|
|
480
|
-
];
|
|
481
|
-
var DeleteTemplateResponse$ = [3, n0, _DTRe,
|
|
482
|
-
0,
|
|
483
|
-
[],
|
|
484
|
-
[]
|
|
485
|
-
];
|
|
486
|
-
var DeleteWorkflowStepGroupRequest$ = [3, n0, _DWSGR,
|
|
487
|
-
0,
|
|
488
|
-
[_wIo, _i],
|
|
489
|
-
[[0, { [_hQ]: _wIo }], [0, 1]], 2
|
|
490
|
-
];
|
|
491
|
-
var DeleteWorkflowStepGroupResponse$ = [3, n0, _DWSGRe,
|
|
492
|
-
0,
|
|
493
|
-
[],
|
|
494
|
-
[]
|
|
495
|
-
];
|
|
496
|
-
var DeleteWorkflowStepRequest$ = [3, n0, _DWSR,
|
|
497
|
-
0,
|
|
498
|
-
[_i, _sGI, _wIo],
|
|
499
|
-
[[0, 1], [0, { [_hQ]: _sGI }], [0, { [_hQ]: _wIo }]], 3
|
|
500
|
-
];
|
|
501
|
-
var DeleteWorkflowStepResponse$ = [3, n0, _DWSRe,
|
|
502
|
-
0,
|
|
503
|
-
[],
|
|
504
|
-
[]
|
|
505
|
-
];
|
|
506
|
-
var GetMigrationWorkflowRequest$ = [3, n0, _GMWR,
|
|
507
|
-
0,
|
|
508
|
-
[_i],
|
|
509
|
-
[[0, 1]], 1
|
|
510
|
-
];
|
|
511
|
-
var GetMigrationWorkflowResponse$ = [3, n0, _GMWRe,
|
|
512
|
-
0,
|
|
513
|
-
[_i, _a, _n, _d, _tI, _aACI, _aAN, _s, _sM, _cT, _lST, _lSTa, _lMT, _eT, _to, _tSo, _cS, _wI, _t, _wB],
|
|
514
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, () => ToolsList, 1, 1, [() => StepInputParameters, 0], 128 | 0, 0]
|
|
515
|
-
];
|
|
516
|
-
var GetMigrationWorkflowTemplateRequest$ = [3, n0, _GMWTR,
|
|
517
|
-
0,
|
|
518
|
-
[_i],
|
|
519
|
-
[[0, 1]], 1
|
|
520
|
-
];
|
|
521
|
-
var GetMigrationWorkflowTemplateResponse$ = [3, n0, _GMWTRe,
|
|
522
|
-
0,
|
|
523
|
-
[_i, _tA, _n, _d, _in, _to, _cT, _ow, _s, _sM, _tC, _t],
|
|
524
|
-
[0, 0, 0, 0, () => TemplateInputList, () => ToolsList, 4, 0, 0, 0, 0, 128 | 0]
|
|
525
|
-
];
|
|
526
|
-
var GetTemplateStepGroupRequest$ = [3, n0, _GTSGR,
|
|
527
|
-
0,
|
|
528
|
-
[_tI, _i],
|
|
529
|
-
[[0, 1], [0, 1]], 2
|
|
530
|
-
];
|
|
531
|
-
var GetTemplateStepGroupResponse$ = [3, n0, _GTSGRe,
|
|
532
|
-
0,
|
|
533
|
-
[_tI, _i, _n, _d, _s, _cT, _lMT, _to, _p, _ne],
|
|
534
|
-
[0, 0, 0, 0, 0, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
|
|
535
|
-
];
|
|
536
|
-
var GetTemplateStepRequest$ = [3, n0, _GTSR,
|
|
537
|
-
0,
|
|
538
|
-
[_i, _tI, _sGI],
|
|
539
|
-
[[0, 1], [0, { [_hQ]: _tI }], [0, { [_hQ]: _sGI }]], 3
|
|
540
|
-
];
|
|
541
|
-
var GetTemplateStepResponse$ = [3, n0, _GTSRe,
|
|
542
|
-
0,
|
|
543
|
-
[_i, _sGI, _tI, _n, _d, _sAT, _cT, _p, _ne, _o, _sAC],
|
|
544
|
-
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => StepOutputList, () => StepAutomationConfiguration$]
|
|
545
|
-
];
|
|
546
|
-
var GetWorkflowStepGroupRequest$ = [3, n0, _GWSGR,
|
|
547
|
-
0,
|
|
548
|
-
[_i, _wIo],
|
|
549
|
-
[[0, 1], [0, { [_hQ]: _wIo }]], 2
|
|
550
|
-
];
|
|
551
|
-
var GetWorkflowStepGroupResponse$ = [3, n0, _GWSGRe,
|
|
552
|
-
0,
|
|
553
|
-
[_i, _wIo, _n, _d, _s, _ow, _cT, _lMT, _eT, _to, _p, _ne],
|
|
554
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
|
|
555
|
-
];
|
|
556
|
-
var GetWorkflowStepRequest$ = [3, n0, _GWSR,
|
|
557
|
-
0,
|
|
558
|
-
[_wIo, _sGI, _i],
|
|
559
|
-
[[0, { [_hQ]: _wIo }], [0, { [_hQ]: _sGI }], [0, 1]], 3
|
|
560
|
-
];
|
|
561
|
-
var GetWorkflowStepResponse$ = [3, n0, _GWSRe,
|
|
562
|
-
0,
|
|
563
|
-
[_n, _sGI, _wIo, _sI, _d, _sAT, _ow, _wSAC, _sTt, _o, _p, _ne, _s, _sM, _sOL, _cT, _lST, _eT, _nOSC, _nOSF, _tNOS],
|
|
564
|
-
[0, 0, 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0, 0, 0, 4, 4, 4, 1, 1, 1]
|
|
565
|
-
];
|
|
566
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
567
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
568
|
-
[_m],
|
|
569
|
-
[0], 1
|
|
570
|
-
];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
572
|
-
var ListMigrationWorkflowsRequest$ = [3, n0, _LMWR,
|
|
573
|
-
0,
|
|
574
|
-
[_mR, _nT, _tI, _aACN, _s, _n],
|
|
575
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _tI }], [0, { [_hQ]: _aACN }], [0, { [_hQ]: _s }], [0, { [_hQ]: _n }]]
|
|
576
|
-
];
|
|
577
|
-
var ListMigrationWorkflowsResponse$ = [3, n0, _LMWRi,
|
|
578
|
-
0,
|
|
579
|
-
[_mWS, _nT],
|
|
580
|
-
[() => MigrationWorkflowSummaryList, 0], 1
|
|
581
|
-
];
|
|
582
|
-
var ListMigrationWorkflowTemplatesRequest$ = [3, n0, _LMWTR,
|
|
583
|
-
0,
|
|
584
|
-
[_mR, _nT, _n],
|
|
585
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _n }]]
|
|
586
|
-
];
|
|
587
|
-
var ListMigrationWorkflowTemplatesResponse$ = [3, n0, _LMWTRi,
|
|
588
|
-
0,
|
|
589
|
-
[_tSe, _nT],
|
|
590
|
-
[() => TemplateSummaryList, 0], 1
|
|
591
|
-
];
|
|
592
|
-
var ListPluginsRequest$ = [3, n0, _LPR,
|
|
593
|
-
0,
|
|
594
|
-
[_mR, _nT],
|
|
595
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
596
|
-
];
|
|
597
|
-
var ListPluginsResponse$ = [3, n0, _LPRi,
|
|
598
|
-
0,
|
|
599
|
-
[_nT, _pl],
|
|
600
|
-
[0, () => PluginSummaries]
|
|
601
|
-
];
|
|
602
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
603
|
-
0,
|
|
604
|
-
[_rA],
|
|
605
|
-
[[0, 1]], 1
|
|
606
|
-
];
|
|
607
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
608
|
-
0,
|
|
609
|
-
[_t],
|
|
610
|
-
[128 | 0]
|
|
611
|
-
];
|
|
612
|
-
var ListTemplateStepGroupsRequest$ = [3, n0, _LTSGR,
|
|
613
|
-
0,
|
|
614
|
-
[_tI, _mR, _nT],
|
|
615
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
616
|
-
];
|
|
617
|
-
var ListTemplateStepGroupsResponse$ = [3, n0, _LTSGRi,
|
|
618
|
-
0,
|
|
619
|
-
[_tSGS, _nT],
|
|
620
|
-
[() => TemplateStepGroupSummaryList, 0], 1
|
|
621
|
-
];
|
|
622
|
-
var ListTemplateStepsRequest$ = [3, n0, _LTSR,
|
|
623
|
-
0,
|
|
624
|
-
[_tI, _sGI, _mR, _nT],
|
|
625
|
-
[[0, { [_hQ]: _tI }], [0, { [_hQ]: _sGI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
626
|
-
];
|
|
627
|
-
var ListTemplateStepsResponse$ = [3, n0, _LTSRi,
|
|
628
|
-
0,
|
|
629
|
-
[_nT, _tSSL],
|
|
630
|
-
[0, () => TemplateStepSummaryList]
|
|
631
|
-
];
|
|
632
|
-
var ListWorkflowStepGroupsRequest$ = [3, n0, _LWSGR,
|
|
633
|
-
0,
|
|
634
|
-
[_wIo, _nT, _mR],
|
|
635
|
-
[[0, { [_hQ]: _wIo }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
636
|
-
];
|
|
637
|
-
var ListWorkflowStepGroupsResponse$ = [3, n0, _LWSGRi,
|
|
638
|
-
0,
|
|
639
|
-
[_wSGS, _nT],
|
|
640
|
-
[() => WorkflowStepGroupsSummaryList, 0], 1
|
|
641
|
-
];
|
|
642
|
-
var ListWorkflowStepsRequest$ = [3, n0, _LWSR,
|
|
643
|
-
0,
|
|
644
|
-
[_wIo, _sGI, _nT, _mR],
|
|
645
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
646
|
-
];
|
|
647
|
-
var ListWorkflowStepsResponse$ = [3, n0, _LWSRi,
|
|
648
|
-
0,
|
|
649
|
-
[_wSS, _nT],
|
|
650
|
-
[() => WorkflowStepsSummaryList, 0], 1
|
|
651
|
-
];
|
|
652
|
-
var MigrationWorkflowSummary$ = [3, n0, _MWS,
|
|
653
|
-
0,
|
|
654
|
-
[_i, _n, _tI, _aACN, _s, _cT, _eT, _sM, _cS, _tSo],
|
|
655
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 1, 1]
|
|
656
|
-
];
|
|
657
|
-
var PlatformCommand$ = [3, n0, _PC,
|
|
658
|
-
0,
|
|
659
|
-
[_l, _w],
|
|
660
|
-
[0, 0]
|
|
661
|
-
];
|
|
662
|
-
var PlatformScriptKey$ = [3, n0, _PSK,
|
|
663
|
-
0,
|
|
664
|
-
[_l, _w],
|
|
665
|
-
[0, 0]
|
|
666
|
-
];
|
|
667
|
-
var PluginSummary$ = [3, n0, _PS,
|
|
668
|
-
0,
|
|
669
|
-
[_pI, _h, _s, _iA, _v, _rT],
|
|
670
|
-
[0, 0, 0, 0, 0, 0]
|
|
671
|
-
];
|
|
672
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
673
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
674
|
-
[_m],
|
|
675
|
-
[0], 1
|
|
676
|
-
];
|
|
677
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
678
|
-
var RetryWorkflowStepRequest$ = [3, n0, _RWSR,
|
|
679
|
-
0,
|
|
680
|
-
[_wIo, _sGI, _i],
|
|
681
|
-
[[0, { [_hQ]: _wIo }], [0, { [_hQ]: _sGI }], [0, 1]], 3
|
|
682
|
-
];
|
|
683
|
-
var RetryWorkflowStepResponse$ = [3, n0, _RWSRe,
|
|
684
|
-
0,
|
|
685
|
-
[_sGI, _wIo, _i, _s],
|
|
686
|
-
[0, 0, 0, 0]
|
|
687
|
-
];
|
|
688
|
-
var StartMigrationWorkflowRequest$ = [3, n0, _SMWR,
|
|
689
|
-
0,
|
|
690
|
-
[_i],
|
|
691
|
-
[[0, 1]], 1
|
|
692
|
-
];
|
|
693
|
-
var StartMigrationWorkflowResponse$ = [3, n0, _SMWRt,
|
|
694
|
-
0,
|
|
695
|
-
[_i, _a, _s, _sM, _lST],
|
|
696
|
-
[0, 0, 0, 0, 4]
|
|
697
|
-
];
|
|
698
|
-
var StepAutomationConfiguration$ = [3, n0, _SAC,
|
|
699
|
-
0,
|
|
700
|
-
[_sLSB, _sLSK, _co, _rE, _tT],
|
|
701
|
-
[0, () => PlatformScriptKey$, () => PlatformCommand$, 0, 0]
|
|
702
|
-
];
|
|
703
|
-
var StepOutput$ = [3, n0, _SO,
|
|
704
|
-
0,
|
|
705
|
-
[_n, _dT, _r],
|
|
706
|
-
[0, 0, 2]
|
|
707
|
-
];
|
|
708
|
-
var StopMigrationWorkflowRequest$ = [3, n0, _SMWRto,
|
|
709
|
-
0,
|
|
710
|
-
[_i],
|
|
711
|
-
[[0, 1]], 1
|
|
712
|
-
];
|
|
713
|
-
var StopMigrationWorkflowResponse$ = [3, n0, _SMWRtop,
|
|
714
|
-
0,
|
|
715
|
-
[_i, _a, _s, _sM, _lSTa],
|
|
716
|
-
[0, 0, 0, 0, 4]
|
|
717
|
-
];
|
|
718
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
719
|
-
0,
|
|
720
|
-
[_rA, _t],
|
|
721
|
-
[[0, 1], 128 | 0], 2
|
|
722
|
-
];
|
|
723
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
724
|
-
0,
|
|
725
|
-
[],
|
|
726
|
-
[]
|
|
727
|
-
];
|
|
728
|
-
var TemplateInput$ = [3, n0, _TI,
|
|
729
|
-
0,
|
|
730
|
-
[_iN, _dT, _r],
|
|
731
|
-
[0, 0, 2]
|
|
732
|
-
];
|
|
733
|
-
var TemplateStepGroupSummary$ = [3, n0, _TSGS,
|
|
734
|
-
0,
|
|
735
|
-
[_i, _n, _p, _ne],
|
|
736
|
-
[0, 0, 64 | 0, 64 | 0]
|
|
737
|
-
];
|
|
738
|
-
var TemplateStepSummary$ = [3, n0, _TSS,
|
|
739
|
-
0,
|
|
740
|
-
[_i, _sGI, _tI, _n, _sAT, _tT, _ow, _p, _ne],
|
|
741
|
-
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0]
|
|
742
|
-
];
|
|
743
|
-
var TemplateSummary$ = [3, n0, _TS,
|
|
744
|
-
0,
|
|
745
|
-
[_i, _n, _a, _d],
|
|
746
|
-
[0, 0, 0, 0]
|
|
747
|
-
];
|
|
748
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
749
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
750
|
-
[_m],
|
|
751
|
-
[0], 1
|
|
752
|
-
];
|
|
753
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
754
|
-
var Tool$ = [3, n0, _T,
|
|
755
|
-
0,
|
|
756
|
-
[_n, _u],
|
|
757
|
-
[0, 0]
|
|
758
|
-
];
|
|
759
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
760
|
-
0,
|
|
761
|
-
[_rA, _tK],
|
|
762
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
763
|
-
];
|
|
764
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
765
|
-
0,
|
|
766
|
-
[],
|
|
767
|
-
[]
|
|
768
|
-
];
|
|
769
|
-
var UpdateMigrationWorkflowRequest$ = [3, n0, _UMWR,
|
|
770
|
-
0,
|
|
771
|
-
[_i, _n, _d, _iP, _sT],
|
|
772
|
-
[[0, 1], 0, 0, [() => StepInputParameters, 0], 64 | 0], 1
|
|
773
|
-
];
|
|
774
|
-
var UpdateMigrationWorkflowResponse$ = [3, n0, _UMWRp,
|
|
775
|
-
0,
|
|
776
|
-
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _s, _cT, _lMT, _t],
|
|
777
|
-
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 4, 128 | 0]
|
|
778
|
-
];
|
|
779
|
-
var UpdateTemplateRequest$ = [3, n0, _UTR,
|
|
780
|
-
0,
|
|
781
|
-
[_i, _tN, _tD, _cTl],
|
|
782
|
-
[[0, 1], 0, 0, [0, 4]], 1
|
|
783
|
-
];
|
|
784
|
-
var UpdateTemplateResponse$ = [3, n0, _UTRp,
|
|
785
|
-
0,
|
|
786
|
-
[_tI, _tA, _t],
|
|
787
|
-
[0, 0, 128 | 0]
|
|
788
|
-
];
|
|
789
|
-
var UpdateWorkflowStepGroupRequest$ = [3, n0, _UWSGR,
|
|
790
|
-
0,
|
|
791
|
-
[_wIo, _i, _n, _d, _ne, _p],
|
|
792
|
-
[[0, { [_hQ]: _wIo }], [0, 1], 0, 0, 64 | 0, 64 | 0], 2
|
|
793
|
-
];
|
|
794
|
-
var UpdateWorkflowStepGroupResponse$ = [3, n0, _UWSGRp,
|
|
795
|
-
0,
|
|
796
|
-
[_wIo, _n, _i, _d, _to, _ne, _p, _lMT],
|
|
797
|
-
[0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4]
|
|
798
|
-
];
|
|
799
|
-
var UpdateWorkflowStepRequest$ = [3, n0, _UWSR,
|
|
800
|
-
0,
|
|
801
|
-
[_i, _sGI, _wIo, _n, _d, _sAT, _wSAC, _sTt, _o, _p, _ne, _s],
|
|
802
|
-
[[0, 1], 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0], 3
|
|
803
|
-
];
|
|
804
|
-
var UpdateWorkflowStepResponse$ = [3, n0, _UWSRp,
|
|
805
|
-
0,
|
|
806
|
-
[_i, _sGI, _wIo, _n],
|
|
807
|
-
[0, 0, 0, 0]
|
|
808
|
-
];
|
|
809
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
810
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
811
|
-
[_m],
|
|
812
|
-
[0], 1
|
|
813
|
-
];
|
|
814
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
815
|
-
var WorkflowStepAutomationConfiguration$ = [3, n0, _WSAC,
|
|
816
|
-
0,
|
|
817
|
-
[_sLSB, _sLSK, _co, _rE, _tT],
|
|
818
|
-
[0, () => PlatformScriptKey$, () => PlatformCommand$, 0, 0]
|
|
819
|
-
];
|
|
820
|
-
var WorkflowStepGroupSummary$ = [3, n0, _WSGS,
|
|
821
|
-
0,
|
|
822
|
-
[_i, _n, _ow, _s, _p, _ne],
|
|
823
|
-
[0, 0, 0, 0, 64 | 0, 64 | 0]
|
|
824
|
-
];
|
|
825
|
-
var WorkflowStepOutput$ = [3, n0, _WSO,
|
|
826
|
-
0,
|
|
827
|
-
[_n, _dT, _r, _va],
|
|
828
|
-
[0, 0, 2, () => WorkflowStepOutputUnion$]
|
|
829
|
-
];
|
|
830
|
-
var WorkflowStepSummary$ = [3, n0, _WSS,
|
|
831
|
-
0,
|
|
832
|
-
[_sI, _n, _sAT, _ow, _p, _ne, _s, _sM, _nOSC, _nOSF, _tNOS, _d, _sL],
|
|
833
|
-
[0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 1, 1, 1, 0, 0]
|
|
834
|
-
];
|
|
835
|
-
var MigrationHubOrchestratorServiceException$ = [-3, _sm, "MigrationHubOrchestratorServiceException", 0, [], []];
|
|
836
|
-
schema.TypeRegistry.for(_sm).registerError(MigrationHubOrchestratorServiceException$, MigrationHubOrchestratorServiceException);
|
|
837
|
-
var MigrationWorkflowSummaryList = [1, n0, _MWSL,
|
|
838
|
-
0, () => MigrationWorkflowSummary$
|
|
839
|
-
];
|
|
840
|
-
var PluginSummaries = [1, n0, _PSl,
|
|
841
|
-
0, () => PluginSummary$
|
|
842
|
-
];
|
|
843
|
-
var StepOutputList = [1, n0, _SOL,
|
|
844
|
-
0, () => StepOutput$
|
|
845
|
-
];
|
|
846
|
-
var TemplateInputList = [1, n0, _TIL,
|
|
847
|
-
0, () => TemplateInput$
|
|
848
|
-
];
|
|
849
|
-
var TemplateStepGroupSummaryList = [1, n0, _TSGSL,
|
|
850
|
-
0, () => TemplateStepGroupSummary$
|
|
851
|
-
];
|
|
852
|
-
var TemplateStepSummaryList = [1, n0, _TSSL,
|
|
853
|
-
0, () => TemplateStepSummary$
|
|
854
|
-
];
|
|
855
|
-
var TemplateSummaryList = [1, n0, _TSL,
|
|
856
|
-
0, () => TemplateSummary$
|
|
857
|
-
];
|
|
858
|
-
var ToolsList = [1, n0, _TL,
|
|
859
|
-
0, () => Tool$
|
|
860
|
-
];
|
|
861
|
-
var WorkflowStepGroupsSummaryList = [1, n0, _WSGSL,
|
|
862
|
-
0, () => WorkflowStepGroupSummary$
|
|
863
|
-
];
|
|
864
|
-
var WorkflowStepOutputList = [1, n0, _WSOL,
|
|
865
|
-
0, () => WorkflowStepOutput$
|
|
866
|
-
];
|
|
867
|
-
var WorkflowStepsSummaryList = [1, n0, _WSSL,
|
|
868
|
-
0, () => WorkflowStepSummary$
|
|
869
|
-
];
|
|
870
|
-
var StepInputParameters = [2, n0, _SIP,
|
|
871
|
-
8, 0, () => StepInput$
|
|
872
|
-
];
|
|
873
|
-
var StepInput$ = [4, n0, _SI,
|
|
874
|
-
0,
|
|
875
|
-
[_iV, _sV, _lOSV, _mOSV],
|
|
876
|
-
[1, 0, 64 | 0, 128 | 0]
|
|
877
|
-
];
|
|
878
|
-
var TemplateSource$ = [4, n0, _TSe,
|
|
879
|
-
0,
|
|
880
|
-
[_wIo],
|
|
881
|
-
[0]
|
|
882
|
-
];
|
|
883
|
-
var WorkflowStepOutputUnion$ = [4, n0, _WSOU,
|
|
884
|
-
0,
|
|
885
|
-
[_iV, _sV, _lOSVi],
|
|
886
|
-
[1, 0, 64 | 0]
|
|
887
|
-
];
|
|
888
|
-
var CreateTemplate$ = [9, n0, _CT,
|
|
889
|
-
{ [_ht]: ["POST", "/template", 200] }, () => CreateTemplateRequest$, () => CreateTemplateResponse$
|
|
890
|
-
];
|
|
891
|
-
var CreateWorkflow$ = [9, n0, _CW,
|
|
892
|
-
{ [_ht]: ["POST", "/migrationworkflow/", 200] }, () => CreateMigrationWorkflowRequest$, () => CreateMigrationWorkflowResponse$
|
|
893
|
-
];
|
|
894
|
-
var CreateWorkflowStep$ = [9, n0, _CWS,
|
|
895
|
-
{ [_ht]: ["POST", "/workflowstep", 200] }, () => CreateWorkflowStepRequest$, () => CreateWorkflowStepResponse$
|
|
896
|
-
];
|
|
897
|
-
var CreateWorkflowStepGroup$ = [9, n0, _CWSG,
|
|
898
|
-
{ [_ht]: ["POST", "/workflowstepgroups", 200] }, () => CreateWorkflowStepGroupRequest$, () => CreateWorkflowStepGroupResponse$
|
|
899
|
-
];
|
|
900
|
-
var DeleteTemplate$ = [9, n0, _DT,
|
|
901
|
-
{ [_ht]: ["DELETE", "/template/{id}", 200] }, () => DeleteTemplateRequest$, () => DeleteTemplateResponse$
|
|
902
|
-
];
|
|
903
|
-
var DeleteWorkflow$ = [9, n0, _DW,
|
|
904
|
-
{ [_ht]: ["DELETE", "/migrationworkflow/{id}", 202] }, () => DeleteMigrationWorkflowRequest$, () => DeleteMigrationWorkflowResponse$
|
|
905
|
-
];
|
|
906
|
-
var DeleteWorkflowStep$ = [9, n0, _DWS,
|
|
907
|
-
{ [_ht]: ["DELETE", "/workflowstep/{id}", 200] }, () => DeleteWorkflowStepRequest$, () => DeleteWorkflowStepResponse$
|
|
908
|
-
];
|
|
909
|
-
var DeleteWorkflowStepGroup$ = [9, n0, _DWSG,
|
|
910
|
-
{ [_ht]: ["DELETE", "/workflowstepgroup/{id}", 202] }, () => DeleteWorkflowStepGroupRequest$, () => DeleteWorkflowStepGroupResponse$
|
|
911
|
-
];
|
|
912
|
-
var GetTemplate$ = [9, n0, _GT,
|
|
913
|
-
{ [_ht]: ["GET", "/migrationworkflowtemplate/{id}", 200] }, () => GetMigrationWorkflowTemplateRequest$, () => GetMigrationWorkflowTemplateResponse$
|
|
914
|
-
];
|
|
915
|
-
var GetTemplateStep$ = [9, n0, _GTS,
|
|
916
|
-
{ [_ht]: ["GET", "/templatestep/{id}", 200] }, () => GetTemplateStepRequest$, () => GetTemplateStepResponse$
|
|
917
|
-
];
|
|
918
|
-
var GetTemplateStepGroup$ = [9, n0, _GTSG,
|
|
919
|
-
{ [_ht]: ["GET", "/templates/{templateId}/stepgroups/{id}", 200] }, () => GetTemplateStepGroupRequest$, () => GetTemplateStepGroupResponse$
|
|
920
|
-
];
|
|
921
|
-
var GetWorkflow$ = [9, n0, _GW,
|
|
922
|
-
{ [_ht]: ["GET", "/migrationworkflow/{id}", 200] }, () => GetMigrationWorkflowRequest$, () => GetMigrationWorkflowResponse$
|
|
923
|
-
];
|
|
924
|
-
var GetWorkflowStep$ = [9, n0, _GWS,
|
|
925
|
-
{ [_ht]: ["GET", "/workflowstep/{id}", 200] }, () => GetWorkflowStepRequest$, () => GetWorkflowStepResponse$
|
|
926
|
-
];
|
|
927
|
-
var GetWorkflowStepGroup$ = [9, n0, _GWSG,
|
|
928
|
-
{ [_ht]: ["GET", "/workflowstepgroup/{id}", 200] }, () => GetWorkflowStepGroupRequest$, () => GetWorkflowStepGroupResponse$
|
|
929
|
-
];
|
|
930
|
-
var ListPlugins$ = [9, n0, _LP,
|
|
931
|
-
{ [_ht]: ["GET", "/plugins", 200] }, () => ListPluginsRequest$, () => ListPluginsResponse$
|
|
932
|
-
];
|
|
933
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
934
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
935
|
-
];
|
|
936
|
-
var ListTemplates$ = [9, n0, _LT,
|
|
937
|
-
{ [_ht]: ["GET", "/migrationworkflowtemplates", 200] }, () => ListMigrationWorkflowTemplatesRequest$, () => ListMigrationWorkflowTemplatesResponse$
|
|
938
|
-
];
|
|
939
|
-
var ListTemplateStepGroups$ = [9, n0, _LTSG,
|
|
940
|
-
{ [_ht]: ["GET", "/templatestepgroups/{templateId}", 200] }, () => ListTemplateStepGroupsRequest$, () => ListTemplateStepGroupsResponse$
|
|
941
|
-
];
|
|
942
|
-
var ListTemplateSteps$ = [9, n0, _LTS,
|
|
943
|
-
{ [_ht]: ["GET", "/templatesteps", 200] }, () => ListTemplateStepsRequest$, () => ListTemplateStepsResponse$
|
|
944
|
-
];
|
|
945
|
-
var ListWorkflows$ = [9, n0, _LW,
|
|
946
|
-
{ [_ht]: ["GET", "/migrationworkflows", 200] }, () => ListMigrationWorkflowsRequest$, () => ListMigrationWorkflowsResponse$
|
|
947
|
-
];
|
|
948
|
-
var ListWorkflowStepGroups$ = [9, n0, _LWSG,
|
|
949
|
-
{ [_ht]: ["GET", "/workflowstepgroups", 200] }, () => ListWorkflowStepGroupsRequest$, () => ListWorkflowStepGroupsResponse$
|
|
950
|
-
];
|
|
951
|
-
var ListWorkflowSteps$ = [9, n0, _LWS,
|
|
952
|
-
{ [_ht]: ["GET", "/workflow/{workflowId}/workflowstepgroups/{stepGroupId}/workflowsteps", 200] }, () => ListWorkflowStepsRequest$, () => ListWorkflowStepsResponse$
|
|
953
|
-
];
|
|
954
|
-
var RetryWorkflowStep$ = [9, n0, _RWS,
|
|
955
|
-
{ [_ht]: ["POST", "/retryworkflowstep/{id}", 200] }, () => RetryWorkflowStepRequest$, () => RetryWorkflowStepResponse$
|
|
956
|
-
];
|
|
957
|
-
var StartWorkflow$ = [9, n0, _SW,
|
|
958
|
-
{ [_ht]: ["POST", "/migrationworkflow/{id}/start", 200] }, () => StartMigrationWorkflowRequest$, () => StartMigrationWorkflowResponse$
|
|
959
|
-
];
|
|
960
|
-
var StopWorkflow$ = [9, n0, _SWt,
|
|
961
|
-
{ [_ht]: ["POST", "/migrationworkflow/{id}/stop", 200] }, () => StopMigrationWorkflowRequest$, () => StopMigrationWorkflowResponse$
|
|
962
|
-
];
|
|
963
|
-
var TagResource$ = [9, n0, _TR,
|
|
964
|
-
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
965
|
-
];
|
|
966
|
-
var UntagResource$ = [9, n0, _UR,
|
|
967
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
968
|
-
];
|
|
969
|
-
var UpdateTemplate$ = [9, n0, _UT,
|
|
970
|
-
{ [_ht]: ["POST", "/template/{id}", 200] }, () => UpdateTemplateRequest$, () => UpdateTemplateResponse$
|
|
971
|
-
];
|
|
972
|
-
var UpdateWorkflow$ = [9, n0, _UW,
|
|
973
|
-
{ [_ht]: ["POST", "/migrationworkflow/{id}", 200] }, () => UpdateMigrationWorkflowRequest$, () => UpdateMigrationWorkflowResponse$
|
|
974
|
-
];
|
|
975
|
-
var UpdateWorkflowStep$ = [9, n0, _UWS,
|
|
976
|
-
{ [_ht]: ["POST", "/workflowstep/{id}", 200] }, () => UpdateWorkflowStepRequest$, () => UpdateWorkflowStepResponse$
|
|
977
|
-
];
|
|
978
|
-
var UpdateWorkflowStepGroup$ = [9, n0, _UWSG,
|
|
979
|
-
{ [_ht]: ["POST", "/workflowstepgroup/{id}", 202] }, () => UpdateWorkflowStepGroupRequest$, () => UpdateWorkflowStepGroupResponse$
|
|
980
|
-
];
|
|
981
|
-
|
|
982
116
|
class CreateTemplateCommand extends smithyClient.Command
|
|
983
117
|
.classBuilder()
|
|
984
118
|
.ep(commonParams)
|
|
@@ -987,7 +121,7 @@ class CreateTemplateCommand extends smithyClient.Command
|
|
|
987
121
|
})
|
|
988
122
|
.s("AWSMigrationHubOrchestrator", "CreateTemplate", {})
|
|
989
123
|
.n("MigrationHubOrchestratorClient", "CreateTemplateCommand")
|
|
990
|
-
.sc(CreateTemplate$)
|
|
124
|
+
.sc(schemas_0.CreateTemplate$)
|
|
991
125
|
.build() {
|
|
992
126
|
}
|
|
993
127
|
|
|
@@ -999,7 +133,7 @@ class CreateWorkflowCommand extends smithyClient.Command
|
|
|
999
133
|
})
|
|
1000
134
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflow", {})
|
|
1001
135
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowCommand")
|
|
1002
|
-
.sc(CreateWorkflow$)
|
|
136
|
+
.sc(schemas_0.CreateWorkflow$)
|
|
1003
137
|
.build() {
|
|
1004
138
|
}
|
|
1005
139
|
|
|
@@ -1011,7 +145,7 @@ class CreateWorkflowStepCommand extends smithyClient.Command
|
|
|
1011
145
|
})
|
|
1012
146
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflowStep", {})
|
|
1013
147
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowStepCommand")
|
|
1014
|
-
.sc(CreateWorkflowStep$)
|
|
148
|
+
.sc(schemas_0.CreateWorkflowStep$)
|
|
1015
149
|
.build() {
|
|
1016
150
|
}
|
|
1017
151
|
|
|
@@ -1023,7 +157,7 @@ class CreateWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1023
157
|
})
|
|
1024
158
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflowStepGroup", {})
|
|
1025
159
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowStepGroupCommand")
|
|
1026
|
-
.sc(CreateWorkflowStepGroup$)
|
|
160
|
+
.sc(schemas_0.CreateWorkflowStepGroup$)
|
|
1027
161
|
.build() {
|
|
1028
162
|
}
|
|
1029
163
|
|
|
@@ -1035,7 +169,7 @@ class DeleteTemplateCommand extends smithyClient.Command
|
|
|
1035
169
|
})
|
|
1036
170
|
.s("AWSMigrationHubOrchestrator", "DeleteTemplate", {})
|
|
1037
171
|
.n("MigrationHubOrchestratorClient", "DeleteTemplateCommand")
|
|
1038
|
-
.sc(DeleteTemplate$)
|
|
172
|
+
.sc(schemas_0.DeleteTemplate$)
|
|
1039
173
|
.build() {
|
|
1040
174
|
}
|
|
1041
175
|
|
|
@@ -1047,7 +181,7 @@ class DeleteWorkflowCommand extends smithyClient.Command
|
|
|
1047
181
|
})
|
|
1048
182
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflow", {})
|
|
1049
183
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowCommand")
|
|
1050
|
-
.sc(DeleteWorkflow$)
|
|
184
|
+
.sc(schemas_0.DeleteWorkflow$)
|
|
1051
185
|
.build() {
|
|
1052
186
|
}
|
|
1053
187
|
|
|
@@ -1059,7 +193,7 @@ class DeleteWorkflowStepCommand extends smithyClient.Command
|
|
|
1059
193
|
})
|
|
1060
194
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflowStep", {})
|
|
1061
195
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowStepCommand")
|
|
1062
|
-
.sc(DeleteWorkflowStep$)
|
|
196
|
+
.sc(schemas_0.DeleteWorkflowStep$)
|
|
1063
197
|
.build() {
|
|
1064
198
|
}
|
|
1065
199
|
|
|
@@ -1071,7 +205,7 @@ class DeleteWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1071
205
|
})
|
|
1072
206
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflowStepGroup", {})
|
|
1073
207
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowStepGroupCommand")
|
|
1074
|
-
.sc(DeleteWorkflowStepGroup$)
|
|
208
|
+
.sc(schemas_0.DeleteWorkflowStepGroup$)
|
|
1075
209
|
.build() {
|
|
1076
210
|
}
|
|
1077
211
|
|
|
@@ -1083,7 +217,7 @@ class GetTemplateCommand extends smithyClient.Command
|
|
|
1083
217
|
})
|
|
1084
218
|
.s("AWSMigrationHubOrchestrator", "GetTemplate", {})
|
|
1085
219
|
.n("MigrationHubOrchestratorClient", "GetTemplateCommand")
|
|
1086
|
-
.sc(GetTemplate$)
|
|
220
|
+
.sc(schemas_0.GetTemplate$)
|
|
1087
221
|
.build() {
|
|
1088
222
|
}
|
|
1089
223
|
|
|
@@ -1095,7 +229,7 @@ class GetTemplateStepCommand extends smithyClient.Command
|
|
|
1095
229
|
})
|
|
1096
230
|
.s("AWSMigrationHubOrchestrator", "GetTemplateStep", {})
|
|
1097
231
|
.n("MigrationHubOrchestratorClient", "GetTemplateStepCommand")
|
|
1098
|
-
.sc(GetTemplateStep$)
|
|
232
|
+
.sc(schemas_0.GetTemplateStep$)
|
|
1099
233
|
.build() {
|
|
1100
234
|
}
|
|
1101
235
|
|
|
@@ -1107,7 +241,7 @@ class GetTemplateStepGroupCommand extends smithyClient.Command
|
|
|
1107
241
|
})
|
|
1108
242
|
.s("AWSMigrationHubOrchestrator", "GetTemplateStepGroup", {})
|
|
1109
243
|
.n("MigrationHubOrchestratorClient", "GetTemplateStepGroupCommand")
|
|
1110
|
-
.sc(GetTemplateStepGroup$)
|
|
244
|
+
.sc(schemas_0.GetTemplateStepGroup$)
|
|
1111
245
|
.build() {
|
|
1112
246
|
}
|
|
1113
247
|
|
|
@@ -1119,7 +253,7 @@ class GetWorkflowCommand extends smithyClient.Command
|
|
|
1119
253
|
})
|
|
1120
254
|
.s("AWSMigrationHubOrchestrator", "GetWorkflow", {})
|
|
1121
255
|
.n("MigrationHubOrchestratorClient", "GetWorkflowCommand")
|
|
1122
|
-
.sc(GetWorkflow$)
|
|
256
|
+
.sc(schemas_0.GetWorkflow$)
|
|
1123
257
|
.build() {
|
|
1124
258
|
}
|
|
1125
259
|
|
|
@@ -1131,7 +265,7 @@ class GetWorkflowStepCommand extends smithyClient.Command
|
|
|
1131
265
|
})
|
|
1132
266
|
.s("AWSMigrationHubOrchestrator", "GetWorkflowStep", {})
|
|
1133
267
|
.n("MigrationHubOrchestratorClient", "GetWorkflowStepCommand")
|
|
1134
|
-
.sc(GetWorkflowStep$)
|
|
268
|
+
.sc(schemas_0.GetWorkflowStep$)
|
|
1135
269
|
.build() {
|
|
1136
270
|
}
|
|
1137
271
|
|
|
@@ -1143,7 +277,7 @@ class GetWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1143
277
|
})
|
|
1144
278
|
.s("AWSMigrationHubOrchestrator", "GetWorkflowStepGroup", {})
|
|
1145
279
|
.n("MigrationHubOrchestratorClient", "GetWorkflowStepGroupCommand")
|
|
1146
|
-
.sc(GetWorkflowStepGroup$)
|
|
280
|
+
.sc(schemas_0.GetWorkflowStepGroup$)
|
|
1147
281
|
.build() {
|
|
1148
282
|
}
|
|
1149
283
|
|
|
@@ -1155,7 +289,7 @@ class ListPluginsCommand extends smithyClient.Command
|
|
|
1155
289
|
})
|
|
1156
290
|
.s("AWSMigrationHubOrchestrator", "ListPlugins", {})
|
|
1157
291
|
.n("MigrationHubOrchestratorClient", "ListPluginsCommand")
|
|
1158
|
-
.sc(ListPlugins$)
|
|
292
|
+
.sc(schemas_0.ListPlugins$)
|
|
1159
293
|
.build() {
|
|
1160
294
|
}
|
|
1161
295
|
|
|
@@ -1167,7 +301,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1167
301
|
})
|
|
1168
302
|
.s("AWSMigrationHubOrchestrator", "ListTagsForResource", {})
|
|
1169
303
|
.n("MigrationHubOrchestratorClient", "ListTagsForResourceCommand")
|
|
1170
|
-
.sc(ListTagsForResource$)
|
|
304
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1171
305
|
.build() {
|
|
1172
306
|
}
|
|
1173
307
|
|
|
@@ -1179,7 +313,7 @@ class ListTemplatesCommand extends smithyClient.Command
|
|
|
1179
313
|
})
|
|
1180
314
|
.s("AWSMigrationHubOrchestrator", "ListTemplates", {})
|
|
1181
315
|
.n("MigrationHubOrchestratorClient", "ListTemplatesCommand")
|
|
1182
|
-
.sc(ListTemplates$)
|
|
316
|
+
.sc(schemas_0.ListTemplates$)
|
|
1183
317
|
.build() {
|
|
1184
318
|
}
|
|
1185
319
|
|
|
@@ -1191,7 +325,7 @@ class ListTemplateStepGroupsCommand extends smithyClient.Command
|
|
|
1191
325
|
})
|
|
1192
326
|
.s("AWSMigrationHubOrchestrator", "ListTemplateStepGroups", {})
|
|
1193
327
|
.n("MigrationHubOrchestratorClient", "ListTemplateStepGroupsCommand")
|
|
1194
|
-
.sc(ListTemplateStepGroups$)
|
|
328
|
+
.sc(schemas_0.ListTemplateStepGroups$)
|
|
1195
329
|
.build() {
|
|
1196
330
|
}
|
|
1197
331
|
|
|
@@ -1203,7 +337,7 @@ class ListTemplateStepsCommand extends smithyClient.Command
|
|
|
1203
337
|
})
|
|
1204
338
|
.s("AWSMigrationHubOrchestrator", "ListTemplateSteps", {})
|
|
1205
339
|
.n("MigrationHubOrchestratorClient", "ListTemplateStepsCommand")
|
|
1206
|
-
.sc(ListTemplateSteps$)
|
|
340
|
+
.sc(schemas_0.ListTemplateSteps$)
|
|
1207
341
|
.build() {
|
|
1208
342
|
}
|
|
1209
343
|
|
|
@@ -1215,7 +349,7 @@ class ListWorkflowsCommand extends smithyClient.Command
|
|
|
1215
349
|
})
|
|
1216
350
|
.s("AWSMigrationHubOrchestrator", "ListWorkflows", {})
|
|
1217
351
|
.n("MigrationHubOrchestratorClient", "ListWorkflowsCommand")
|
|
1218
|
-
.sc(ListWorkflows$)
|
|
352
|
+
.sc(schemas_0.ListWorkflows$)
|
|
1219
353
|
.build() {
|
|
1220
354
|
}
|
|
1221
355
|
|
|
@@ -1227,7 +361,7 @@ class ListWorkflowStepGroupsCommand extends smithyClient.Command
|
|
|
1227
361
|
})
|
|
1228
362
|
.s("AWSMigrationHubOrchestrator", "ListWorkflowStepGroups", {})
|
|
1229
363
|
.n("MigrationHubOrchestratorClient", "ListWorkflowStepGroupsCommand")
|
|
1230
|
-
.sc(ListWorkflowStepGroups$)
|
|
364
|
+
.sc(schemas_0.ListWorkflowStepGroups$)
|
|
1231
365
|
.build() {
|
|
1232
366
|
}
|
|
1233
367
|
|
|
@@ -1239,7 +373,7 @@ class ListWorkflowStepsCommand extends smithyClient.Command
|
|
|
1239
373
|
})
|
|
1240
374
|
.s("AWSMigrationHubOrchestrator", "ListWorkflowSteps", {})
|
|
1241
375
|
.n("MigrationHubOrchestratorClient", "ListWorkflowStepsCommand")
|
|
1242
|
-
.sc(ListWorkflowSteps$)
|
|
376
|
+
.sc(schemas_0.ListWorkflowSteps$)
|
|
1243
377
|
.build() {
|
|
1244
378
|
}
|
|
1245
379
|
|
|
@@ -1251,7 +385,7 @@ class RetryWorkflowStepCommand extends smithyClient.Command
|
|
|
1251
385
|
})
|
|
1252
386
|
.s("AWSMigrationHubOrchestrator", "RetryWorkflowStep", {})
|
|
1253
387
|
.n("MigrationHubOrchestratorClient", "RetryWorkflowStepCommand")
|
|
1254
|
-
.sc(RetryWorkflowStep$)
|
|
388
|
+
.sc(schemas_0.RetryWorkflowStep$)
|
|
1255
389
|
.build() {
|
|
1256
390
|
}
|
|
1257
391
|
|
|
@@ -1263,7 +397,7 @@ class StartWorkflowCommand extends smithyClient.Command
|
|
|
1263
397
|
})
|
|
1264
398
|
.s("AWSMigrationHubOrchestrator", "StartWorkflow", {})
|
|
1265
399
|
.n("MigrationHubOrchestratorClient", "StartWorkflowCommand")
|
|
1266
|
-
.sc(StartWorkflow$)
|
|
400
|
+
.sc(schemas_0.StartWorkflow$)
|
|
1267
401
|
.build() {
|
|
1268
402
|
}
|
|
1269
403
|
|
|
@@ -1275,7 +409,7 @@ class StopWorkflowCommand extends smithyClient.Command
|
|
|
1275
409
|
})
|
|
1276
410
|
.s("AWSMigrationHubOrchestrator", "StopWorkflow", {})
|
|
1277
411
|
.n("MigrationHubOrchestratorClient", "StopWorkflowCommand")
|
|
1278
|
-
.sc(StopWorkflow$)
|
|
412
|
+
.sc(schemas_0.StopWorkflow$)
|
|
1279
413
|
.build() {
|
|
1280
414
|
}
|
|
1281
415
|
|
|
@@ -1287,7 +421,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1287
421
|
})
|
|
1288
422
|
.s("AWSMigrationHubOrchestrator", "TagResource", {})
|
|
1289
423
|
.n("MigrationHubOrchestratorClient", "TagResourceCommand")
|
|
1290
|
-
.sc(TagResource$)
|
|
424
|
+
.sc(schemas_0.TagResource$)
|
|
1291
425
|
.build() {
|
|
1292
426
|
}
|
|
1293
427
|
|
|
@@ -1299,7 +433,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1299
433
|
})
|
|
1300
434
|
.s("AWSMigrationHubOrchestrator", "UntagResource", {})
|
|
1301
435
|
.n("MigrationHubOrchestratorClient", "UntagResourceCommand")
|
|
1302
|
-
.sc(UntagResource$)
|
|
436
|
+
.sc(schemas_0.UntagResource$)
|
|
1303
437
|
.build() {
|
|
1304
438
|
}
|
|
1305
439
|
|
|
@@ -1311,7 +445,7 @@ class UpdateTemplateCommand extends smithyClient.Command
|
|
|
1311
445
|
})
|
|
1312
446
|
.s("AWSMigrationHubOrchestrator", "UpdateTemplate", {})
|
|
1313
447
|
.n("MigrationHubOrchestratorClient", "UpdateTemplateCommand")
|
|
1314
|
-
.sc(UpdateTemplate$)
|
|
448
|
+
.sc(schemas_0.UpdateTemplate$)
|
|
1315
449
|
.build() {
|
|
1316
450
|
}
|
|
1317
451
|
|
|
@@ -1323,7 +457,7 @@ class UpdateWorkflowCommand extends smithyClient.Command
|
|
|
1323
457
|
})
|
|
1324
458
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflow", {})
|
|
1325
459
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowCommand")
|
|
1326
|
-
.sc(UpdateWorkflow$)
|
|
460
|
+
.sc(schemas_0.UpdateWorkflow$)
|
|
1327
461
|
.build() {
|
|
1328
462
|
}
|
|
1329
463
|
|
|
@@ -1335,7 +469,7 @@ class UpdateWorkflowStepCommand extends smithyClient.Command
|
|
|
1335
469
|
})
|
|
1336
470
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflowStep", {})
|
|
1337
471
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowStepCommand")
|
|
1338
|
-
.sc(UpdateWorkflowStep$)
|
|
472
|
+
.sc(schemas_0.UpdateWorkflowStep$)
|
|
1339
473
|
.build() {
|
|
1340
474
|
}
|
|
1341
475
|
|
|
@@ -1347,7 +481,7 @@ class UpdateWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1347
481
|
})
|
|
1348
482
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflowStepGroup", {})
|
|
1349
483
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowStepGroupCommand")
|
|
1350
|
-
.sc(UpdateWorkflowStepGroup$)
|
|
484
|
+
.sc(schemas_0.UpdateWorkflowStepGroup$)
|
|
1351
485
|
.build() {
|
|
1352
486
|
}
|
|
1353
487
|
|
|
@@ -1490,174 +624,53 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1490
624
|
enumerable: true,
|
|
1491
625
|
get: function () { return smithyClient.Client; }
|
|
1492
626
|
});
|
|
1493
|
-
exports
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
exports.CreateMigrationWorkflowRequest$ = CreateMigrationWorkflowRequest$;
|
|
1498
|
-
exports.CreateMigrationWorkflowResponse$ = CreateMigrationWorkflowResponse$;
|
|
1499
|
-
exports.CreateTemplate$ = CreateTemplate$;
|
|
627
|
+
Object.defineProperty(exports, "MigrationHubOrchestratorServiceException", {
|
|
628
|
+
enumerable: true,
|
|
629
|
+
get: function () { return MigrationHubOrchestratorServiceException.MigrationHubOrchestratorServiceException; }
|
|
630
|
+
});
|
|
1500
631
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
1501
|
-
exports.CreateTemplateRequest$ = CreateTemplateRequest$;
|
|
1502
|
-
exports.CreateTemplateResponse$ = CreateTemplateResponse$;
|
|
1503
|
-
exports.CreateWorkflow$ = CreateWorkflow$;
|
|
1504
632
|
exports.CreateWorkflowCommand = CreateWorkflowCommand;
|
|
1505
|
-
exports.CreateWorkflowStep$ = CreateWorkflowStep$;
|
|
1506
633
|
exports.CreateWorkflowStepCommand = CreateWorkflowStepCommand;
|
|
1507
|
-
exports.CreateWorkflowStepGroup$ = CreateWorkflowStepGroup$;
|
|
1508
634
|
exports.CreateWorkflowStepGroupCommand = CreateWorkflowStepGroupCommand;
|
|
1509
|
-
exports.CreateWorkflowStepGroupRequest$ = CreateWorkflowStepGroupRequest$;
|
|
1510
|
-
exports.CreateWorkflowStepGroupResponse$ = CreateWorkflowStepGroupResponse$;
|
|
1511
|
-
exports.CreateWorkflowStepRequest$ = CreateWorkflowStepRequest$;
|
|
1512
|
-
exports.CreateWorkflowStepResponse$ = CreateWorkflowStepResponse$;
|
|
1513
635
|
exports.DataType = DataType;
|
|
1514
|
-
exports.DeleteMigrationWorkflowRequest$ = DeleteMigrationWorkflowRequest$;
|
|
1515
|
-
exports.DeleteMigrationWorkflowResponse$ = DeleteMigrationWorkflowResponse$;
|
|
1516
|
-
exports.DeleteTemplate$ = DeleteTemplate$;
|
|
1517
636
|
exports.DeleteTemplateCommand = DeleteTemplateCommand;
|
|
1518
|
-
exports.DeleteTemplateRequest$ = DeleteTemplateRequest$;
|
|
1519
|
-
exports.DeleteTemplateResponse$ = DeleteTemplateResponse$;
|
|
1520
|
-
exports.DeleteWorkflow$ = DeleteWorkflow$;
|
|
1521
637
|
exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
|
|
1522
|
-
exports.DeleteWorkflowStep$ = DeleteWorkflowStep$;
|
|
1523
638
|
exports.DeleteWorkflowStepCommand = DeleteWorkflowStepCommand;
|
|
1524
|
-
exports.DeleteWorkflowStepGroup$ = DeleteWorkflowStepGroup$;
|
|
1525
639
|
exports.DeleteWorkflowStepGroupCommand = DeleteWorkflowStepGroupCommand;
|
|
1526
|
-
exports.DeleteWorkflowStepGroupRequest$ = DeleteWorkflowStepGroupRequest$;
|
|
1527
|
-
exports.DeleteWorkflowStepGroupResponse$ = DeleteWorkflowStepGroupResponse$;
|
|
1528
|
-
exports.DeleteWorkflowStepRequest$ = DeleteWorkflowStepRequest$;
|
|
1529
|
-
exports.DeleteWorkflowStepResponse$ = DeleteWorkflowStepResponse$;
|
|
1530
|
-
exports.GetMigrationWorkflowRequest$ = GetMigrationWorkflowRequest$;
|
|
1531
|
-
exports.GetMigrationWorkflowResponse$ = GetMigrationWorkflowResponse$;
|
|
1532
|
-
exports.GetMigrationWorkflowTemplateRequest$ = GetMigrationWorkflowTemplateRequest$;
|
|
1533
|
-
exports.GetMigrationWorkflowTemplateResponse$ = GetMigrationWorkflowTemplateResponse$;
|
|
1534
|
-
exports.GetTemplate$ = GetTemplate$;
|
|
1535
640
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
1536
|
-
exports.GetTemplateStep$ = GetTemplateStep$;
|
|
1537
641
|
exports.GetTemplateStepCommand = GetTemplateStepCommand;
|
|
1538
|
-
exports.GetTemplateStepGroup$ = GetTemplateStepGroup$;
|
|
1539
642
|
exports.GetTemplateStepGroupCommand = GetTemplateStepGroupCommand;
|
|
1540
|
-
exports.GetTemplateStepGroupRequest$ = GetTemplateStepGroupRequest$;
|
|
1541
|
-
exports.GetTemplateStepGroupResponse$ = GetTemplateStepGroupResponse$;
|
|
1542
|
-
exports.GetTemplateStepRequest$ = GetTemplateStepRequest$;
|
|
1543
|
-
exports.GetTemplateStepResponse$ = GetTemplateStepResponse$;
|
|
1544
|
-
exports.GetWorkflow$ = GetWorkflow$;
|
|
1545
643
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
1546
|
-
exports.GetWorkflowStep$ = GetWorkflowStep$;
|
|
1547
644
|
exports.GetWorkflowStepCommand = GetWorkflowStepCommand;
|
|
1548
|
-
exports.GetWorkflowStepGroup$ = GetWorkflowStepGroup$;
|
|
1549
645
|
exports.GetWorkflowStepGroupCommand = GetWorkflowStepGroupCommand;
|
|
1550
|
-
exports.GetWorkflowStepGroupRequest$ = GetWorkflowStepGroupRequest$;
|
|
1551
|
-
exports.GetWorkflowStepGroupResponse$ = GetWorkflowStepGroupResponse$;
|
|
1552
|
-
exports.GetWorkflowStepRequest$ = GetWorkflowStepRequest$;
|
|
1553
|
-
exports.GetWorkflowStepResponse$ = GetWorkflowStepResponse$;
|
|
1554
|
-
exports.InternalServerException = InternalServerException;
|
|
1555
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1556
|
-
exports.ListMigrationWorkflowTemplatesRequest$ = ListMigrationWorkflowTemplatesRequest$;
|
|
1557
|
-
exports.ListMigrationWorkflowTemplatesResponse$ = ListMigrationWorkflowTemplatesResponse$;
|
|
1558
|
-
exports.ListMigrationWorkflowsRequest$ = ListMigrationWorkflowsRequest$;
|
|
1559
|
-
exports.ListMigrationWorkflowsResponse$ = ListMigrationWorkflowsResponse$;
|
|
1560
|
-
exports.ListPlugins$ = ListPlugins$;
|
|
1561
646
|
exports.ListPluginsCommand = ListPluginsCommand;
|
|
1562
|
-
exports.ListPluginsRequest$ = ListPluginsRequest$;
|
|
1563
|
-
exports.ListPluginsResponse$ = ListPluginsResponse$;
|
|
1564
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1565
647
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1566
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1567
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1568
|
-
exports.ListTemplateStepGroups$ = ListTemplateStepGroups$;
|
|
1569
648
|
exports.ListTemplateStepGroupsCommand = ListTemplateStepGroupsCommand;
|
|
1570
|
-
exports.ListTemplateStepGroupsRequest$ = ListTemplateStepGroupsRequest$;
|
|
1571
|
-
exports.ListTemplateStepGroupsResponse$ = ListTemplateStepGroupsResponse$;
|
|
1572
|
-
exports.ListTemplateSteps$ = ListTemplateSteps$;
|
|
1573
649
|
exports.ListTemplateStepsCommand = ListTemplateStepsCommand;
|
|
1574
|
-
exports.ListTemplateStepsRequest$ = ListTemplateStepsRequest$;
|
|
1575
|
-
exports.ListTemplateStepsResponse$ = ListTemplateStepsResponse$;
|
|
1576
|
-
exports.ListTemplates$ = ListTemplates$;
|
|
1577
650
|
exports.ListTemplatesCommand = ListTemplatesCommand;
|
|
1578
|
-
exports.ListWorkflowStepGroups$ = ListWorkflowStepGroups$;
|
|
1579
651
|
exports.ListWorkflowStepGroupsCommand = ListWorkflowStepGroupsCommand;
|
|
1580
|
-
exports.ListWorkflowStepGroupsRequest$ = ListWorkflowStepGroupsRequest$;
|
|
1581
|
-
exports.ListWorkflowStepGroupsResponse$ = ListWorkflowStepGroupsResponse$;
|
|
1582
|
-
exports.ListWorkflowSteps$ = ListWorkflowSteps$;
|
|
1583
652
|
exports.ListWorkflowStepsCommand = ListWorkflowStepsCommand;
|
|
1584
|
-
exports.ListWorkflowStepsRequest$ = ListWorkflowStepsRequest$;
|
|
1585
|
-
exports.ListWorkflowStepsResponse$ = ListWorkflowStepsResponse$;
|
|
1586
|
-
exports.ListWorkflows$ = ListWorkflows$;
|
|
1587
653
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
1588
654
|
exports.MigrationHubOrchestrator = MigrationHubOrchestrator;
|
|
1589
655
|
exports.MigrationHubOrchestratorClient = MigrationHubOrchestratorClient;
|
|
1590
|
-
exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException;
|
|
1591
|
-
exports.MigrationHubOrchestratorServiceException$ = MigrationHubOrchestratorServiceException$;
|
|
1592
656
|
exports.MigrationWorkflowStatusEnum = MigrationWorkflowStatusEnum;
|
|
1593
|
-
exports.MigrationWorkflowSummary$ = MigrationWorkflowSummary$;
|
|
1594
657
|
exports.Owner = Owner;
|
|
1595
|
-
exports.PlatformCommand$ = PlatformCommand$;
|
|
1596
|
-
exports.PlatformScriptKey$ = PlatformScriptKey$;
|
|
1597
658
|
exports.PluginHealth = PluginHealth;
|
|
1598
|
-
exports.PluginSummary$ = PluginSummary$;
|
|
1599
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1600
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1601
|
-
exports.RetryWorkflowStep$ = RetryWorkflowStep$;
|
|
1602
659
|
exports.RetryWorkflowStepCommand = RetryWorkflowStepCommand;
|
|
1603
|
-
exports.RetryWorkflowStepRequest$ = RetryWorkflowStepRequest$;
|
|
1604
|
-
exports.RetryWorkflowStepResponse$ = RetryWorkflowStepResponse$;
|
|
1605
660
|
exports.RunEnvironment = RunEnvironment;
|
|
1606
|
-
exports.StartMigrationWorkflowRequest$ = StartMigrationWorkflowRequest$;
|
|
1607
|
-
exports.StartMigrationWorkflowResponse$ = StartMigrationWorkflowResponse$;
|
|
1608
|
-
exports.StartWorkflow$ = StartWorkflow$;
|
|
1609
661
|
exports.StartWorkflowCommand = StartWorkflowCommand;
|
|
1610
662
|
exports.StepActionType = StepActionType;
|
|
1611
|
-
exports.StepAutomationConfiguration$ = StepAutomationConfiguration$;
|
|
1612
663
|
exports.StepGroupStatus = StepGroupStatus;
|
|
1613
|
-
exports.StepInput$ = StepInput$;
|
|
1614
|
-
exports.StepOutput$ = StepOutput$;
|
|
1615
664
|
exports.StepStatus = StepStatus;
|
|
1616
|
-
exports.StopMigrationWorkflowRequest$ = StopMigrationWorkflowRequest$;
|
|
1617
|
-
exports.StopMigrationWorkflowResponse$ = StopMigrationWorkflowResponse$;
|
|
1618
|
-
exports.StopWorkflow$ = StopWorkflow$;
|
|
1619
665
|
exports.StopWorkflowCommand = StopWorkflowCommand;
|
|
1620
|
-
exports.TagResource$ = TagResource$;
|
|
1621
666
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1622
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1623
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1624
667
|
exports.TargetType = TargetType;
|
|
1625
|
-
exports.TemplateInput$ = TemplateInput$;
|
|
1626
|
-
exports.TemplateSource$ = TemplateSource$;
|
|
1627
668
|
exports.TemplateStatus = TemplateStatus;
|
|
1628
|
-
exports.TemplateStepGroupSummary$ = TemplateStepGroupSummary$;
|
|
1629
|
-
exports.TemplateStepSummary$ = TemplateStepSummary$;
|
|
1630
|
-
exports.TemplateSummary$ = TemplateSummary$;
|
|
1631
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1632
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1633
|
-
exports.Tool$ = Tool$;
|
|
1634
|
-
exports.UntagResource$ = UntagResource$;
|
|
1635
669
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1636
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1637
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1638
|
-
exports.UpdateMigrationWorkflowRequest$ = UpdateMigrationWorkflowRequest$;
|
|
1639
|
-
exports.UpdateMigrationWorkflowResponse$ = UpdateMigrationWorkflowResponse$;
|
|
1640
|
-
exports.UpdateTemplate$ = UpdateTemplate$;
|
|
1641
670
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
1642
|
-
exports.UpdateTemplateRequest$ = UpdateTemplateRequest$;
|
|
1643
|
-
exports.UpdateTemplateResponse$ = UpdateTemplateResponse$;
|
|
1644
|
-
exports.UpdateWorkflow$ = UpdateWorkflow$;
|
|
1645
671
|
exports.UpdateWorkflowCommand = UpdateWorkflowCommand;
|
|
1646
|
-
exports.UpdateWorkflowStep$ = UpdateWorkflowStep$;
|
|
1647
672
|
exports.UpdateWorkflowStepCommand = UpdateWorkflowStepCommand;
|
|
1648
|
-
exports.UpdateWorkflowStepGroup$ = UpdateWorkflowStepGroup$;
|
|
1649
673
|
exports.UpdateWorkflowStepGroupCommand = UpdateWorkflowStepGroupCommand;
|
|
1650
|
-
exports.UpdateWorkflowStepGroupRequest$ = UpdateWorkflowStepGroupRequest$;
|
|
1651
|
-
exports.UpdateWorkflowStepGroupResponse$ = UpdateWorkflowStepGroupResponse$;
|
|
1652
|
-
exports.UpdateWorkflowStepRequest$ = UpdateWorkflowStepRequest$;
|
|
1653
|
-
exports.UpdateWorkflowStepResponse$ = UpdateWorkflowStepResponse$;
|
|
1654
|
-
exports.ValidationException = ValidationException;
|
|
1655
|
-
exports.ValidationException$ = ValidationException$;
|
|
1656
|
-
exports.WorkflowStepAutomationConfiguration$ = WorkflowStepAutomationConfiguration$;
|
|
1657
|
-
exports.WorkflowStepGroupSummary$ = WorkflowStepGroupSummary$;
|
|
1658
|
-
exports.WorkflowStepOutput$ = WorkflowStepOutput$;
|
|
1659
|
-
exports.WorkflowStepOutputUnion$ = WorkflowStepOutputUnion$;
|
|
1660
|
-
exports.WorkflowStepSummary$ = WorkflowStepSummary$;
|
|
1661
674
|
exports.paginateListPlugins = paginateListPlugins;
|
|
1662
675
|
exports.paginateListTemplateStepGroups = paginateListTemplateStepGroups;
|
|
1663
676
|
exports.paginateListTemplateSteps = paginateListTemplateSteps;
|
|
@@ -1665,3 +678,15 @@ exports.paginateListTemplates = paginateListTemplates;
|
|
|
1665
678
|
exports.paginateListWorkflowStepGroups = paginateListWorkflowStepGroups;
|
|
1666
679
|
exports.paginateListWorkflowSteps = paginateListWorkflowSteps;
|
|
1667
680
|
exports.paginateListWorkflows = paginateListWorkflows;
|
|
681
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
682
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
683
|
+
enumerable: true,
|
|
684
|
+
get: function () { return schemas_0[k]; }
|
|
685
|
+
});
|
|
686
|
+
});
|
|
687
|
+
Object.keys(errors).forEach(function (k) {
|
|
688
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
689
|
+
enumerable: true,
|
|
690
|
+
get: function () { return errors[k]; }
|
|
691
|
+
});
|
|
692
|
+
});
|