@aws-sdk/client-migrationhuborchestrator 3.928.0 → 3.930.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 +1393 -1423
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MigrationHubOrchestratorClient.js +2 -0
- package/dist-es/commands/CreateTemplateCommand.js +3 -9
- package/dist-es/commands/CreateWorkflowCommand.js +3 -10
- package/dist-es/commands/CreateWorkflowStepCommand.js +3 -9
- package/dist-es/commands/CreateWorkflowStepGroupCommand.js +3 -9
- package/dist-es/commands/DeleteTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteWorkflowCommand.js +3 -9
- package/dist-es/commands/DeleteWorkflowStepCommand.js +3 -9
- package/dist-es/commands/DeleteWorkflowStepGroupCommand.js +3 -9
- package/dist-es/commands/GetTemplateCommand.js +3 -9
- package/dist-es/commands/GetTemplateStepCommand.js +3 -9
- package/dist-es/commands/GetTemplateStepGroupCommand.js +3 -9
- package/dist-es/commands/GetWorkflowCommand.js +3 -10
- package/dist-es/commands/GetWorkflowStepCommand.js +3 -9
- package/dist-es/commands/GetWorkflowStepGroupCommand.js +3 -9
- package/dist-es/commands/ListPluginsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTemplateStepGroupsCommand.js +3 -9
- package/dist-es/commands/ListTemplateStepsCommand.js +3 -9
- package/dist-es/commands/ListTemplatesCommand.js +3 -9
- package/dist-es/commands/ListWorkflowStepGroupsCommand.js +3 -9
- package/dist-es/commands/ListWorkflowStepsCommand.js +3 -9
- package/dist-es/commands/ListWorkflowsCommand.js +3 -9
- package/dist-es/commands/RetryWorkflowStepCommand.js +3 -9
- package/dist-es/commands/StartWorkflowCommand.js +3 -9
- package/dist-es/commands/StopWorkflowCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateTemplateCommand.js +3 -9
- package/dist-es/commands/UpdateWorkflowCommand.js +3 -10
- package/dist-es/commands/UpdateWorkflowStepCommand.js +3 -9
- package/dist-es/commands/UpdateWorkflowStepGroupCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -55
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1324 -0
- package/dist-types/MigrationHubOrchestratorClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +12 -23
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +136 -0
- package/dist-types/ts3.4/MigrationHubOrchestratorClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +142 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1138
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -377
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class MigrationHubOrchestratorClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class MigrationHubOrchestratorClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class MigrationHubOrchestratorServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let MigrationHubOrchestratorServiceException$1 = class MigrationHubOrchestratorServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, MigrationHubOrchestratorServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends MigrationHubOrchestratorServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends MigrationHubOrchestratorServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
$retryable = {};
|
|
@@ -130,8 +129,8 @@ class AccessDeniedException extends MigrationHubOrchestratorServiceException {
|
|
|
130
129
|
});
|
|
131
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
131
|
}
|
|
133
|
-
}
|
|
134
|
-
class ResourceNotFoundException extends MigrationHubOrchestratorServiceException {
|
|
132
|
+
};
|
|
133
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends MigrationHubOrchestratorServiceException$1 {
|
|
135
134
|
name = "ResourceNotFoundException";
|
|
136
135
|
$fault = "client";
|
|
137
136
|
constructor(opts) {
|
|
@@ -142,8 +141,8 @@ class ResourceNotFoundException extends MigrationHubOrchestratorServiceException
|
|
|
142
141
|
});
|
|
143
142
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
144
143
|
}
|
|
145
|
-
}
|
|
146
|
-
class ValidationException extends MigrationHubOrchestratorServiceException {
|
|
144
|
+
};
|
|
145
|
+
let ValidationException$1 = class ValidationException extends MigrationHubOrchestratorServiceException$1 {
|
|
147
146
|
name = "ValidationException";
|
|
148
147
|
$fault = "client";
|
|
149
148
|
$retryable = {};
|
|
@@ -155,21 +154,7 @@ class ValidationException extends MigrationHubOrchestratorServiceException {
|
|
|
155
154
|
});
|
|
156
155
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
157
156
|
}
|
|
158
|
-
}
|
|
159
|
-
exports.StepInput = void 0;
|
|
160
|
-
(function (StepInput) {
|
|
161
|
-
StepInput.visit = (value, visitor) => {
|
|
162
|
-
if (value.integerValue !== undefined)
|
|
163
|
-
return visitor.integerValue(value.integerValue);
|
|
164
|
-
if (value.stringValue !== undefined)
|
|
165
|
-
return visitor.stringValue(value.stringValue);
|
|
166
|
-
if (value.listOfStringsValue !== undefined)
|
|
167
|
-
return visitor.listOfStringsValue(value.listOfStringsValue);
|
|
168
|
-
if (value.mapOfStringValue !== undefined)
|
|
169
|
-
return visitor.mapOfStringValue(value.mapOfStringValue);
|
|
170
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
171
|
-
};
|
|
172
|
-
})(exports.StepInput || (exports.StepInput = {}));
|
|
157
|
+
};
|
|
173
158
|
const MigrationWorkflowStatusEnum = {
|
|
174
159
|
COMPLETED: "COMPLETED",
|
|
175
160
|
CREATING: "CREATING",
|
|
@@ -186,7 +171,7 @@ const MigrationWorkflowStatusEnum = {
|
|
|
186
171
|
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
187
172
|
WORKFLOW_FAILED: "WORKFLOW_FAILED",
|
|
188
173
|
};
|
|
189
|
-
class InternalServerException extends MigrationHubOrchestratorServiceException {
|
|
174
|
+
let InternalServerException$1 = class InternalServerException extends MigrationHubOrchestratorServiceException$1 {
|
|
190
175
|
name = "InternalServerException";
|
|
191
176
|
$fault = "server";
|
|
192
177
|
constructor(opts) {
|
|
@@ -197,8 +182,8 @@ class InternalServerException extends MigrationHubOrchestratorServiceException {
|
|
|
197
182
|
});
|
|
198
183
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
199
184
|
}
|
|
200
|
-
}
|
|
201
|
-
class ThrottlingException extends MigrationHubOrchestratorServiceException {
|
|
185
|
+
};
|
|
186
|
+
let ThrottlingException$1 = class ThrottlingException extends MigrationHubOrchestratorServiceException$1 {
|
|
202
187
|
name = "ThrottlingException";
|
|
203
188
|
$fault = "client";
|
|
204
189
|
constructor(opts) {
|
|
@@ -209,8 +194,8 @@ class ThrottlingException extends MigrationHubOrchestratorServiceException {
|
|
|
209
194
|
});
|
|
210
195
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
211
196
|
}
|
|
212
|
-
}
|
|
213
|
-
class ConflictException extends MigrationHubOrchestratorServiceException {
|
|
197
|
+
};
|
|
198
|
+
let ConflictException$1 = class ConflictException extends MigrationHubOrchestratorServiceException$1 {
|
|
214
199
|
name = "ConflictException";
|
|
215
200
|
$fault = "client";
|
|
216
201
|
$retryable = {};
|
|
@@ -222,15 +207,7 @@ class ConflictException extends MigrationHubOrchestratorServiceException {
|
|
|
222
207
|
});
|
|
223
208
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
224
209
|
}
|
|
225
|
-
}
|
|
226
|
-
exports.TemplateSource = void 0;
|
|
227
|
-
(function (TemplateSource) {
|
|
228
|
-
TemplateSource.visit = (value, visitor) => {
|
|
229
|
-
if (value.workflowId !== undefined)
|
|
230
|
-
return visitor.workflowId(value.workflowId);
|
|
231
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
232
|
-
};
|
|
233
|
-
})(exports.TemplateSource || (exports.TemplateSource = {}));
|
|
210
|
+
};
|
|
234
211
|
const DataType = {
|
|
235
212
|
INTEGER: "INTEGER",
|
|
236
213
|
STRING: "STRING",
|
|
@@ -275,18 +252,6 @@ const StepGroupStatus = {
|
|
|
275
252
|
READY: "READY",
|
|
276
253
|
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
277
254
|
};
|
|
278
|
-
exports.WorkflowStepOutputUnion = void 0;
|
|
279
|
-
(function (WorkflowStepOutputUnion) {
|
|
280
|
-
WorkflowStepOutputUnion.visit = (value, visitor) => {
|
|
281
|
-
if (value.integerValue !== undefined)
|
|
282
|
-
return visitor.integerValue(value.integerValue);
|
|
283
|
-
if (value.stringValue !== undefined)
|
|
284
|
-
return visitor.stringValue(value.stringValue);
|
|
285
|
-
if (value.listOfStringValue !== undefined)
|
|
286
|
-
return visitor.listOfStringValue(value.listOfStringValue);
|
|
287
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
288
|
-
};
|
|
289
|
-
})(exports.WorkflowStepOutputUnion || (exports.WorkflowStepOutputUnion = {}));
|
|
290
255
|
const StepStatus = {
|
|
291
256
|
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
292
257
|
COMPLETED: "COMPLETED",
|
|
@@ -297,1173 +262,1333 @@ const StepStatus = {
|
|
|
297
262
|
SKIPPED: "SKIPPED",
|
|
298
263
|
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
299
264
|
};
|
|
300
|
-
const CreateMigrationWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
...(obj.inputParameters && { inputParameters: smithyClient.SENSITIVE_STRING }),
|
|
303
|
-
});
|
|
304
|
-
const CreateMigrationWorkflowResponseFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
...(obj.workflowInputs && { workflowInputs: smithyClient.SENSITIVE_STRING }),
|
|
307
|
-
});
|
|
308
|
-
const GetMigrationWorkflowResponseFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
...(obj.workflowInputs && { workflowInputs: smithyClient.SENSITIVE_STRING }),
|
|
311
|
-
});
|
|
312
|
-
const UpdateMigrationWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
...(obj.inputParameters && { inputParameters: smithyClient.SENSITIVE_STRING }),
|
|
315
|
-
});
|
|
316
|
-
const UpdateMigrationWorkflowResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
...(obj.workflowInputs && { workflowInputs: smithyClient.SENSITIVE_STRING }),
|
|
319
|
-
});
|
|
320
265
|
|
|
321
|
-
const
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
const
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
const
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
const
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
const
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
const
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
const
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
const
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
const
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
b.p("id", () => input.id, "{id}", false);
|
|
453
|
-
const query = smithyClient.map({
|
|
454
|
-
[_tI]: [, smithyClient.expectNonNull(input[_tI], `templateId`)],
|
|
455
|
-
[_sGI]: [, smithyClient.expectNonNull(input[_sGI], `stepGroupId`)],
|
|
456
|
-
});
|
|
457
|
-
let body;
|
|
458
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
459
|
-
return b.build();
|
|
460
|
-
};
|
|
461
|
-
const se_GetTemplateStepGroupCommand = async (input, context) => {
|
|
462
|
-
const b = core.requestBuilder(input, context);
|
|
463
|
-
const headers = {};
|
|
464
|
-
b.bp("/templates/{templateId}/stepgroups/{id}");
|
|
465
|
-
b.p("templateId", () => input.templateId, "{templateId}", false);
|
|
466
|
-
b.p("id", () => input.id, "{id}", false);
|
|
467
|
-
let body;
|
|
468
|
-
b.m("GET").h(headers).b(body);
|
|
469
|
-
return b.build();
|
|
470
|
-
};
|
|
471
|
-
const se_GetWorkflowCommand = async (input, context) => {
|
|
472
|
-
const b = core.requestBuilder(input, context);
|
|
473
|
-
const headers = {};
|
|
474
|
-
b.bp("/migrationworkflow/{id}");
|
|
475
|
-
b.p("id", () => input.id, "{id}", false);
|
|
476
|
-
let body;
|
|
477
|
-
b.m("GET").h(headers).b(body);
|
|
478
|
-
return b.build();
|
|
479
|
-
};
|
|
480
|
-
const se_GetWorkflowStepCommand = async (input, context) => {
|
|
481
|
-
const b = core.requestBuilder(input, context);
|
|
482
|
-
const headers = {};
|
|
483
|
-
b.bp("/workflowstep/{id}");
|
|
484
|
-
b.p("id", () => input.id, "{id}", false);
|
|
485
|
-
const query = smithyClient.map({
|
|
486
|
-
[_wI]: [, smithyClient.expectNonNull(input[_wI], `workflowId`)],
|
|
487
|
-
[_sGI]: [, smithyClient.expectNonNull(input[_sGI], `stepGroupId`)],
|
|
488
|
-
});
|
|
489
|
-
let body;
|
|
490
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
491
|
-
return b.build();
|
|
492
|
-
};
|
|
493
|
-
const se_GetWorkflowStepGroupCommand = async (input, context) => {
|
|
494
|
-
const b = core.requestBuilder(input, context);
|
|
495
|
-
const headers = {};
|
|
496
|
-
b.bp("/workflowstepgroup/{id}");
|
|
497
|
-
b.p("id", () => input.id, "{id}", false);
|
|
498
|
-
const query = smithyClient.map({
|
|
499
|
-
[_wI]: [, smithyClient.expectNonNull(input[_wI], `workflowId`)],
|
|
500
|
-
});
|
|
501
|
-
let body;
|
|
502
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
503
|
-
return b.build();
|
|
504
|
-
};
|
|
505
|
-
const se_ListPluginsCommand = async (input, context) => {
|
|
506
|
-
const b = core.requestBuilder(input, context);
|
|
507
|
-
const headers = {};
|
|
508
|
-
b.bp("/plugins");
|
|
509
|
-
const query = smithyClient.map({
|
|
510
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
511
|
-
[_nT]: [, input[_nT]],
|
|
512
|
-
});
|
|
513
|
-
let body;
|
|
514
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
515
|
-
return b.build();
|
|
516
|
-
};
|
|
517
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
518
|
-
const b = core.requestBuilder(input, context);
|
|
519
|
-
const headers = {};
|
|
520
|
-
b.bp("/tags/{resourceArn}");
|
|
521
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
522
|
-
let body;
|
|
523
|
-
b.m("GET").h(headers).b(body);
|
|
524
|
-
return b.build();
|
|
525
|
-
};
|
|
526
|
-
const se_ListTemplatesCommand = async (input, context) => {
|
|
527
|
-
const b = core.requestBuilder(input, context);
|
|
528
|
-
const headers = {};
|
|
529
|
-
b.bp("/migrationworkflowtemplates");
|
|
530
|
-
const query = smithyClient.map({
|
|
531
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
532
|
-
[_nT]: [, input[_nT]],
|
|
533
|
-
[_n]: [, input[_n]],
|
|
534
|
-
});
|
|
535
|
-
let body;
|
|
536
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
537
|
-
return b.build();
|
|
538
|
-
};
|
|
539
|
-
const se_ListTemplateStepGroupsCommand = async (input, context) => {
|
|
540
|
-
const b = core.requestBuilder(input, context);
|
|
541
|
-
const headers = {};
|
|
542
|
-
b.bp("/templatestepgroups/{templateId}");
|
|
543
|
-
b.p("templateId", () => input.templateId, "{templateId}", false);
|
|
544
|
-
const query = smithyClient.map({
|
|
545
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
546
|
-
[_nT]: [, input[_nT]],
|
|
547
|
-
});
|
|
548
|
-
let body;
|
|
549
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
550
|
-
return b.build();
|
|
551
|
-
};
|
|
552
|
-
const se_ListTemplateStepsCommand = async (input, context) => {
|
|
553
|
-
const b = core.requestBuilder(input, context);
|
|
554
|
-
const headers = {};
|
|
555
|
-
b.bp("/templatesteps");
|
|
556
|
-
const query = smithyClient.map({
|
|
557
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
558
|
-
[_nT]: [, input[_nT]],
|
|
559
|
-
[_tI]: [, smithyClient.expectNonNull(input[_tI], `templateId`)],
|
|
560
|
-
[_sGI]: [, smithyClient.expectNonNull(input[_sGI], `stepGroupId`)],
|
|
561
|
-
});
|
|
562
|
-
let body;
|
|
563
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
564
|
-
return b.build();
|
|
565
|
-
};
|
|
566
|
-
const se_ListWorkflowsCommand = async (input, context) => {
|
|
567
|
-
const b = core.requestBuilder(input, context);
|
|
568
|
-
const headers = {};
|
|
569
|
-
b.bp("/migrationworkflows");
|
|
570
|
-
const query = smithyClient.map({
|
|
571
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
572
|
-
[_nT]: [, input[_nT]],
|
|
573
|
-
[_tI]: [, input[_tI]],
|
|
574
|
-
[_aACN]: [, input[_aACN]],
|
|
575
|
-
[_s]: [, input[_s]],
|
|
576
|
-
[_n]: [, input[_n]],
|
|
577
|
-
});
|
|
578
|
-
let body;
|
|
579
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
580
|
-
return b.build();
|
|
581
|
-
};
|
|
582
|
-
const se_ListWorkflowStepGroupsCommand = async (input, context) => {
|
|
583
|
-
const b = core.requestBuilder(input, context);
|
|
584
|
-
const headers = {};
|
|
585
|
-
b.bp("/workflowstepgroups");
|
|
586
|
-
const query = smithyClient.map({
|
|
587
|
-
[_nT]: [, input[_nT]],
|
|
588
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
589
|
-
[_wI]: [, smithyClient.expectNonNull(input[_wI], `workflowId`)],
|
|
590
|
-
});
|
|
591
|
-
let body;
|
|
592
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
593
|
-
return b.build();
|
|
594
|
-
};
|
|
595
|
-
const se_ListWorkflowStepsCommand = async (input, context) => {
|
|
596
|
-
const b = core.requestBuilder(input, context);
|
|
597
|
-
const headers = {};
|
|
598
|
-
b.bp("/workflow/{workflowId}/workflowstepgroups/{stepGroupId}/workflowsteps");
|
|
599
|
-
b.p("workflowId", () => input.workflowId, "{workflowId}", false);
|
|
600
|
-
b.p("stepGroupId", () => input.stepGroupId, "{stepGroupId}", false);
|
|
601
|
-
const query = smithyClient.map({
|
|
602
|
-
[_nT]: [, input[_nT]],
|
|
603
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
604
|
-
});
|
|
605
|
-
let body;
|
|
606
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
607
|
-
return b.build();
|
|
608
|
-
};
|
|
609
|
-
const se_RetryWorkflowStepCommand = async (input, context) => {
|
|
610
|
-
const b = core.requestBuilder(input, context);
|
|
611
|
-
const headers = {};
|
|
612
|
-
b.bp("/retryworkflowstep/{id}");
|
|
613
|
-
b.p("id", () => input.id, "{id}", false);
|
|
614
|
-
const query = smithyClient.map({
|
|
615
|
-
[_wI]: [, smithyClient.expectNonNull(input[_wI], `workflowId`)],
|
|
616
|
-
[_sGI]: [, smithyClient.expectNonNull(input[_sGI], `stepGroupId`)],
|
|
617
|
-
});
|
|
618
|
-
let body;
|
|
619
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
620
|
-
return b.build();
|
|
621
|
-
};
|
|
622
|
-
const se_StartWorkflowCommand = async (input, context) => {
|
|
623
|
-
const b = core.requestBuilder(input, context);
|
|
624
|
-
const headers = {};
|
|
625
|
-
b.bp("/migrationworkflow/{id}/start");
|
|
626
|
-
b.p("id", () => input.id, "{id}", false);
|
|
627
|
-
let body;
|
|
628
|
-
b.m("POST").h(headers).b(body);
|
|
629
|
-
return b.build();
|
|
630
|
-
};
|
|
631
|
-
const se_StopWorkflowCommand = async (input, context) => {
|
|
632
|
-
const b = core.requestBuilder(input, context);
|
|
633
|
-
const headers = {};
|
|
634
|
-
b.bp("/migrationworkflow/{id}/stop");
|
|
635
|
-
b.p("id", () => input.id, "{id}", false);
|
|
636
|
-
let body;
|
|
637
|
-
b.m("POST").h(headers).b(body);
|
|
638
|
-
return b.build();
|
|
639
|
-
};
|
|
640
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
641
|
-
const b = core.requestBuilder(input, context);
|
|
642
|
-
const headers = {
|
|
643
|
-
"content-type": "application/json",
|
|
644
|
-
};
|
|
645
|
-
b.bp("/tags/{resourceArn}");
|
|
646
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
647
|
-
let body;
|
|
648
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
649
|
-
tags: (_) => smithyClient._json(_),
|
|
650
|
-
}));
|
|
651
|
-
b.m("POST").h(headers).b(body);
|
|
652
|
-
return b.build();
|
|
653
|
-
};
|
|
654
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
655
|
-
const b = core.requestBuilder(input, context);
|
|
656
|
-
const headers = {};
|
|
657
|
-
b.bp("/tags/{resourceArn}");
|
|
658
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
659
|
-
const query = smithyClient.map({
|
|
660
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
661
|
-
});
|
|
662
|
-
let body;
|
|
663
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
664
|
-
return b.build();
|
|
665
|
-
};
|
|
666
|
-
const se_UpdateTemplateCommand = async (input, context) => {
|
|
667
|
-
const b = core.requestBuilder(input, context);
|
|
668
|
-
const headers = {
|
|
669
|
-
"content-type": "application/json",
|
|
670
|
-
};
|
|
671
|
-
b.bp("/template/{id}");
|
|
672
|
-
b.p("id", () => input.id, "{id}", false);
|
|
673
|
-
let body;
|
|
674
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
675
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
676
|
-
templateDescription: [],
|
|
677
|
-
templateName: [],
|
|
678
|
-
}));
|
|
679
|
-
b.m("POST").h(headers).b(body);
|
|
680
|
-
return b.build();
|
|
681
|
-
};
|
|
682
|
-
const se_UpdateWorkflowCommand = async (input, context) => {
|
|
683
|
-
const b = core.requestBuilder(input, context);
|
|
684
|
-
const headers = {
|
|
685
|
-
"content-type": "application/json",
|
|
686
|
-
};
|
|
687
|
-
b.bp("/migrationworkflow/{id}");
|
|
688
|
-
b.p("id", () => input.id, "{id}", false);
|
|
689
|
-
let body;
|
|
690
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
691
|
-
description: [],
|
|
692
|
-
inputParameters: (_) => smithyClient._json(_),
|
|
693
|
-
name: [],
|
|
694
|
-
stepTargets: (_) => smithyClient._json(_),
|
|
695
|
-
}));
|
|
696
|
-
b.m("POST").h(headers).b(body);
|
|
697
|
-
return b.build();
|
|
698
|
-
};
|
|
699
|
-
const se_UpdateWorkflowStepCommand = async (input, context) => {
|
|
700
|
-
const b = core.requestBuilder(input, context);
|
|
701
|
-
const headers = {
|
|
702
|
-
"content-type": "application/json",
|
|
703
|
-
};
|
|
704
|
-
b.bp("/workflowstep/{id}");
|
|
705
|
-
b.p("id", () => input.id, "{id}", false);
|
|
706
|
-
let body;
|
|
707
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
708
|
-
description: [],
|
|
709
|
-
name: [],
|
|
710
|
-
next: (_) => smithyClient._json(_),
|
|
711
|
-
outputs: (_) => smithyClient._json(_),
|
|
712
|
-
previous: (_) => smithyClient._json(_),
|
|
713
|
-
status: [],
|
|
714
|
-
stepActionType: [],
|
|
715
|
-
stepGroupId: [],
|
|
716
|
-
stepTarget: (_) => smithyClient._json(_),
|
|
717
|
-
workflowId: [],
|
|
718
|
-
workflowStepAutomationConfiguration: (_) => smithyClient._json(_),
|
|
719
|
-
}));
|
|
720
|
-
b.m("POST").h(headers).b(body);
|
|
721
|
-
return b.build();
|
|
722
|
-
};
|
|
723
|
-
const se_UpdateWorkflowStepGroupCommand = async (input, context) => {
|
|
724
|
-
const b = core.requestBuilder(input, context);
|
|
725
|
-
const headers = {
|
|
726
|
-
"content-type": "application/json",
|
|
727
|
-
};
|
|
728
|
-
b.bp("/workflowstepgroup/{id}");
|
|
729
|
-
b.p("id", () => input.id, "{id}", false);
|
|
730
|
-
const query = smithyClient.map({
|
|
731
|
-
[_wI]: [, smithyClient.expectNonNull(input[_wI], `workflowId`)],
|
|
732
|
-
});
|
|
733
|
-
let body;
|
|
734
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
735
|
-
description: [],
|
|
736
|
-
name: [],
|
|
737
|
-
next: (_) => smithyClient._json(_),
|
|
738
|
-
previous: (_) => smithyClient._json(_),
|
|
739
|
-
}));
|
|
740
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
741
|
-
return b.build();
|
|
742
|
-
};
|
|
743
|
-
const de_CreateTemplateCommand = async (output, context) => {
|
|
744
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
745
|
-
return de_CommandError(output, context);
|
|
746
|
-
}
|
|
747
|
-
const contents = smithyClient.map({
|
|
748
|
-
$metadata: deserializeMetadata(output),
|
|
749
|
-
});
|
|
750
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
751
|
-
const doc = smithyClient.take(data, {
|
|
752
|
-
tags: smithyClient._json,
|
|
753
|
-
templateArn: smithyClient.expectString,
|
|
754
|
-
templateId: smithyClient.expectString,
|
|
755
|
-
});
|
|
756
|
-
Object.assign(contents, doc);
|
|
757
|
-
return contents;
|
|
758
|
-
};
|
|
759
|
-
const de_CreateWorkflowCommand = async (output, context) => {
|
|
760
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
761
|
-
return de_CommandError(output, context);
|
|
762
|
-
}
|
|
763
|
-
const contents = smithyClient.map({
|
|
764
|
-
$metadata: deserializeMetadata(output),
|
|
765
|
-
});
|
|
766
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
767
|
-
const doc = smithyClient.take(data, {
|
|
768
|
-
adsApplicationConfigurationId: smithyClient.expectString,
|
|
769
|
-
arn: smithyClient.expectString,
|
|
770
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
771
|
-
description: smithyClient.expectString,
|
|
772
|
-
id: smithyClient.expectString,
|
|
773
|
-
name: smithyClient.expectString,
|
|
774
|
-
status: smithyClient.expectString,
|
|
775
|
-
stepTargets: smithyClient._json,
|
|
776
|
-
tags: smithyClient._json,
|
|
777
|
-
templateId: smithyClient.expectString,
|
|
778
|
-
workflowInputs: smithyClient._json,
|
|
779
|
-
});
|
|
780
|
-
Object.assign(contents, doc);
|
|
781
|
-
return contents;
|
|
782
|
-
};
|
|
783
|
-
const de_CreateWorkflowStepCommand = async (output, context) => {
|
|
784
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
785
|
-
return de_CommandError(output, context);
|
|
786
|
-
}
|
|
787
|
-
const contents = smithyClient.map({
|
|
788
|
-
$metadata: deserializeMetadata(output),
|
|
789
|
-
});
|
|
790
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
791
|
-
const doc = smithyClient.take(data, {
|
|
792
|
-
id: smithyClient.expectString,
|
|
793
|
-
name: smithyClient.expectString,
|
|
794
|
-
stepGroupId: smithyClient.expectString,
|
|
795
|
-
workflowId: smithyClient.expectString,
|
|
796
|
-
});
|
|
797
|
-
Object.assign(contents, doc);
|
|
798
|
-
return contents;
|
|
799
|
-
};
|
|
800
|
-
const de_CreateWorkflowStepGroupCommand = async (output, context) => {
|
|
801
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
802
|
-
return de_CommandError(output, context);
|
|
803
|
-
}
|
|
804
|
-
const contents = smithyClient.map({
|
|
805
|
-
$metadata: deserializeMetadata(output),
|
|
806
|
-
});
|
|
807
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
808
|
-
const doc = smithyClient.take(data, {
|
|
809
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
810
|
-
description: smithyClient.expectString,
|
|
811
|
-
id: smithyClient.expectString,
|
|
812
|
-
name: smithyClient.expectString,
|
|
813
|
-
next: smithyClient._json,
|
|
814
|
-
previous: smithyClient._json,
|
|
815
|
-
tools: smithyClient._json,
|
|
816
|
-
workflowId: smithyClient.expectString,
|
|
817
|
-
});
|
|
818
|
-
Object.assign(contents, doc);
|
|
819
|
-
return contents;
|
|
820
|
-
};
|
|
821
|
-
const de_DeleteTemplateCommand = async (output, context) => {
|
|
822
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
823
|
-
return de_CommandError(output, context);
|
|
824
|
-
}
|
|
825
|
-
const contents = smithyClient.map({
|
|
826
|
-
$metadata: deserializeMetadata(output),
|
|
827
|
-
});
|
|
828
|
-
await smithyClient.collectBody(output.body, context);
|
|
829
|
-
return contents;
|
|
830
|
-
};
|
|
831
|
-
const de_DeleteWorkflowCommand = async (output, context) => {
|
|
832
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
833
|
-
return de_CommandError(output, context);
|
|
834
|
-
}
|
|
835
|
-
const contents = smithyClient.map({
|
|
836
|
-
$metadata: deserializeMetadata(output),
|
|
837
|
-
});
|
|
838
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
839
|
-
const doc = smithyClient.take(data, {
|
|
840
|
-
arn: smithyClient.expectString,
|
|
841
|
-
id: smithyClient.expectString,
|
|
842
|
-
status: smithyClient.expectString,
|
|
843
|
-
});
|
|
844
|
-
Object.assign(contents, doc);
|
|
845
|
-
return contents;
|
|
846
|
-
};
|
|
847
|
-
const de_DeleteWorkflowStepCommand = async (output, context) => {
|
|
848
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
849
|
-
return de_CommandError(output, context);
|
|
850
|
-
}
|
|
851
|
-
const contents = smithyClient.map({
|
|
852
|
-
$metadata: deserializeMetadata(output),
|
|
853
|
-
});
|
|
854
|
-
await smithyClient.collectBody(output.body, context);
|
|
855
|
-
return contents;
|
|
856
|
-
};
|
|
857
|
-
const de_DeleteWorkflowStepGroupCommand = async (output, context) => {
|
|
858
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
859
|
-
return de_CommandError(output, context);
|
|
860
|
-
}
|
|
861
|
-
const contents = smithyClient.map({
|
|
862
|
-
$metadata: deserializeMetadata(output),
|
|
863
|
-
});
|
|
864
|
-
await smithyClient.collectBody(output.body, context);
|
|
865
|
-
return contents;
|
|
866
|
-
};
|
|
867
|
-
const de_GetTemplateCommand = async (output, context) => {
|
|
868
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
869
|
-
return de_CommandError(output, context);
|
|
870
|
-
}
|
|
871
|
-
const contents = smithyClient.map({
|
|
872
|
-
$metadata: deserializeMetadata(output),
|
|
873
|
-
});
|
|
874
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
875
|
-
const doc = smithyClient.take(data, {
|
|
876
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
877
|
-
description: smithyClient.expectString,
|
|
878
|
-
id: smithyClient.expectString,
|
|
879
|
-
inputs: smithyClient._json,
|
|
880
|
-
name: smithyClient.expectString,
|
|
881
|
-
owner: smithyClient.expectString,
|
|
882
|
-
status: smithyClient.expectString,
|
|
883
|
-
statusMessage: smithyClient.expectString,
|
|
884
|
-
tags: smithyClient._json,
|
|
885
|
-
templateArn: smithyClient.expectString,
|
|
886
|
-
templateClass: smithyClient.expectString,
|
|
887
|
-
tools: smithyClient._json,
|
|
888
|
-
});
|
|
889
|
-
Object.assign(contents, doc);
|
|
890
|
-
return contents;
|
|
891
|
-
};
|
|
892
|
-
const de_GetTemplateStepCommand = async (output, context) => {
|
|
893
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
894
|
-
return de_CommandError(output, context);
|
|
895
|
-
}
|
|
896
|
-
const contents = smithyClient.map({
|
|
897
|
-
$metadata: deserializeMetadata(output),
|
|
898
|
-
});
|
|
899
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
900
|
-
const doc = smithyClient.take(data, {
|
|
901
|
-
creationTime: smithyClient.expectString,
|
|
902
|
-
description: smithyClient.expectString,
|
|
903
|
-
id: smithyClient.expectString,
|
|
904
|
-
name: smithyClient.expectString,
|
|
905
|
-
next: smithyClient._json,
|
|
906
|
-
outputs: smithyClient._json,
|
|
907
|
-
previous: smithyClient._json,
|
|
908
|
-
stepActionType: smithyClient.expectString,
|
|
909
|
-
stepAutomationConfiguration: smithyClient._json,
|
|
910
|
-
stepGroupId: smithyClient.expectString,
|
|
911
|
-
templateId: smithyClient.expectString,
|
|
912
|
-
});
|
|
913
|
-
Object.assign(contents, doc);
|
|
914
|
-
return contents;
|
|
915
|
-
};
|
|
916
|
-
const de_GetTemplateStepGroupCommand = async (output, context) => {
|
|
917
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
918
|
-
return de_CommandError(output, context);
|
|
919
|
-
}
|
|
920
|
-
const contents = smithyClient.map({
|
|
921
|
-
$metadata: deserializeMetadata(output),
|
|
922
|
-
});
|
|
923
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
924
|
-
const doc = smithyClient.take(data, {
|
|
925
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
926
|
-
description: smithyClient.expectString,
|
|
927
|
-
id: smithyClient.expectString,
|
|
928
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
929
|
-
name: smithyClient.expectString,
|
|
930
|
-
next: smithyClient._json,
|
|
931
|
-
previous: smithyClient._json,
|
|
932
|
-
status: smithyClient.expectString,
|
|
933
|
-
templateId: smithyClient.expectString,
|
|
934
|
-
tools: smithyClient._json,
|
|
935
|
-
});
|
|
936
|
-
Object.assign(contents, doc);
|
|
937
|
-
return contents;
|
|
938
|
-
};
|
|
939
|
-
const de_GetWorkflowCommand = async (output, context) => {
|
|
940
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
941
|
-
return de_CommandError(output, context);
|
|
942
|
-
}
|
|
943
|
-
const contents = smithyClient.map({
|
|
944
|
-
$metadata: deserializeMetadata(output),
|
|
945
|
-
});
|
|
946
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
947
|
-
const doc = smithyClient.take(data, {
|
|
948
|
-
adsApplicationConfigurationId: smithyClient.expectString,
|
|
949
|
-
adsApplicationName: smithyClient.expectString,
|
|
950
|
-
arn: smithyClient.expectString,
|
|
951
|
-
completedSteps: smithyClient.expectInt32,
|
|
952
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
953
|
-
description: smithyClient.expectString,
|
|
954
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
955
|
-
id: smithyClient.expectString,
|
|
956
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
957
|
-
lastStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
958
|
-
lastStopTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
959
|
-
name: smithyClient.expectString,
|
|
960
|
-
status: smithyClient.expectString,
|
|
961
|
-
statusMessage: smithyClient.expectString,
|
|
962
|
-
tags: smithyClient._json,
|
|
963
|
-
templateId: smithyClient.expectString,
|
|
964
|
-
tools: smithyClient._json,
|
|
965
|
-
totalSteps: smithyClient.expectInt32,
|
|
966
|
-
workflowBucket: smithyClient.expectString,
|
|
967
|
-
workflowInputs: smithyClient._json,
|
|
968
|
-
});
|
|
969
|
-
Object.assign(contents, doc);
|
|
970
|
-
return contents;
|
|
971
|
-
};
|
|
972
|
-
const de_GetWorkflowStepCommand = async (output, context) => {
|
|
973
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
974
|
-
return de_CommandError(output, context);
|
|
975
|
-
}
|
|
976
|
-
const contents = smithyClient.map({
|
|
977
|
-
$metadata: deserializeMetadata(output),
|
|
978
|
-
});
|
|
979
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
980
|
-
const doc = smithyClient.take(data, {
|
|
981
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
982
|
-
description: smithyClient.expectString,
|
|
983
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
984
|
-
lastStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
985
|
-
name: smithyClient.expectString,
|
|
986
|
-
next: smithyClient._json,
|
|
987
|
-
noOfSrvCompleted: smithyClient.expectInt32,
|
|
988
|
-
noOfSrvFailed: smithyClient.expectInt32,
|
|
989
|
-
outputs: smithyClient._json,
|
|
990
|
-
owner: smithyClient.expectString,
|
|
991
|
-
previous: smithyClient._json,
|
|
992
|
-
scriptOutputLocation: smithyClient.expectString,
|
|
993
|
-
status: smithyClient.expectString,
|
|
994
|
-
statusMessage: smithyClient.expectString,
|
|
995
|
-
stepActionType: smithyClient.expectString,
|
|
996
|
-
stepGroupId: smithyClient.expectString,
|
|
997
|
-
stepId: smithyClient.expectString,
|
|
998
|
-
stepTarget: smithyClient._json,
|
|
999
|
-
totalNoOfSrv: smithyClient.expectInt32,
|
|
1000
|
-
workflowId: smithyClient.expectString,
|
|
1001
|
-
workflowStepAutomationConfiguration: smithyClient._json,
|
|
1002
|
-
});
|
|
1003
|
-
Object.assign(contents, doc);
|
|
1004
|
-
return contents;
|
|
1005
|
-
};
|
|
1006
|
-
const de_GetWorkflowStepGroupCommand = async (output, context) => {
|
|
1007
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1008
|
-
return de_CommandError(output, context);
|
|
1009
|
-
}
|
|
1010
|
-
const contents = smithyClient.map({
|
|
1011
|
-
$metadata: deserializeMetadata(output),
|
|
1012
|
-
});
|
|
1013
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1014
|
-
const doc = smithyClient.take(data, {
|
|
1015
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1016
|
-
description: smithyClient.expectString,
|
|
1017
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1018
|
-
id: smithyClient.expectString,
|
|
1019
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1020
|
-
name: smithyClient.expectString,
|
|
1021
|
-
next: smithyClient._json,
|
|
1022
|
-
owner: smithyClient.expectString,
|
|
1023
|
-
previous: smithyClient._json,
|
|
1024
|
-
status: smithyClient.expectString,
|
|
1025
|
-
tools: smithyClient._json,
|
|
1026
|
-
workflowId: smithyClient.expectString,
|
|
1027
|
-
});
|
|
1028
|
-
Object.assign(contents, doc);
|
|
1029
|
-
return contents;
|
|
1030
|
-
};
|
|
1031
|
-
const de_ListPluginsCommand = async (output, context) => {
|
|
1032
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1033
|
-
return de_CommandError(output, context);
|
|
1034
|
-
}
|
|
1035
|
-
const contents = smithyClient.map({
|
|
1036
|
-
$metadata: deserializeMetadata(output),
|
|
1037
|
-
});
|
|
1038
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1039
|
-
const doc = smithyClient.take(data, {
|
|
1040
|
-
nextToken: smithyClient.expectString,
|
|
1041
|
-
plugins: smithyClient._json,
|
|
1042
|
-
});
|
|
1043
|
-
Object.assign(contents, doc);
|
|
1044
|
-
return contents;
|
|
1045
|
-
};
|
|
1046
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1047
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1048
|
-
return de_CommandError(output, context);
|
|
1049
|
-
}
|
|
1050
|
-
const contents = smithyClient.map({
|
|
1051
|
-
$metadata: deserializeMetadata(output),
|
|
1052
|
-
});
|
|
1053
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1054
|
-
const doc = smithyClient.take(data, {
|
|
1055
|
-
tags: smithyClient._json,
|
|
1056
|
-
});
|
|
1057
|
-
Object.assign(contents, doc);
|
|
1058
|
-
return contents;
|
|
1059
|
-
};
|
|
1060
|
-
const de_ListTemplatesCommand = async (output, context) => {
|
|
1061
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1062
|
-
return de_CommandError(output, context);
|
|
1063
|
-
}
|
|
1064
|
-
const contents = smithyClient.map({
|
|
1065
|
-
$metadata: deserializeMetadata(output),
|
|
1066
|
-
});
|
|
1067
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1068
|
-
const doc = smithyClient.take(data, {
|
|
1069
|
-
nextToken: smithyClient.expectString,
|
|
1070
|
-
templateSummary: smithyClient._json,
|
|
1071
|
-
});
|
|
1072
|
-
Object.assign(contents, doc);
|
|
1073
|
-
return contents;
|
|
1074
|
-
};
|
|
1075
|
-
const de_ListTemplateStepGroupsCommand = async (output, context) => {
|
|
1076
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1077
|
-
return de_CommandError(output, context);
|
|
1078
|
-
}
|
|
1079
|
-
const contents = smithyClient.map({
|
|
1080
|
-
$metadata: deserializeMetadata(output),
|
|
1081
|
-
});
|
|
1082
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1083
|
-
const doc = smithyClient.take(data, {
|
|
1084
|
-
nextToken: smithyClient.expectString,
|
|
1085
|
-
templateStepGroupSummary: smithyClient._json,
|
|
1086
|
-
});
|
|
1087
|
-
Object.assign(contents, doc);
|
|
1088
|
-
return contents;
|
|
1089
|
-
};
|
|
1090
|
-
const de_ListTemplateStepsCommand = async (output, context) => {
|
|
1091
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1092
|
-
return de_CommandError(output, context);
|
|
1093
|
-
}
|
|
1094
|
-
const contents = smithyClient.map({
|
|
1095
|
-
$metadata: deserializeMetadata(output),
|
|
1096
|
-
});
|
|
1097
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1098
|
-
const doc = smithyClient.take(data, {
|
|
1099
|
-
nextToken: smithyClient.expectString,
|
|
1100
|
-
templateStepSummaryList: smithyClient._json,
|
|
1101
|
-
});
|
|
1102
|
-
Object.assign(contents, doc);
|
|
1103
|
-
return contents;
|
|
1104
|
-
};
|
|
1105
|
-
const de_ListWorkflowsCommand = async (output, context) => {
|
|
1106
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1107
|
-
return de_CommandError(output, context);
|
|
1108
|
-
}
|
|
1109
|
-
const contents = smithyClient.map({
|
|
1110
|
-
$metadata: deserializeMetadata(output),
|
|
1111
|
-
});
|
|
1112
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1113
|
-
const doc = smithyClient.take(data, {
|
|
1114
|
-
migrationWorkflowSummary: (_) => de_MigrationWorkflowSummaryList(_),
|
|
1115
|
-
nextToken: smithyClient.expectString,
|
|
1116
|
-
});
|
|
1117
|
-
Object.assign(contents, doc);
|
|
1118
|
-
return contents;
|
|
1119
|
-
};
|
|
1120
|
-
const de_ListWorkflowStepGroupsCommand = async (output, context) => {
|
|
1121
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1122
|
-
return de_CommandError(output, context);
|
|
1123
|
-
}
|
|
1124
|
-
const contents = smithyClient.map({
|
|
1125
|
-
$metadata: deserializeMetadata(output),
|
|
1126
|
-
});
|
|
1127
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1128
|
-
const doc = smithyClient.take(data, {
|
|
1129
|
-
nextToken: smithyClient.expectString,
|
|
1130
|
-
workflowStepGroupsSummary: smithyClient._json,
|
|
1131
|
-
});
|
|
1132
|
-
Object.assign(contents, doc);
|
|
1133
|
-
return contents;
|
|
1134
|
-
};
|
|
1135
|
-
const de_ListWorkflowStepsCommand = async (output, context) => {
|
|
1136
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1137
|
-
return de_CommandError(output, context);
|
|
1138
|
-
}
|
|
1139
|
-
const contents = smithyClient.map({
|
|
1140
|
-
$metadata: deserializeMetadata(output),
|
|
1141
|
-
});
|
|
1142
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1143
|
-
const doc = smithyClient.take(data, {
|
|
1144
|
-
nextToken: smithyClient.expectString,
|
|
1145
|
-
workflowStepsSummary: smithyClient._json,
|
|
1146
|
-
});
|
|
1147
|
-
Object.assign(contents, doc);
|
|
1148
|
-
return contents;
|
|
1149
|
-
};
|
|
1150
|
-
const de_RetryWorkflowStepCommand = async (output, context) => {
|
|
1151
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1152
|
-
return de_CommandError(output, context);
|
|
1153
|
-
}
|
|
1154
|
-
const contents = smithyClient.map({
|
|
1155
|
-
$metadata: deserializeMetadata(output),
|
|
1156
|
-
});
|
|
1157
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1158
|
-
const doc = smithyClient.take(data, {
|
|
1159
|
-
id: smithyClient.expectString,
|
|
1160
|
-
status: smithyClient.expectString,
|
|
1161
|
-
stepGroupId: smithyClient.expectString,
|
|
1162
|
-
workflowId: smithyClient.expectString,
|
|
1163
|
-
});
|
|
1164
|
-
Object.assign(contents, doc);
|
|
1165
|
-
return contents;
|
|
1166
|
-
};
|
|
1167
|
-
const de_StartWorkflowCommand = async (output, context) => {
|
|
1168
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1169
|
-
return de_CommandError(output, context);
|
|
1170
|
-
}
|
|
1171
|
-
const contents = smithyClient.map({
|
|
1172
|
-
$metadata: deserializeMetadata(output),
|
|
1173
|
-
});
|
|
1174
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1175
|
-
const doc = smithyClient.take(data, {
|
|
1176
|
-
arn: smithyClient.expectString,
|
|
1177
|
-
id: smithyClient.expectString,
|
|
1178
|
-
lastStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1179
|
-
status: smithyClient.expectString,
|
|
1180
|
-
statusMessage: smithyClient.expectString,
|
|
1181
|
-
});
|
|
1182
|
-
Object.assign(contents, doc);
|
|
1183
|
-
return contents;
|
|
1184
|
-
};
|
|
1185
|
-
const de_StopWorkflowCommand = async (output, context) => {
|
|
1186
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1187
|
-
return de_CommandError(output, context);
|
|
1188
|
-
}
|
|
1189
|
-
const contents = smithyClient.map({
|
|
1190
|
-
$metadata: deserializeMetadata(output),
|
|
1191
|
-
});
|
|
1192
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1193
|
-
const doc = smithyClient.take(data, {
|
|
1194
|
-
arn: smithyClient.expectString,
|
|
1195
|
-
id: smithyClient.expectString,
|
|
1196
|
-
lastStopTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1197
|
-
status: smithyClient.expectString,
|
|
1198
|
-
statusMessage: smithyClient.expectString,
|
|
1199
|
-
});
|
|
1200
|
-
Object.assign(contents, doc);
|
|
1201
|
-
return contents;
|
|
1202
|
-
};
|
|
1203
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1204
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1205
|
-
return de_CommandError(output, context);
|
|
1206
|
-
}
|
|
1207
|
-
const contents = smithyClient.map({
|
|
1208
|
-
$metadata: deserializeMetadata(output),
|
|
1209
|
-
});
|
|
1210
|
-
await smithyClient.collectBody(output.body, context);
|
|
1211
|
-
return contents;
|
|
1212
|
-
};
|
|
1213
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1214
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1215
|
-
return de_CommandError(output, context);
|
|
1216
|
-
}
|
|
1217
|
-
const contents = smithyClient.map({
|
|
1218
|
-
$metadata: deserializeMetadata(output),
|
|
1219
|
-
});
|
|
1220
|
-
await smithyClient.collectBody(output.body, context);
|
|
1221
|
-
return contents;
|
|
1222
|
-
};
|
|
1223
|
-
const de_UpdateTemplateCommand = async (output, context) => {
|
|
1224
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1225
|
-
return de_CommandError(output, context);
|
|
1226
|
-
}
|
|
1227
|
-
const contents = smithyClient.map({
|
|
1228
|
-
$metadata: deserializeMetadata(output),
|
|
1229
|
-
});
|
|
1230
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1231
|
-
const doc = smithyClient.take(data, {
|
|
1232
|
-
tags: smithyClient._json,
|
|
1233
|
-
templateArn: smithyClient.expectString,
|
|
1234
|
-
templateId: smithyClient.expectString,
|
|
1235
|
-
});
|
|
1236
|
-
Object.assign(contents, doc);
|
|
1237
|
-
return contents;
|
|
1238
|
-
};
|
|
1239
|
-
const de_UpdateWorkflowCommand = async (output, context) => {
|
|
1240
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1241
|
-
return de_CommandError(output, context);
|
|
1242
|
-
}
|
|
1243
|
-
const contents = smithyClient.map({
|
|
1244
|
-
$metadata: deserializeMetadata(output),
|
|
1245
|
-
});
|
|
1246
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1247
|
-
const doc = smithyClient.take(data, {
|
|
1248
|
-
adsApplicationConfigurationId: smithyClient.expectString,
|
|
1249
|
-
arn: smithyClient.expectString,
|
|
1250
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1251
|
-
description: smithyClient.expectString,
|
|
1252
|
-
id: smithyClient.expectString,
|
|
1253
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1254
|
-
name: smithyClient.expectString,
|
|
1255
|
-
status: smithyClient.expectString,
|
|
1256
|
-
stepTargets: smithyClient._json,
|
|
1257
|
-
tags: smithyClient._json,
|
|
1258
|
-
templateId: smithyClient.expectString,
|
|
1259
|
-
workflowInputs: smithyClient._json,
|
|
1260
|
-
});
|
|
1261
|
-
Object.assign(contents, doc);
|
|
1262
|
-
return contents;
|
|
1263
|
-
};
|
|
1264
|
-
const de_UpdateWorkflowStepCommand = async (output, context) => {
|
|
1265
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1266
|
-
return de_CommandError(output, context);
|
|
1267
|
-
}
|
|
1268
|
-
const contents = smithyClient.map({
|
|
1269
|
-
$metadata: deserializeMetadata(output),
|
|
1270
|
-
});
|
|
1271
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1272
|
-
const doc = smithyClient.take(data, {
|
|
1273
|
-
id: smithyClient.expectString,
|
|
1274
|
-
name: smithyClient.expectString,
|
|
1275
|
-
stepGroupId: smithyClient.expectString,
|
|
1276
|
-
workflowId: smithyClient.expectString,
|
|
1277
|
-
});
|
|
1278
|
-
Object.assign(contents, doc);
|
|
1279
|
-
return contents;
|
|
1280
|
-
};
|
|
1281
|
-
const de_UpdateWorkflowStepGroupCommand = async (output, context) => {
|
|
1282
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1283
|
-
return de_CommandError(output, context);
|
|
1284
|
-
}
|
|
1285
|
-
const contents = smithyClient.map({
|
|
1286
|
-
$metadata: deserializeMetadata(output),
|
|
1287
|
-
});
|
|
1288
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1289
|
-
const doc = smithyClient.take(data, {
|
|
1290
|
-
description: smithyClient.expectString,
|
|
1291
|
-
id: smithyClient.expectString,
|
|
1292
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1293
|
-
name: smithyClient.expectString,
|
|
1294
|
-
next: smithyClient._json,
|
|
1295
|
-
previous: smithyClient._json,
|
|
1296
|
-
tools: smithyClient._json,
|
|
1297
|
-
workflowId: smithyClient.expectString,
|
|
1298
|
-
});
|
|
1299
|
-
Object.assign(contents, doc);
|
|
1300
|
-
return contents;
|
|
1301
|
-
};
|
|
1302
|
-
const de_CommandError = async (output, context) => {
|
|
1303
|
-
const parsedOutput = {
|
|
1304
|
-
...output,
|
|
1305
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1306
|
-
};
|
|
1307
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1308
|
-
switch (errorCode) {
|
|
1309
|
-
case "AccessDeniedException":
|
|
1310
|
-
case "com.amazonaws.migrationhuborchestrator#AccessDeniedException":
|
|
1311
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1312
|
-
case "ConflictException":
|
|
1313
|
-
case "com.amazonaws.migrationhuborchestrator#ConflictException":
|
|
1314
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1315
|
-
case "InternalServerException":
|
|
1316
|
-
case "com.amazonaws.migrationhuborchestrator#InternalServerException":
|
|
1317
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1318
|
-
case "ThrottlingException":
|
|
1319
|
-
case "com.amazonaws.migrationhuborchestrator#ThrottlingException":
|
|
1320
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1321
|
-
case "ValidationException":
|
|
1322
|
-
case "com.amazonaws.migrationhuborchestrator#ValidationException":
|
|
1323
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1324
|
-
case "ResourceNotFoundException":
|
|
1325
|
-
case "com.amazonaws.migrationhuborchestrator#ResourceNotFoundException":
|
|
1326
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1327
|
-
default:
|
|
1328
|
-
const parsedBody = parsedOutput.body;
|
|
1329
|
-
return throwDefaultError({
|
|
1330
|
-
output,
|
|
1331
|
-
parsedBody,
|
|
1332
|
-
errorCode,
|
|
1333
|
-
});
|
|
1334
|
-
}
|
|
1335
|
-
};
|
|
1336
|
-
const throwDefaultError = smithyClient.withBaseException(MigrationHubOrchestratorServiceException);
|
|
1337
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1338
|
-
const contents = smithyClient.map({});
|
|
1339
|
-
const data = parsedOutput.body;
|
|
1340
|
-
const doc = smithyClient.take(data, {
|
|
1341
|
-
message: smithyClient.expectString,
|
|
1342
|
-
});
|
|
1343
|
-
Object.assign(contents, doc);
|
|
1344
|
-
const exception = new AccessDeniedException({
|
|
1345
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1346
|
-
...contents,
|
|
1347
|
-
});
|
|
1348
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1349
|
-
};
|
|
1350
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1351
|
-
const contents = smithyClient.map({});
|
|
1352
|
-
const data = parsedOutput.body;
|
|
1353
|
-
const doc = smithyClient.take(data, {
|
|
1354
|
-
message: smithyClient.expectString,
|
|
1355
|
-
});
|
|
1356
|
-
Object.assign(contents, doc);
|
|
1357
|
-
const exception = new ConflictException({
|
|
1358
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1359
|
-
...contents,
|
|
1360
|
-
});
|
|
1361
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1362
|
-
};
|
|
1363
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1364
|
-
const contents = smithyClient.map({});
|
|
1365
|
-
const data = parsedOutput.body;
|
|
1366
|
-
const doc = smithyClient.take(data, {
|
|
1367
|
-
message: smithyClient.expectString,
|
|
1368
|
-
});
|
|
1369
|
-
Object.assign(contents, doc);
|
|
1370
|
-
const exception = new InternalServerException({
|
|
1371
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1372
|
-
...contents,
|
|
1373
|
-
});
|
|
1374
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1375
|
-
};
|
|
1376
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1377
|
-
const contents = smithyClient.map({});
|
|
1378
|
-
const data = parsedOutput.body;
|
|
1379
|
-
const doc = smithyClient.take(data, {
|
|
1380
|
-
message: smithyClient.expectString,
|
|
1381
|
-
});
|
|
1382
|
-
Object.assign(contents, doc);
|
|
1383
|
-
const exception = new ResourceNotFoundException({
|
|
1384
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1385
|
-
...contents,
|
|
1386
|
-
});
|
|
1387
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1388
|
-
};
|
|
1389
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1390
|
-
const contents = smithyClient.map({});
|
|
1391
|
-
const data = parsedOutput.body;
|
|
1392
|
-
const doc = smithyClient.take(data, {
|
|
1393
|
-
message: smithyClient.expectString,
|
|
1394
|
-
});
|
|
1395
|
-
Object.assign(contents, doc);
|
|
1396
|
-
const exception = new ThrottlingException({
|
|
1397
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1398
|
-
...contents,
|
|
1399
|
-
});
|
|
1400
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1401
|
-
};
|
|
1402
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1403
|
-
const contents = smithyClient.map({});
|
|
1404
|
-
const data = parsedOutput.body;
|
|
1405
|
-
const doc = smithyClient.take(data, {
|
|
1406
|
-
message: smithyClient.expectString,
|
|
1407
|
-
});
|
|
1408
|
-
Object.assign(contents, doc);
|
|
1409
|
-
const exception = new ValidationException({
|
|
1410
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1411
|
-
...contents,
|
|
1412
|
-
});
|
|
1413
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1414
|
-
};
|
|
1415
|
-
const de_MigrationWorkflowSummary = (output, context) => {
|
|
1416
|
-
return smithyClient.take(output, {
|
|
1417
|
-
adsApplicationConfigurationName: smithyClient.expectString,
|
|
1418
|
-
completedSteps: smithyClient.expectInt32,
|
|
1419
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1420
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1421
|
-
id: smithyClient.expectString,
|
|
1422
|
-
name: smithyClient.expectString,
|
|
1423
|
-
status: smithyClient.expectString,
|
|
1424
|
-
statusMessage: smithyClient.expectString,
|
|
1425
|
-
templateId: smithyClient.expectString,
|
|
1426
|
-
totalSteps: smithyClient.expectInt32,
|
|
1427
|
-
});
|
|
1428
|
-
};
|
|
1429
|
-
const de_MigrationWorkflowSummaryList = (output, context) => {
|
|
1430
|
-
const retVal = (output || [])
|
|
1431
|
-
.filter((e) => e != null)
|
|
1432
|
-
.map((entry) => {
|
|
1433
|
-
return de_MigrationWorkflowSummary(entry);
|
|
1434
|
-
});
|
|
1435
|
-
return retVal;
|
|
1436
|
-
};
|
|
1437
|
-
const deserializeMetadata = (output) => ({
|
|
1438
|
-
httpStatusCode: output.statusCode,
|
|
1439
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1440
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1441
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1442
|
-
});
|
|
266
|
+
const _ADE = "AccessDeniedException";
|
|
267
|
+
const _CE = "ConflictException";
|
|
268
|
+
const _CMWR = "CreateMigrationWorkflowRequest";
|
|
269
|
+
const _CMWRr = "CreateMigrationWorkflowResponse";
|
|
270
|
+
const _CT = "CreateTemplate";
|
|
271
|
+
const _CTR = "CreateTemplateRequest";
|
|
272
|
+
const _CTRr = "CreateTemplateResponse";
|
|
273
|
+
const _CW = "CreateWorkflow";
|
|
274
|
+
const _CWS = "CreateWorkflowStep";
|
|
275
|
+
const _CWSG = "CreateWorkflowStepGroup";
|
|
276
|
+
const _CWSGR = "CreateWorkflowStepGroupRequest";
|
|
277
|
+
const _CWSGRr = "CreateWorkflowStepGroupResponse";
|
|
278
|
+
const _CWSR = "CreateWorkflowStepRequest";
|
|
279
|
+
const _CWSRr = "CreateWorkflowStepResponse";
|
|
280
|
+
const _DMWR = "DeleteMigrationWorkflowRequest";
|
|
281
|
+
const _DMWRe = "DeleteMigrationWorkflowResponse";
|
|
282
|
+
const _DT = "DeleteTemplate";
|
|
283
|
+
const _DTR = "DeleteTemplateRequest";
|
|
284
|
+
const _DTRe = "DeleteTemplateResponse";
|
|
285
|
+
const _DW = "DeleteWorkflow";
|
|
286
|
+
const _DWS = "DeleteWorkflowStep";
|
|
287
|
+
const _DWSG = "DeleteWorkflowStepGroup";
|
|
288
|
+
const _DWSGR = "DeleteWorkflowStepGroupRequest";
|
|
289
|
+
const _DWSGRe = "DeleteWorkflowStepGroupResponse";
|
|
290
|
+
const _DWSR = "DeleteWorkflowStepRequest";
|
|
291
|
+
const _DWSRe = "DeleteWorkflowStepResponse";
|
|
292
|
+
const _GMWR = "GetMigrationWorkflowRequest";
|
|
293
|
+
const _GMWRe = "GetMigrationWorkflowResponse";
|
|
294
|
+
const _GMWTR = "GetMigrationWorkflowTemplateRequest";
|
|
295
|
+
const _GMWTRe = "GetMigrationWorkflowTemplateResponse";
|
|
296
|
+
const _GT = "GetTemplate";
|
|
297
|
+
const _GTS = "GetTemplateStep";
|
|
298
|
+
const _GTSG = "GetTemplateStepGroup";
|
|
299
|
+
const _GTSGR = "GetTemplateStepGroupRequest";
|
|
300
|
+
const _GTSGRe = "GetTemplateStepGroupResponse";
|
|
301
|
+
const _GTSR = "GetTemplateStepRequest";
|
|
302
|
+
const _GTSRe = "GetTemplateStepResponse";
|
|
303
|
+
const _GW = "GetWorkflow";
|
|
304
|
+
const _GWS = "GetWorkflowStep";
|
|
305
|
+
const _GWSG = "GetWorkflowStepGroup";
|
|
306
|
+
const _GWSGR = "GetWorkflowStepGroupRequest";
|
|
307
|
+
const _GWSGRe = "GetWorkflowStepGroupResponse";
|
|
308
|
+
const _GWSR = "GetWorkflowStepRequest";
|
|
309
|
+
const _GWSRe = "GetWorkflowStepResponse";
|
|
310
|
+
const _ISE = "InternalServerException";
|
|
311
|
+
const _LMWR = "ListMigrationWorkflowsRequest";
|
|
312
|
+
const _LMWRi = "ListMigrationWorkflowsResponse";
|
|
313
|
+
const _LMWTR = "ListMigrationWorkflowTemplatesRequest";
|
|
314
|
+
const _LMWTRi = "ListMigrationWorkflowTemplatesResponse";
|
|
315
|
+
const _LP = "ListPlugins";
|
|
316
|
+
const _LPR = "ListPluginsRequest";
|
|
317
|
+
const _LPRi = "ListPluginsResponse";
|
|
318
|
+
const _LT = "ListTemplates";
|
|
319
|
+
const _LTFR = "ListTagsForResource";
|
|
320
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
321
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
322
|
+
const _LTS = "ListTemplateSteps";
|
|
323
|
+
const _LTSG = "ListTemplateStepGroups";
|
|
324
|
+
const _LTSGR = "ListTemplateStepGroupsRequest";
|
|
325
|
+
const _LTSGRi = "ListTemplateStepGroupsResponse";
|
|
326
|
+
const _LTSR = "ListTemplateStepsRequest";
|
|
327
|
+
const _LTSRi = "ListTemplateStepsResponse";
|
|
328
|
+
const _LW = "ListWorkflows";
|
|
329
|
+
const _LWS = "ListWorkflowSteps";
|
|
330
|
+
const _LWSG = "ListWorkflowStepGroups";
|
|
331
|
+
const _LWSGR = "ListWorkflowStepGroupsRequest";
|
|
332
|
+
const _LWSGRi = "ListWorkflowStepGroupsResponse";
|
|
333
|
+
const _LWSR = "ListWorkflowStepsRequest";
|
|
334
|
+
const _LWSRi = "ListWorkflowStepsResponse";
|
|
335
|
+
const _MWS = "MigrationWorkflowSummary";
|
|
336
|
+
const _MWSL = "MigrationWorkflowSummaryList";
|
|
337
|
+
const _PC = "PlatformCommand";
|
|
338
|
+
const _PS = "PluginSummary";
|
|
339
|
+
const _PSK = "PlatformScriptKey";
|
|
340
|
+
const _PSl = "PluginSummaries";
|
|
341
|
+
const _RNFE = "ResourceNotFoundException";
|
|
342
|
+
const _RWS = "RetryWorkflowStep";
|
|
343
|
+
const _RWSR = "RetryWorkflowStepRequest";
|
|
344
|
+
const _RWSRe = "RetryWorkflowStepResponse";
|
|
345
|
+
const _SAC = "StepAutomationConfiguration";
|
|
346
|
+
const _SI = "StepInput";
|
|
347
|
+
const _SIP = "StepInputParameters";
|
|
348
|
+
const _SMWR = "StartMigrationWorkflowRequest";
|
|
349
|
+
const _SMWRt = "StartMigrationWorkflowResponse";
|
|
350
|
+
const _SMWRto = "StopMigrationWorkflowRequest";
|
|
351
|
+
const _SMWRtop = "StopMigrationWorkflowResponse";
|
|
352
|
+
const _SO = "StepOutput";
|
|
353
|
+
const _SOL = "StepOutputList";
|
|
354
|
+
const _SW = "StartWorkflow";
|
|
355
|
+
const _SWt = "StopWorkflow";
|
|
356
|
+
const _T = "Tool";
|
|
357
|
+
const _TE = "ThrottlingException";
|
|
358
|
+
const _TI = "TemplateInput";
|
|
359
|
+
const _TIL = "TemplateInputList";
|
|
360
|
+
const _TL = "ToolsList";
|
|
361
|
+
const _TR = "TagResource";
|
|
362
|
+
const _TRR = "TagResourceRequest";
|
|
363
|
+
const _TRRa = "TagResourceResponse";
|
|
364
|
+
const _TS = "TemplateSummary";
|
|
365
|
+
const _TSGS = "TemplateStepGroupSummary";
|
|
366
|
+
const _TSGSL = "TemplateStepGroupSummaryList";
|
|
367
|
+
const _TSL = "TemplateSummaryList";
|
|
368
|
+
const _TSS = "TemplateStepSummary";
|
|
369
|
+
const _TSSL = "TemplateStepSummaryList";
|
|
370
|
+
const _TSe = "TemplateSource";
|
|
371
|
+
const _UMWR = "UpdateMigrationWorkflowRequest";
|
|
372
|
+
const _UMWRp = "UpdateMigrationWorkflowResponse";
|
|
373
|
+
const _UR = "UntagResource";
|
|
374
|
+
const _URR = "UntagResourceRequest";
|
|
375
|
+
const _URRn = "UntagResourceResponse";
|
|
376
|
+
const _UT = "UpdateTemplate";
|
|
377
|
+
const _UTR = "UpdateTemplateRequest";
|
|
378
|
+
const _UTRp = "UpdateTemplateResponse";
|
|
379
|
+
const _UW = "UpdateWorkflow";
|
|
380
|
+
const _UWS = "UpdateWorkflowStep";
|
|
381
|
+
const _UWSG = "UpdateWorkflowStepGroup";
|
|
382
|
+
const _UWSGR = "UpdateWorkflowStepGroupRequest";
|
|
383
|
+
const _UWSGRp = "UpdateWorkflowStepGroupResponse";
|
|
384
|
+
const _UWSR = "UpdateWorkflowStepRequest";
|
|
385
|
+
const _UWSRp = "UpdateWorkflowStepResponse";
|
|
386
|
+
const _VE = "ValidationException";
|
|
387
|
+
const _WSAC = "WorkflowStepAutomationConfiguration";
|
|
388
|
+
const _WSGS = "WorkflowStepGroupSummary";
|
|
389
|
+
const _WSGSL = "WorkflowStepGroupsSummaryList";
|
|
390
|
+
const _WSO = "WorkflowStepOutput";
|
|
391
|
+
const _WSOL = "WorkflowStepOutputList";
|
|
392
|
+
const _WSOU = "WorkflowStepOutputUnion";
|
|
393
|
+
const _WSS = "WorkflowStepSummary";
|
|
394
|
+
const _WSSL = "WorkflowStepsSummaryList";
|
|
395
|
+
const _a = "arn";
|
|
396
|
+
const _aACI = "adsApplicationConfigurationId";
|
|
1443
397
|
const _aACN = "adsApplicationConfigurationName";
|
|
398
|
+
const _aAN = "adsApplicationName";
|
|
399
|
+
const _aCI = "applicationConfigurationId";
|
|
400
|
+
const _c = "client";
|
|
401
|
+
const _cS = "completedSteps";
|
|
402
|
+
const _cT = "creationTime";
|
|
403
|
+
const _cTl = "clientToken";
|
|
404
|
+
const _co = "command";
|
|
405
|
+
const _d = "description";
|
|
406
|
+
const _dT = "dataType";
|
|
407
|
+
const _e = "error";
|
|
408
|
+
const _eT = "endTime";
|
|
409
|
+
const _h = "hostname";
|
|
410
|
+
const _hE = "httpError";
|
|
411
|
+
const _hQ = "httpQuery";
|
|
412
|
+
const _ht = "http";
|
|
413
|
+
const _i = "id";
|
|
414
|
+
const _iA = "ipAddress";
|
|
415
|
+
const _iN = "inputName";
|
|
416
|
+
const _iP = "inputParameters";
|
|
417
|
+
const _iV = "integerValue";
|
|
418
|
+
const _in = "inputs";
|
|
419
|
+
const _l = "linux";
|
|
420
|
+
const _lMT = "lastModifiedTime";
|
|
421
|
+
const _lOSV = "listOfStringsValue";
|
|
422
|
+
const _lOSVi = "listOfStringValue";
|
|
423
|
+
const _lST = "lastStartTime";
|
|
424
|
+
const _lSTa = "lastStopTime";
|
|
425
|
+
const _m = "message";
|
|
426
|
+
const _mOSV = "mapOfStringValue";
|
|
1444
427
|
const _mR = "maxResults";
|
|
428
|
+
const _mWS = "migrationWorkflowSummary";
|
|
1445
429
|
const _n = "name";
|
|
430
|
+
const _nOSC = "noOfSrvCompleted";
|
|
431
|
+
const _nOSF = "noOfSrvFailed";
|
|
1446
432
|
const _nT = "nextToken";
|
|
433
|
+
const _ne = "next";
|
|
434
|
+
const _o = "outputs";
|
|
435
|
+
const _ow = "owner";
|
|
436
|
+
const _p = "previous";
|
|
437
|
+
const _pI = "pluginId";
|
|
438
|
+
const _pl = "plugins";
|
|
439
|
+
const _r = "required";
|
|
440
|
+
const _rA = "resourceArn";
|
|
441
|
+
const _rE = "runEnvironment";
|
|
442
|
+
const _rT = "registeredTime";
|
|
1447
443
|
const _s = "status";
|
|
444
|
+
const _sAC = "stepAutomationConfiguration";
|
|
445
|
+
const _sAT = "stepActionType";
|
|
1448
446
|
const _sGI = "stepGroupId";
|
|
447
|
+
const _sI = "stepId";
|
|
448
|
+
const _sL = "scriptLocation";
|
|
449
|
+
const _sLSB = "scriptLocationS3Bucket";
|
|
450
|
+
const _sLSK = "scriptLocationS3Key";
|
|
451
|
+
const _sM = "statusMessage";
|
|
452
|
+
const _sOL = "scriptOutputLocation";
|
|
453
|
+
const _sT = "stepTargets";
|
|
454
|
+
const _sTt = "stepTarget";
|
|
455
|
+
const _sV = "stringValue";
|
|
456
|
+
const _se = "server";
|
|
457
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhuborchestrator";
|
|
458
|
+
const _t = "tags";
|
|
459
|
+
const _tA = "templateArn";
|
|
460
|
+
const _tC = "templateClass";
|
|
461
|
+
const _tD = "templateDescription";
|
|
1449
462
|
const _tI = "templateId";
|
|
1450
463
|
const _tK = "tagKeys";
|
|
1451
|
-
const
|
|
464
|
+
const _tN = "templateName";
|
|
465
|
+
const _tNOS = "totalNoOfSrv";
|
|
466
|
+
const _tS = "templateSource";
|
|
467
|
+
const _tSGS = "templateStepGroupSummary";
|
|
468
|
+
const _tSSL = "templateStepSummaryList";
|
|
469
|
+
const _tSe = "templateSummary";
|
|
470
|
+
const _tSo = "totalSteps";
|
|
471
|
+
const _tT = "targetType";
|
|
472
|
+
const _to = "tools";
|
|
473
|
+
const _u = "url";
|
|
474
|
+
const _v = "version";
|
|
475
|
+
const _va = "value";
|
|
476
|
+
const _w = "windows";
|
|
477
|
+
const _wB = "workflowBucket";
|
|
478
|
+
const _wI = "workflowInputs";
|
|
479
|
+
const _wIo = "workflowId";
|
|
480
|
+
const _wSAC = "workflowStepAutomationConfiguration";
|
|
481
|
+
const _wSGS = "workflowStepGroupsSummary";
|
|
482
|
+
const _wSS = "workflowStepsSummary";
|
|
483
|
+
const n0 = "com.amazonaws.migrationhuborchestrator";
|
|
484
|
+
var AccessDeniedException = [
|
|
485
|
+
-3,
|
|
486
|
+
n0,
|
|
487
|
+
_ADE,
|
|
488
|
+
{
|
|
489
|
+
[_e]: _c,
|
|
490
|
+
[_hE]: 403,
|
|
491
|
+
},
|
|
492
|
+
[_m],
|
|
493
|
+
[0],
|
|
494
|
+
];
|
|
495
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
496
|
+
var ConflictException = [
|
|
497
|
+
-3,
|
|
498
|
+
n0,
|
|
499
|
+
_CE,
|
|
500
|
+
{
|
|
501
|
+
[_e]: _c,
|
|
502
|
+
[_hE]: 409,
|
|
503
|
+
},
|
|
504
|
+
[_m],
|
|
505
|
+
[0],
|
|
506
|
+
];
|
|
507
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
508
|
+
var CreateMigrationWorkflowRequest = [
|
|
509
|
+
3,
|
|
510
|
+
n0,
|
|
511
|
+
_CMWR,
|
|
512
|
+
0,
|
|
513
|
+
[_n, _d, _tI, _aCI, _iP, _sT, _t],
|
|
514
|
+
[0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 128 | 0],
|
|
515
|
+
];
|
|
516
|
+
var CreateMigrationWorkflowResponse = [
|
|
517
|
+
3,
|
|
518
|
+
n0,
|
|
519
|
+
_CMWRr,
|
|
520
|
+
0,
|
|
521
|
+
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _s, _cT, _t],
|
|
522
|
+
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 128 | 0],
|
|
523
|
+
];
|
|
524
|
+
var CreateTemplateRequest = [
|
|
525
|
+
3,
|
|
526
|
+
n0,
|
|
527
|
+
_CTR,
|
|
528
|
+
0,
|
|
529
|
+
[_tN, _tD, _tS, _cTl, _t],
|
|
530
|
+
[0, 0, () => TemplateSource, [0, 4], 128 | 0],
|
|
531
|
+
];
|
|
532
|
+
var CreateTemplateResponse = [3, n0, _CTRr, 0, [_tI, _tA, _t], [0, 0, 128 | 0]];
|
|
533
|
+
var CreateWorkflowStepGroupRequest = [
|
|
534
|
+
3,
|
|
535
|
+
n0,
|
|
536
|
+
_CWSGR,
|
|
537
|
+
0,
|
|
538
|
+
[_wIo, _n, _d, _ne, _p],
|
|
539
|
+
[0, 0, 0, 64 | 0, 64 | 0],
|
|
540
|
+
];
|
|
541
|
+
var CreateWorkflowStepGroupResponse = [
|
|
542
|
+
3,
|
|
543
|
+
n0,
|
|
544
|
+
_CWSGRr,
|
|
545
|
+
0,
|
|
546
|
+
[_wIo, _n, _i, _d, _to, _ne, _p, _cT],
|
|
547
|
+
[0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4],
|
|
548
|
+
];
|
|
549
|
+
var CreateWorkflowStepRequest = [
|
|
550
|
+
3,
|
|
551
|
+
n0,
|
|
552
|
+
_CWSR,
|
|
553
|
+
0,
|
|
554
|
+
[_n, _sGI, _wIo, _sAT, _d, _wSAC, _sTt, _o, _p, _ne],
|
|
555
|
+
[0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0],
|
|
556
|
+
];
|
|
557
|
+
var CreateWorkflowStepResponse = [3, n0, _CWSRr, 0, [_i, _sGI, _wIo, _n], [0, 0, 0, 0]];
|
|
558
|
+
var DeleteMigrationWorkflowRequest = [3, n0, _DMWR, 0, [_i], [[0, 1]]];
|
|
559
|
+
var DeleteMigrationWorkflowResponse = [3, n0, _DMWRe, 0, [_i, _a, _s], [0, 0, 0]];
|
|
560
|
+
var DeleteTemplateRequest = [3, n0, _DTR, 0, [_i], [[0, 1]]];
|
|
561
|
+
var DeleteTemplateResponse = [3, n0, _DTRe, 0, [], []];
|
|
562
|
+
var DeleteWorkflowStepGroupRequest = [
|
|
563
|
+
3,
|
|
564
|
+
n0,
|
|
565
|
+
_DWSGR,
|
|
566
|
+
0,
|
|
567
|
+
[_wIo, _i],
|
|
568
|
+
[
|
|
569
|
+
[
|
|
570
|
+
0,
|
|
571
|
+
{
|
|
572
|
+
[_hQ]: _wIo,
|
|
573
|
+
},
|
|
574
|
+
],
|
|
575
|
+
[0, 1],
|
|
576
|
+
],
|
|
577
|
+
];
|
|
578
|
+
var DeleteWorkflowStepGroupResponse = [3, n0, _DWSGRe, 0, [], []];
|
|
579
|
+
var DeleteWorkflowStepRequest = [
|
|
580
|
+
3,
|
|
581
|
+
n0,
|
|
582
|
+
_DWSR,
|
|
583
|
+
0,
|
|
584
|
+
[_i, _sGI, _wIo],
|
|
585
|
+
[
|
|
586
|
+
[0, 1],
|
|
587
|
+
[
|
|
588
|
+
0,
|
|
589
|
+
{
|
|
590
|
+
[_hQ]: _sGI,
|
|
591
|
+
},
|
|
592
|
+
],
|
|
593
|
+
[
|
|
594
|
+
0,
|
|
595
|
+
{
|
|
596
|
+
[_hQ]: _wIo,
|
|
597
|
+
},
|
|
598
|
+
],
|
|
599
|
+
],
|
|
600
|
+
];
|
|
601
|
+
var DeleteWorkflowStepResponse = [3, n0, _DWSRe, 0, [], []];
|
|
602
|
+
var GetMigrationWorkflowRequest = [3, n0, _GMWR, 0, [_i], [[0, 1]]];
|
|
603
|
+
var GetMigrationWorkflowResponse = [
|
|
604
|
+
3,
|
|
605
|
+
n0,
|
|
606
|
+
_GMWRe,
|
|
607
|
+
0,
|
|
608
|
+
[_i, _a, _n, _d, _tI, _aACI, _aAN, _s, _sM, _cT, _lST, _lSTa, _lMT, _eT, _to, _tSo, _cS, _wI, _t, _wB],
|
|
609
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, () => ToolsList, 1, 1, [() => StepInputParameters, 0], 128 | 0, 0],
|
|
610
|
+
];
|
|
611
|
+
var GetMigrationWorkflowTemplateRequest = [3, n0, _GMWTR, 0, [_i], [[0, 1]]];
|
|
612
|
+
var GetMigrationWorkflowTemplateResponse = [
|
|
613
|
+
3,
|
|
614
|
+
n0,
|
|
615
|
+
_GMWTRe,
|
|
616
|
+
0,
|
|
617
|
+
[_i, _tA, _n, _d, _in, _to, _cT, _ow, _s, _sM, _tC, _t],
|
|
618
|
+
[0, 0, 0, 0, () => TemplateInputList, () => ToolsList, 4, 0, 0, 0, 0, 128 | 0],
|
|
619
|
+
];
|
|
620
|
+
var GetTemplateStepGroupRequest = [
|
|
621
|
+
3,
|
|
622
|
+
n0,
|
|
623
|
+
_GTSGR,
|
|
624
|
+
0,
|
|
625
|
+
[_tI, _i],
|
|
626
|
+
[
|
|
627
|
+
[0, 1],
|
|
628
|
+
[0, 1],
|
|
629
|
+
],
|
|
630
|
+
];
|
|
631
|
+
var GetTemplateStepGroupResponse = [
|
|
632
|
+
3,
|
|
633
|
+
n0,
|
|
634
|
+
_GTSGRe,
|
|
635
|
+
0,
|
|
636
|
+
[_tI, _i, _n, _d, _s, _cT, _lMT, _to, _p, _ne],
|
|
637
|
+
[0, 0, 0, 0, 0, 4, 4, () => ToolsList, 64 | 0, 64 | 0],
|
|
638
|
+
];
|
|
639
|
+
var GetTemplateStepRequest = [
|
|
640
|
+
3,
|
|
641
|
+
n0,
|
|
642
|
+
_GTSR,
|
|
643
|
+
0,
|
|
644
|
+
[_i, _tI, _sGI],
|
|
645
|
+
[
|
|
646
|
+
[0, 1],
|
|
647
|
+
[
|
|
648
|
+
0,
|
|
649
|
+
{
|
|
650
|
+
[_hQ]: _tI,
|
|
651
|
+
},
|
|
652
|
+
],
|
|
653
|
+
[
|
|
654
|
+
0,
|
|
655
|
+
{
|
|
656
|
+
[_hQ]: _sGI,
|
|
657
|
+
},
|
|
658
|
+
],
|
|
659
|
+
],
|
|
660
|
+
];
|
|
661
|
+
var GetTemplateStepResponse = [
|
|
662
|
+
3,
|
|
663
|
+
n0,
|
|
664
|
+
_GTSRe,
|
|
665
|
+
0,
|
|
666
|
+
[_i, _sGI, _tI, _n, _d, _sAT, _cT, _p, _ne, _o, _sAC],
|
|
667
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => StepOutputList, () => StepAutomationConfiguration],
|
|
668
|
+
];
|
|
669
|
+
var GetWorkflowStepGroupRequest = [
|
|
670
|
+
3,
|
|
671
|
+
n0,
|
|
672
|
+
_GWSGR,
|
|
673
|
+
0,
|
|
674
|
+
[_i, _wIo],
|
|
675
|
+
[
|
|
676
|
+
[0, 1],
|
|
677
|
+
[
|
|
678
|
+
0,
|
|
679
|
+
{
|
|
680
|
+
[_hQ]: _wIo,
|
|
681
|
+
},
|
|
682
|
+
],
|
|
683
|
+
],
|
|
684
|
+
];
|
|
685
|
+
var GetWorkflowStepGroupResponse = [
|
|
686
|
+
3,
|
|
687
|
+
n0,
|
|
688
|
+
_GWSGRe,
|
|
689
|
+
0,
|
|
690
|
+
[_i, _wIo, _n, _d, _s, _ow, _cT, _lMT, _eT, _to, _p, _ne],
|
|
691
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => ToolsList, 64 | 0, 64 | 0],
|
|
692
|
+
];
|
|
693
|
+
var GetWorkflowStepRequest = [
|
|
694
|
+
3,
|
|
695
|
+
n0,
|
|
696
|
+
_GWSR,
|
|
697
|
+
0,
|
|
698
|
+
[_wIo, _sGI, _i],
|
|
699
|
+
[
|
|
700
|
+
[
|
|
701
|
+
0,
|
|
702
|
+
{
|
|
703
|
+
[_hQ]: _wIo,
|
|
704
|
+
},
|
|
705
|
+
],
|
|
706
|
+
[
|
|
707
|
+
0,
|
|
708
|
+
{
|
|
709
|
+
[_hQ]: _sGI,
|
|
710
|
+
},
|
|
711
|
+
],
|
|
712
|
+
[0, 1],
|
|
713
|
+
],
|
|
714
|
+
];
|
|
715
|
+
var GetWorkflowStepResponse = [
|
|
716
|
+
3,
|
|
717
|
+
n0,
|
|
718
|
+
_GWSRe,
|
|
719
|
+
0,
|
|
720
|
+
[_n, _sGI, _wIo, _sI, _d, _sAT, _ow, _wSAC, _sTt, _o, _p, _ne, _s, _sM, _sOL, _cT, _lST, _eT, _nOSC, _nOSF, _tNOS],
|
|
721
|
+
[
|
|
722
|
+
0,
|
|
723
|
+
0,
|
|
724
|
+
0,
|
|
725
|
+
0,
|
|
726
|
+
0,
|
|
727
|
+
0,
|
|
728
|
+
0,
|
|
729
|
+
() => WorkflowStepAutomationConfiguration,
|
|
730
|
+
64 | 0,
|
|
731
|
+
() => WorkflowStepOutputList,
|
|
732
|
+
64 | 0,
|
|
733
|
+
64 | 0,
|
|
734
|
+
0,
|
|
735
|
+
0,
|
|
736
|
+
0,
|
|
737
|
+
4,
|
|
738
|
+
4,
|
|
739
|
+
4,
|
|
740
|
+
1,
|
|
741
|
+
1,
|
|
742
|
+
1,
|
|
743
|
+
],
|
|
744
|
+
];
|
|
745
|
+
var InternalServerException = [
|
|
746
|
+
-3,
|
|
747
|
+
n0,
|
|
748
|
+
_ISE,
|
|
749
|
+
{
|
|
750
|
+
[_e]: _se,
|
|
751
|
+
[_hE]: 500,
|
|
752
|
+
},
|
|
753
|
+
[_m],
|
|
754
|
+
[0],
|
|
755
|
+
];
|
|
756
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
757
|
+
var ListMigrationWorkflowsRequest = [
|
|
758
|
+
3,
|
|
759
|
+
n0,
|
|
760
|
+
_LMWR,
|
|
761
|
+
0,
|
|
762
|
+
[_mR, _nT, _tI, _aACN, _s, _n],
|
|
763
|
+
[
|
|
764
|
+
[
|
|
765
|
+
1,
|
|
766
|
+
{
|
|
767
|
+
[_hQ]: _mR,
|
|
768
|
+
},
|
|
769
|
+
],
|
|
770
|
+
[
|
|
771
|
+
0,
|
|
772
|
+
{
|
|
773
|
+
[_hQ]: _nT,
|
|
774
|
+
},
|
|
775
|
+
],
|
|
776
|
+
[
|
|
777
|
+
0,
|
|
778
|
+
{
|
|
779
|
+
[_hQ]: _tI,
|
|
780
|
+
},
|
|
781
|
+
],
|
|
782
|
+
[
|
|
783
|
+
0,
|
|
784
|
+
{
|
|
785
|
+
[_hQ]: _aACN,
|
|
786
|
+
},
|
|
787
|
+
],
|
|
788
|
+
[
|
|
789
|
+
0,
|
|
790
|
+
{
|
|
791
|
+
[_hQ]: _s,
|
|
792
|
+
},
|
|
793
|
+
],
|
|
794
|
+
[
|
|
795
|
+
0,
|
|
796
|
+
{
|
|
797
|
+
[_hQ]: _n,
|
|
798
|
+
},
|
|
799
|
+
],
|
|
800
|
+
],
|
|
801
|
+
];
|
|
802
|
+
var ListMigrationWorkflowsResponse = [
|
|
803
|
+
3,
|
|
804
|
+
n0,
|
|
805
|
+
_LMWRi,
|
|
806
|
+
0,
|
|
807
|
+
[_nT, _mWS],
|
|
808
|
+
[0, () => MigrationWorkflowSummaryList],
|
|
809
|
+
];
|
|
810
|
+
var ListMigrationWorkflowTemplatesRequest = [
|
|
811
|
+
3,
|
|
812
|
+
n0,
|
|
813
|
+
_LMWTR,
|
|
814
|
+
0,
|
|
815
|
+
[_mR, _nT, _n],
|
|
816
|
+
[
|
|
817
|
+
[
|
|
818
|
+
1,
|
|
819
|
+
{
|
|
820
|
+
[_hQ]: _mR,
|
|
821
|
+
},
|
|
822
|
+
],
|
|
823
|
+
[
|
|
824
|
+
0,
|
|
825
|
+
{
|
|
826
|
+
[_hQ]: _nT,
|
|
827
|
+
},
|
|
828
|
+
],
|
|
829
|
+
[
|
|
830
|
+
0,
|
|
831
|
+
{
|
|
832
|
+
[_hQ]: _n,
|
|
833
|
+
},
|
|
834
|
+
],
|
|
835
|
+
],
|
|
836
|
+
];
|
|
837
|
+
var ListMigrationWorkflowTemplatesResponse = [
|
|
838
|
+
3,
|
|
839
|
+
n0,
|
|
840
|
+
_LMWTRi,
|
|
841
|
+
0,
|
|
842
|
+
[_nT, _tSe],
|
|
843
|
+
[0, () => TemplateSummaryList],
|
|
844
|
+
];
|
|
845
|
+
var ListPluginsRequest = [
|
|
846
|
+
3,
|
|
847
|
+
n0,
|
|
848
|
+
_LPR,
|
|
849
|
+
0,
|
|
850
|
+
[_mR, _nT],
|
|
851
|
+
[
|
|
852
|
+
[
|
|
853
|
+
1,
|
|
854
|
+
{
|
|
855
|
+
[_hQ]: _mR,
|
|
856
|
+
},
|
|
857
|
+
],
|
|
858
|
+
[
|
|
859
|
+
0,
|
|
860
|
+
{
|
|
861
|
+
[_hQ]: _nT,
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
],
|
|
865
|
+
];
|
|
866
|
+
var ListPluginsResponse = [3, n0, _LPRi, 0, [_nT, _pl], [0, () => PluginSummaries]];
|
|
867
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
868
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
869
|
+
var ListTemplateStepGroupsRequest = [
|
|
870
|
+
3,
|
|
871
|
+
n0,
|
|
872
|
+
_LTSGR,
|
|
873
|
+
0,
|
|
874
|
+
[_mR, _nT, _tI],
|
|
875
|
+
[
|
|
876
|
+
[
|
|
877
|
+
1,
|
|
878
|
+
{
|
|
879
|
+
[_hQ]: _mR,
|
|
880
|
+
},
|
|
881
|
+
],
|
|
882
|
+
[
|
|
883
|
+
0,
|
|
884
|
+
{
|
|
885
|
+
[_hQ]: _nT,
|
|
886
|
+
},
|
|
887
|
+
],
|
|
888
|
+
[0, 1],
|
|
889
|
+
],
|
|
890
|
+
];
|
|
891
|
+
var ListTemplateStepGroupsResponse = [
|
|
892
|
+
3,
|
|
893
|
+
n0,
|
|
894
|
+
_LTSGRi,
|
|
895
|
+
0,
|
|
896
|
+
[_nT, _tSGS],
|
|
897
|
+
[0, () => TemplateStepGroupSummaryList],
|
|
898
|
+
];
|
|
899
|
+
var ListTemplateStepsRequest = [
|
|
900
|
+
3,
|
|
901
|
+
n0,
|
|
902
|
+
_LTSR,
|
|
903
|
+
0,
|
|
904
|
+
[_mR, _nT, _tI, _sGI],
|
|
905
|
+
[
|
|
906
|
+
[
|
|
907
|
+
1,
|
|
908
|
+
{
|
|
909
|
+
[_hQ]: _mR,
|
|
910
|
+
},
|
|
911
|
+
],
|
|
912
|
+
[
|
|
913
|
+
0,
|
|
914
|
+
{
|
|
915
|
+
[_hQ]: _nT,
|
|
916
|
+
},
|
|
917
|
+
],
|
|
918
|
+
[
|
|
919
|
+
0,
|
|
920
|
+
{
|
|
921
|
+
[_hQ]: _tI,
|
|
922
|
+
},
|
|
923
|
+
],
|
|
924
|
+
[
|
|
925
|
+
0,
|
|
926
|
+
{
|
|
927
|
+
[_hQ]: _sGI,
|
|
928
|
+
},
|
|
929
|
+
],
|
|
930
|
+
],
|
|
931
|
+
];
|
|
932
|
+
var ListTemplateStepsResponse = [
|
|
933
|
+
3,
|
|
934
|
+
n0,
|
|
935
|
+
_LTSRi,
|
|
936
|
+
0,
|
|
937
|
+
[_nT, _tSSL],
|
|
938
|
+
[0, () => TemplateStepSummaryList],
|
|
939
|
+
];
|
|
940
|
+
var ListWorkflowStepGroupsRequest = [
|
|
941
|
+
3,
|
|
942
|
+
n0,
|
|
943
|
+
_LWSGR,
|
|
944
|
+
0,
|
|
945
|
+
[_nT, _mR, _wIo],
|
|
946
|
+
[
|
|
947
|
+
[
|
|
948
|
+
0,
|
|
949
|
+
{
|
|
950
|
+
[_hQ]: _nT,
|
|
951
|
+
},
|
|
952
|
+
],
|
|
953
|
+
[
|
|
954
|
+
1,
|
|
955
|
+
{
|
|
956
|
+
[_hQ]: _mR,
|
|
957
|
+
},
|
|
958
|
+
],
|
|
959
|
+
[
|
|
960
|
+
0,
|
|
961
|
+
{
|
|
962
|
+
[_hQ]: _wIo,
|
|
963
|
+
},
|
|
964
|
+
],
|
|
965
|
+
],
|
|
966
|
+
];
|
|
967
|
+
var ListWorkflowStepGroupsResponse = [
|
|
968
|
+
3,
|
|
969
|
+
n0,
|
|
970
|
+
_LWSGRi,
|
|
971
|
+
0,
|
|
972
|
+
[_nT, _wSGS],
|
|
973
|
+
[0, () => WorkflowStepGroupsSummaryList],
|
|
974
|
+
];
|
|
975
|
+
var ListWorkflowStepsRequest = [
|
|
976
|
+
3,
|
|
977
|
+
n0,
|
|
978
|
+
_LWSR,
|
|
979
|
+
0,
|
|
980
|
+
[_nT, _mR, _wIo, _sGI],
|
|
981
|
+
[
|
|
982
|
+
[
|
|
983
|
+
0,
|
|
984
|
+
{
|
|
985
|
+
[_hQ]: _nT,
|
|
986
|
+
},
|
|
987
|
+
],
|
|
988
|
+
[
|
|
989
|
+
1,
|
|
990
|
+
{
|
|
991
|
+
[_hQ]: _mR,
|
|
992
|
+
},
|
|
993
|
+
],
|
|
994
|
+
[0, 1],
|
|
995
|
+
[0, 1],
|
|
996
|
+
],
|
|
997
|
+
];
|
|
998
|
+
var ListWorkflowStepsResponse = [
|
|
999
|
+
3,
|
|
1000
|
+
n0,
|
|
1001
|
+
_LWSRi,
|
|
1002
|
+
0,
|
|
1003
|
+
[_nT, _wSS],
|
|
1004
|
+
[0, () => WorkflowStepsSummaryList],
|
|
1005
|
+
];
|
|
1006
|
+
var MigrationWorkflowSummary = [
|
|
1007
|
+
3,
|
|
1008
|
+
n0,
|
|
1009
|
+
_MWS,
|
|
1010
|
+
0,
|
|
1011
|
+
[_i, _n, _tI, _aACN, _s, _cT, _eT, _sM, _cS, _tSo],
|
|
1012
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 1, 1],
|
|
1013
|
+
];
|
|
1014
|
+
var PlatformCommand = [3, n0, _PC, 0, [_l, _w], [0, 0]];
|
|
1015
|
+
var PlatformScriptKey = [3, n0, _PSK, 0, [_l, _w], [0, 0]];
|
|
1016
|
+
var PluginSummary = [3, n0, _PS, 0, [_pI, _h, _s, _iA, _v, _rT], [0, 0, 0, 0, 0, 0]];
|
|
1017
|
+
var ResourceNotFoundException = [
|
|
1018
|
+
-3,
|
|
1019
|
+
n0,
|
|
1020
|
+
_RNFE,
|
|
1021
|
+
{
|
|
1022
|
+
[_e]: _c,
|
|
1023
|
+
[_hE]: 404,
|
|
1024
|
+
},
|
|
1025
|
+
[_m],
|
|
1026
|
+
[0],
|
|
1027
|
+
];
|
|
1028
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1029
|
+
var RetryWorkflowStepRequest = [
|
|
1030
|
+
3,
|
|
1031
|
+
n0,
|
|
1032
|
+
_RWSR,
|
|
1033
|
+
0,
|
|
1034
|
+
[_wIo, _sGI, _i],
|
|
1035
|
+
[
|
|
1036
|
+
[
|
|
1037
|
+
0,
|
|
1038
|
+
{
|
|
1039
|
+
[_hQ]: _wIo,
|
|
1040
|
+
},
|
|
1041
|
+
],
|
|
1042
|
+
[
|
|
1043
|
+
0,
|
|
1044
|
+
{
|
|
1045
|
+
[_hQ]: _sGI,
|
|
1046
|
+
},
|
|
1047
|
+
],
|
|
1048
|
+
[0, 1],
|
|
1049
|
+
],
|
|
1050
|
+
];
|
|
1051
|
+
var RetryWorkflowStepResponse = [3, n0, _RWSRe, 0, [_sGI, _wIo, _i, _s], [0, 0, 0, 0]];
|
|
1052
|
+
var StartMigrationWorkflowRequest = [3, n0, _SMWR, 0, [_i], [[0, 1]]];
|
|
1053
|
+
var StartMigrationWorkflowResponse = [
|
|
1054
|
+
3,
|
|
1055
|
+
n0,
|
|
1056
|
+
_SMWRt,
|
|
1057
|
+
0,
|
|
1058
|
+
[_i, _a, _s, _sM, _lST],
|
|
1059
|
+
[0, 0, 0, 0, 4],
|
|
1060
|
+
];
|
|
1061
|
+
var StepAutomationConfiguration = [
|
|
1062
|
+
3,
|
|
1063
|
+
n0,
|
|
1064
|
+
_SAC,
|
|
1065
|
+
0,
|
|
1066
|
+
[_sLSB, _sLSK, _co, _rE, _tT],
|
|
1067
|
+
[0, () => PlatformScriptKey, () => PlatformCommand, 0, 0],
|
|
1068
|
+
];
|
|
1069
|
+
var StepOutput = [3, n0, _SO, 0, [_n, _dT, _r], [0, 0, 2]];
|
|
1070
|
+
var StopMigrationWorkflowRequest = [3, n0, _SMWRto, 0, [_i], [[0, 1]]];
|
|
1071
|
+
var StopMigrationWorkflowResponse = [
|
|
1072
|
+
3,
|
|
1073
|
+
n0,
|
|
1074
|
+
_SMWRtop,
|
|
1075
|
+
0,
|
|
1076
|
+
[_i, _a, _s, _sM, _lSTa],
|
|
1077
|
+
[0, 0, 0, 0, 4],
|
|
1078
|
+
];
|
|
1079
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1080
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1081
|
+
var TemplateInput = [3, n0, _TI, 0, [_iN, _dT, _r], [0, 0, 2]];
|
|
1082
|
+
var TemplateStepGroupSummary = [
|
|
1083
|
+
3,
|
|
1084
|
+
n0,
|
|
1085
|
+
_TSGS,
|
|
1086
|
+
0,
|
|
1087
|
+
[_i, _n, _p, _ne],
|
|
1088
|
+
[0, 0, 64 | 0, 64 | 0],
|
|
1089
|
+
];
|
|
1090
|
+
var TemplateStepSummary = [
|
|
1091
|
+
3,
|
|
1092
|
+
n0,
|
|
1093
|
+
_TSS,
|
|
1094
|
+
0,
|
|
1095
|
+
[_i, _sGI, _tI, _n, _sAT, _tT, _ow, _p, _ne],
|
|
1096
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0],
|
|
1097
|
+
];
|
|
1098
|
+
var TemplateSummary = [3, n0, _TS, 0, [_i, _n, _a, _d], [0, 0, 0, 0]];
|
|
1099
|
+
var ThrottlingException = [
|
|
1100
|
+
-3,
|
|
1101
|
+
n0,
|
|
1102
|
+
_TE,
|
|
1103
|
+
{
|
|
1104
|
+
[_e]: _c,
|
|
1105
|
+
[_hE]: 429,
|
|
1106
|
+
},
|
|
1107
|
+
[_m],
|
|
1108
|
+
[0],
|
|
1109
|
+
];
|
|
1110
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1111
|
+
var Tool = [3, n0, _T, 0, [_n, _u], [0, 0]];
|
|
1112
|
+
var UntagResourceRequest = [
|
|
1113
|
+
3,
|
|
1114
|
+
n0,
|
|
1115
|
+
_URR,
|
|
1116
|
+
0,
|
|
1117
|
+
[_rA, _tK],
|
|
1118
|
+
[
|
|
1119
|
+
[0, 1],
|
|
1120
|
+
[
|
|
1121
|
+
64 | 0,
|
|
1122
|
+
{
|
|
1123
|
+
[_hQ]: _tK,
|
|
1124
|
+
},
|
|
1125
|
+
],
|
|
1126
|
+
],
|
|
1127
|
+
];
|
|
1128
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1129
|
+
var UpdateMigrationWorkflowRequest = [
|
|
1130
|
+
3,
|
|
1131
|
+
n0,
|
|
1132
|
+
_UMWR,
|
|
1133
|
+
0,
|
|
1134
|
+
[_i, _n, _d, _iP, _sT],
|
|
1135
|
+
[[0, 1], 0, 0, [() => StepInputParameters, 0], 64 | 0],
|
|
1136
|
+
];
|
|
1137
|
+
var UpdateMigrationWorkflowResponse = [
|
|
1138
|
+
3,
|
|
1139
|
+
n0,
|
|
1140
|
+
_UMWRp,
|
|
1141
|
+
0,
|
|
1142
|
+
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _s, _cT, _lMT, _t],
|
|
1143
|
+
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 4, 128 | 0],
|
|
1144
|
+
];
|
|
1145
|
+
var UpdateTemplateRequest = [
|
|
1146
|
+
3,
|
|
1147
|
+
n0,
|
|
1148
|
+
_UTR,
|
|
1149
|
+
0,
|
|
1150
|
+
[_i, _tN, _tD, _cTl],
|
|
1151
|
+
[[0, 1], 0, 0, [0, 4]],
|
|
1152
|
+
];
|
|
1153
|
+
var UpdateTemplateResponse = [3, n0, _UTRp, 0, [_tI, _tA, _t], [0, 0, 128 | 0]];
|
|
1154
|
+
var UpdateWorkflowStepGroupRequest = [
|
|
1155
|
+
3,
|
|
1156
|
+
n0,
|
|
1157
|
+
_UWSGR,
|
|
1158
|
+
0,
|
|
1159
|
+
[_wIo, _i, _n, _d, _ne, _p],
|
|
1160
|
+
[
|
|
1161
|
+
[
|
|
1162
|
+
0,
|
|
1163
|
+
{
|
|
1164
|
+
[_hQ]: _wIo,
|
|
1165
|
+
},
|
|
1166
|
+
],
|
|
1167
|
+
[0, 1],
|
|
1168
|
+
0,
|
|
1169
|
+
0,
|
|
1170
|
+
64 | 0,
|
|
1171
|
+
64 | 0,
|
|
1172
|
+
],
|
|
1173
|
+
];
|
|
1174
|
+
var UpdateWorkflowStepGroupResponse = [
|
|
1175
|
+
3,
|
|
1176
|
+
n0,
|
|
1177
|
+
_UWSGRp,
|
|
1178
|
+
0,
|
|
1179
|
+
[_wIo, _n, _i, _d, _to, _ne, _p, _lMT],
|
|
1180
|
+
[0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4],
|
|
1181
|
+
];
|
|
1182
|
+
var UpdateWorkflowStepRequest = [
|
|
1183
|
+
3,
|
|
1184
|
+
n0,
|
|
1185
|
+
_UWSR,
|
|
1186
|
+
0,
|
|
1187
|
+
[_i, _sGI, _wIo, _n, _d, _sAT, _wSAC, _sTt, _o, _p, _ne, _s],
|
|
1188
|
+
[
|
|
1189
|
+
[0, 1],
|
|
1190
|
+
0,
|
|
1191
|
+
0,
|
|
1192
|
+
0,
|
|
1193
|
+
0,
|
|
1194
|
+
0,
|
|
1195
|
+
() => WorkflowStepAutomationConfiguration,
|
|
1196
|
+
64 | 0,
|
|
1197
|
+
() => WorkflowStepOutputList,
|
|
1198
|
+
64 | 0,
|
|
1199
|
+
64 | 0,
|
|
1200
|
+
0,
|
|
1201
|
+
],
|
|
1202
|
+
];
|
|
1203
|
+
var UpdateWorkflowStepResponse = [3, n0, _UWSRp, 0, [_i, _sGI, _wIo, _n], [0, 0, 0, 0]];
|
|
1204
|
+
var ValidationException = [
|
|
1205
|
+
-3,
|
|
1206
|
+
n0,
|
|
1207
|
+
_VE,
|
|
1208
|
+
{
|
|
1209
|
+
[_e]: _c,
|
|
1210
|
+
[_hE]: 400,
|
|
1211
|
+
},
|
|
1212
|
+
[_m],
|
|
1213
|
+
[0],
|
|
1214
|
+
];
|
|
1215
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1216
|
+
var WorkflowStepAutomationConfiguration = [
|
|
1217
|
+
3,
|
|
1218
|
+
n0,
|
|
1219
|
+
_WSAC,
|
|
1220
|
+
0,
|
|
1221
|
+
[_sLSB, _sLSK, _co, _rE, _tT],
|
|
1222
|
+
[0, () => PlatformScriptKey, () => PlatformCommand, 0, 0],
|
|
1223
|
+
];
|
|
1224
|
+
var WorkflowStepGroupSummary = [
|
|
1225
|
+
3,
|
|
1226
|
+
n0,
|
|
1227
|
+
_WSGS,
|
|
1228
|
+
0,
|
|
1229
|
+
[_i, _n, _ow, _s, _p, _ne],
|
|
1230
|
+
[0, 0, 0, 0, 64 | 0, 64 | 0],
|
|
1231
|
+
];
|
|
1232
|
+
var WorkflowStepOutput = [
|
|
1233
|
+
3,
|
|
1234
|
+
n0,
|
|
1235
|
+
_WSO,
|
|
1236
|
+
0,
|
|
1237
|
+
[_n, _dT, _r, _va],
|
|
1238
|
+
[0, 0, 2, () => WorkflowStepOutputUnion],
|
|
1239
|
+
];
|
|
1240
|
+
var WorkflowStepSummary = [
|
|
1241
|
+
3,
|
|
1242
|
+
n0,
|
|
1243
|
+
_WSS,
|
|
1244
|
+
0,
|
|
1245
|
+
[_sI, _n, _sAT, _ow, _p, _ne, _s, _sM, _nOSC, _nOSF, _tNOS, _d, _sL],
|
|
1246
|
+
[0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 1, 1, 1, 0, 0],
|
|
1247
|
+
];
|
|
1248
|
+
var MigrationHubOrchestratorServiceException = [
|
|
1249
|
+
-3,
|
|
1250
|
+
_sm,
|
|
1251
|
+
"MigrationHubOrchestratorServiceException",
|
|
1252
|
+
0,
|
|
1253
|
+
[],
|
|
1254
|
+
[],
|
|
1255
|
+
];
|
|
1256
|
+
schema.TypeRegistry.for(_sm).registerError(MigrationHubOrchestratorServiceException, MigrationHubOrchestratorServiceException$1);
|
|
1257
|
+
var MigrationWorkflowSummaryList = [1, n0, _MWSL, 0, () => MigrationWorkflowSummary];
|
|
1258
|
+
var PluginSummaries = [1, n0, _PSl, 0, () => PluginSummary];
|
|
1259
|
+
var StepOutputList = [1, n0, _SOL, 0, () => StepOutput];
|
|
1260
|
+
var TemplateInputList = [1, n0, _TIL, 0, () => TemplateInput];
|
|
1261
|
+
var TemplateStepGroupSummaryList = [1, n0, _TSGSL, 0, () => TemplateStepGroupSummary];
|
|
1262
|
+
var TemplateStepSummaryList = [1, n0, _TSSL, 0, () => TemplateStepSummary];
|
|
1263
|
+
var TemplateSummaryList = [1, n0, _TSL, 0, () => TemplateSummary];
|
|
1264
|
+
var ToolsList = [1, n0, _TL, 0, () => Tool];
|
|
1265
|
+
var WorkflowStepGroupsSummaryList = [1, n0, _WSGSL, 0, () => WorkflowStepGroupSummary];
|
|
1266
|
+
var WorkflowStepOutputList = [1, n0, _WSOL, 0, () => WorkflowStepOutput];
|
|
1267
|
+
var WorkflowStepsSummaryList = [1, n0, _WSSL, 0, () => WorkflowStepSummary];
|
|
1268
|
+
var StepInputParameters = [2, n0, _SIP, 8, 0, () => StepInput];
|
|
1269
|
+
var StepInput = [3, n0, _SI, 0, [_iV, _sV, _lOSV, _mOSV], [1, 0, 64 | 0, 128 | 0]];
|
|
1270
|
+
var TemplateSource = [3, n0, _TSe, 0, [_wIo], [0]];
|
|
1271
|
+
var WorkflowStepOutputUnion = [3, n0, _WSOU, 0, [_iV, _sV, _lOSVi], [1, 0, 64 | 0]];
|
|
1272
|
+
var CreateTemplate = [
|
|
1273
|
+
9,
|
|
1274
|
+
n0,
|
|
1275
|
+
_CT,
|
|
1276
|
+
{
|
|
1277
|
+
[_ht]: ["POST", "/template", 200],
|
|
1278
|
+
},
|
|
1279
|
+
() => CreateTemplateRequest,
|
|
1280
|
+
() => CreateTemplateResponse,
|
|
1281
|
+
];
|
|
1282
|
+
var CreateWorkflow = [
|
|
1283
|
+
9,
|
|
1284
|
+
n0,
|
|
1285
|
+
_CW,
|
|
1286
|
+
{
|
|
1287
|
+
[_ht]: ["POST", "/migrationworkflow/", 200],
|
|
1288
|
+
},
|
|
1289
|
+
() => CreateMigrationWorkflowRequest,
|
|
1290
|
+
() => CreateMigrationWorkflowResponse,
|
|
1291
|
+
];
|
|
1292
|
+
var CreateWorkflowStep = [
|
|
1293
|
+
9,
|
|
1294
|
+
n0,
|
|
1295
|
+
_CWS,
|
|
1296
|
+
{
|
|
1297
|
+
[_ht]: ["POST", "/workflowstep", 200],
|
|
1298
|
+
},
|
|
1299
|
+
() => CreateWorkflowStepRequest,
|
|
1300
|
+
() => CreateWorkflowStepResponse,
|
|
1301
|
+
];
|
|
1302
|
+
var CreateWorkflowStepGroup = [
|
|
1303
|
+
9,
|
|
1304
|
+
n0,
|
|
1305
|
+
_CWSG,
|
|
1306
|
+
{
|
|
1307
|
+
[_ht]: ["POST", "/workflowstepgroups", 200],
|
|
1308
|
+
},
|
|
1309
|
+
() => CreateWorkflowStepGroupRequest,
|
|
1310
|
+
() => CreateWorkflowStepGroupResponse,
|
|
1311
|
+
];
|
|
1312
|
+
var DeleteTemplate = [
|
|
1313
|
+
9,
|
|
1314
|
+
n0,
|
|
1315
|
+
_DT,
|
|
1316
|
+
{
|
|
1317
|
+
[_ht]: ["DELETE", "/template/{id}", 200],
|
|
1318
|
+
},
|
|
1319
|
+
() => DeleteTemplateRequest,
|
|
1320
|
+
() => DeleteTemplateResponse,
|
|
1321
|
+
];
|
|
1322
|
+
var DeleteWorkflow = [
|
|
1323
|
+
9,
|
|
1324
|
+
n0,
|
|
1325
|
+
_DW,
|
|
1326
|
+
{
|
|
1327
|
+
[_ht]: ["DELETE", "/migrationworkflow/{id}", 202],
|
|
1328
|
+
},
|
|
1329
|
+
() => DeleteMigrationWorkflowRequest,
|
|
1330
|
+
() => DeleteMigrationWorkflowResponse,
|
|
1331
|
+
];
|
|
1332
|
+
var DeleteWorkflowStep = [
|
|
1333
|
+
9,
|
|
1334
|
+
n0,
|
|
1335
|
+
_DWS,
|
|
1336
|
+
{
|
|
1337
|
+
[_ht]: ["DELETE", "/workflowstep/{id}", 200],
|
|
1338
|
+
},
|
|
1339
|
+
() => DeleteWorkflowStepRequest,
|
|
1340
|
+
() => DeleteWorkflowStepResponse,
|
|
1341
|
+
];
|
|
1342
|
+
var DeleteWorkflowStepGroup = [
|
|
1343
|
+
9,
|
|
1344
|
+
n0,
|
|
1345
|
+
_DWSG,
|
|
1346
|
+
{
|
|
1347
|
+
[_ht]: ["DELETE", "/workflowstepgroup/{id}", 202],
|
|
1348
|
+
},
|
|
1349
|
+
() => DeleteWorkflowStepGroupRequest,
|
|
1350
|
+
() => DeleteWorkflowStepGroupResponse,
|
|
1351
|
+
];
|
|
1352
|
+
var GetTemplate = [
|
|
1353
|
+
9,
|
|
1354
|
+
n0,
|
|
1355
|
+
_GT,
|
|
1356
|
+
{
|
|
1357
|
+
[_ht]: ["GET", "/migrationworkflowtemplate/{id}", 200],
|
|
1358
|
+
},
|
|
1359
|
+
() => GetMigrationWorkflowTemplateRequest,
|
|
1360
|
+
() => GetMigrationWorkflowTemplateResponse,
|
|
1361
|
+
];
|
|
1362
|
+
var GetTemplateStep = [
|
|
1363
|
+
9,
|
|
1364
|
+
n0,
|
|
1365
|
+
_GTS,
|
|
1366
|
+
{
|
|
1367
|
+
[_ht]: ["GET", "/templatestep/{id}", 200],
|
|
1368
|
+
},
|
|
1369
|
+
() => GetTemplateStepRequest,
|
|
1370
|
+
() => GetTemplateStepResponse,
|
|
1371
|
+
];
|
|
1372
|
+
var GetTemplateStepGroup = [
|
|
1373
|
+
9,
|
|
1374
|
+
n0,
|
|
1375
|
+
_GTSG,
|
|
1376
|
+
{
|
|
1377
|
+
[_ht]: ["GET", "/templates/{templateId}/stepgroups/{id}", 200],
|
|
1378
|
+
},
|
|
1379
|
+
() => GetTemplateStepGroupRequest,
|
|
1380
|
+
() => GetTemplateStepGroupResponse,
|
|
1381
|
+
];
|
|
1382
|
+
var GetWorkflow = [
|
|
1383
|
+
9,
|
|
1384
|
+
n0,
|
|
1385
|
+
_GW,
|
|
1386
|
+
{
|
|
1387
|
+
[_ht]: ["GET", "/migrationworkflow/{id}", 200],
|
|
1388
|
+
},
|
|
1389
|
+
() => GetMigrationWorkflowRequest,
|
|
1390
|
+
() => GetMigrationWorkflowResponse,
|
|
1391
|
+
];
|
|
1392
|
+
var GetWorkflowStep = [
|
|
1393
|
+
9,
|
|
1394
|
+
n0,
|
|
1395
|
+
_GWS,
|
|
1396
|
+
{
|
|
1397
|
+
[_ht]: ["GET", "/workflowstep/{id}", 200],
|
|
1398
|
+
},
|
|
1399
|
+
() => GetWorkflowStepRequest,
|
|
1400
|
+
() => GetWorkflowStepResponse,
|
|
1401
|
+
];
|
|
1402
|
+
var GetWorkflowStepGroup = [
|
|
1403
|
+
9,
|
|
1404
|
+
n0,
|
|
1405
|
+
_GWSG,
|
|
1406
|
+
{
|
|
1407
|
+
[_ht]: ["GET", "/workflowstepgroup/{id}", 200],
|
|
1408
|
+
},
|
|
1409
|
+
() => GetWorkflowStepGroupRequest,
|
|
1410
|
+
() => GetWorkflowStepGroupResponse,
|
|
1411
|
+
];
|
|
1412
|
+
var ListPlugins = [
|
|
1413
|
+
9,
|
|
1414
|
+
n0,
|
|
1415
|
+
_LP,
|
|
1416
|
+
{
|
|
1417
|
+
[_ht]: ["GET", "/plugins", 200],
|
|
1418
|
+
},
|
|
1419
|
+
() => ListPluginsRequest,
|
|
1420
|
+
() => ListPluginsResponse,
|
|
1421
|
+
];
|
|
1422
|
+
var ListTagsForResource = [
|
|
1423
|
+
9,
|
|
1424
|
+
n0,
|
|
1425
|
+
_LTFR,
|
|
1426
|
+
{
|
|
1427
|
+
[_ht]: ["GET", "/tags/{resourceArn}", 200],
|
|
1428
|
+
},
|
|
1429
|
+
() => ListTagsForResourceRequest,
|
|
1430
|
+
() => ListTagsForResourceResponse,
|
|
1431
|
+
];
|
|
1432
|
+
var ListTemplates = [
|
|
1433
|
+
9,
|
|
1434
|
+
n0,
|
|
1435
|
+
_LT,
|
|
1436
|
+
{
|
|
1437
|
+
[_ht]: ["GET", "/migrationworkflowtemplates", 200],
|
|
1438
|
+
},
|
|
1439
|
+
() => ListMigrationWorkflowTemplatesRequest,
|
|
1440
|
+
() => ListMigrationWorkflowTemplatesResponse,
|
|
1441
|
+
];
|
|
1442
|
+
var ListTemplateStepGroups = [
|
|
1443
|
+
9,
|
|
1444
|
+
n0,
|
|
1445
|
+
_LTSG,
|
|
1446
|
+
{
|
|
1447
|
+
[_ht]: ["GET", "/templatestepgroups/{templateId}", 200],
|
|
1448
|
+
},
|
|
1449
|
+
() => ListTemplateStepGroupsRequest,
|
|
1450
|
+
() => ListTemplateStepGroupsResponse,
|
|
1451
|
+
];
|
|
1452
|
+
var ListTemplateSteps = [
|
|
1453
|
+
9,
|
|
1454
|
+
n0,
|
|
1455
|
+
_LTS,
|
|
1456
|
+
{
|
|
1457
|
+
[_ht]: ["GET", "/templatesteps", 200],
|
|
1458
|
+
},
|
|
1459
|
+
() => ListTemplateStepsRequest,
|
|
1460
|
+
() => ListTemplateStepsResponse,
|
|
1461
|
+
];
|
|
1462
|
+
var ListWorkflows = [
|
|
1463
|
+
9,
|
|
1464
|
+
n0,
|
|
1465
|
+
_LW,
|
|
1466
|
+
{
|
|
1467
|
+
[_ht]: ["GET", "/migrationworkflows", 200],
|
|
1468
|
+
},
|
|
1469
|
+
() => ListMigrationWorkflowsRequest,
|
|
1470
|
+
() => ListMigrationWorkflowsResponse,
|
|
1471
|
+
];
|
|
1472
|
+
var ListWorkflowStepGroups = [
|
|
1473
|
+
9,
|
|
1474
|
+
n0,
|
|
1475
|
+
_LWSG,
|
|
1476
|
+
{
|
|
1477
|
+
[_ht]: ["GET", "/workflowstepgroups", 200],
|
|
1478
|
+
},
|
|
1479
|
+
() => ListWorkflowStepGroupsRequest,
|
|
1480
|
+
() => ListWorkflowStepGroupsResponse,
|
|
1481
|
+
];
|
|
1482
|
+
var ListWorkflowSteps = [
|
|
1483
|
+
9,
|
|
1484
|
+
n0,
|
|
1485
|
+
_LWS,
|
|
1486
|
+
{
|
|
1487
|
+
[_ht]: ["GET", "/workflow/{workflowId}/workflowstepgroups/{stepGroupId}/workflowsteps", 200],
|
|
1488
|
+
},
|
|
1489
|
+
() => ListWorkflowStepsRequest,
|
|
1490
|
+
() => ListWorkflowStepsResponse,
|
|
1491
|
+
];
|
|
1492
|
+
var RetryWorkflowStep = [
|
|
1493
|
+
9,
|
|
1494
|
+
n0,
|
|
1495
|
+
_RWS,
|
|
1496
|
+
{
|
|
1497
|
+
[_ht]: ["POST", "/retryworkflowstep/{id}", 200],
|
|
1498
|
+
},
|
|
1499
|
+
() => RetryWorkflowStepRequest,
|
|
1500
|
+
() => RetryWorkflowStepResponse,
|
|
1501
|
+
];
|
|
1502
|
+
var StartWorkflow = [
|
|
1503
|
+
9,
|
|
1504
|
+
n0,
|
|
1505
|
+
_SW,
|
|
1506
|
+
{
|
|
1507
|
+
[_ht]: ["POST", "/migrationworkflow/{id}/start", 200],
|
|
1508
|
+
},
|
|
1509
|
+
() => StartMigrationWorkflowRequest,
|
|
1510
|
+
() => StartMigrationWorkflowResponse,
|
|
1511
|
+
];
|
|
1512
|
+
var StopWorkflow = [
|
|
1513
|
+
9,
|
|
1514
|
+
n0,
|
|
1515
|
+
_SWt,
|
|
1516
|
+
{
|
|
1517
|
+
[_ht]: ["POST", "/migrationworkflow/{id}/stop", 200],
|
|
1518
|
+
},
|
|
1519
|
+
() => StopMigrationWorkflowRequest,
|
|
1520
|
+
() => StopMigrationWorkflowResponse,
|
|
1521
|
+
];
|
|
1522
|
+
var TagResource = [
|
|
1523
|
+
9,
|
|
1524
|
+
n0,
|
|
1525
|
+
_TR,
|
|
1526
|
+
{
|
|
1527
|
+
[_ht]: ["POST", "/tags/{resourceArn}", 200],
|
|
1528
|
+
},
|
|
1529
|
+
() => TagResourceRequest,
|
|
1530
|
+
() => TagResourceResponse,
|
|
1531
|
+
];
|
|
1532
|
+
var UntagResource = [
|
|
1533
|
+
9,
|
|
1534
|
+
n0,
|
|
1535
|
+
_UR,
|
|
1536
|
+
{
|
|
1537
|
+
[_ht]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1538
|
+
},
|
|
1539
|
+
() => UntagResourceRequest,
|
|
1540
|
+
() => UntagResourceResponse,
|
|
1541
|
+
];
|
|
1542
|
+
var UpdateTemplate = [
|
|
1543
|
+
9,
|
|
1544
|
+
n0,
|
|
1545
|
+
_UT,
|
|
1546
|
+
{
|
|
1547
|
+
[_ht]: ["POST", "/template/{id}", 200],
|
|
1548
|
+
},
|
|
1549
|
+
() => UpdateTemplateRequest,
|
|
1550
|
+
() => UpdateTemplateResponse,
|
|
1551
|
+
];
|
|
1552
|
+
var UpdateWorkflow = [
|
|
1553
|
+
9,
|
|
1554
|
+
n0,
|
|
1555
|
+
_UW,
|
|
1556
|
+
{
|
|
1557
|
+
[_ht]: ["POST", "/migrationworkflow/{id}", 200],
|
|
1558
|
+
},
|
|
1559
|
+
() => UpdateMigrationWorkflowRequest,
|
|
1560
|
+
() => UpdateMigrationWorkflowResponse,
|
|
1561
|
+
];
|
|
1562
|
+
var UpdateWorkflowStep = [
|
|
1563
|
+
9,
|
|
1564
|
+
n0,
|
|
1565
|
+
_UWS,
|
|
1566
|
+
{
|
|
1567
|
+
[_ht]: ["POST", "/workflowstep/{id}", 200],
|
|
1568
|
+
},
|
|
1569
|
+
() => UpdateWorkflowStepRequest,
|
|
1570
|
+
() => UpdateWorkflowStepResponse,
|
|
1571
|
+
];
|
|
1572
|
+
var UpdateWorkflowStepGroup = [
|
|
1573
|
+
9,
|
|
1574
|
+
n0,
|
|
1575
|
+
_UWSG,
|
|
1576
|
+
{
|
|
1577
|
+
[_ht]: ["POST", "/workflowstepgroup/{id}", 202],
|
|
1578
|
+
},
|
|
1579
|
+
() => UpdateWorkflowStepGroupRequest,
|
|
1580
|
+
() => UpdateWorkflowStepGroupResponse,
|
|
1581
|
+
];
|
|
1452
1582
|
|
|
1453
1583
|
class CreateTemplateCommand extends smithyClient.Command
|
|
1454
1584
|
.classBuilder()
|
|
1455
1585
|
.ep(commonParams)
|
|
1456
1586
|
.m(function (Command, cs, config, o) {
|
|
1457
|
-
return [
|
|
1458
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1459
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1460
|
-
];
|
|
1587
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1461
1588
|
})
|
|
1462
1589
|
.s("AWSMigrationHubOrchestrator", "CreateTemplate", {})
|
|
1463
1590
|
.n("MigrationHubOrchestratorClient", "CreateTemplateCommand")
|
|
1464
|
-
.
|
|
1465
|
-
.ser(se_CreateTemplateCommand)
|
|
1466
|
-
.de(de_CreateTemplateCommand)
|
|
1591
|
+
.sc(CreateTemplate)
|
|
1467
1592
|
.build() {
|
|
1468
1593
|
}
|
|
1469
1594
|
|
|
@@ -1471,16 +1596,11 @@ class CreateWorkflowCommand extends smithyClient.Command
|
|
|
1471
1596
|
.classBuilder()
|
|
1472
1597
|
.ep(commonParams)
|
|
1473
1598
|
.m(function (Command, cs, config, o) {
|
|
1474
|
-
return [
|
|
1475
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1476
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1477
|
-
];
|
|
1599
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1478
1600
|
})
|
|
1479
1601
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflow", {})
|
|
1480
1602
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowCommand")
|
|
1481
|
-
.
|
|
1482
|
-
.ser(se_CreateWorkflowCommand)
|
|
1483
|
-
.de(de_CreateWorkflowCommand)
|
|
1603
|
+
.sc(CreateWorkflow)
|
|
1484
1604
|
.build() {
|
|
1485
1605
|
}
|
|
1486
1606
|
|
|
@@ -1488,16 +1608,11 @@ class CreateWorkflowStepCommand extends smithyClient.Command
|
|
|
1488
1608
|
.classBuilder()
|
|
1489
1609
|
.ep(commonParams)
|
|
1490
1610
|
.m(function (Command, cs, config, o) {
|
|
1491
|
-
return [
|
|
1492
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1493
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1494
|
-
];
|
|
1611
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1495
1612
|
})
|
|
1496
1613
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflowStep", {})
|
|
1497
1614
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowStepCommand")
|
|
1498
|
-
.
|
|
1499
|
-
.ser(se_CreateWorkflowStepCommand)
|
|
1500
|
-
.de(de_CreateWorkflowStepCommand)
|
|
1615
|
+
.sc(CreateWorkflowStep)
|
|
1501
1616
|
.build() {
|
|
1502
1617
|
}
|
|
1503
1618
|
|
|
@@ -1505,16 +1620,11 @@ class CreateWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1505
1620
|
.classBuilder()
|
|
1506
1621
|
.ep(commonParams)
|
|
1507
1622
|
.m(function (Command, cs, config, o) {
|
|
1508
|
-
return [
|
|
1509
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1510
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1511
|
-
];
|
|
1623
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1512
1624
|
})
|
|
1513
1625
|
.s("AWSMigrationHubOrchestrator", "CreateWorkflowStepGroup", {})
|
|
1514
1626
|
.n("MigrationHubOrchestratorClient", "CreateWorkflowStepGroupCommand")
|
|
1515
|
-
.
|
|
1516
|
-
.ser(se_CreateWorkflowStepGroupCommand)
|
|
1517
|
-
.de(de_CreateWorkflowStepGroupCommand)
|
|
1627
|
+
.sc(CreateWorkflowStepGroup)
|
|
1518
1628
|
.build() {
|
|
1519
1629
|
}
|
|
1520
1630
|
|
|
@@ -1522,16 +1632,11 @@ class DeleteTemplateCommand extends smithyClient.Command
|
|
|
1522
1632
|
.classBuilder()
|
|
1523
1633
|
.ep(commonParams)
|
|
1524
1634
|
.m(function (Command, cs, config, o) {
|
|
1525
|
-
return [
|
|
1526
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1527
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1528
|
-
];
|
|
1635
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1529
1636
|
})
|
|
1530
1637
|
.s("AWSMigrationHubOrchestrator", "DeleteTemplate", {})
|
|
1531
1638
|
.n("MigrationHubOrchestratorClient", "DeleteTemplateCommand")
|
|
1532
|
-
.
|
|
1533
|
-
.ser(se_DeleteTemplateCommand)
|
|
1534
|
-
.de(de_DeleteTemplateCommand)
|
|
1639
|
+
.sc(DeleteTemplate)
|
|
1535
1640
|
.build() {
|
|
1536
1641
|
}
|
|
1537
1642
|
|
|
@@ -1539,16 +1644,11 @@ class DeleteWorkflowCommand extends smithyClient.Command
|
|
|
1539
1644
|
.classBuilder()
|
|
1540
1645
|
.ep(commonParams)
|
|
1541
1646
|
.m(function (Command, cs, config, o) {
|
|
1542
|
-
return [
|
|
1543
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1544
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1545
|
-
];
|
|
1647
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1546
1648
|
})
|
|
1547
1649
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflow", {})
|
|
1548
1650
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowCommand")
|
|
1549
|
-
.
|
|
1550
|
-
.ser(se_DeleteWorkflowCommand)
|
|
1551
|
-
.de(de_DeleteWorkflowCommand)
|
|
1651
|
+
.sc(DeleteWorkflow)
|
|
1552
1652
|
.build() {
|
|
1553
1653
|
}
|
|
1554
1654
|
|
|
@@ -1556,16 +1656,11 @@ class DeleteWorkflowStepCommand extends smithyClient.Command
|
|
|
1556
1656
|
.classBuilder()
|
|
1557
1657
|
.ep(commonParams)
|
|
1558
1658
|
.m(function (Command, cs, config, o) {
|
|
1559
|
-
return [
|
|
1560
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1561
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1562
|
-
];
|
|
1659
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1563
1660
|
})
|
|
1564
1661
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflowStep", {})
|
|
1565
1662
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowStepCommand")
|
|
1566
|
-
.
|
|
1567
|
-
.ser(se_DeleteWorkflowStepCommand)
|
|
1568
|
-
.de(de_DeleteWorkflowStepCommand)
|
|
1663
|
+
.sc(DeleteWorkflowStep)
|
|
1569
1664
|
.build() {
|
|
1570
1665
|
}
|
|
1571
1666
|
|
|
@@ -1573,16 +1668,11 @@ class DeleteWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1573
1668
|
.classBuilder()
|
|
1574
1669
|
.ep(commonParams)
|
|
1575
1670
|
.m(function (Command, cs, config, o) {
|
|
1576
|
-
return [
|
|
1577
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1578
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1579
|
-
];
|
|
1671
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1580
1672
|
})
|
|
1581
1673
|
.s("AWSMigrationHubOrchestrator", "DeleteWorkflowStepGroup", {})
|
|
1582
1674
|
.n("MigrationHubOrchestratorClient", "DeleteWorkflowStepGroupCommand")
|
|
1583
|
-
.
|
|
1584
|
-
.ser(se_DeleteWorkflowStepGroupCommand)
|
|
1585
|
-
.de(de_DeleteWorkflowStepGroupCommand)
|
|
1675
|
+
.sc(DeleteWorkflowStepGroup)
|
|
1586
1676
|
.build() {
|
|
1587
1677
|
}
|
|
1588
1678
|
|
|
@@ -1590,16 +1680,11 @@ class GetTemplateCommand extends smithyClient.Command
|
|
|
1590
1680
|
.classBuilder()
|
|
1591
1681
|
.ep(commonParams)
|
|
1592
1682
|
.m(function (Command, cs, config, o) {
|
|
1593
|
-
return [
|
|
1594
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1595
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1596
|
-
];
|
|
1683
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1597
1684
|
})
|
|
1598
1685
|
.s("AWSMigrationHubOrchestrator", "GetTemplate", {})
|
|
1599
1686
|
.n("MigrationHubOrchestratorClient", "GetTemplateCommand")
|
|
1600
|
-
.
|
|
1601
|
-
.ser(se_GetTemplateCommand)
|
|
1602
|
-
.de(de_GetTemplateCommand)
|
|
1687
|
+
.sc(GetTemplate)
|
|
1603
1688
|
.build() {
|
|
1604
1689
|
}
|
|
1605
1690
|
|
|
@@ -1607,16 +1692,11 @@ class GetTemplateStepCommand extends smithyClient.Command
|
|
|
1607
1692
|
.classBuilder()
|
|
1608
1693
|
.ep(commonParams)
|
|
1609
1694
|
.m(function (Command, cs, config, o) {
|
|
1610
|
-
return [
|
|
1611
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1612
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1613
|
-
];
|
|
1695
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1614
1696
|
})
|
|
1615
1697
|
.s("AWSMigrationHubOrchestrator", "GetTemplateStep", {})
|
|
1616
1698
|
.n("MigrationHubOrchestratorClient", "GetTemplateStepCommand")
|
|
1617
|
-
.
|
|
1618
|
-
.ser(se_GetTemplateStepCommand)
|
|
1619
|
-
.de(de_GetTemplateStepCommand)
|
|
1699
|
+
.sc(GetTemplateStep)
|
|
1620
1700
|
.build() {
|
|
1621
1701
|
}
|
|
1622
1702
|
|
|
@@ -1624,16 +1704,11 @@ class GetTemplateStepGroupCommand extends smithyClient.Command
|
|
|
1624
1704
|
.classBuilder()
|
|
1625
1705
|
.ep(commonParams)
|
|
1626
1706
|
.m(function (Command, cs, config, o) {
|
|
1627
|
-
return [
|
|
1628
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1629
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1630
|
-
];
|
|
1707
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1631
1708
|
})
|
|
1632
1709
|
.s("AWSMigrationHubOrchestrator", "GetTemplateStepGroup", {})
|
|
1633
1710
|
.n("MigrationHubOrchestratorClient", "GetTemplateStepGroupCommand")
|
|
1634
|
-
.
|
|
1635
|
-
.ser(se_GetTemplateStepGroupCommand)
|
|
1636
|
-
.de(de_GetTemplateStepGroupCommand)
|
|
1711
|
+
.sc(GetTemplateStepGroup)
|
|
1637
1712
|
.build() {
|
|
1638
1713
|
}
|
|
1639
1714
|
|
|
@@ -1641,16 +1716,11 @@ class GetWorkflowCommand extends smithyClient.Command
|
|
|
1641
1716
|
.classBuilder()
|
|
1642
1717
|
.ep(commonParams)
|
|
1643
1718
|
.m(function (Command, cs, config, o) {
|
|
1644
|
-
return [
|
|
1645
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1646
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1647
|
-
];
|
|
1719
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1648
1720
|
})
|
|
1649
1721
|
.s("AWSMigrationHubOrchestrator", "GetWorkflow", {})
|
|
1650
1722
|
.n("MigrationHubOrchestratorClient", "GetWorkflowCommand")
|
|
1651
|
-
.
|
|
1652
|
-
.ser(se_GetWorkflowCommand)
|
|
1653
|
-
.de(de_GetWorkflowCommand)
|
|
1723
|
+
.sc(GetWorkflow)
|
|
1654
1724
|
.build() {
|
|
1655
1725
|
}
|
|
1656
1726
|
|
|
@@ -1658,16 +1728,11 @@ class GetWorkflowStepCommand extends smithyClient.Command
|
|
|
1658
1728
|
.classBuilder()
|
|
1659
1729
|
.ep(commonParams)
|
|
1660
1730
|
.m(function (Command, cs, config, o) {
|
|
1661
|
-
return [
|
|
1662
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1663
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1664
|
-
];
|
|
1731
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1665
1732
|
})
|
|
1666
1733
|
.s("AWSMigrationHubOrchestrator", "GetWorkflowStep", {})
|
|
1667
1734
|
.n("MigrationHubOrchestratorClient", "GetWorkflowStepCommand")
|
|
1668
|
-
.
|
|
1669
|
-
.ser(se_GetWorkflowStepCommand)
|
|
1670
|
-
.de(de_GetWorkflowStepCommand)
|
|
1735
|
+
.sc(GetWorkflowStep)
|
|
1671
1736
|
.build() {
|
|
1672
1737
|
}
|
|
1673
1738
|
|
|
@@ -1675,16 +1740,11 @@ class GetWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1675
1740
|
.classBuilder()
|
|
1676
1741
|
.ep(commonParams)
|
|
1677
1742
|
.m(function (Command, cs, config, o) {
|
|
1678
|
-
return [
|
|
1679
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1680
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1681
|
-
];
|
|
1743
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1682
1744
|
})
|
|
1683
1745
|
.s("AWSMigrationHubOrchestrator", "GetWorkflowStepGroup", {})
|
|
1684
1746
|
.n("MigrationHubOrchestratorClient", "GetWorkflowStepGroupCommand")
|
|
1685
|
-
.
|
|
1686
|
-
.ser(se_GetWorkflowStepGroupCommand)
|
|
1687
|
-
.de(de_GetWorkflowStepGroupCommand)
|
|
1747
|
+
.sc(GetWorkflowStepGroup)
|
|
1688
1748
|
.build() {
|
|
1689
1749
|
}
|
|
1690
1750
|
|
|
@@ -1692,16 +1752,11 @@ class ListPluginsCommand extends smithyClient.Command
|
|
|
1692
1752
|
.classBuilder()
|
|
1693
1753
|
.ep(commonParams)
|
|
1694
1754
|
.m(function (Command, cs, config, o) {
|
|
1695
|
-
return [
|
|
1696
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1697
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1698
|
-
];
|
|
1755
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1699
1756
|
})
|
|
1700
1757
|
.s("AWSMigrationHubOrchestrator", "ListPlugins", {})
|
|
1701
1758
|
.n("MigrationHubOrchestratorClient", "ListPluginsCommand")
|
|
1702
|
-
.
|
|
1703
|
-
.ser(se_ListPluginsCommand)
|
|
1704
|
-
.de(de_ListPluginsCommand)
|
|
1759
|
+
.sc(ListPlugins)
|
|
1705
1760
|
.build() {
|
|
1706
1761
|
}
|
|
1707
1762
|
|
|
@@ -1709,16 +1764,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1709
1764
|
.classBuilder()
|
|
1710
1765
|
.ep(commonParams)
|
|
1711
1766
|
.m(function (Command, cs, config, o) {
|
|
1712
|
-
return [
|
|
1713
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1714
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1715
|
-
];
|
|
1767
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1716
1768
|
})
|
|
1717
1769
|
.s("AWSMigrationHubOrchestrator", "ListTagsForResource", {})
|
|
1718
1770
|
.n("MigrationHubOrchestratorClient", "ListTagsForResourceCommand")
|
|
1719
|
-
.
|
|
1720
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1721
|
-
.de(de_ListTagsForResourceCommand)
|
|
1771
|
+
.sc(ListTagsForResource)
|
|
1722
1772
|
.build() {
|
|
1723
1773
|
}
|
|
1724
1774
|
|
|
@@ -1726,16 +1776,11 @@ class ListTemplatesCommand extends smithyClient.Command
|
|
|
1726
1776
|
.classBuilder()
|
|
1727
1777
|
.ep(commonParams)
|
|
1728
1778
|
.m(function (Command, cs, config, o) {
|
|
1729
|
-
return [
|
|
1730
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1731
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1732
|
-
];
|
|
1779
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1733
1780
|
})
|
|
1734
1781
|
.s("AWSMigrationHubOrchestrator", "ListTemplates", {})
|
|
1735
1782
|
.n("MigrationHubOrchestratorClient", "ListTemplatesCommand")
|
|
1736
|
-
.
|
|
1737
|
-
.ser(se_ListTemplatesCommand)
|
|
1738
|
-
.de(de_ListTemplatesCommand)
|
|
1783
|
+
.sc(ListTemplates)
|
|
1739
1784
|
.build() {
|
|
1740
1785
|
}
|
|
1741
1786
|
|
|
@@ -1743,16 +1788,11 @@ class ListTemplateStepGroupsCommand extends smithyClient.Command
|
|
|
1743
1788
|
.classBuilder()
|
|
1744
1789
|
.ep(commonParams)
|
|
1745
1790
|
.m(function (Command, cs, config, o) {
|
|
1746
|
-
return [
|
|
1747
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1748
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1749
|
-
];
|
|
1791
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1750
1792
|
})
|
|
1751
1793
|
.s("AWSMigrationHubOrchestrator", "ListTemplateStepGroups", {})
|
|
1752
1794
|
.n("MigrationHubOrchestratorClient", "ListTemplateStepGroupsCommand")
|
|
1753
|
-
.
|
|
1754
|
-
.ser(se_ListTemplateStepGroupsCommand)
|
|
1755
|
-
.de(de_ListTemplateStepGroupsCommand)
|
|
1795
|
+
.sc(ListTemplateStepGroups)
|
|
1756
1796
|
.build() {
|
|
1757
1797
|
}
|
|
1758
1798
|
|
|
@@ -1760,16 +1800,11 @@ class ListTemplateStepsCommand extends smithyClient.Command
|
|
|
1760
1800
|
.classBuilder()
|
|
1761
1801
|
.ep(commonParams)
|
|
1762
1802
|
.m(function (Command, cs, config, o) {
|
|
1763
|
-
return [
|
|
1764
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1765
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1766
|
-
];
|
|
1803
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1767
1804
|
})
|
|
1768
1805
|
.s("AWSMigrationHubOrchestrator", "ListTemplateSteps", {})
|
|
1769
1806
|
.n("MigrationHubOrchestratorClient", "ListTemplateStepsCommand")
|
|
1770
|
-
.
|
|
1771
|
-
.ser(se_ListTemplateStepsCommand)
|
|
1772
|
-
.de(de_ListTemplateStepsCommand)
|
|
1807
|
+
.sc(ListTemplateSteps)
|
|
1773
1808
|
.build() {
|
|
1774
1809
|
}
|
|
1775
1810
|
|
|
@@ -1777,16 +1812,11 @@ class ListWorkflowsCommand extends smithyClient.Command
|
|
|
1777
1812
|
.classBuilder()
|
|
1778
1813
|
.ep(commonParams)
|
|
1779
1814
|
.m(function (Command, cs, config, o) {
|
|
1780
|
-
return [
|
|
1781
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1782
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1783
|
-
];
|
|
1815
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1784
1816
|
})
|
|
1785
1817
|
.s("AWSMigrationHubOrchestrator", "ListWorkflows", {})
|
|
1786
1818
|
.n("MigrationHubOrchestratorClient", "ListWorkflowsCommand")
|
|
1787
|
-
.
|
|
1788
|
-
.ser(se_ListWorkflowsCommand)
|
|
1789
|
-
.de(de_ListWorkflowsCommand)
|
|
1819
|
+
.sc(ListWorkflows)
|
|
1790
1820
|
.build() {
|
|
1791
1821
|
}
|
|
1792
1822
|
|
|
@@ -1794,16 +1824,11 @@ class ListWorkflowStepGroupsCommand extends smithyClient.Command
|
|
|
1794
1824
|
.classBuilder()
|
|
1795
1825
|
.ep(commonParams)
|
|
1796
1826
|
.m(function (Command, cs, config, o) {
|
|
1797
|
-
return [
|
|
1798
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1799
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1800
|
-
];
|
|
1827
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1801
1828
|
})
|
|
1802
1829
|
.s("AWSMigrationHubOrchestrator", "ListWorkflowStepGroups", {})
|
|
1803
1830
|
.n("MigrationHubOrchestratorClient", "ListWorkflowStepGroupsCommand")
|
|
1804
|
-
.
|
|
1805
|
-
.ser(se_ListWorkflowStepGroupsCommand)
|
|
1806
|
-
.de(de_ListWorkflowStepGroupsCommand)
|
|
1831
|
+
.sc(ListWorkflowStepGroups)
|
|
1807
1832
|
.build() {
|
|
1808
1833
|
}
|
|
1809
1834
|
|
|
@@ -1811,16 +1836,11 @@ class ListWorkflowStepsCommand extends smithyClient.Command
|
|
|
1811
1836
|
.classBuilder()
|
|
1812
1837
|
.ep(commonParams)
|
|
1813
1838
|
.m(function (Command, cs, config, o) {
|
|
1814
|
-
return [
|
|
1815
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1816
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1817
|
-
];
|
|
1839
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1818
1840
|
})
|
|
1819
1841
|
.s("AWSMigrationHubOrchestrator", "ListWorkflowSteps", {})
|
|
1820
1842
|
.n("MigrationHubOrchestratorClient", "ListWorkflowStepsCommand")
|
|
1821
|
-
.
|
|
1822
|
-
.ser(se_ListWorkflowStepsCommand)
|
|
1823
|
-
.de(de_ListWorkflowStepsCommand)
|
|
1843
|
+
.sc(ListWorkflowSteps)
|
|
1824
1844
|
.build() {
|
|
1825
1845
|
}
|
|
1826
1846
|
|
|
@@ -1828,16 +1848,11 @@ class RetryWorkflowStepCommand extends smithyClient.Command
|
|
|
1828
1848
|
.classBuilder()
|
|
1829
1849
|
.ep(commonParams)
|
|
1830
1850
|
.m(function (Command, cs, config, o) {
|
|
1831
|
-
return [
|
|
1832
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1833
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1834
|
-
];
|
|
1851
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1835
1852
|
})
|
|
1836
1853
|
.s("AWSMigrationHubOrchestrator", "RetryWorkflowStep", {})
|
|
1837
1854
|
.n("MigrationHubOrchestratorClient", "RetryWorkflowStepCommand")
|
|
1838
|
-
.
|
|
1839
|
-
.ser(se_RetryWorkflowStepCommand)
|
|
1840
|
-
.de(de_RetryWorkflowStepCommand)
|
|
1855
|
+
.sc(RetryWorkflowStep)
|
|
1841
1856
|
.build() {
|
|
1842
1857
|
}
|
|
1843
1858
|
|
|
@@ -1845,16 +1860,11 @@ class StartWorkflowCommand extends smithyClient.Command
|
|
|
1845
1860
|
.classBuilder()
|
|
1846
1861
|
.ep(commonParams)
|
|
1847
1862
|
.m(function (Command, cs, config, o) {
|
|
1848
|
-
return [
|
|
1849
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1850
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1851
|
-
];
|
|
1863
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1852
1864
|
})
|
|
1853
1865
|
.s("AWSMigrationHubOrchestrator", "StartWorkflow", {})
|
|
1854
1866
|
.n("MigrationHubOrchestratorClient", "StartWorkflowCommand")
|
|
1855
|
-
.
|
|
1856
|
-
.ser(se_StartWorkflowCommand)
|
|
1857
|
-
.de(de_StartWorkflowCommand)
|
|
1867
|
+
.sc(StartWorkflow)
|
|
1858
1868
|
.build() {
|
|
1859
1869
|
}
|
|
1860
1870
|
|
|
@@ -1862,16 +1872,11 @@ class StopWorkflowCommand extends smithyClient.Command
|
|
|
1862
1872
|
.classBuilder()
|
|
1863
1873
|
.ep(commonParams)
|
|
1864
1874
|
.m(function (Command, cs, config, o) {
|
|
1865
|
-
return [
|
|
1866
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1867
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1868
|
-
];
|
|
1875
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1869
1876
|
})
|
|
1870
1877
|
.s("AWSMigrationHubOrchestrator", "StopWorkflow", {})
|
|
1871
1878
|
.n("MigrationHubOrchestratorClient", "StopWorkflowCommand")
|
|
1872
|
-
.
|
|
1873
|
-
.ser(se_StopWorkflowCommand)
|
|
1874
|
-
.de(de_StopWorkflowCommand)
|
|
1879
|
+
.sc(StopWorkflow)
|
|
1875
1880
|
.build() {
|
|
1876
1881
|
}
|
|
1877
1882
|
|
|
@@ -1879,16 +1884,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1879
1884
|
.classBuilder()
|
|
1880
1885
|
.ep(commonParams)
|
|
1881
1886
|
.m(function (Command, cs, config, o) {
|
|
1882
|
-
return [
|
|
1883
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1884
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1885
|
-
];
|
|
1887
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1886
1888
|
})
|
|
1887
1889
|
.s("AWSMigrationHubOrchestrator", "TagResource", {})
|
|
1888
1890
|
.n("MigrationHubOrchestratorClient", "TagResourceCommand")
|
|
1889
|
-
.
|
|
1890
|
-
.ser(se_TagResourceCommand)
|
|
1891
|
-
.de(de_TagResourceCommand)
|
|
1891
|
+
.sc(TagResource)
|
|
1892
1892
|
.build() {
|
|
1893
1893
|
}
|
|
1894
1894
|
|
|
@@ -1896,16 +1896,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1896
1896
|
.classBuilder()
|
|
1897
1897
|
.ep(commonParams)
|
|
1898
1898
|
.m(function (Command, cs, config, o) {
|
|
1899
|
-
return [
|
|
1900
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1901
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1902
|
-
];
|
|
1899
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1903
1900
|
})
|
|
1904
1901
|
.s("AWSMigrationHubOrchestrator", "UntagResource", {})
|
|
1905
1902
|
.n("MigrationHubOrchestratorClient", "UntagResourceCommand")
|
|
1906
|
-
.
|
|
1907
|
-
.ser(se_UntagResourceCommand)
|
|
1908
|
-
.de(de_UntagResourceCommand)
|
|
1903
|
+
.sc(UntagResource)
|
|
1909
1904
|
.build() {
|
|
1910
1905
|
}
|
|
1911
1906
|
|
|
@@ -1913,16 +1908,11 @@ class UpdateTemplateCommand extends smithyClient.Command
|
|
|
1913
1908
|
.classBuilder()
|
|
1914
1909
|
.ep(commonParams)
|
|
1915
1910
|
.m(function (Command, cs, config, o) {
|
|
1916
|
-
return [
|
|
1917
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1918
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1919
|
-
];
|
|
1911
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1920
1912
|
})
|
|
1921
1913
|
.s("AWSMigrationHubOrchestrator", "UpdateTemplate", {})
|
|
1922
1914
|
.n("MigrationHubOrchestratorClient", "UpdateTemplateCommand")
|
|
1923
|
-
.
|
|
1924
|
-
.ser(se_UpdateTemplateCommand)
|
|
1925
|
-
.de(de_UpdateTemplateCommand)
|
|
1915
|
+
.sc(UpdateTemplate)
|
|
1926
1916
|
.build() {
|
|
1927
1917
|
}
|
|
1928
1918
|
|
|
@@ -1930,16 +1920,11 @@ class UpdateWorkflowCommand extends smithyClient.Command
|
|
|
1930
1920
|
.classBuilder()
|
|
1931
1921
|
.ep(commonParams)
|
|
1932
1922
|
.m(function (Command, cs, config, o) {
|
|
1933
|
-
return [
|
|
1934
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1935
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1936
|
-
];
|
|
1923
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1937
1924
|
})
|
|
1938
1925
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflow", {})
|
|
1939
1926
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowCommand")
|
|
1940
|
-
.
|
|
1941
|
-
.ser(se_UpdateWorkflowCommand)
|
|
1942
|
-
.de(de_UpdateWorkflowCommand)
|
|
1927
|
+
.sc(UpdateWorkflow)
|
|
1943
1928
|
.build() {
|
|
1944
1929
|
}
|
|
1945
1930
|
|
|
@@ -1947,16 +1932,11 @@ class UpdateWorkflowStepCommand extends smithyClient.Command
|
|
|
1947
1932
|
.classBuilder()
|
|
1948
1933
|
.ep(commonParams)
|
|
1949
1934
|
.m(function (Command, cs, config, o) {
|
|
1950
|
-
return [
|
|
1951
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1952
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1953
|
-
];
|
|
1935
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1954
1936
|
})
|
|
1955
1937
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflowStep", {})
|
|
1956
1938
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowStepCommand")
|
|
1957
|
-
.
|
|
1958
|
-
.ser(se_UpdateWorkflowStepCommand)
|
|
1959
|
-
.de(de_UpdateWorkflowStepCommand)
|
|
1939
|
+
.sc(UpdateWorkflowStep)
|
|
1960
1940
|
.build() {
|
|
1961
1941
|
}
|
|
1962
1942
|
|
|
@@ -1964,16 +1944,11 @@ class UpdateWorkflowStepGroupCommand extends smithyClient.Command
|
|
|
1964
1944
|
.classBuilder()
|
|
1965
1945
|
.ep(commonParams)
|
|
1966
1946
|
.m(function (Command, cs, config, o) {
|
|
1967
|
-
return [
|
|
1968
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1969
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1970
|
-
];
|
|
1947
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1971
1948
|
})
|
|
1972
1949
|
.s("AWSMigrationHubOrchestrator", "UpdateWorkflowStepGroup", {})
|
|
1973
1950
|
.n("MigrationHubOrchestratorClient", "UpdateWorkflowStepGroupCommand")
|
|
1974
|
-
.
|
|
1975
|
-
.ser(se_UpdateWorkflowStepGroupCommand)
|
|
1976
|
-
.de(de_UpdateWorkflowStepGroupCommand)
|
|
1951
|
+
.sc(UpdateWorkflowStepGroup)
|
|
1977
1952
|
.build() {
|
|
1978
1953
|
}
|
|
1979
1954
|
|
|
@@ -2036,10 +2011,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2036
2011
|
enumerable: true,
|
|
2037
2012
|
get: function () { return smithyClient.Client; }
|
|
2038
2013
|
});
|
|
2039
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2040
|
-
exports.ConflictException = ConflictException;
|
|
2041
|
-
exports.CreateMigrationWorkflowRequestFilterSensitiveLog = CreateMigrationWorkflowRequestFilterSensitiveLog;
|
|
2042
|
-
exports.CreateMigrationWorkflowResponseFilterSensitiveLog = CreateMigrationWorkflowResponseFilterSensitiveLog;
|
|
2014
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2015
|
+
exports.ConflictException = ConflictException$1;
|
|
2043
2016
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
2044
2017
|
exports.CreateWorkflowCommand = CreateWorkflowCommand;
|
|
2045
2018
|
exports.CreateWorkflowStepCommand = CreateWorkflowStepCommand;
|
|
@@ -2049,14 +2022,13 @@ exports.DeleteTemplateCommand = DeleteTemplateCommand;
|
|
|
2049
2022
|
exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
|
|
2050
2023
|
exports.DeleteWorkflowStepCommand = DeleteWorkflowStepCommand;
|
|
2051
2024
|
exports.DeleteWorkflowStepGroupCommand = DeleteWorkflowStepGroupCommand;
|
|
2052
|
-
exports.GetMigrationWorkflowResponseFilterSensitiveLog = GetMigrationWorkflowResponseFilterSensitiveLog;
|
|
2053
2025
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
2054
2026
|
exports.GetTemplateStepCommand = GetTemplateStepCommand;
|
|
2055
2027
|
exports.GetTemplateStepGroupCommand = GetTemplateStepGroupCommand;
|
|
2056
2028
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
2057
2029
|
exports.GetWorkflowStepCommand = GetWorkflowStepCommand;
|
|
2058
2030
|
exports.GetWorkflowStepGroupCommand = GetWorkflowStepGroupCommand;
|
|
2059
|
-
exports.InternalServerException = InternalServerException;
|
|
2031
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2060
2032
|
exports.ListPluginsCommand = ListPluginsCommand;
|
|
2061
2033
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2062
2034
|
exports.ListTemplateStepGroupsCommand = ListTemplateStepGroupsCommand;
|
|
@@ -2067,11 +2039,11 @@ exports.ListWorkflowStepsCommand = ListWorkflowStepsCommand;
|
|
|
2067
2039
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
2068
2040
|
exports.MigrationHubOrchestrator = MigrationHubOrchestrator;
|
|
2069
2041
|
exports.MigrationHubOrchestratorClient = MigrationHubOrchestratorClient;
|
|
2070
|
-
exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException;
|
|
2042
|
+
exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException$1;
|
|
2071
2043
|
exports.MigrationWorkflowStatusEnum = MigrationWorkflowStatusEnum;
|
|
2072
2044
|
exports.Owner = Owner;
|
|
2073
2045
|
exports.PluginHealth = PluginHealth;
|
|
2074
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2046
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2075
2047
|
exports.RetryWorkflowStepCommand = RetryWorkflowStepCommand;
|
|
2076
2048
|
exports.RunEnvironment = RunEnvironment;
|
|
2077
2049
|
exports.StartWorkflowCommand = StartWorkflowCommand;
|
|
@@ -2082,15 +2054,13 @@ exports.StopWorkflowCommand = StopWorkflowCommand;
|
|
|
2082
2054
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2083
2055
|
exports.TargetType = TargetType;
|
|
2084
2056
|
exports.TemplateStatus = TemplateStatus;
|
|
2085
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2057
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2086
2058
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2087
|
-
exports.UpdateMigrationWorkflowRequestFilterSensitiveLog = UpdateMigrationWorkflowRequestFilterSensitiveLog;
|
|
2088
|
-
exports.UpdateMigrationWorkflowResponseFilterSensitiveLog = UpdateMigrationWorkflowResponseFilterSensitiveLog;
|
|
2089
2059
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
2090
2060
|
exports.UpdateWorkflowCommand = UpdateWorkflowCommand;
|
|
2091
2061
|
exports.UpdateWorkflowStepCommand = UpdateWorkflowStepCommand;
|
|
2092
2062
|
exports.UpdateWorkflowStepGroupCommand = UpdateWorkflowStepGroupCommand;
|
|
2093
|
-
exports.ValidationException = ValidationException;
|
|
2063
|
+
exports.ValidationException = ValidationException$1;
|
|
2094
2064
|
exports.paginateListPlugins = paginateListPlugins;
|
|
2095
2065
|
exports.paginateListTemplateStepGroups = paginateListTemplateStepGroups;
|
|
2096
2066
|
exports.paginateListTemplateSteps = paginateListTemplateSteps;
|