@aws-sdk/client-migrationhuborchestrator 3.929.0 → 3.930.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -155,20 +155,6 @@ let ValidationException$1 = class ValidationException extends MigrationHubOrches
155
155
  Object.setPrototypeOf(this, ValidationException.prototype);
156
156
  }
157
157
  };
158
- exports.StepInput = void 0;
159
- (function (StepInput) {
160
- StepInput.visit = (value, visitor) => {
161
- if (value.integerValue !== undefined)
162
- return visitor.integerValue(value.integerValue);
163
- if (value.stringValue !== undefined)
164
- return visitor.stringValue(value.stringValue);
165
- if (value.listOfStringsValue !== undefined)
166
- return visitor.listOfStringsValue(value.listOfStringsValue);
167
- if (value.mapOfStringValue !== undefined)
168
- return visitor.mapOfStringValue(value.mapOfStringValue);
169
- return visitor._(value.$unknown[0], value.$unknown[1]);
170
- };
171
- })(exports.StepInput || (exports.StepInput = {}));
172
158
  const MigrationWorkflowStatusEnum = {
173
159
  COMPLETED: "COMPLETED",
174
160
  CREATING: "CREATING",
@@ -222,14 +208,6 @@ let ConflictException$1 = class ConflictException extends MigrationHubOrchestrat
222
208
  Object.setPrototypeOf(this, ConflictException.prototype);
223
209
  }
224
210
  };
225
- exports.TemplateSource = void 0;
226
- (function (TemplateSource) {
227
- TemplateSource.visit = (value, visitor) => {
228
- if (value.workflowId !== undefined)
229
- return visitor.workflowId(value.workflowId);
230
- return visitor._(value.$unknown[0], value.$unknown[1]);
231
- };
232
- })(exports.TemplateSource || (exports.TemplateSource = {}));
233
211
  const DataType = {
234
212
  INTEGER: "INTEGER",
235
213
  STRING: "STRING",
@@ -274,18 +252,6 @@ const StepGroupStatus = {
274
252
  READY: "READY",
275
253
  USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
276
254
  };
277
- exports.WorkflowStepOutputUnion = void 0;
278
- (function (WorkflowStepOutputUnion) {
279
- WorkflowStepOutputUnion.visit = (value, visitor) => {
280
- if (value.integerValue !== undefined)
281
- return visitor.integerValue(value.integerValue);
282
- if (value.stringValue !== undefined)
283
- return visitor.stringValue(value.stringValue);
284
- if (value.listOfStringValue !== undefined)
285
- return visitor.listOfStringValue(value.listOfStringValue);
286
- return visitor._(value.$unknown[0], value.$unknown[1]);
287
- };
288
- })(exports.WorkflowStepOutputUnion || (exports.WorkflowStepOutputUnion = {}));
289
255
  const StepStatus = {
290
256
  AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
291
257
  COMPLETED: "COMPLETED",
@@ -37,20 +37,6 @@ export class ValidationException extends __BaseException {
37
37
  Object.setPrototypeOf(this, ValidationException.prototype);
38
38
  }
39
39
  }
40
- export var StepInput;
41
- (function (StepInput) {
42
- StepInput.visit = (value, visitor) => {
43
- if (value.integerValue !== undefined)
44
- return visitor.integerValue(value.integerValue);
45
- if (value.stringValue !== undefined)
46
- return visitor.stringValue(value.stringValue);
47
- if (value.listOfStringsValue !== undefined)
48
- return visitor.listOfStringsValue(value.listOfStringsValue);
49
- if (value.mapOfStringValue !== undefined)
50
- return visitor.mapOfStringValue(value.mapOfStringValue);
51
- return visitor._(value.$unknown[0], value.$unknown[1]);
52
- };
53
- })(StepInput || (StepInput = {}));
54
40
  export const MigrationWorkflowStatusEnum = {
55
41
  COMPLETED: "COMPLETED",
56
42
  CREATING: "CREATING",
@@ -104,14 +90,6 @@ export class ConflictException extends __BaseException {
104
90
  Object.setPrototypeOf(this, ConflictException.prototype);
105
91
  }
106
92
  }
107
- export var TemplateSource;
108
- (function (TemplateSource) {
109
- TemplateSource.visit = (value, visitor) => {
110
- if (value.workflowId !== undefined)
111
- return visitor.workflowId(value.workflowId);
112
- return visitor._(value.$unknown[0], value.$unknown[1]);
113
- };
114
- })(TemplateSource || (TemplateSource = {}));
115
93
  export const DataType = {
116
94
  INTEGER: "INTEGER",
117
95
  STRING: "STRING",
@@ -156,18 +134,6 @@ export const StepGroupStatus = {
156
134
  READY: "READY",
157
135
  USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
158
136
  };
159
- export var WorkflowStepOutputUnion;
160
- (function (WorkflowStepOutputUnion) {
161
- WorkflowStepOutputUnion.visit = (value, visitor) => {
162
- if (value.integerValue !== undefined)
163
- return visitor.integerValue(value.integerValue);
164
- if (value.stringValue !== undefined)
165
- return visitor.stringValue(value.stringValue);
166
- if (value.listOfStringValue !== undefined)
167
- return visitor.listOfStringValue(value.listOfStringValue);
168
- return visitor._(value.$unknown[0], value.$unknown[1]);
169
- };
170
- })(WorkflowStepOutputUnion || (WorkflowStepOutputUnion = {}));
171
137
  export const StepStatus = {
172
138
  AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
173
139
  COMPLETED: "COMPLETED",
@@ -122,6 +122,10 @@ export declare namespace StepInput {
122
122
  mapOfStringValue?: never;
123
123
  $unknown: [string, any];
124
124
  }
125
+ /**
126
+ * @deprecated unused in schema-serde mode.
127
+ *
128
+ */
125
129
  interface Visitor<T> {
126
130
  integerValue: (value: number) => T;
127
131
  stringValue: (value: string) => T;
@@ -129,7 +133,6 @@ export declare namespace StepInput {
129
133
  mapOfStringValue: (value: Record<string, string>) => T;
130
134
  _: (name: string, value: any) => T;
131
135
  }
132
- const visit: <T>(value: StepInput, visitor: Visitor<T>) => T;
133
136
  }
134
137
  /**
135
138
  * @public
@@ -759,11 +762,14 @@ export declare namespace TemplateSource {
759
762
  workflowId?: never;
760
763
  $unknown: [string, any];
761
764
  }
765
+ /**
766
+ * @deprecated unused in schema-serde mode.
767
+ *
768
+ */
762
769
  interface Visitor<T> {
763
770
  workflowId: (value: string) => T;
764
771
  _: (name: string, value: any) => T;
765
772
  }
766
- const visit: <T>(value: TemplateSource, visitor: Visitor<T>) => T;
767
773
  }
768
774
  /**
769
775
  * @public
@@ -1719,13 +1725,16 @@ export declare namespace WorkflowStepOutputUnion {
1719
1725
  listOfStringValue?: never;
1720
1726
  $unknown: [string, any];
1721
1727
  }
1728
+ /**
1729
+ * @deprecated unused in schema-serde mode.
1730
+ *
1731
+ */
1722
1732
  interface Visitor<T> {
1723
1733
  integerValue: (value: number) => T;
1724
1734
  stringValue: (value: string) => T;
1725
1735
  listOfStringValue: (value: string[]) => T;
1726
1736
  _: (name: string, value: any) => T;
1727
1737
  }
1728
- const visit: <T>(value: WorkflowStepOutputUnion, visitor: Visitor<T>) => T;
1729
1738
  }
1730
1739
  /**
1731
1740
  * <p>The output of a step.</p>
@@ -78,7 +78,6 @@ export declare namespace StepInput {
78
78
  mapOfStringValue: (value: Record<string, string>) => T;
79
79
  _: (name: string, value: any) => T;
80
80
  }
81
- const visit: <T>(value: StepInput, visitor: Visitor<T>) => T;
82
81
  }
83
82
  export interface CreateMigrationWorkflowRequest {
84
83
  name: string | undefined;
@@ -258,7 +257,6 @@ export declare namespace TemplateSource {
258
257
  workflowId: (value: string) => T;
259
258
  _: (name: string, value: any) => T;
260
259
  }
261
- const visit: <T>(value: TemplateSource, visitor: Visitor<T>) => T;
262
260
  }
263
261
  export interface CreateTemplateRequest {
264
262
  templateName: string | undefined;
@@ -532,7 +530,6 @@ export declare namespace WorkflowStepOutputUnion {
532
530
  listOfStringValue: (value: string[]) => T;
533
531
  _: (name: string, value: any) => T;
534
532
  }
535
- const visit: <T>(value: WorkflowStepOutputUnion, visitor: Visitor<T>) => T;
536
533
  }
537
534
  export interface WorkflowStepOutput {
538
535
  name?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-migrationhuborchestrator",
3
3
  "description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native",
4
- "version": "3.929.0",
4
+ "version": "3.930.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-migrationhuborchestrator",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.929.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
59
  "tslib": "^2.6.2"
60
60
  },