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