@aws-sdk/client-migrationhuborchestrator 3.300.0 → 3.303.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.
Files changed (33) hide show
  1. package/dist-cjs/models/models_0.js +65 -75
  2. package/dist-es/models/models_0.js +65 -75
  3. package/dist-types/commands/CreateWorkflowCommand.d.ts +5 -5
  4. package/dist-types/commands/CreateWorkflowStepCommand.d.ts +8 -8
  5. package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +2 -2
  6. package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +1 -1
  9. package/dist-types/commands/GetTemplateCommand.d.ts +1 -1
  10. package/dist-types/commands/GetTemplateStepCommand.d.ts +1 -1
  11. package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +1 -1
  12. package/dist-types/commands/GetWorkflowCommand.d.ts +1 -1
  13. package/dist-types/commands/GetWorkflowStepCommand.d.ts +1 -1
  14. package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +1 -1
  15. package/dist-types/commands/ListPluginsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  17. package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTemplateStepsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListTemplatesCommand.d.ts +1 -1
  20. package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListWorkflowStepsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  23. package/dist-types/commands/RetryWorkflowStepCommand.d.ts +1 -1
  24. package/dist-types/commands/StartWorkflowCommand.d.ts +1 -1
  25. package/dist-types/commands/StopWorkflowCommand.d.ts +1 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  28. package/dist-types/commands/UpdateWorkflowCommand.d.ts +5 -5
  29. package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +8 -8
  30. package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +2 -2
  31. package/dist-types/models/models_0.d.ts +115 -65
  32. package/dist-types/ts3.4/models/models_0.d.ts +80 -65
  33. package/package.json +34 -34
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { MigrationHubOrchestratorClient, TagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, TagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { MigrationHubOrchestratorClient, UntagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UntagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,18 +26,18 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateMigrationWorkflowRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
33
- * inputParameters: {
34
- * "<keys>": { // Union: only one key present
33
+ * inputParameters: { // StepInputParameters
34
+ * "<keys>": { // StepInput Union: only one key present
35
35
  * integerValue: Number("int"),
36
36
  * stringValue: "STRING_VALUE",
37
- * listOfStringsValue: [
37
+ * listOfStringsValue: [ // StringList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * mapOfStringValue: {
40
+ * mapOfStringValue: { // StringMap
41
41
  * "<keys>": "STRING_VALUE",
42
42
  * },
43
43
  * },
@@ -26,35 +26,35 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWorkflowStepRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * stepGroupId: "STRING_VALUE", // required
32
32
  * workflowId: "STRING_VALUE", // required
33
33
  * name: "STRING_VALUE",
34
34
  * description: "STRING_VALUE",
35
35
  * stepActionType: "STRING_VALUE",
36
- * workflowStepAutomationConfiguration: {
36
+ * workflowStepAutomationConfiguration: { // WorkflowStepAutomationConfiguration
37
37
  * scriptLocationS3Bucket: "STRING_VALUE",
38
- * scriptLocationS3Key: {
38
+ * scriptLocationS3Key: { // PlatformScriptKey
39
39
  * linux: "STRING_VALUE",
40
40
  * windows: "STRING_VALUE",
41
41
  * },
42
- * command: {
42
+ * command: { // PlatformCommand
43
43
  * linux: "STRING_VALUE",
44
44
  * windows: "STRING_VALUE",
45
45
  * },
46
46
  * runEnvironment: "STRING_VALUE",
47
47
  * targetType: "STRING_VALUE",
48
48
  * },
49
- * stepTarget: [
49
+ * stepTarget: [ // StringList
50
50
  * "STRING_VALUE",
51
51
  * ],
52
- * outputs: [
53
- * {
52
+ * outputs: [ // WorkflowStepOutputList
53
+ * { // WorkflowStepOutput
54
54
  * name: "STRING_VALUE",
55
55
  * dataType: "STRING_VALUE",
56
56
  * required: true || false,
57
- * value: { // Union: only one key present
57
+ * value: { // WorkflowStepOutputUnion Union: only one key present
58
58
  * integerValue: Number("int"),
59
59
  * stringValue: "STRING_VALUE",
60
60
  * listOfStringValue: [
@@ -26,12 +26,12 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWorkflowStepGroupRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * id: "STRING_VALUE", // required
32
32
  * name: "STRING_VALUE",
33
33
  * description: "STRING_VALUE",
34
- * next: [
34
+ * next: [ // StringList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * previous: [
@@ -157,23 +157,28 @@ export interface CreateMigrationWorkflowRequest {
157
157
  }
158
158
  /**
159
159
  * @public
160
+ * @enum
160
161
  */
161
- export declare enum MigrationWorkflowStatusEnum {
162
- COMPLETED = "COMPLETED",
163
- CREATING = "CREATING",
164
- CREATION_FAILED = "CREATION_FAILED",
165
- DELETED = "DELETED",
166
- DELETING = "DELETING",
167
- DELETION_FAILED = "DELETION_FAILED",
168
- IN_PROGRESS = "IN_PROGRESS",
169
- NOT_STARTED = "NOT_STARTED",
170
- PAUSED = "PAUSED",
171
- PAUSING = "PAUSING",
172
- PAUSING_FAILED = "PAUSING_FAILED",
173
- STARTING = "STARTING",
174
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED",
175
- WORKFLOW_FAILED = "WORKFLOW_FAILED"
176
- }
162
+ export declare const MigrationWorkflowStatusEnum: {
163
+ readonly COMPLETED: "COMPLETED";
164
+ readonly CREATING: "CREATING";
165
+ readonly CREATION_FAILED: "CREATION_FAILED";
166
+ readonly DELETED: "DELETED";
167
+ readonly DELETING: "DELETING";
168
+ readonly DELETION_FAILED: "DELETION_FAILED";
169
+ readonly IN_PROGRESS: "IN_PROGRESS";
170
+ readonly NOT_STARTED: "NOT_STARTED";
171
+ readonly PAUSED: "PAUSED";
172
+ readonly PAUSING: "PAUSING";
173
+ readonly PAUSING_FAILED: "PAUSING_FAILED";
174
+ readonly STARTING: "STARTING";
175
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
176
+ readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
177
+ };
178
+ /**
179
+ * @public
180
+ */
181
+ export type MigrationWorkflowStatusEnum = (typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
177
182
  /**
178
183
  * @public
179
184
  */
@@ -626,13 +631,18 @@ export interface GetMigrationWorkflowTemplateRequest {
626
631
  }
627
632
  /**
628
633
  * @public
634
+ * @enum
629
635
  */
630
- export declare enum DataType {
631
- INTEGER = "INTEGER",
632
- STRING = "STRING",
633
- STRINGLIST = "STRINGLIST",
634
- STRINGMAP = "STRINGMAP"
635
- }
636
+ export declare const DataType: {
637
+ readonly INTEGER: "INTEGER";
638
+ readonly STRING: "STRING";
639
+ readonly STRINGLIST: "STRINGLIST";
640
+ readonly STRINGMAP: "STRINGMAP";
641
+ };
642
+ /**
643
+ * @public
644
+ */
645
+ export type DataType = (typeof DataType)[keyof typeof DataType];
636
646
  /**
637
647
  * @public
638
648
  * <p>The input parameters of a template.</p>
@@ -653,10 +663,15 @@ export interface TemplateInput {
653
663
  }
654
664
  /**
655
665
  * @public
666
+ * @enum
656
667
  */
657
- export declare enum TemplateStatus {
658
- CREATED = "CREATED"
659
- }
668
+ export declare const TemplateStatus: {
669
+ readonly CREATED: "CREATED";
670
+ };
671
+ /**
672
+ * @public
673
+ */
674
+ export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus];
660
675
  /**
661
676
  * @public
662
677
  */
@@ -757,11 +772,16 @@ export interface ListPluginsRequest {
757
772
  }
758
773
  /**
759
774
  * @public
775
+ * @enum
760
776
  */
761
- export declare enum PluginHealth {
762
- PLUGIN_HEALTHY = "HEALTHY",
763
- PLUGIN_UNHEALTHY = "UNHEALTHY"
764
- }
777
+ export declare const PluginHealth: {
778
+ readonly PLUGIN_HEALTHY: "HEALTHY";
779
+ readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
780
+ };
781
+ /**
782
+ * @public
783
+ */
784
+ export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
765
785
  /**
766
786
  * @public
767
787
  * <p>The summary of the Migration Hub Orchestrator plugin.</p>
@@ -861,11 +881,16 @@ export interface StepOutput {
861
881
  }
862
882
  /**
863
883
  * @public
884
+ * @enum
864
885
  */
865
- export declare enum StepActionType {
866
- AUTOMATED = "AUTOMATED",
867
- MANUAL = "MANUAL"
868
- }
886
+ export declare const StepActionType: {
887
+ readonly AUTOMATED: "AUTOMATED";
888
+ readonly MANUAL: "MANUAL";
889
+ };
890
+ /**
891
+ * @public
892
+ */
893
+ export type StepActionType = (typeof StepActionType)[keyof typeof StepActionType];
869
894
  /**
870
895
  * @public
871
896
  * <p>Command to be run on a particular operating system.</p>
@@ -882,11 +907,16 @@ export interface PlatformCommand {
882
907
  }
883
908
  /**
884
909
  * @public
910
+ * @enum
885
911
  */
886
- export declare enum RunEnvironment {
887
- AWS = "AWS",
888
- ONPREMISE = "ONPREMISE"
889
- }
912
+ export declare const RunEnvironment: {
913
+ readonly AWS: "AWS";
914
+ readonly ONPREMISE: "ONPREMISE";
915
+ };
916
+ /**
917
+ * @public
918
+ */
919
+ export type RunEnvironment = (typeof RunEnvironment)[keyof typeof RunEnvironment];
890
920
  /**
891
921
  * @public
892
922
  * <p>The script location for a particular operating system.</p>
@@ -903,12 +933,17 @@ export interface PlatformScriptKey {
903
933
  }
904
934
  /**
905
935
  * @public
936
+ * @enum
906
937
  */
907
- export declare enum TargetType {
908
- ALL = "ALL",
909
- NONE = "NONE",
910
- SINGLE = "SINGLE"
911
- }
938
+ export declare const TargetType: {
939
+ readonly ALL: "ALL";
940
+ readonly NONE: "NONE";
941
+ readonly SINGLE: "SINGLE";
942
+ };
943
+ /**
944
+ * @public
945
+ */
946
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
912
947
  /**
913
948
  * @public
914
949
  * <p>The custom script to run tests on source or target environments.</p>
@@ -1008,11 +1043,16 @@ export interface ListTemplateStepsRequest {
1008
1043
  }
1009
1044
  /**
1010
1045
  * @public
1046
+ * @enum
1011
1047
  */
1012
- export declare enum Owner {
1013
- AWSManaged = "AWS_MANAGED",
1014
- CUSTOM = "CUSTOM"
1015
- }
1048
+ export declare const Owner: {
1049
+ readonly AWSManaged: "AWS_MANAGED";
1050
+ readonly CUSTOM: "CUSTOM";
1051
+ };
1052
+ /**
1053
+ * @public
1054
+ */
1055
+ export type Owner = (typeof Owner)[keyof typeof Owner];
1016
1056
  /**
1017
1057
  * @public
1018
1058
  * <p>The summary of the step.</p>
@@ -1084,17 +1124,22 @@ export interface GetTemplateStepGroupRequest {
1084
1124
  }
1085
1125
  /**
1086
1126
  * @public
1127
+ * @enum
1087
1128
  */
1088
- export declare enum StepGroupStatus {
1089
- AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
1090
- COMPLETED = "COMPLETED",
1091
- FAILED = "FAILED",
1092
- IN_PROGRESS = "IN_PROGRESS",
1093
- PAUSED = "PAUSED",
1094
- PAUSING = "PAUSING",
1095
- READY = "READY",
1096
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED"
1097
- }
1129
+ export declare const StepGroupStatus: {
1130
+ readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
1131
+ readonly COMPLETED: "COMPLETED";
1132
+ readonly FAILED: "FAILED";
1133
+ readonly IN_PROGRESS: "IN_PROGRESS";
1134
+ readonly PAUSED: "PAUSED";
1135
+ readonly PAUSING: "PAUSING";
1136
+ readonly READY: "READY";
1137
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
1138
+ };
1139
+ /**
1140
+ * @public
1141
+ */
1142
+ export type StepGroupStatus = (typeof StepGroupStatus)[keyof typeof StepGroupStatus];
1098
1143
  /**
1099
1144
  * @public
1100
1145
  */
@@ -1417,16 +1462,21 @@ export interface GetWorkflowStepRequest {
1417
1462
  }
1418
1463
  /**
1419
1464
  * @public
1465
+ * @enum
1420
1466
  */
1421
- export declare enum StepStatus {
1422
- AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
1423
- COMPLETED = "COMPLETED",
1424
- FAILED = "FAILED",
1425
- IN_PROGRESS = "IN_PROGRESS",
1426
- PAUSED = "PAUSED",
1427
- READY = "READY",
1428
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED"
1429
- }
1467
+ export declare const StepStatus: {
1468
+ readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
1469
+ readonly COMPLETED: "COMPLETED";
1470
+ readonly FAILED: "FAILED";
1471
+ readonly IN_PROGRESS: "IN_PROGRESS";
1472
+ readonly PAUSED: "PAUSED";
1473
+ readonly READY: "READY";
1474
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
1475
+ };
1476
+ /**
1477
+ * @public
1478
+ */
1479
+ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
1430
1480
  /**
1431
1481
  * @public
1432
1482
  */
@@ -89,22 +89,24 @@ export interface CreateMigrationWorkflowRequest {
89
89
  stepTargets?: string[];
90
90
  tags?: Record<string, string>;
91
91
  }
92
- export declare enum MigrationWorkflowStatusEnum {
93
- COMPLETED = "COMPLETED",
94
- CREATING = "CREATING",
95
- CREATION_FAILED = "CREATION_FAILED",
96
- DELETED = "DELETED",
97
- DELETING = "DELETING",
98
- DELETION_FAILED = "DELETION_FAILED",
99
- IN_PROGRESS = "IN_PROGRESS",
100
- NOT_STARTED = "NOT_STARTED",
101
- PAUSED = "PAUSED",
102
- PAUSING = "PAUSING",
103
- PAUSING_FAILED = "PAUSING_FAILED",
104
- STARTING = "STARTING",
105
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED",
106
- WORKFLOW_FAILED = "WORKFLOW_FAILED",
107
- }
92
+ export declare const MigrationWorkflowStatusEnum: {
93
+ readonly COMPLETED: "COMPLETED";
94
+ readonly CREATING: "CREATING";
95
+ readonly CREATION_FAILED: "CREATION_FAILED";
96
+ readonly DELETED: "DELETED";
97
+ readonly DELETING: "DELETING";
98
+ readonly DELETION_FAILED: "DELETION_FAILED";
99
+ readonly IN_PROGRESS: "IN_PROGRESS";
100
+ readonly NOT_STARTED: "NOT_STARTED";
101
+ readonly PAUSED: "PAUSED";
102
+ readonly PAUSING: "PAUSING";
103
+ readonly PAUSING_FAILED: "PAUSING_FAILED";
104
+ readonly STARTING: "STARTING";
105
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
106
+ readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
107
+ };
108
+ export type MigrationWorkflowStatusEnum =
109
+ (typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
108
110
  export interface CreateMigrationWorkflowResponse {
109
111
  id?: string;
110
112
  arn?: string;
@@ -237,20 +239,23 @@ export interface UpdateMigrationWorkflowResponse {
237
239
  export interface GetMigrationWorkflowTemplateRequest {
238
240
  id: string | undefined;
239
241
  }
240
- export declare enum DataType {
241
- INTEGER = "INTEGER",
242
- STRING = "STRING",
243
- STRINGLIST = "STRINGLIST",
244
- STRINGMAP = "STRINGMAP",
245
- }
242
+ export declare const DataType: {
243
+ readonly INTEGER: "INTEGER";
244
+ readonly STRING: "STRING";
245
+ readonly STRINGLIST: "STRINGLIST";
246
+ readonly STRINGMAP: "STRINGMAP";
247
+ };
248
+ export type DataType = (typeof DataType)[keyof typeof DataType];
246
249
  export interface TemplateInput {
247
250
  inputName?: string;
248
251
  dataType?: DataType | string;
249
252
  required?: boolean;
250
253
  }
251
- export declare enum TemplateStatus {
252
- CREATED = "CREATED",
253
- }
254
+ export declare const TemplateStatus: {
255
+ readonly CREATED: "CREATED";
256
+ };
257
+ export type TemplateStatus =
258
+ (typeof TemplateStatus)[keyof typeof TemplateStatus];
254
259
  export interface GetMigrationWorkflowTemplateResponse {
255
260
  id?: string;
256
261
  name?: string;
@@ -279,10 +284,11 @@ export interface ListPluginsRequest {
279
284
  maxResults?: number;
280
285
  nextToken?: string;
281
286
  }
282
- export declare enum PluginHealth {
283
- PLUGIN_HEALTHY = "HEALTHY",
284
- PLUGIN_UNHEALTHY = "UNHEALTHY",
285
- }
287
+ export declare const PluginHealth: {
288
+ readonly PLUGIN_HEALTHY: "HEALTHY";
289
+ readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
290
+ };
291
+ export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
286
292
  export interface PluginSummary {
287
293
  pluginId?: string;
288
294
  hostname?: string;
@@ -310,27 +316,32 @@ export interface StepOutput {
310
316
  dataType?: DataType | string;
311
317
  required?: boolean;
312
318
  }
313
- export declare enum StepActionType {
314
- AUTOMATED = "AUTOMATED",
315
- MANUAL = "MANUAL",
316
- }
319
+ export declare const StepActionType: {
320
+ readonly AUTOMATED: "AUTOMATED";
321
+ readonly MANUAL: "MANUAL";
322
+ };
323
+ export type StepActionType =
324
+ (typeof StepActionType)[keyof typeof StepActionType];
317
325
  export interface PlatformCommand {
318
326
  linux?: string;
319
327
  windows?: string;
320
328
  }
321
- export declare enum RunEnvironment {
322
- AWS = "AWS",
323
- ONPREMISE = "ONPREMISE",
324
- }
329
+ export declare const RunEnvironment: {
330
+ readonly AWS: "AWS";
331
+ readonly ONPREMISE: "ONPREMISE";
332
+ };
333
+ export type RunEnvironment =
334
+ (typeof RunEnvironment)[keyof typeof RunEnvironment];
325
335
  export interface PlatformScriptKey {
326
336
  linux?: string;
327
337
  windows?: string;
328
338
  }
329
- export declare enum TargetType {
330
- ALL = "ALL",
331
- NONE = "NONE",
332
- SINGLE = "SINGLE",
333
- }
339
+ export declare const TargetType: {
340
+ readonly ALL: "ALL";
341
+ readonly NONE: "NONE";
342
+ readonly SINGLE: "SINGLE";
343
+ };
344
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
334
345
  export interface StepAutomationConfiguration {
335
346
  scriptLocationS3Bucket?: string;
336
347
  scriptLocationS3Key?: PlatformScriptKey;
@@ -357,10 +368,11 @@ export interface ListTemplateStepsRequest {
357
368
  templateId: string | undefined;
358
369
  stepGroupId: string | undefined;
359
370
  }
360
- export declare enum Owner {
361
- AWSManaged = "AWS_MANAGED",
362
- CUSTOM = "CUSTOM",
363
- }
371
+ export declare const Owner: {
372
+ readonly AWSManaged: "AWS_MANAGED";
373
+ readonly CUSTOM: "CUSTOM";
374
+ };
375
+ export type Owner = (typeof Owner)[keyof typeof Owner];
364
376
  export interface TemplateStepSummary {
365
377
  id?: string;
366
378
  stepGroupId?: string;
@@ -380,16 +392,18 @@ export interface GetTemplateStepGroupRequest {
380
392
  templateId: string | undefined;
381
393
  id: string | undefined;
382
394
  }
383
- export declare enum StepGroupStatus {
384
- AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
385
- COMPLETED = "COMPLETED",
386
- FAILED = "FAILED",
387
- IN_PROGRESS = "IN_PROGRESS",
388
- PAUSED = "PAUSED",
389
- PAUSING = "PAUSING",
390
- READY = "READY",
391
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED",
392
- }
395
+ export declare const StepGroupStatus: {
396
+ readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
397
+ readonly COMPLETED: "COMPLETED";
398
+ readonly FAILED: "FAILED";
399
+ readonly IN_PROGRESS: "IN_PROGRESS";
400
+ readonly PAUSED: "PAUSED";
401
+ readonly PAUSING: "PAUSING";
402
+ readonly READY: "READY";
403
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
404
+ };
405
+ export type StepGroupStatus =
406
+ (typeof StepGroupStatus)[keyof typeof StepGroupStatus];
393
407
  export interface GetTemplateStepGroupResponse {
394
408
  templateId?: string;
395
409
  id?: string;
@@ -502,15 +516,16 @@ export interface GetWorkflowStepRequest {
502
516
  stepGroupId: string | undefined;
503
517
  id: string | undefined;
504
518
  }
505
- export declare enum StepStatus {
506
- AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
507
- COMPLETED = "COMPLETED",
508
- FAILED = "FAILED",
509
- IN_PROGRESS = "IN_PROGRESS",
510
- PAUSED = "PAUSED",
511
- READY = "READY",
512
- USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED",
513
- }
519
+ export declare const StepStatus: {
520
+ readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
521
+ readonly COMPLETED: "COMPLETED";
522
+ readonly FAILED: "FAILED";
523
+ readonly IN_PROGRESS: "IN_PROGRESS";
524
+ readonly PAUSED: "PAUSED";
525
+ readonly READY: "READY";
526
+ readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
527
+ };
528
+ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
514
529
  export interface GetWorkflowStepResponse {
515
530
  name?: string;
516
531
  stepGroupId?: string;