@aws-sdk/client-migrationhuborchestrator 3.1075.0 → 3.1076.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultMigrationHubOrchestratorHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateTemplate$, CreateWorkflow$, CreateWorkflowStep$, CreateWorkflowStepGroup$, DeleteTemplate$, DeleteWorkflow$, DeleteWorkflowStep$, DeleteWorkflowStepGroup$, GetTemplate$, GetTemplateStep$, GetTemplateStepGroup$, GetWorkflow$, GetWorkflowStep$, GetWorkflowStepGroup$, ListPlugins$, ListTagsForResource$, ListTemplates$, ListTemplateStepGroups$, ListTemplateSteps$, ListWorkflows$, ListWorkflowStepGroups$, ListWorkflowSteps$, RetryWorkflowStep$, StartWorkflow$, StopWorkflow$, TagResource$, UntagResource$, UpdateTemplate$, UpdateWorkflow$, UpdateWorkflowStep$, UpdateWorkflowStepGroup$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { MigrationHubOrchestratorServiceException } = require("./models/MigrationHubOrchestratorServiceException");
18
- exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultMigrationHubOrchestratorHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "migrationhub-orchestrator",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultMigrationHubOrchestratorHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1009 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://migrationhub-orchestrator-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://migrationhub-orchestrator-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://migrationhub-orchestrator.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://migrationhub-orchestrator.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class MigrationHubOrchestratorServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, MigrationHubOrchestratorServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends MigrationHubOrchestratorServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ $retryable = {};
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class ResourceNotFoundException extends MigrationHubOrchestratorServiceException {
153
+ name = "ResourceNotFoundException";
154
+ $fault = "client";
155
+ constructor(opts) {
156
+ super({
157
+ name: "ResourceNotFoundException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
162
+ }
163
+ }
164
+ class ValidationException extends MigrationHubOrchestratorServiceException {
165
+ name = "ValidationException";
166
+ $fault = "client";
167
+ $retryable = {};
168
+ constructor(opts) {
169
+ super({
170
+ name: "ValidationException",
171
+ $fault: "client",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, ValidationException.prototype);
175
+ }
176
+ }
177
+ class InternalServerException extends MigrationHubOrchestratorServiceException {
178
+ name = "InternalServerException";
179
+ $fault = "server";
180
+ constructor(opts) {
181
+ super({
182
+ name: "InternalServerException",
183
+ $fault: "server",
184
+ ...opts,
185
+ });
186
+ Object.setPrototypeOf(this, InternalServerException.prototype);
187
+ }
188
+ }
189
+ class ThrottlingException extends MigrationHubOrchestratorServiceException {
190
+ name = "ThrottlingException";
191
+ $fault = "client";
192
+ constructor(opts) {
193
+ super({
194
+ name: "ThrottlingException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
199
+ }
200
+ }
201
+ class ConflictException extends MigrationHubOrchestratorServiceException {
202
+ name = "ConflictException";
203
+ $fault = "client";
204
+ $retryable = {};
205
+ constructor(opts) {
206
+ super({
207
+ name: "ConflictException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, ConflictException.prototype);
212
+ }
213
+ }
214
+
215
+ const _ADE = "AccessDeniedException";
216
+ const _CE = "ConflictException";
217
+ const _CMWR = "CreateMigrationWorkflowRequest";
218
+ const _CMWRr = "CreateMigrationWorkflowResponse";
219
+ const _CT = "CreateTemplate";
220
+ const _CTR = "CreateTemplateRequest";
221
+ const _CTRr = "CreateTemplateResponse";
222
+ const _CW = "CreateWorkflow";
223
+ const _CWS = "CreateWorkflowStep";
224
+ const _CWSG = "CreateWorkflowStepGroup";
225
+ const _CWSGR = "CreateWorkflowStepGroupRequest";
226
+ const _CWSGRr = "CreateWorkflowStepGroupResponse";
227
+ const _CWSR = "CreateWorkflowStepRequest";
228
+ const _CWSRr = "CreateWorkflowStepResponse";
229
+ const _DMWR = "DeleteMigrationWorkflowRequest";
230
+ const _DMWRe = "DeleteMigrationWorkflowResponse";
231
+ const _DT = "DeleteTemplate";
232
+ const _DTR = "DeleteTemplateRequest";
233
+ const _DTRe = "DeleteTemplateResponse";
234
+ const _DW = "DeleteWorkflow";
235
+ const _DWS = "DeleteWorkflowStep";
236
+ const _DWSG = "DeleteWorkflowStepGroup";
237
+ const _DWSGR = "DeleteWorkflowStepGroupRequest";
238
+ const _DWSGRe = "DeleteWorkflowStepGroupResponse";
239
+ const _DWSR = "DeleteWorkflowStepRequest";
240
+ const _DWSRe = "DeleteWorkflowStepResponse";
241
+ const _GMWR = "GetMigrationWorkflowRequest";
242
+ const _GMWRe = "GetMigrationWorkflowResponse";
243
+ const _GMWTR = "GetMigrationWorkflowTemplateRequest";
244
+ const _GMWTRe = "GetMigrationWorkflowTemplateResponse";
245
+ const _GT = "GetTemplate";
246
+ const _GTS = "GetTemplateStep";
247
+ const _GTSG = "GetTemplateStepGroup";
248
+ const _GTSGR = "GetTemplateStepGroupRequest";
249
+ const _GTSGRe = "GetTemplateStepGroupResponse";
250
+ const _GTSR = "GetTemplateStepRequest";
251
+ const _GTSRe = "GetTemplateStepResponse";
252
+ const _GW = "GetWorkflow";
253
+ const _GWS = "GetWorkflowStep";
254
+ const _GWSG = "GetWorkflowStepGroup";
255
+ const _GWSGR = "GetWorkflowStepGroupRequest";
256
+ const _GWSGRe = "GetWorkflowStepGroupResponse";
257
+ const _GWSR = "GetWorkflowStepRequest";
258
+ const _GWSRe = "GetWorkflowStepResponse";
259
+ const _ISE = "InternalServerException";
260
+ const _LMWR = "ListMigrationWorkflowsRequest";
261
+ const _LMWRi = "ListMigrationWorkflowsResponse";
262
+ const _LMWTR = "ListMigrationWorkflowTemplatesRequest";
263
+ const _LMWTRi = "ListMigrationWorkflowTemplatesResponse";
264
+ const _LP = "ListPlugins";
265
+ const _LPR = "ListPluginsRequest";
266
+ const _LPRi = "ListPluginsResponse";
267
+ const _LT = "ListTemplates";
268
+ const _LTFR = "ListTagsForResource";
269
+ const _LTFRR = "ListTagsForResourceRequest";
270
+ const _LTFRRi = "ListTagsForResourceResponse";
271
+ const _LTS = "ListTemplateSteps";
272
+ const _LTSG = "ListTemplateStepGroups";
273
+ const _LTSGR = "ListTemplateStepGroupsRequest";
274
+ const _LTSGRi = "ListTemplateStepGroupsResponse";
275
+ const _LTSR = "ListTemplateStepsRequest";
276
+ const _LTSRi = "ListTemplateStepsResponse";
277
+ const _LW = "ListWorkflows";
278
+ const _LWS = "ListWorkflowSteps";
279
+ const _LWSG = "ListWorkflowStepGroups";
280
+ const _LWSGR = "ListWorkflowStepGroupsRequest";
281
+ const _LWSGRi = "ListWorkflowStepGroupsResponse";
282
+ const _LWSR = "ListWorkflowStepsRequest";
283
+ const _LWSRi = "ListWorkflowStepsResponse";
284
+ const _MWS = "MigrationWorkflowSummary";
285
+ const _MWSL = "MigrationWorkflowSummaryList";
286
+ const _PC = "PlatformCommand";
287
+ const _PS = "PluginSummary";
288
+ const _PSK = "PlatformScriptKey";
289
+ const _PSl = "PluginSummaries";
290
+ const _RNFE = "ResourceNotFoundException";
291
+ const _RWS = "RetryWorkflowStep";
292
+ const _RWSR = "RetryWorkflowStepRequest";
293
+ const _RWSRe = "RetryWorkflowStepResponse";
294
+ const _SAC = "StepAutomationConfiguration";
295
+ const _SI = "StepInput";
296
+ const _SIP = "StepInputParameters";
297
+ const _SMWR = "StartMigrationWorkflowRequest";
298
+ const _SMWRt = "StartMigrationWorkflowResponse";
299
+ const _SMWRto = "StopMigrationWorkflowRequest";
300
+ const _SMWRtop = "StopMigrationWorkflowResponse";
301
+ const _SO = "StepOutput";
302
+ const _SOL = "StepOutputList";
303
+ const _SW = "StartWorkflow";
304
+ const _SWt = "StopWorkflow";
305
+ const _T = "Tool";
306
+ const _TE = "ThrottlingException";
307
+ const _TI = "TemplateInput";
308
+ const _TIL = "TemplateInputList";
309
+ const _TL = "ToolsList";
310
+ const _TR = "TagResource";
311
+ const _TRR = "TagResourceRequest";
312
+ const _TRRa = "TagResourceResponse";
313
+ const _TS = "TemplateSummary";
314
+ const _TSGS = "TemplateStepGroupSummary";
315
+ const _TSGSL = "TemplateStepGroupSummaryList";
316
+ const _TSL = "TemplateSummaryList";
317
+ const _TSS = "TemplateStepSummary";
318
+ const _TSSL = "TemplateStepSummaryList";
319
+ const _TSe = "TemplateSource";
320
+ const _UMWR = "UpdateMigrationWorkflowRequest";
321
+ const _UMWRp = "UpdateMigrationWorkflowResponse";
322
+ const _UR = "UntagResource";
323
+ const _URR = "UntagResourceRequest";
324
+ const _URRn = "UntagResourceResponse";
325
+ const _UT = "UpdateTemplate";
326
+ const _UTR = "UpdateTemplateRequest";
327
+ const _UTRp = "UpdateTemplateResponse";
328
+ const _UW = "UpdateWorkflow";
329
+ const _UWS = "UpdateWorkflowStep";
330
+ const _UWSG = "UpdateWorkflowStepGroup";
331
+ const _UWSGR = "UpdateWorkflowStepGroupRequest";
332
+ const _UWSGRp = "UpdateWorkflowStepGroupResponse";
333
+ const _UWSR = "UpdateWorkflowStepRequest";
334
+ const _UWSRp = "UpdateWorkflowStepResponse";
335
+ const _VE = "ValidationException";
336
+ const _WSAC = "WorkflowStepAutomationConfiguration";
337
+ const _WSGS = "WorkflowStepGroupSummary";
338
+ const _WSGSL = "WorkflowStepGroupsSummaryList";
339
+ const _WSO = "WorkflowStepOutput";
340
+ const _WSOL = "WorkflowStepOutputList";
341
+ const _WSOU = "WorkflowStepOutputUnion";
342
+ const _WSS = "WorkflowStepSummary";
343
+ const _WSSL = "WorkflowStepsSummaryList";
344
+ const _a = "arn";
345
+ const _aACI = "adsApplicationConfigurationId";
346
+ const _aACN = "adsApplicationConfigurationName";
347
+ const _aAN = "adsApplicationName";
348
+ const _aCI = "applicationConfigurationId";
349
+ const _c = "client";
350
+ const _cS = "completedSteps";
351
+ const _cT = "creationTime";
352
+ const _cTl = "clientToken";
353
+ const _co = "command";
354
+ const _d = "description";
355
+ const _dT = "dataType";
356
+ const _e = "error";
357
+ const _eT = "endTime";
358
+ const _h = "hostname";
359
+ const _hE = "httpError";
360
+ const _hQ = "httpQuery";
361
+ const _ht = "http";
362
+ const _i = "id";
363
+ const _iA = "ipAddress";
364
+ const _iN = "inputName";
365
+ const _iP = "inputParameters";
366
+ const _iV = "integerValue";
367
+ const _in = "inputs";
368
+ const _l = "linux";
369
+ const _lMT = "lastModifiedTime";
370
+ const _lOSV = "listOfStringsValue";
371
+ const _lOSVi = "listOfStringValue";
372
+ const _lST = "lastStartTime";
373
+ const _lSTa = "lastStopTime";
374
+ const _m = "message";
375
+ const _mOSV = "mapOfStringValue";
376
+ const _mR = "maxResults";
377
+ const _mWS = "migrationWorkflowSummary";
378
+ const _n = "name";
379
+ const _nOSC = "noOfSrvCompleted";
380
+ const _nOSF = "noOfSrvFailed";
381
+ const _nT = "nextToken";
382
+ const _ne = "next";
383
+ const _o = "outputs";
384
+ const _ow = "owner";
385
+ const _p = "previous";
386
+ const _pI = "pluginId";
387
+ const _pl = "plugins";
388
+ const _r = "required";
389
+ const _rA = "resourceArn";
390
+ const _rE = "runEnvironment";
391
+ const _rT = "registeredTime";
392
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhuborchestrator";
393
+ const _sAC = "stepAutomationConfiguration";
394
+ const _sAT = "stepActionType";
395
+ const _sGI = "stepGroupId";
396
+ const _sI = "stepId";
397
+ const _sL = "scriptLocation";
398
+ const _sLSB = "scriptLocationS3Bucket";
399
+ const _sLSK = "scriptLocationS3Key";
400
+ const _sM = "statusMessage";
401
+ const _sOL = "scriptOutputLocation";
402
+ const _sT = "stepTargets";
403
+ const _sTt = "stepTarget";
404
+ const _sV = "stringValue";
405
+ const _se = "server";
406
+ const _st = "status";
407
+ const _t = "tags";
408
+ const _tA = "templateArn";
409
+ const _tC = "templateClass";
410
+ const _tD = "templateDescription";
411
+ const _tI = "templateId";
412
+ const _tK = "tagKeys";
413
+ const _tN = "templateName";
414
+ const _tNOS = "totalNoOfSrv";
415
+ const _tS = "templateSource";
416
+ const _tSGS = "templateStepGroupSummary";
417
+ const _tSSL = "templateStepSummaryList";
418
+ const _tSe = "templateSummary";
419
+ const _tSo = "totalSteps";
420
+ const _tT = "targetType";
421
+ const _to = "tools";
422
+ const _u = "url";
423
+ const _v = "version";
424
+ const _va = "value";
425
+ const _w = "windows";
426
+ const _wB = "workflowBucket";
427
+ const _wI = "workflowInputs";
428
+ const _wIo = "workflowId";
429
+ const _wSAC = "workflowStepAutomationConfiguration";
430
+ const _wSGS = "workflowStepGroupsSummary";
431
+ const _wSS = "workflowStepsSummary";
432
+ const n0 = "com.amazonaws.migrationhuborchestrator";
433
+ const _s_registry = TypeRegistry.for(_s);
434
+ var MigrationHubOrchestratorServiceException$ = [-3, _s, "MigrationHubOrchestratorServiceException", 0, [], []];
435
+ _s_registry.registerError(MigrationHubOrchestratorServiceException$, MigrationHubOrchestratorServiceException);
436
+ const n0_registry = TypeRegistry.for(n0);
437
+ var AccessDeniedException$ = [-3, n0, _ADE,
438
+ { [_e]: _c, [_hE]: 403 },
439
+ [_m],
440
+ [0], 1
441
+ ];
442
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
443
+ var ConflictException$ = [-3, n0, _CE,
444
+ { [_e]: _c, [_hE]: 409 },
445
+ [_m],
446
+ [0], 1
447
+ ];
448
+ n0_registry.registerError(ConflictException$, ConflictException);
449
+ var InternalServerException$ = [-3, n0, _ISE,
450
+ { [_e]: _se, [_hE]: 500 },
451
+ [_m],
452
+ [0], 1
453
+ ];
454
+ n0_registry.registerError(InternalServerException$, InternalServerException);
455
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
456
+ { [_e]: _c, [_hE]: 404 },
457
+ [_m],
458
+ [0], 1
459
+ ];
460
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
461
+ var ThrottlingException$ = [-3, n0, _TE,
462
+ { [_e]: _c, [_hE]: 429 },
463
+ [_m],
464
+ [0], 1
465
+ ];
466
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
467
+ var ValidationException$ = [-3, n0, _VE,
468
+ { [_e]: _c, [_hE]: 400 },
469
+ [_m],
470
+ [0], 1
471
+ ];
472
+ n0_registry.registerError(ValidationException$, ValidationException);
473
+ const errorTypeRegistries = [
474
+ _s_registry,
475
+ n0_registry,
476
+ ];
477
+ var CreateMigrationWorkflowRequest$ = [3, n0, _CMWR,
478
+ 0,
479
+ [_n, _tI, _iP, _d, _aCI, _sT, _t],
480
+ [0, 0, [() => StepInputParameters, 0], 0, 0, 64 | 0, 128 | 0], 3
481
+ ];
482
+ var CreateMigrationWorkflowResponse$ = [3, n0, _CMWRr,
483
+ 0,
484
+ [_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _st, _cT, _t],
485
+ [0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 128 | 0]
486
+ ];
487
+ var CreateTemplateRequest$ = [3, n0, _CTR,
488
+ 0,
489
+ [_tN, _tS, _tD, _cTl, _t],
490
+ [0, () => TemplateSource$, 0, [0, 4], 128 | 0], 2
491
+ ];
492
+ var CreateTemplateResponse$ = [3, n0, _CTRr,
493
+ 0,
494
+ [_tI, _tA, _t],
495
+ [0, 0, 128 | 0]
496
+ ];
497
+ var CreateWorkflowStepGroupRequest$ = [3, n0, _CWSGR,
498
+ 0,
499
+ [_wIo, _n, _d, _ne, _p],
500
+ [0, 0, 0, 64 | 0, 64 | 0], 2
501
+ ];
502
+ var CreateWorkflowStepGroupResponse$ = [3, n0, _CWSGRr,
503
+ 0,
504
+ [_wIo, _n, _i, _d, _to, _ne, _p, _cT],
505
+ [0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4]
506
+ ];
507
+ var CreateWorkflowStepRequest$ = [3, n0, _CWSR,
508
+ 0,
509
+ [_n, _sGI, _wIo, _sAT, _d, _wSAC, _sTt, _o, _p, _ne],
510
+ [0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0], 4
511
+ ];
512
+ var CreateWorkflowStepResponse$ = [3, n0, _CWSRr,
513
+ 0,
514
+ [_i, _sGI, _wIo, _n],
515
+ [0, 0, 0, 0]
516
+ ];
517
+ var DeleteMigrationWorkflowRequest$ = [3, n0, _DMWR,
518
+ 0,
519
+ [_i],
520
+ [[0, 1]], 1
521
+ ];
522
+ var DeleteMigrationWorkflowResponse$ = [3, n0, _DMWRe,
523
+ 0,
524
+ [_i, _a, _st],
525
+ [0, 0, 0]
526
+ ];
527
+ var DeleteTemplateRequest$ = [3, n0, _DTR,
528
+ 0,
529
+ [_i],
530
+ [[0, 1]], 1
531
+ ];
532
+ var DeleteTemplateResponse$ = [3, n0, _DTRe,
533
+ 0,
534
+ [],
535
+ []
536
+ ];
537
+ var DeleteWorkflowStepGroupRequest$ = [3, n0, _DWSGR,
538
+ 0,
539
+ [_wIo, _i],
540
+ [[0, { [_hQ]: _wIo }], [0, 1]], 2
541
+ ];
542
+ var DeleteWorkflowStepGroupResponse$ = [3, n0, _DWSGRe,
543
+ 0,
544
+ [],
545
+ []
546
+ ];
547
+ var DeleteWorkflowStepRequest$ = [3, n0, _DWSR,
548
+ 0,
549
+ [_i, _sGI, _wIo],
550
+ [[0, 1], [0, { [_hQ]: _sGI }], [0, { [_hQ]: _wIo }]], 3
551
+ ];
552
+ var DeleteWorkflowStepResponse$ = [3, n0, _DWSRe,
553
+ 0,
554
+ [],
555
+ []
556
+ ];
557
+ var GetMigrationWorkflowRequest$ = [3, n0, _GMWR,
558
+ 0,
559
+ [_i],
560
+ [[0, 1]], 1
561
+ ];
562
+ var GetMigrationWorkflowResponse$ = [3, n0, _GMWRe,
563
+ 0,
564
+ [_i, _a, _n, _d, _tI, _aACI, _aAN, _st, _sM, _cT, _lST, _lSTa, _lMT, _eT, _to, _tSo, _cS, _wI, _t, _wB],
565
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, () => ToolsList, 1, 1, [() => StepInputParameters, 0], 128 | 0, 0]
566
+ ];
567
+ var GetMigrationWorkflowTemplateRequest$ = [3, n0, _GMWTR,
568
+ 0,
569
+ [_i],
570
+ [[0, 1]], 1
571
+ ];
572
+ var GetMigrationWorkflowTemplateResponse$ = [3, n0, _GMWTRe,
573
+ 0,
574
+ [_i, _tA, _n, _d, _in, _to, _cT, _ow, _st, _sM, _tC, _t],
575
+ [0, 0, 0, 0, () => TemplateInputList, () => ToolsList, 4, 0, 0, 0, 0, 128 | 0]
576
+ ];
577
+ var GetTemplateStepGroupRequest$ = [3, n0, _GTSGR,
578
+ 0,
579
+ [_tI, _i],
580
+ [[0, 1], [0, 1]], 2
581
+ ];
582
+ var GetTemplateStepGroupResponse$ = [3, n0, _GTSGRe,
583
+ 0,
584
+ [_tI, _i, _n, _d, _st, _cT, _lMT, _to, _p, _ne],
585
+ [0, 0, 0, 0, 0, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
586
+ ];
587
+ var GetTemplateStepRequest$ = [3, n0, _GTSR,
588
+ 0,
589
+ [_i, _tI, _sGI],
590
+ [[0, 1], [0, { [_hQ]: _tI }], [0, { [_hQ]: _sGI }]], 3
591
+ ];
592
+ var GetTemplateStepResponse$ = [3, n0, _GTSRe,
593
+ 0,
594
+ [_i, _sGI, _tI, _n, _d, _sAT, _cT, _p, _ne, _o, _sAC],
595
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => StepOutputList, () => StepAutomationConfiguration$]
596
+ ];
597
+ var GetWorkflowStepGroupRequest$ = [3, n0, _GWSGR,
598
+ 0,
599
+ [_i, _wIo],
600
+ [[0, 1], [0, { [_hQ]: _wIo }]], 2
601
+ ];
602
+ var GetWorkflowStepGroupResponse$ = [3, n0, _GWSGRe,
603
+ 0,
604
+ [_i, _wIo, _n, _d, _st, _ow, _cT, _lMT, _eT, _to, _p, _ne],
605
+ [0, 0, 0, 0, 0, 0, 4, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
606
+ ];
607
+ var GetWorkflowStepRequest$ = [3, n0, _GWSR,
608
+ 0,
609
+ [_wIo, _sGI, _i],
610
+ [[0, { [_hQ]: _wIo }], [0, { [_hQ]: _sGI }], [0, 1]], 3
611
+ ];
612
+ var GetWorkflowStepResponse$ = [3, n0, _GWSRe,
613
+ 0,
614
+ [_n, _sGI, _wIo, _sI, _d, _sAT, _ow, _wSAC, _sTt, _o, _p, _ne, _st, _sM, _sOL, _cT, _lST, _eT, _nOSC, _nOSF, _tNOS],
615
+ [0, 0, 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0, 0, 0, 4, 4, 4, 1, 1, 1]
616
+ ];
617
+ var ListMigrationWorkflowsRequest$ = [3, n0, _LMWR,
618
+ 0,
619
+ [_mR, _nT, _tI, _aACN, _st, _n],
620
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _tI }], [0, { [_hQ]: _aACN }], [0, { [_hQ]: _st }], [0, { [_hQ]: _n }]]
621
+ ];
622
+ var ListMigrationWorkflowsResponse$ = [3, n0, _LMWRi,
623
+ 0,
624
+ [_mWS, _nT],
625
+ [() => MigrationWorkflowSummaryList, 0], 1
626
+ ];
627
+ var ListMigrationWorkflowTemplatesRequest$ = [3, n0, _LMWTR,
628
+ 0,
629
+ [_mR, _nT, _n],
630
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _n }]]
631
+ ];
632
+ var ListMigrationWorkflowTemplatesResponse$ = [3, n0, _LMWTRi,
633
+ 0,
634
+ [_tSe, _nT],
635
+ [() => TemplateSummaryList, 0], 1
636
+ ];
637
+ var ListPluginsRequest$ = [3, n0, _LPR,
638
+ 0,
639
+ [_mR, _nT],
640
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
641
+ ];
642
+ var ListPluginsResponse$ = [3, n0, _LPRi,
643
+ 0,
644
+ [_nT, _pl],
645
+ [0, () => PluginSummaries]
646
+ ];
647
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
648
+ 0,
649
+ [_rA],
650
+ [[0, 1]], 1
651
+ ];
652
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
653
+ 0,
654
+ [_t],
655
+ [128 | 0]
656
+ ];
657
+ var ListTemplateStepGroupsRequest$ = [3, n0, _LTSGR,
658
+ 0,
659
+ [_tI, _mR, _nT],
660
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
661
+ ];
662
+ var ListTemplateStepGroupsResponse$ = [3, n0, _LTSGRi,
663
+ 0,
664
+ [_tSGS, _nT],
665
+ [() => TemplateStepGroupSummaryList, 0], 1
666
+ ];
667
+ var ListTemplateStepsRequest$ = [3, n0, _LTSR,
668
+ 0,
669
+ [_tI, _sGI, _mR, _nT],
670
+ [[0, { [_hQ]: _tI }], [0, { [_hQ]: _sGI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
671
+ ];
672
+ var ListTemplateStepsResponse$ = [3, n0, _LTSRi,
673
+ 0,
674
+ [_nT, _tSSL],
675
+ [0, () => TemplateStepSummaryList]
676
+ ];
677
+ var ListWorkflowStepGroupsRequest$ = [3, n0, _LWSGR,
678
+ 0,
679
+ [_wIo, _nT, _mR],
680
+ [[0, { [_hQ]: _wIo }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
681
+ ];
682
+ var ListWorkflowStepGroupsResponse$ = [3, n0, _LWSGRi,
683
+ 0,
684
+ [_wSGS, _nT],
685
+ [() => WorkflowStepGroupsSummaryList, 0], 1
686
+ ];
687
+ var ListWorkflowStepsRequest$ = [3, n0, _LWSR,
688
+ 0,
689
+ [_wIo, _sGI, _nT, _mR],
690
+ [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
691
+ ];
692
+ var ListWorkflowStepsResponse$ = [3, n0, _LWSRi,
693
+ 0,
694
+ [_wSS, _nT],
695
+ [() => WorkflowStepsSummaryList, 0], 1
696
+ ];
697
+ var MigrationWorkflowSummary$ = [3, n0, _MWS,
698
+ 0,
699
+ [_i, _n, _tI, _aACN, _st, _cT, _eT, _sM, _cS, _tSo],
700
+ [0, 0, 0, 0, 0, 4, 4, 0, 1, 1]
701
+ ];
702
+ var PlatformCommand$ = [3, n0, _PC,
703
+ 0,
704
+ [_l, _w],
705
+ [0, 0]
706
+ ];
707
+ var PlatformScriptKey$ = [3, n0, _PSK,
708
+ 0,
709
+ [_l, _w],
710
+ [0, 0]
711
+ ];
712
+ var PluginSummary$ = [3, n0, _PS,
713
+ 0,
714
+ [_pI, _h, _st, _iA, _v, _rT],
715
+ [0, 0, 0, 0, 0, 0]
716
+ ];
717
+ var RetryWorkflowStepRequest$ = [3, n0, _RWSR,
718
+ 0,
719
+ [_wIo, _sGI, _i],
720
+ [[0, { [_hQ]: _wIo }], [0, { [_hQ]: _sGI }], [0, 1]], 3
721
+ ];
722
+ var RetryWorkflowStepResponse$ = [3, n0, _RWSRe,
723
+ 0,
724
+ [_sGI, _wIo, _i, _st],
725
+ [0, 0, 0, 0]
726
+ ];
727
+ var StartMigrationWorkflowRequest$ = [3, n0, _SMWR,
728
+ 0,
729
+ [_i],
730
+ [[0, 1]], 1
731
+ ];
732
+ var StartMigrationWorkflowResponse$ = [3, n0, _SMWRt,
733
+ 0,
734
+ [_i, _a, _st, _sM, _lST],
735
+ [0, 0, 0, 0, 4]
736
+ ];
737
+ var StepAutomationConfiguration$ = [3, n0, _SAC,
738
+ 0,
739
+ [_sLSB, _sLSK, _co, _rE, _tT],
740
+ [0, () => PlatformScriptKey$, () => PlatformCommand$, 0, 0]
741
+ ];
742
+ var StepOutput$ = [3, n0, _SO,
743
+ 0,
744
+ [_n, _dT, _r],
745
+ [0, 0, 2]
746
+ ];
747
+ var StopMigrationWorkflowRequest$ = [3, n0, _SMWRto,
748
+ 0,
749
+ [_i],
750
+ [[0, 1]], 1
751
+ ];
752
+ var StopMigrationWorkflowResponse$ = [3, n0, _SMWRtop,
753
+ 0,
754
+ [_i, _a, _st, _sM, _lSTa],
755
+ [0, 0, 0, 0, 4]
756
+ ];
757
+ var TagResourceRequest$ = [3, n0, _TRR,
758
+ 0,
759
+ [_rA, _t],
760
+ [[0, 1], 128 | 0], 2
761
+ ];
762
+ var TagResourceResponse$ = [3, n0, _TRRa,
763
+ 0,
764
+ [],
765
+ []
766
+ ];
767
+ var TemplateInput$ = [3, n0, _TI,
768
+ 0,
769
+ [_iN, _dT, _r],
770
+ [0, 0, 2]
771
+ ];
772
+ var TemplateStepGroupSummary$ = [3, n0, _TSGS,
773
+ 0,
774
+ [_i, _n, _p, _ne],
775
+ [0, 0, 64 | 0, 64 | 0]
776
+ ];
777
+ var TemplateStepSummary$ = [3, n0, _TSS,
778
+ 0,
779
+ [_i, _sGI, _tI, _n, _sAT, _tT, _ow, _p, _ne],
780
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0]
781
+ ];
782
+ var TemplateSummary$ = [3, n0, _TS,
783
+ 0,
784
+ [_i, _n, _a, _d],
785
+ [0, 0, 0, 0]
786
+ ];
787
+ var Tool$ = [3, n0, _T,
788
+ 0,
789
+ [_n, _u],
790
+ [0, 0]
791
+ ];
792
+ var UntagResourceRequest$ = [3, n0, _URR,
793
+ 0,
794
+ [_rA, _tK],
795
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
796
+ ];
797
+ var UntagResourceResponse$ = [3, n0, _URRn,
798
+ 0,
799
+ [],
800
+ []
801
+ ];
802
+ var UpdateMigrationWorkflowRequest$ = [3, n0, _UMWR,
803
+ 0,
804
+ [_i, _n, _d, _iP, _sT],
805
+ [[0, 1], 0, 0, [() => StepInputParameters, 0], 64 | 0], 1
806
+ ];
807
+ var UpdateMigrationWorkflowResponse$ = [3, n0, _UMWRp,
808
+ 0,
809
+ [_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _st, _cT, _lMT, _t],
810
+ [0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 4, 128 | 0]
811
+ ];
812
+ var UpdateTemplateRequest$ = [3, n0, _UTR,
813
+ 0,
814
+ [_i, _tN, _tD, _cTl],
815
+ [[0, 1], 0, 0, [0, 4]], 1
816
+ ];
817
+ var UpdateTemplateResponse$ = [3, n0, _UTRp,
818
+ 0,
819
+ [_tI, _tA, _t],
820
+ [0, 0, 128 | 0]
821
+ ];
822
+ var UpdateWorkflowStepGroupRequest$ = [3, n0, _UWSGR,
823
+ 0,
824
+ [_wIo, _i, _n, _d, _ne, _p],
825
+ [[0, { [_hQ]: _wIo }], [0, 1], 0, 0, 64 | 0, 64 | 0], 2
826
+ ];
827
+ var UpdateWorkflowStepGroupResponse$ = [3, n0, _UWSGRp,
828
+ 0,
829
+ [_wIo, _n, _i, _d, _to, _ne, _p, _lMT],
830
+ [0, 0, 0, 0, () => ToolsList, 64 | 0, 64 | 0, 4]
831
+ ];
832
+ var UpdateWorkflowStepRequest$ = [3, n0, _UWSR,
833
+ 0,
834
+ [_i, _sGI, _wIo, _n, _d, _sAT, _wSAC, _sTt, _o, _p, _ne, _st],
835
+ [[0, 1], 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0], 3
836
+ ];
837
+ var UpdateWorkflowStepResponse$ = [3, n0, _UWSRp,
838
+ 0,
839
+ [_i, _sGI, _wIo, _n],
840
+ [0, 0, 0, 0]
841
+ ];
842
+ var WorkflowStepAutomationConfiguration$ = [3, n0, _WSAC,
843
+ 0,
844
+ [_sLSB, _sLSK, _co, _rE, _tT],
845
+ [0, () => PlatformScriptKey$, () => PlatformCommand$, 0, 0]
846
+ ];
847
+ var WorkflowStepGroupSummary$ = [3, n0, _WSGS,
848
+ 0,
849
+ [_i, _n, _ow, _st, _p, _ne],
850
+ [0, 0, 0, 0, 64 | 0, 64 | 0]
851
+ ];
852
+ var WorkflowStepOutput$ = [3, n0, _WSO,
853
+ 0,
854
+ [_n, _dT, _r, _va],
855
+ [0, 0, 2, () => WorkflowStepOutputUnion$]
856
+ ];
857
+ var WorkflowStepSummary$ = [3, n0, _WSS,
858
+ 0,
859
+ [_sI, _n, _sAT, _ow, _p, _ne, _st, _sM, _nOSC, _nOSF, _tNOS, _d, _sL],
860
+ [0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 1, 1, 1, 0, 0]
861
+ ];
862
+ var MigrationWorkflowSummaryList = [1, n0, _MWSL,
863
+ 0, () => MigrationWorkflowSummary$
864
+ ];
865
+ var PluginSummaries = [1, n0, _PSl,
866
+ 0, () => PluginSummary$
867
+ ];
868
+ var StepOutputList = [1, n0, _SOL,
869
+ 0, () => StepOutput$
870
+ ];
871
+ var TemplateInputList = [1, n0, _TIL,
872
+ 0, () => TemplateInput$
873
+ ];
874
+ var TemplateStepGroupSummaryList = [1, n0, _TSGSL,
875
+ 0, () => TemplateStepGroupSummary$
876
+ ];
877
+ var TemplateStepSummaryList = [1, n0, _TSSL,
878
+ 0, () => TemplateStepSummary$
879
+ ];
880
+ var TemplateSummaryList = [1, n0, _TSL,
881
+ 0, () => TemplateSummary$
882
+ ];
883
+ var ToolsList = [1, n0, _TL,
884
+ 0, () => Tool$
885
+ ];
886
+ var WorkflowStepGroupsSummaryList = [1, n0, _WSGSL,
887
+ 0, () => WorkflowStepGroupSummary$
888
+ ];
889
+ var WorkflowStepOutputList = [1, n0, _WSOL,
890
+ 0, () => WorkflowStepOutput$
891
+ ];
892
+ var WorkflowStepsSummaryList = [1, n0, _WSSL,
893
+ 0, () => WorkflowStepSummary$
894
+ ];
895
+ var StepInputParameters = [2, n0, _SIP,
896
+ 8, 0, () => StepInput$
897
+ ];
898
+ var StepInput$ = [4, n0, _SI,
899
+ 0,
900
+ [_iV, _sV, _lOSV, _mOSV],
901
+ [1, 0, 64 | 0, 128 | 0]
902
+ ];
903
+ var TemplateSource$ = [4, n0, _TSe,
904
+ 0,
905
+ [_wIo],
906
+ [0]
907
+ ];
908
+ var WorkflowStepOutputUnion$ = [4, n0, _WSOU,
909
+ 0,
910
+ [_iV, _sV, _lOSVi],
911
+ [1, 0, 64 | 0]
912
+ ];
913
+ var CreateTemplate$ = [9, n0, _CT,
914
+ { [_ht]: ["POST", "/template", 200] }, () => CreateTemplateRequest$, () => CreateTemplateResponse$
915
+ ];
916
+ var CreateWorkflow$ = [9, n0, _CW,
917
+ { [_ht]: ["POST", "/migrationworkflow/", 200] }, () => CreateMigrationWorkflowRequest$, () => CreateMigrationWorkflowResponse$
918
+ ];
919
+ var CreateWorkflowStep$ = [9, n0, _CWS,
920
+ { [_ht]: ["POST", "/workflowstep", 200] }, () => CreateWorkflowStepRequest$, () => CreateWorkflowStepResponse$
921
+ ];
922
+ var CreateWorkflowStepGroup$ = [9, n0, _CWSG,
923
+ { [_ht]: ["POST", "/workflowstepgroups", 200] }, () => CreateWorkflowStepGroupRequest$, () => CreateWorkflowStepGroupResponse$
924
+ ];
925
+ var DeleteTemplate$ = [9, n0, _DT,
926
+ { [_ht]: ["DELETE", "/template/{id}", 200] }, () => DeleteTemplateRequest$, () => DeleteTemplateResponse$
927
+ ];
928
+ var DeleteWorkflow$ = [9, n0, _DW,
929
+ { [_ht]: ["DELETE", "/migrationworkflow/{id}", 202] }, () => DeleteMigrationWorkflowRequest$, () => DeleteMigrationWorkflowResponse$
930
+ ];
931
+ var DeleteWorkflowStep$ = [9, n0, _DWS,
932
+ { [_ht]: ["DELETE", "/workflowstep/{id}", 200] }, () => DeleteWorkflowStepRequest$, () => DeleteWorkflowStepResponse$
933
+ ];
934
+ var DeleteWorkflowStepGroup$ = [9, n0, _DWSG,
935
+ { [_ht]: ["DELETE", "/workflowstepgroup/{id}", 202] }, () => DeleteWorkflowStepGroupRequest$, () => DeleteWorkflowStepGroupResponse$
936
+ ];
937
+ var GetTemplate$ = [9, n0, _GT,
938
+ { [_ht]: ["GET", "/migrationworkflowtemplate/{id}", 200] }, () => GetMigrationWorkflowTemplateRequest$, () => GetMigrationWorkflowTemplateResponse$
939
+ ];
940
+ var GetTemplateStep$ = [9, n0, _GTS,
941
+ { [_ht]: ["GET", "/templatestep/{id}", 200] }, () => GetTemplateStepRequest$, () => GetTemplateStepResponse$
942
+ ];
943
+ var GetTemplateStepGroup$ = [9, n0, _GTSG,
944
+ { [_ht]: ["GET", "/templates/{templateId}/stepgroups/{id}", 200] }, () => GetTemplateStepGroupRequest$, () => GetTemplateStepGroupResponse$
945
+ ];
946
+ var GetWorkflow$ = [9, n0, _GW,
947
+ { [_ht]: ["GET", "/migrationworkflow/{id}", 200] }, () => GetMigrationWorkflowRequest$, () => GetMigrationWorkflowResponse$
948
+ ];
949
+ var GetWorkflowStep$ = [9, n0, _GWS,
950
+ { [_ht]: ["GET", "/workflowstep/{id}", 200] }, () => GetWorkflowStepRequest$, () => GetWorkflowStepResponse$
951
+ ];
952
+ var GetWorkflowStepGroup$ = [9, n0, _GWSG,
953
+ { [_ht]: ["GET", "/workflowstepgroup/{id}", 200] }, () => GetWorkflowStepGroupRequest$, () => GetWorkflowStepGroupResponse$
954
+ ];
955
+ var ListPlugins$ = [9, n0, _LP,
956
+ { [_ht]: ["GET", "/plugins", 200] }, () => ListPluginsRequest$, () => ListPluginsResponse$
957
+ ];
958
+ var ListTagsForResource$ = [9, n0, _LTFR,
959
+ { [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
960
+ ];
961
+ var ListTemplates$ = [9, n0, _LT,
962
+ { [_ht]: ["GET", "/migrationworkflowtemplates", 200] }, () => ListMigrationWorkflowTemplatesRequest$, () => ListMigrationWorkflowTemplatesResponse$
963
+ ];
964
+ var ListTemplateStepGroups$ = [9, n0, _LTSG,
965
+ { [_ht]: ["GET", "/templatestepgroups/{templateId}", 200] }, () => ListTemplateStepGroupsRequest$, () => ListTemplateStepGroupsResponse$
966
+ ];
967
+ var ListTemplateSteps$ = [9, n0, _LTS,
968
+ { [_ht]: ["GET", "/templatesteps", 200] }, () => ListTemplateStepsRequest$, () => ListTemplateStepsResponse$
969
+ ];
970
+ var ListWorkflows$ = [9, n0, _LW,
971
+ { [_ht]: ["GET", "/migrationworkflows", 200] }, () => ListMigrationWorkflowsRequest$, () => ListMigrationWorkflowsResponse$
972
+ ];
973
+ var ListWorkflowStepGroups$ = [9, n0, _LWSG,
974
+ { [_ht]: ["GET", "/workflowstepgroups", 200] }, () => ListWorkflowStepGroupsRequest$, () => ListWorkflowStepGroupsResponse$
975
+ ];
976
+ var ListWorkflowSteps$ = [9, n0, _LWS,
977
+ { [_ht]: ["GET", "/workflow/{workflowId}/workflowstepgroups/{stepGroupId}/workflowsteps", 200] }, () => ListWorkflowStepsRequest$, () => ListWorkflowStepsResponse$
978
+ ];
979
+ var RetryWorkflowStep$ = [9, n0, _RWS,
980
+ { [_ht]: ["POST", "/retryworkflowstep/{id}", 200] }, () => RetryWorkflowStepRequest$, () => RetryWorkflowStepResponse$
981
+ ];
982
+ var StartWorkflow$ = [9, n0, _SW,
983
+ { [_ht]: ["POST", "/migrationworkflow/{id}/start", 200] }, () => StartMigrationWorkflowRequest$, () => StartMigrationWorkflowResponse$
984
+ ];
985
+ var StopWorkflow$ = [9, n0, _SWt,
986
+ { [_ht]: ["POST", "/migrationworkflow/{id}/stop", 200] }, () => StopMigrationWorkflowRequest$, () => StopMigrationWorkflowResponse$
987
+ ];
988
+ var TagResource$ = [9, n0, _TR,
989
+ { [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
990
+ ];
991
+ var UntagResource$ = [9, n0, _UR,
992
+ { [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
993
+ ];
994
+ var UpdateTemplate$ = [9, n0, _UT,
995
+ { [_ht]: ["POST", "/template/{id}", 200] }, () => UpdateTemplateRequest$, () => UpdateTemplateResponse$
996
+ ];
997
+ var UpdateWorkflow$ = [9, n0, _UW,
998
+ { [_ht]: ["POST", "/migrationworkflow/{id}", 200] }, () => UpdateMigrationWorkflowRequest$, () => UpdateMigrationWorkflowResponse$
999
+ ];
1000
+ var UpdateWorkflowStep$ = [9, n0, _UWS,
1001
+ { [_ht]: ["POST", "/workflowstep/{id}", 200] }, () => UpdateWorkflowStepRequest$, () => UpdateWorkflowStepResponse$
1002
+ ];
1003
+ var UpdateWorkflowStepGroup$ = [9, n0, _UWSG,
1004
+ { [_ht]: ["POST", "/workflowstepgroup/{id}", 202] }, () => UpdateWorkflowStepGroupRequest$, () => UpdateWorkflowStepGroupResponse$
1005
+ ];
1006
+
1007
+ const getRuntimeConfig$1 = (config) => {
1008
+ return {
1009
+ apiVersion: "2021-08-28",
1010
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1011
+ base64Encoder: config?.base64Encoder ?? toBase64,
1012
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1013
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1014
+ extensions: config?.extensions ?? [],
1015
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultMigrationHubOrchestratorHttpAuthSchemeProvider,
1016
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1017
+ {
1018
+ schemeId: "aws.auth#sigv4",
1019
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1020
+ signer: new AwsSdkSigV4Signer(),
1021
+ },
1022
+ ],
1023
+ logger: config?.logger ?? new NoOpLogger(),
1024
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1025
+ protocolSettings: config?.protocolSettings ?? {
1026
+ defaultNamespace: "com.amazonaws.migrationhuborchestrator",
1027
+ errorTypeRegistries,
1028
+ version: "2021-08-28",
1029
+ serviceTarget: "AWSMigrationHubOrchestrator",
1030
+ },
1031
+ serviceId: config?.serviceId ?? "MigrationHubOrchestrator",
1032
+ urlParser: config?.urlParser ?? parseUrl,
1033
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1034
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1035
+ };
1036
+ };
1037
+
1038
+ const getRuntimeConfig = (config) => {
1039
+ emitWarningIfUnsupportedVersion(process.version);
1040
+ const defaultsMode = resolveDefaultsModeConfig(config);
1041
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1042
+ const clientSharedValues = getRuntimeConfig$1(config);
1043
+ emitWarningIfUnsupportedVersion$1(process.version);
1044
+ const loaderConfig = {
1045
+ profile: config?.profile,
1046
+ logger: clientSharedValues.logger,
1047
+ };
1048
+ return {
1049
+ ...clientSharedValues,
1050
+ ...config,
1051
+ runtime: "node",
1052
+ defaultsMode,
1053
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1054
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1055
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1056
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1057
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1058
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1059
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1060
+ retryMode: config?.retryMode ??
1061
+ loadConfig({
1062
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1063
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1064
+ }, config),
1065
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1066
+ streamCollector: config?.streamCollector ?? streamCollector,
1067
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1068
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1069
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1070
+ };
1071
+ };
1072
+
34
1073
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1074
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1075
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -614,49 +1653,175 @@ const StepStatus = {
614
1653
  USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
615
1654
  };
616
1655
 
1656
+ exports.AccessDeniedException = AccessDeniedException;
1657
+ exports.AccessDeniedException$ = AccessDeniedException$;
1658
+ exports.ConflictException = ConflictException;
1659
+ exports.ConflictException$ = ConflictException$;
1660
+ exports.CreateMigrationWorkflowRequest$ = CreateMigrationWorkflowRequest$;
1661
+ exports.CreateMigrationWorkflowResponse$ = CreateMigrationWorkflowResponse$;
1662
+ exports.CreateTemplate$ = CreateTemplate$;
617
1663
  exports.CreateTemplateCommand = CreateTemplateCommand;
1664
+ exports.CreateTemplateRequest$ = CreateTemplateRequest$;
1665
+ exports.CreateTemplateResponse$ = CreateTemplateResponse$;
1666
+ exports.CreateWorkflow$ = CreateWorkflow$;
618
1667
  exports.CreateWorkflowCommand = CreateWorkflowCommand;
1668
+ exports.CreateWorkflowStep$ = CreateWorkflowStep$;
619
1669
  exports.CreateWorkflowStepCommand = CreateWorkflowStepCommand;
1670
+ exports.CreateWorkflowStepGroup$ = CreateWorkflowStepGroup$;
620
1671
  exports.CreateWorkflowStepGroupCommand = CreateWorkflowStepGroupCommand;
1672
+ exports.CreateWorkflowStepGroupRequest$ = CreateWorkflowStepGroupRequest$;
1673
+ exports.CreateWorkflowStepGroupResponse$ = CreateWorkflowStepGroupResponse$;
1674
+ exports.CreateWorkflowStepRequest$ = CreateWorkflowStepRequest$;
1675
+ exports.CreateWorkflowStepResponse$ = CreateWorkflowStepResponse$;
621
1676
  exports.DataType = DataType;
1677
+ exports.DeleteMigrationWorkflowRequest$ = DeleteMigrationWorkflowRequest$;
1678
+ exports.DeleteMigrationWorkflowResponse$ = DeleteMigrationWorkflowResponse$;
1679
+ exports.DeleteTemplate$ = DeleteTemplate$;
622
1680
  exports.DeleteTemplateCommand = DeleteTemplateCommand;
1681
+ exports.DeleteTemplateRequest$ = DeleteTemplateRequest$;
1682
+ exports.DeleteTemplateResponse$ = DeleteTemplateResponse$;
1683
+ exports.DeleteWorkflow$ = DeleteWorkflow$;
623
1684
  exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
1685
+ exports.DeleteWorkflowStep$ = DeleteWorkflowStep$;
624
1686
  exports.DeleteWorkflowStepCommand = DeleteWorkflowStepCommand;
1687
+ exports.DeleteWorkflowStepGroup$ = DeleteWorkflowStepGroup$;
625
1688
  exports.DeleteWorkflowStepGroupCommand = DeleteWorkflowStepGroupCommand;
1689
+ exports.DeleteWorkflowStepGroupRequest$ = DeleteWorkflowStepGroupRequest$;
1690
+ exports.DeleteWorkflowStepGroupResponse$ = DeleteWorkflowStepGroupResponse$;
1691
+ exports.DeleteWorkflowStepRequest$ = DeleteWorkflowStepRequest$;
1692
+ exports.DeleteWorkflowStepResponse$ = DeleteWorkflowStepResponse$;
1693
+ exports.GetMigrationWorkflowRequest$ = GetMigrationWorkflowRequest$;
1694
+ exports.GetMigrationWorkflowResponse$ = GetMigrationWorkflowResponse$;
1695
+ exports.GetMigrationWorkflowTemplateRequest$ = GetMigrationWorkflowTemplateRequest$;
1696
+ exports.GetMigrationWorkflowTemplateResponse$ = GetMigrationWorkflowTemplateResponse$;
1697
+ exports.GetTemplate$ = GetTemplate$;
626
1698
  exports.GetTemplateCommand = GetTemplateCommand;
1699
+ exports.GetTemplateStep$ = GetTemplateStep$;
627
1700
  exports.GetTemplateStepCommand = GetTemplateStepCommand;
1701
+ exports.GetTemplateStepGroup$ = GetTemplateStepGroup$;
628
1702
  exports.GetTemplateStepGroupCommand = GetTemplateStepGroupCommand;
1703
+ exports.GetTemplateStepGroupRequest$ = GetTemplateStepGroupRequest$;
1704
+ exports.GetTemplateStepGroupResponse$ = GetTemplateStepGroupResponse$;
1705
+ exports.GetTemplateStepRequest$ = GetTemplateStepRequest$;
1706
+ exports.GetTemplateStepResponse$ = GetTemplateStepResponse$;
1707
+ exports.GetWorkflow$ = GetWorkflow$;
629
1708
  exports.GetWorkflowCommand = GetWorkflowCommand;
1709
+ exports.GetWorkflowStep$ = GetWorkflowStep$;
630
1710
  exports.GetWorkflowStepCommand = GetWorkflowStepCommand;
1711
+ exports.GetWorkflowStepGroup$ = GetWorkflowStepGroup$;
631
1712
  exports.GetWorkflowStepGroupCommand = GetWorkflowStepGroupCommand;
1713
+ exports.GetWorkflowStepGroupRequest$ = GetWorkflowStepGroupRequest$;
1714
+ exports.GetWorkflowStepGroupResponse$ = GetWorkflowStepGroupResponse$;
1715
+ exports.GetWorkflowStepRequest$ = GetWorkflowStepRequest$;
1716
+ exports.GetWorkflowStepResponse$ = GetWorkflowStepResponse$;
1717
+ exports.InternalServerException = InternalServerException;
1718
+ exports.InternalServerException$ = InternalServerException$;
1719
+ exports.ListMigrationWorkflowTemplatesRequest$ = ListMigrationWorkflowTemplatesRequest$;
1720
+ exports.ListMigrationWorkflowTemplatesResponse$ = ListMigrationWorkflowTemplatesResponse$;
1721
+ exports.ListMigrationWorkflowsRequest$ = ListMigrationWorkflowsRequest$;
1722
+ exports.ListMigrationWorkflowsResponse$ = ListMigrationWorkflowsResponse$;
1723
+ exports.ListPlugins$ = ListPlugins$;
632
1724
  exports.ListPluginsCommand = ListPluginsCommand;
1725
+ exports.ListPluginsRequest$ = ListPluginsRequest$;
1726
+ exports.ListPluginsResponse$ = ListPluginsResponse$;
1727
+ exports.ListTagsForResource$ = ListTagsForResource$;
633
1728
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1729
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1730
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1731
+ exports.ListTemplateStepGroups$ = ListTemplateStepGroups$;
634
1732
  exports.ListTemplateStepGroupsCommand = ListTemplateStepGroupsCommand;
1733
+ exports.ListTemplateStepGroupsRequest$ = ListTemplateStepGroupsRequest$;
1734
+ exports.ListTemplateStepGroupsResponse$ = ListTemplateStepGroupsResponse$;
1735
+ exports.ListTemplateSteps$ = ListTemplateSteps$;
635
1736
  exports.ListTemplateStepsCommand = ListTemplateStepsCommand;
1737
+ exports.ListTemplateStepsRequest$ = ListTemplateStepsRequest$;
1738
+ exports.ListTemplateStepsResponse$ = ListTemplateStepsResponse$;
1739
+ exports.ListTemplates$ = ListTemplates$;
636
1740
  exports.ListTemplatesCommand = ListTemplatesCommand;
1741
+ exports.ListWorkflowStepGroups$ = ListWorkflowStepGroups$;
637
1742
  exports.ListWorkflowStepGroupsCommand = ListWorkflowStepGroupsCommand;
1743
+ exports.ListWorkflowStepGroupsRequest$ = ListWorkflowStepGroupsRequest$;
1744
+ exports.ListWorkflowStepGroupsResponse$ = ListWorkflowStepGroupsResponse$;
1745
+ exports.ListWorkflowSteps$ = ListWorkflowSteps$;
638
1746
  exports.ListWorkflowStepsCommand = ListWorkflowStepsCommand;
1747
+ exports.ListWorkflowStepsRequest$ = ListWorkflowStepsRequest$;
1748
+ exports.ListWorkflowStepsResponse$ = ListWorkflowStepsResponse$;
1749
+ exports.ListWorkflows$ = ListWorkflows$;
639
1750
  exports.ListWorkflowsCommand = ListWorkflowsCommand;
640
1751
  exports.MigrationHubOrchestrator = MigrationHubOrchestrator;
641
1752
  exports.MigrationHubOrchestratorClient = MigrationHubOrchestratorClient;
1753
+ exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException;
1754
+ exports.MigrationHubOrchestratorServiceException$ = MigrationHubOrchestratorServiceException$;
642
1755
  exports.MigrationWorkflowStatusEnum = MigrationWorkflowStatusEnum;
1756
+ exports.MigrationWorkflowSummary$ = MigrationWorkflowSummary$;
643
1757
  exports.Owner = Owner;
1758
+ exports.PlatformCommand$ = PlatformCommand$;
1759
+ exports.PlatformScriptKey$ = PlatformScriptKey$;
644
1760
  exports.PluginHealth = PluginHealth;
1761
+ exports.PluginSummary$ = PluginSummary$;
1762
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1763
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1764
+ exports.RetryWorkflowStep$ = RetryWorkflowStep$;
645
1765
  exports.RetryWorkflowStepCommand = RetryWorkflowStepCommand;
1766
+ exports.RetryWorkflowStepRequest$ = RetryWorkflowStepRequest$;
1767
+ exports.RetryWorkflowStepResponse$ = RetryWorkflowStepResponse$;
646
1768
  exports.RunEnvironment = RunEnvironment;
1769
+ exports.StartMigrationWorkflowRequest$ = StartMigrationWorkflowRequest$;
1770
+ exports.StartMigrationWorkflowResponse$ = StartMigrationWorkflowResponse$;
1771
+ exports.StartWorkflow$ = StartWorkflow$;
647
1772
  exports.StartWorkflowCommand = StartWorkflowCommand;
648
1773
  exports.StepActionType = StepActionType;
1774
+ exports.StepAutomationConfiguration$ = StepAutomationConfiguration$;
649
1775
  exports.StepGroupStatus = StepGroupStatus;
1776
+ exports.StepInput$ = StepInput$;
1777
+ exports.StepOutput$ = StepOutput$;
650
1778
  exports.StepStatus = StepStatus;
1779
+ exports.StopMigrationWorkflowRequest$ = StopMigrationWorkflowRequest$;
1780
+ exports.StopMigrationWorkflowResponse$ = StopMigrationWorkflowResponse$;
1781
+ exports.StopWorkflow$ = StopWorkflow$;
651
1782
  exports.StopWorkflowCommand = StopWorkflowCommand;
1783
+ exports.TagResource$ = TagResource$;
652
1784
  exports.TagResourceCommand = TagResourceCommand;
1785
+ exports.TagResourceRequest$ = TagResourceRequest$;
1786
+ exports.TagResourceResponse$ = TagResourceResponse$;
653
1787
  exports.TargetType = TargetType;
1788
+ exports.TemplateInput$ = TemplateInput$;
1789
+ exports.TemplateSource$ = TemplateSource$;
654
1790
  exports.TemplateStatus = TemplateStatus;
1791
+ exports.TemplateStepGroupSummary$ = TemplateStepGroupSummary$;
1792
+ exports.TemplateStepSummary$ = TemplateStepSummary$;
1793
+ exports.TemplateSummary$ = TemplateSummary$;
1794
+ exports.ThrottlingException = ThrottlingException;
1795
+ exports.ThrottlingException$ = ThrottlingException$;
1796
+ exports.Tool$ = Tool$;
1797
+ exports.UntagResource$ = UntagResource$;
655
1798
  exports.UntagResourceCommand = UntagResourceCommand;
1799
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1800
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1801
+ exports.UpdateMigrationWorkflowRequest$ = UpdateMigrationWorkflowRequest$;
1802
+ exports.UpdateMigrationWorkflowResponse$ = UpdateMigrationWorkflowResponse$;
1803
+ exports.UpdateTemplate$ = UpdateTemplate$;
656
1804
  exports.UpdateTemplateCommand = UpdateTemplateCommand;
1805
+ exports.UpdateTemplateRequest$ = UpdateTemplateRequest$;
1806
+ exports.UpdateTemplateResponse$ = UpdateTemplateResponse$;
1807
+ exports.UpdateWorkflow$ = UpdateWorkflow$;
657
1808
  exports.UpdateWorkflowCommand = UpdateWorkflowCommand;
1809
+ exports.UpdateWorkflowStep$ = UpdateWorkflowStep$;
658
1810
  exports.UpdateWorkflowStepCommand = UpdateWorkflowStepCommand;
1811
+ exports.UpdateWorkflowStepGroup$ = UpdateWorkflowStepGroup$;
659
1812
  exports.UpdateWorkflowStepGroupCommand = UpdateWorkflowStepGroupCommand;
1813
+ exports.UpdateWorkflowStepGroupRequest$ = UpdateWorkflowStepGroupRequest$;
1814
+ exports.UpdateWorkflowStepGroupResponse$ = UpdateWorkflowStepGroupResponse$;
1815
+ exports.UpdateWorkflowStepRequest$ = UpdateWorkflowStepRequest$;
1816
+ exports.UpdateWorkflowStepResponse$ = UpdateWorkflowStepResponse$;
1817
+ exports.ValidationException = ValidationException;
1818
+ exports.ValidationException$ = ValidationException$;
1819
+ exports.WorkflowStepAutomationConfiguration$ = WorkflowStepAutomationConfiguration$;
1820
+ exports.WorkflowStepGroupSummary$ = WorkflowStepGroupSummary$;
1821
+ exports.WorkflowStepOutput$ = WorkflowStepOutput$;
1822
+ exports.WorkflowStepOutputUnion$ = WorkflowStepOutputUnion$;
1823
+ exports.WorkflowStepSummary$ = WorkflowStepSummary$;
1824
+ exports.errorTypeRegistries = errorTypeRegistries;
660
1825
  exports.paginateListPlugins = paginateListPlugins;
661
1826
  exports.paginateListTemplateStepGroups = paginateListTemplateStepGroups;
662
1827
  exports.paginateListTemplateSteps = paginateListTemplateSteps;