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