@aws-sdk/client-migrationhuborchestrator 3.935.0 → 3.939.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 +81 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +70 -0
- package/dist-es/models/models_0.js +1 -70
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +150 -0
- package/dist-types/models/models_0.d.ts +1 -150
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +85 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -85
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -1933,6 +1933,77 @@ const paginateListWorkflowSteps = core.createPaginator(MigrationHubOrchestratorC
|
|
|
1933
1933
|
|
|
1934
1934
|
const paginateListWorkflows = core.createPaginator(MigrationHubOrchestratorClient, ListWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1935
1935
|
|
|
1936
|
+
const MigrationWorkflowStatusEnum = {
|
|
1937
|
+
COMPLETED: "COMPLETED",
|
|
1938
|
+
CREATING: "CREATING",
|
|
1939
|
+
CREATION_FAILED: "CREATION_FAILED",
|
|
1940
|
+
DELETED: "DELETED",
|
|
1941
|
+
DELETING: "DELETING",
|
|
1942
|
+
DELETION_FAILED: "DELETION_FAILED",
|
|
1943
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1944
|
+
NOT_STARTED: "NOT_STARTED",
|
|
1945
|
+
PAUSED: "PAUSED",
|
|
1946
|
+
PAUSING: "PAUSING",
|
|
1947
|
+
PAUSING_FAILED: "PAUSING_FAILED",
|
|
1948
|
+
STARTING: "STARTING",
|
|
1949
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
1950
|
+
WORKFLOW_FAILED: "WORKFLOW_FAILED",
|
|
1951
|
+
};
|
|
1952
|
+
const DataType = {
|
|
1953
|
+
INTEGER: "INTEGER",
|
|
1954
|
+
STRING: "STRING",
|
|
1955
|
+
STRINGLIST: "STRINGLIST",
|
|
1956
|
+
STRINGMAP: "STRINGMAP",
|
|
1957
|
+
};
|
|
1958
|
+
const TemplateStatus = {
|
|
1959
|
+
CREATED: "CREATED",
|
|
1960
|
+
CREATING: "CREATING",
|
|
1961
|
+
CREATION_FAILED: "CREATION_FAILED",
|
|
1962
|
+
PENDING_CREATION: "PENDING_CREATION",
|
|
1963
|
+
READY: "READY",
|
|
1964
|
+
};
|
|
1965
|
+
const PluginHealth = {
|
|
1966
|
+
PLUGIN_HEALTHY: "HEALTHY",
|
|
1967
|
+
PLUGIN_UNHEALTHY: "UNHEALTHY",
|
|
1968
|
+
};
|
|
1969
|
+
const StepActionType = {
|
|
1970
|
+
AUTOMATED: "AUTOMATED",
|
|
1971
|
+
MANUAL: "MANUAL",
|
|
1972
|
+
};
|
|
1973
|
+
const RunEnvironment = {
|
|
1974
|
+
AWS: "AWS",
|
|
1975
|
+
ONPREMISE: "ONPREMISE",
|
|
1976
|
+
};
|
|
1977
|
+
const TargetType = {
|
|
1978
|
+
ALL: "ALL",
|
|
1979
|
+
NONE: "NONE",
|
|
1980
|
+
SINGLE: "SINGLE",
|
|
1981
|
+
};
|
|
1982
|
+
const Owner = {
|
|
1983
|
+
AWSManaged: "AWS_MANAGED",
|
|
1984
|
+
CUSTOM: "CUSTOM",
|
|
1985
|
+
};
|
|
1986
|
+
const StepGroupStatus = {
|
|
1987
|
+
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
1988
|
+
COMPLETED: "COMPLETED",
|
|
1989
|
+
FAILED: "FAILED",
|
|
1990
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1991
|
+
PAUSED: "PAUSED",
|
|
1992
|
+
PAUSING: "PAUSING",
|
|
1993
|
+
READY: "READY",
|
|
1994
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
1995
|
+
};
|
|
1996
|
+
const StepStatus = {
|
|
1997
|
+
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
1998
|
+
COMPLETED: "COMPLETED",
|
|
1999
|
+
FAILED: "FAILED",
|
|
2000
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
2001
|
+
PAUSED: "PAUSED",
|
|
2002
|
+
READY: "READY",
|
|
2003
|
+
SKIPPED: "SKIPPED",
|
|
2004
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
2005
|
+
};
|
|
2006
|
+
|
|
1936
2007
|
Object.defineProperty(exports, "$Command", {
|
|
1937
2008
|
enumerable: true,
|
|
1938
2009
|
get: function () { return smithyClient.Command; }
|
|
@@ -1947,6 +2018,7 @@ exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
|
1947
2018
|
exports.CreateWorkflowCommand = CreateWorkflowCommand;
|
|
1948
2019
|
exports.CreateWorkflowStepCommand = CreateWorkflowStepCommand;
|
|
1949
2020
|
exports.CreateWorkflowStepGroupCommand = CreateWorkflowStepGroupCommand;
|
|
2021
|
+
exports.DataType = DataType;
|
|
1950
2022
|
exports.DeleteTemplateCommand = DeleteTemplateCommand;
|
|
1951
2023
|
exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
|
|
1952
2024
|
exports.DeleteWorkflowStepCommand = DeleteWorkflowStepCommand;
|
|
@@ -1969,11 +2041,20 @@ exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
|
1969
2041
|
exports.MigrationHubOrchestrator = MigrationHubOrchestrator;
|
|
1970
2042
|
exports.MigrationHubOrchestratorClient = MigrationHubOrchestratorClient;
|
|
1971
2043
|
exports.MigrationHubOrchestratorServiceException = MigrationHubOrchestratorServiceException$1;
|
|
2044
|
+
exports.MigrationWorkflowStatusEnum = MigrationWorkflowStatusEnum;
|
|
2045
|
+
exports.Owner = Owner;
|
|
2046
|
+
exports.PluginHealth = PluginHealth;
|
|
1972
2047
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1973
2048
|
exports.RetryWorkflowStepCommand = RetryWorkflowStepCommand;
|
|
2049
|
+
exports.RunEnvironment = RunEnvironment;
|
|
1974
2050
|
exports.StartWorkflowCommand = StartWorkflowCommand;
|
|
2051
|
+
exports.StepActionType = StepActionType;
|
|
2052
|
+
exports.StepGroupStatus = StepGroupStatus;
|
|
2053
|
+
exports.StepStatus = StepStatus;
|
|
1975
2054
|
exports.StopWorkflowCommand = StopWorkflowCommand;
|
|
1976
2055
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2056
|
+
exports.TargetType = TargetType;
|
|
2057
|
+
exports.TemplateStatus = TemplateStatus;
|
|
1977
2058
|
exports.ThrottlingException = ThrottlingException$1;
|
|
1978
2059
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1979
2060
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./MigrationHubOrchestratorClient";
|
|
|
2
2
|
export * from "./MigrationHubOrchestrator";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { MigrationHubOrchestratorServiceException } from "./models/MigrationHubOrchestratorServiceException";
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export const MigrationWorkflowStatusEnum = {
|
|
2
|
+
COMPLETED: "COMPLETED",
|
|
3
|
+
CREATING: "CREATING",
|
|
4
|
+
CREATION_FAILED: "CREATION_FAILED",
|
|
5
|
+
DELETED: "DELETED",
|
|
6
|
+
DELETING: "DELETING",
|
|
7
|
+
DELETION_FAILED: "DELETION_FAILED",
|
|
8
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
9
|
+
NOT_STARTED: "NOT_STARTED",
|
|
10
|
+
PAUSED: "PAUSED",
|
|
11
|
+
PAUSING: "PAUSING",
|
|
12
|
+
PAUSING_FAILED: "PAUSING_FAILED",
|
|
13
|
+
STARTING: "STARTING",
|
|
14
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
15
|
+
WORKFLOW_FAILED: "WORKFLOW_FAILED",
|
|
16
|
+
};
|
|
17
|
+
export const DataType = {
|
|
18
|
+
INTEGER: "INTEGER",
|
|
19
|
+
STRING: "STRING",
|
|
20
|
+
STRINGLIST: "STRINGLIST",
|
|
21
|
+
STRINGMAP: "STRINGMAP",
|
|
22
|
+
};
|
|
23
|
+
export const TemplateStatus = {
|
|
24
|
+
CREATED: "CREATED",
|
|
25
|
+
CREATING: "CREATING",
|
|
26
|
+
CREATION_FAILED: "CREATION_FAILED",
|
|
27
|
+
PENDING_CREATION: "PENDING_CREATION",
|
|
28
|
+
READY: "READY",
|
|
29
|
+
};
|
|
30
|
+
export const PluginHealth = {
|
|
31
|
+
PLUGIN_HEALTHY: "HEALTHY",
|
|
32
|
+
PLUGIN_UNHEALTHY: "UNHEALTHY",
|
|
33
|
+
};
|
|
34
|
+
export const StepActionType = {
|
|
35
|
+
AUTOMATED: "AUTOMATED",
|
|
36
|
+
MANUAL: "MANUAL",
|
|
37
|
+
};
|
|
38
|
+
export const RunEnvironment = {
|
|
39
|
+
AWS: "AWS",
|
|
40
|
+
ONPREMISE: "ONPREMISE",
|
|
41
|
+
};
|
|
42
|
+
export const TargetType = {
|
|
43
|
+
ALL: "ALL",
|
|
44
|
+
NONE: "NONE",
|
|
45
|
+
SINGLE: "SINGLE",
|
|
46
|
+
};
|
|
47
|
+
export const Owner = {
|
|
48
|
+
AWSManaged: "AWS_MANAGED",
|
|
49
|
+
CUSTOM: "CUSTOM",
|
|
50
|
+
};
|
|
51
|
+
export const StepGroupStatus = {
|
|
52
|
+
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
53
|
+
COMPLETED: "COMPLETED",
|
|
54
|
+
FAILED: "FAILED",
|
|
55
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
+
PAUSED: "PAUSED",
|
|
57
|
+
PAUSING: "PAUSING",
|
|
58
|
+
READY: "READY",
|
|
59
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
60
|
+
};
|
|
61
|
+
export const StepStatus = {
|
|
62
|
+
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
63
|
+
COMPLETED: "COMPLETED",
|
|
64
|
+
FAILED: "FAILED",
|
|
65
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
66
|
+
PAUSED: "PAUSED",
|
|
67
|
+
READY: "READY",
|
|
68
|
+
SKIPPED: "SKIPPED",
|
|
69
|
+
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
70
|
+
};
|
|
@@ -1,70 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
COMPLETED: "COMPLETED",
|
|
3
|
-
CREATING: "CREATING",
|
|
4
|
-
CREATION_FAILED: "CREATION_FAILED",
|
|
5
|
-
DELETED: "DELETED",
|
|
6
|
-
DELETING: "DELETING",
|
|
7
|
-
DELETION_FAILED: "DELETION_FAILED",
|
|
8
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
9
|
-
NOT_STARTED: "NOT_STARTED",
|
|
10
|
-
PAUSED: "PAUSED",
|
|
11
|
-
PAUSING: "PAUSING",
|
|
12
|
-
PAUSING_FAILED: "PAUSING_FAILED",
|
|
13
|
-
STARTING: "STARTING",
|
|
14
|
-
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
15
|
-
WORKFLOW_FAILED: "WORKFLOW_FAILED",
|
|
16
|
-
};
|
|
17
|
-
export const DataType = {
|
|
18
|
-
INTEGER: "INTEGER",
|
|
19
|
-
STRING: "STRING",
|
|
20
|
-
STRINGLIST: "STRINGLIST",
|
|
21
|
-
STRINGMAP: "STRINGMAP",
|
|
22
|
-
};
|
|
23
|
-
export const TemplateStatus = {
|
|
24
|
-
CREATED: "CREATED",
|
|
25
|
-
CREATING: "CREATING",
|
|
26
|
-
CREATION_FAILED: "CREATION_FAILED",
|
|
27
|
-
PENDING_CREATION: "PENDING_CREATION",
|
|
28
|
-
READY: "READY",
|
|
29
|
-
};
|
|
30
|
-
export const PluginHealth = {
|
|
31
|
-
PLUGIN_HEALTHY: "HEALTHY",
|
|
32
|
-
PLUGIN_UNHEALTHY: "UNHEALTHY",
|
|
33
|
-
};
|
|
34
|
-
export const StepActionType = {
|
|
35
|
-
AUTOMATED: "AUTOMATED",
|
|
36
|
-
MANUAL: "MANUAL",
|
|
37
|
-
};
|
|
38
|
-
export const RunEnvironment = {
|
|
39
|
-
AWS: "AWS",
|
|
40
|
-
ONPREMISE: "ONPREMISE",
|
|
41
|
-
};
|
|
42
|
-
export const TargetType = {
|
|
43
|
-
ALL: "ALL",
|
|
44
|
-
NONE: "NONE",
|
|
45
|
-
SINGLE: "SINGLE",
|
|
46
|
-
};
|
|
47
|
-
export const Owner = {
|
|
48
|
-
AWSManaged: "AWS_MANAGED",
|
|
49
|
-
CUSTOM: "CUSTOM",
|
|
50
|
-
};
|
|
51
|
-
export const StepGroupStatus = {
|
|
52
|
-
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
53
|
-
COMPLETED: "COMPLETED",
|
|
54
|
-
FAILED: "FAILED",
|
|
55
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
-
PAUSED: "PAUSED",
|
|
57
|
-
PAUSING: "PAUSING",
|
|
58
|
-
READY: "READY",
|
|
59
|
-
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
60
|
-
};
|
|
61
|
-
export const StepStatus = {
|
|
62
|
-
AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES",
|
|
63
|
-
COMPLETED: "COMPLETED",
|
|
64
|
-
FAILED: "FAILED",
|
|
65
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
66
|
-
PAUSED: "PAUSED",
|
|
67
|
-
READY: "READY",
|
|
68
|
-
SKIPPED: "SKIPPED",
|
|
69
|
-
USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED",
|
|
70
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
14
14
|
export type { MigrationHubOrchestratorExtensionConfiguration } from "./extensionConfiguration";
|
|
15
15
|
export * from "./commands";
|
|
16
16
|
export * from "./pagination";
|
|
17
|
+
export * from "./models/enums";
|
|
17
18
|
export * from "./models/errors";
|
|
18
19
|
export type * from "./models/models_0";
|
|
19
20
|
export { MigrationHubOrchestratorServiceException } from "./models/MigrationHubOrchestratorServiceException";
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const MigrationWorkflowStatusEnum: {
|
|
6
|
+
readonly COMPLETED: "COMPLETED";
|
|
7
|
+
readonly CREATING: "CREATING";
|
|
8
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
9
|
+
readonly DELETED: "DELETED";
|
|
10
|
+
readonly DELETING: "DELETING";
|
|
11
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
12
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
13
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
14
|
+
readonly PAUSED: "PAUSED";
|
|
15
|
+
readonly PAUSING: "PAUSING";
|
|
16
|
+
readonly PAUSING_FAILED: "PAUSING_FAILED";
|
|
17
|
+
readonly STARTING: "STARTING";
|
|
18
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
19
|
+
readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type MigrationWorkflowStatusEnum = (typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const DataType: {
|
|
30
|
+
readonly INTEGER: "INTEGER";
|
|
31
|
+
readonly STRING: "STRING";
|
|
32
|
+
readonly STRINGLIST: "STRINGLIST";
|
|
33
|
+
readonly STRINGMAP: "STRINGMAP";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const TemplateStatus: {
|
|
44
|
+
readonly CREATED: "CREATED";
|
|
45
|
+
readonly CREATING: "CREATING";
|
|
46
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
47
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
48
|
+
readonly READY: "READY";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const PluginHealth: {
|
|
59
|
+
readonly PLUGIN_HEALTHY: "HEALTHY";
|
|
60
|
+
readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const StepActionType: {
|
|
71
|
+
readonly AUTOMATED: "AUTOMATED";
|
|
72
|
+
readonly MANUAL: "MANUAL";
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export type StepActionType = (typeof StepActionType)[keyof typeof StepActionType];
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* @enum
|
|
81
|
+
*/
|
|
82
|
+
export declare const RunEnvironment: {
|
|
83
|
+
readonly AWS: "AWS";
|
|
84
|
+
readonly ONPREMISE: "ONPREMISE";
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export type RunEnvironment = (typeof RunEnvironment)[keyof typeof RunEnvironment];
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
* @enum
|
|
93
|
+
*/
|
|
94
|
+
export declare const TargetType: {
|
|
95
|
+
readonly ALL: "ALL";
|
|
96
|
+
readonly NONE: "NONE";
|
|
97
|
+
readonly SINGLE: "SINGLE";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
* @enum
|
|
106
|
+
*/
|
|
107
|
+
export declare const Owner: {
|
|
108
|
+
readonly AWSManaged: "AWS_MANAGED";
|
|
109
|
+
readonly CUSTOM: "CUSTOM";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type Owner = (typeof Owner)[keyof typeof Owner];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const StepGroupStatus: {
|
|
120
|
+
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
121
|
+
readonly COMPLETED: "COMPLETED";
|
|
122
|
+
readonly FAILED: "FAILED";
|
|
123
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
124
|
+
readonly PAUSED: "PAUSED";
|
|
125
|
+
readonly PAUSING: "PAUSING";
|
|
126
|
+
readonly READY: "READY";
|
|
127
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export type StepGroupStatus = (typeof StepGroupStatus)[keyof typeof StepGroupStatus];
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* @enum
|
|
136
|
+
*/
|
|
137
|
+
export declare const StepStatus: {
|
|
138
|
+
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
139
|
+
readonly COMPLETED: "COMPLETED";
|
|
140
|
+
readonly FAILED: "FAILED";
|
|
141
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
142
|
+
readonly PAUSED: "PAUSED";
|
|
143
|
+
readonly READY: "READY";
|
|
144
|
+
readonly SKIPPED: "SKIPPED";
|
|
145
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DataType, MigrationWorkflowStatusEnum, Owner, PluginHealth, RunEnvironment, StepActionType, StepGroupStatus, StepStatus, TargetType, TemplateStatus } from "./enums";
|
|
1
2
|
/**
|
|
2
3
|
* @public
|
|
3
4
|
*/
|
|
@@ -134,30 +135,6 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
134
135
|
*/
|
|
135
136
|
tags?: Record<string, string> | undefined;
|
|
136
137
|
}
|
|
137
|
-
/**
|
|
138
|
-
* @public
|
|
139
|
-
* @enum
|
|
140
|
-
*/
|
|
141
|
-
export declare const MigrationWorkflowStatusEnum: {
|
|
142
|
-
readonly COMPLETED: "COMPLETED";
|
|
143
|
-
readonly CREATING: "CREATING";
|
|
144
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
145
|
-
readonly DELETED: "DELETED";
|
|
146
|
-
readonly DELETING: "DELETING";
|
|
147
|
-
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
148
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
149
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
150
|
-
readonly PAUSED: "PAUSED";
|
|
151
|
-
readonly PAUSING: "PAUSING";
|
|
152
|
-
readonly PAUSING_FAILED: "PAUSING_FAILED";
|
|
153
|
-
readonly STARTING: "STARTING";
|
|
154
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
155
|
-
readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
|
|
156
|
-
};
|
|
157
|
-
/**
|
|
158
|
-
* @public
|
|
159
|
-
*/
|
|
160
|
-
export type MigrationWorkflowStatusEnum = (typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
|
|
161
138
|
/**
|
|
162
139
|
* @public
|
|
163
140
|
*/
|
|
@@ -773,20 +750,6 @@ export interface GetMigrationWorkflowTemplateRequest {
|
|
|
773
750
|
*/
|
|
774
751
|
id: string | undefined;
|
|
775
752
|
}
|
|
776
|
-
/**
|
|
777
|
-
* @public
|
|
778
|
-
* @enum
|
|
779
|
-
*/
|
|
780
|
-
export declare const DataType: {
|
|
781
|
-
readonly INTEGER: "INTEGER";
|
|
782
|
-
readonly STRING: "STRING";
|
|
783
|
-
readonly STRINGLIST: "STRINGLIST";
|
|
784
|
-
readonly STRINGMAP: "STRINGMAP";
|
|
785
|
-
};
|
|
786
|
-
/**
|
|
787
|
-
* @public
|
|
788
|
-
*/
|
|
789
|
-
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
790
753
|
/**
|
|
791
754
|
* <p>The input parameters of a template.</p>
|
|
792
755
|
* @public
|
|
@@ -808,21 +771,6 @@ export interface TemplateInput {
|
|
|
808
771
|
*/
|
|
809
772
|
required?: boolean | undefined;
|
|
810
773
|
}
|
|
811
|
-
/**
|
|
812
|
-
* @public
|
|
813
|
-
* @enum
|
|
814
|
-
*/
|
|
815
|
-
export declare const TemplateStatus: {
|
|
816
|
-
readonly CREATED: "CREATED";
|
|
817
|
-
readonly CREATING: "CREATING";
|
|
818
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
819
|
-
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
820
|
-
readonly READY: "READY";
|
|
821
|
-
};
|
|
822
|
-
/**
|
|
823
|
-
* @public
|
|
824
|
-
*/
|
|
825
|
-
export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
826
774
|
/**
|
|
827
775
|
* @public
|
|
828
776
|
*/
|
|
@@ -1039,18 +987,6 @@ export interface ListPluginsRequest {
|
|
|
1039
987
|
*/
|
|
1040
988
|
nextToken?: string | undefined;
|
|
1041
989
|
}
|
|
1042
|
-
/**
|
|
1043
|
-
* @public
|
|
1044
|
-
* @enum
|
|
1045
|
-
*/
|
|
1046
|
-
export declare const PluginHealth: {
|
|
1047
|
-
readonly PLUGIN_HEALTHY: "HEALTHY";
|
|
1048
|
-
readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
|
|
1049
|
-
};
|
|
1050
|
-
/**
|
|
1051
|
-
* @public
|
|
1052
|
-
*/
|
|
1053
|
-
export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
|
|
1054
990
|
/**
|
|
1055
991
|
* <p>The summary of the Migration Hub Orchestrator plugin.</p>
|
|
1056
992
|
* @public
|
|
@@ -1164,18 +1100,6 @@ export interface StepOutput {
|
|
|
1164
1100
|
*/
|
|
1165
1101
|
required?: boolean | undefined;
|
|
1166
1102
|
}
|
|
1167
|
-
/**
|
|
1168
|
-
* @public
|
|
1169
|
-
* @enum
|
|
1170
|
-
*/
|
|
1171
|
-
export declare const StepActionType: {
|
|
1172
|
-
readonly AUTOMATED: "AUTOMATED";
|
|
1173
|
-
readonly MANUAL: "MANUAL";
|
|
1174
|
-
};
|
|
1175
|
-
/**
|
|
1176
|
-
* @public
|
|
1177
|
-
*/
|
|
1178
|
-
export type StepActionType = (typeof StepActionType)[keyof typeof StepActionType];
|
|
1179
1103
|
/**
|
|
1180
1104
|
* <p>Command to be run on a particular operating system.</p>
|
|
1181
1105
|
* @public
|
|
@@ -1192,18 +1116,6 @@ export interface PlatformCommand {
|
|
|
1192
1116
|
*/
|
|
1193
1117
|
windows?: string | undefined;
|
|
1194
1118
|
}
|
|
1195
|
-
/**
|
|
1196
|
-
* @public
|
|
1197
|
-
* @enum
|
|
1198
|
-
*/
|
|
1199
|
-
export declare const RunEnvironment: {
|
|
1200
|
-
readonly AWS: "AWS";
|
|
1201
|
-
readonly ONPREMISE: "ONPREMISE";
|
|
1202
|
-
};
|
|
1203
|
-
/**
|
|
1204
|
-
* @public
|
|
1205
|
-
*/
|
|
1206
|
-
export type RunEnvironment = (typeof RunEnvironment)[keyof typeof RunEnvironment];
|
|
1207
1119
|
/**
|
|
1208
1120
|
* <p>The script location for a particular operating system.</p>
|
|
1209
1121
|
* @public
|
|
@@ -1220,19 +1132,6 @@ export interface PlatformScriptKey {
|
|
|
1220
1132
|
*/
|
|
1221
1133
|
windows?: string | undefined;
|
|
1222
1134
|
}
|
|
1223
|
-
/**
|
|
1224
|
-
* @public
|
|
1225
|
-
* @enum
|
|
1226
|
-
*/
|
|
1227
|
-
export declare const TargetType: {
|
|
1228
|
-
readonly ALL: "ALL";
|
|
1229
|
-
readonly NONE: "NONE";
|
|
1230
|
-
readonly SINGLE: "SINGLE";
|
|
1231
|
-
};
|
|
1232
|
-
/**
|
|
1233
|
-
* @public
|
|
1234
|
-
*/
|
|
1235
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
1236
1135
|
/**
|
|
1237
1136
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
1238
1137
|
* @public
|
|
@@ -1350,18 +1249,6 @@ export interface ListTemplateStepsRequest {
|
|
|
1350
1249
|
*/
|
|
1351
1250
|
stepGroupId: string | undefined;
|
|
1352
1251
|
}
|
|
1353
|
-
/**
|
|
1354
|
-
* @public
|
|
1355
|
-
* @enum
|
|
1356
|
-
*/
|
|
1357
|
-
export declare const Owner: {
|
|
1358
|
-
readonly AWSManaged: "AWS_MANAGED";
|
|
1359
|
-
readonly CUSTOM: "CUSTOM";
|
|
1360
|
-
};
|
|
1361
|
-
/**
|
|
1362
|
-
* @public
|
|
1363
|
-
*/
|
|
1364
|
-
export type Owner = (typeof Owner)[keyof typeof Owner];
|
|
1365
1252
|
/**
|
|
1366
1253
|
* <p>The summary of the step.</p>
|
|
1367
1254
|
* @public
|
|
@@ -1444,24 +1331,6 @@ export interface GetTemplateStepGroupRequest {
|
|
|
1444
1331
|
*/
|
|
1445
1332
|
id: string | undefined;
|
|
1446
1333
|
}
|
|
1447
|
-
/**
|
|
1448
|
-
* @public
|
|
1449
|
-
* @enum
|
|
1450
|
-
*/
|
|
1451
|
-
export declare const StepGroupStatus: {
|
|
1452
|
-
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
1453
|
-
readonly COMPLETED: "COMPLETED";
|
|
1454
|
-
readonly FAILED: "FAILED";
|
|
1455
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1456
|
-
readonly PAUSED: "PAUSED";
|
|
1457
|
-
readonly PAUSING: "PAUSING";
|
|
1458
|
-
readonly READY: "READY";
|
|
1459
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
1460
|
-
};
|
|
1461
|
-
/**
|
|
1462
|
-
* @public
|
|
1463
|
-
*/
|
|
1464
|
-
export type StepGroupStatus = (typeof StepGroupStatus)[keyof typeof StepGroupStatus];
|
|
1465
1334
|
/**
|
|
1466
1335
|
* @public
|
|
1467
1336
|
*/
|
|
@@ -1841,24 +1710,6 @@ export interface GetWorkflowStepRequest {
|
|
|
1841
1710
|
*/
|
|
1842
1711
|
id: string | undefined;
|
|
1843
1712
|
}
|
|
1844
|
-
/**
|
|
1845
|
-
* @public
|
|
1846
|
-
* @enum
|
|
1847
|
-
*/
|
|
1848
|
-
export declare const StepStatus: {
|
|
1849
|
-
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
1850
|
-
readonly COMPLETED: "COMPLETED";
|
|
1851
|
-
readonly FAILED: "FAILED";
|
|
1852
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1853
|
-
readonly PAUSED: "PAUSED";
|
|
1854
|
-
readonly READY: "READY";
|
|
1855
|
-
readonly SKIPPED: "SKIPPED";
|
|
1856
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
1857
|
-
};
|
|
1858
|
-
/**
|
|
1859
|
-
* @public
|
|
1860
|
-
*/
|
|
1861
|
-
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
1862
1713
|
/**
|
|
1863
1714
|
* @public
|
|
1864
1715
|
*/
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MigrationHubOrchestratorExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { MigrationHubOrchestratorServiceException } from "./models/MigrationHubOrchestratorServiceException";
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export declare const MigrationWorkflowStatusEnum: {
|
|
2
|
+
readonly COMPLETED: "COMPLETED";
|
|
3
|
+
readonly CREATING: "CREATING";
|
|
4
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
5
|
+
readonly DELETED: "DELETED";
|
|
6
|
+
readonly DELETING: "DELETING";
|
|
7
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
8
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
9
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
10
|
+
readonly PAUSED: "PAUSED";
|
|
11
|
+
readonly PAUSING: "PAUSING";
|
|
12
|
+
readonly PAUSING_FAILED: "PAUSING_FAILED";
|
|
13
|
+
readonly STARTING: "STARTING";
|
|
14
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
15
|
+
readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
|
|
16
|
+
};
|
|
17
|
+
export type MigrationWorkflowStatusEnum =
|
|
18
|
+
(typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
|
|
19
|
+
export declare const DataType: {
|
|
20
|
+
readonly INTEGER: "INTEGER";
|
|
21
|
+
readonly STRING: "STRING";
|
|
22
|
+
readonly STRINGLIST: "STRINGLIST";
|
|
23
|
+
readonly STRINGMAP: "STRINGMAP";
|
|
24
|
+
};
|
|
25
|
+
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
26
|
+
export declare const TemplateStatus: {
|
|
27
|
+
readonly CREATED: "CREATED";
|
|
28
|
+
readonly CREATING: "CREATING";
|
|
29
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
30
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
31
|
+
readonly READY: "READY";
|
|
32
|
+
};
|
|
33
|
+
export type TemplateStatus =
|
|
34
|
+
(typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
35
|
+
export declare const PluginHealth: {
|
|
36
|
+
readonly PLUGIN_HEALTHY: "HEALTHY";
|
|
37
|
+
readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
|
|
38
|
+
};
|
|
39
|
+
export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
|
|
40
|
+
export declare const StepActionType: {
|
|
41
|
+
readonly AUTOMATED: "AUTOMATED";
|
|
42
|
+
readonly MANUAL: "MANUAL";
|
|
43
|
+
};
|
|
44
|
+
export type StepActionType =
|
|
45
|
+
(typeof StepActionType)[keyof typeof StepActionType];
|
|
46
|
+
export declare const RunEnvironment: {
|
|
47
|
+
readonly AWS: "AWS";
|
|
48
|
+
readonly ONPREMISE: "ONPREMISE";
|
|
49
|
+
};
|
|
50
|
+
export type RunEnvironment =
|
|
51
|
+
(typeof RunEnvironment)[keyof typeof RunEnvironment];
|
|
52
|
+
export declare const TargetType: {
|
|
53
|
+
readonly ALL: "ALL";
|
|
54
|
+
readonly NONE: "NONE";
|
|
55
|
+
readonly SINGLE: "SINGLE";
|
|
56
|
+
};
|
|
57
|
+
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
58
|
+
export declare const Owner: {
|
|
59
|
+
readonly AWSManaged: "AWS_MANAGED";
|
|
60
|
+
readonly CUSTOM: "CUSTOM";
|
|
61
|
+
};
|
|
62
|
+
export type Owner = (typeof Owner)[keyof typeof Owner];
|
|
63
|
+
export declare const StepGroupStatus: {
|
|
64
|
+
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
65
|
+
readonly COMPLETED: "COMPLETED";
|
|
66
|
+
readonly FAILED: "FAILED";
|
|
67
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
68
|
+
readonly PAUSED: "PAUSED";
|
|
69
|
+
readonly PAUSING: "PAUSING";
|
|
70
|
+
readonly READY: "READY";
|
|
71
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
72
|
+
};
|
|
73
|
+
export type StepGroupStatus =
|
|
74
|
+
(typeof StepGroupStatus)[keyof typeof StepGroupStatus];
|
|
75
|
+
export declare const StepStatus: {
|
|
76
|
+
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
77
|
+
readonly COMPLETED: "COMPLETED";
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
80
|
+
readonly PAUSED: "PAUSED";
|
|
81
|
+
readonly READY: "READY";
|
|
82
|
+
readonly SKIPPED: "SKIPPED";
|
|
83
|
+
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
84
|
+
};
|
|
85
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DataType,
|
|
3
|
+
MigrationWorkflowStatusEnum,
|
|
4
|
+
Owner,
|
|
5
|
+
PluginHealth,
|
|
6
|
+
RunEnvironment,
|
|
7
|
+
StepActionType,
|
|
8
|
+
StepGroupStatus,
|
|
9
|
+
StepStatus,
|
|
10
|
+
TargetType,
|
|
11
|
+
TemplateStatus,
|
|
12
|
+
} from "./enums";
|
|
1
13
|
export interface ListTagsForResourceRequest {
|
|
2
14
|
resourceArn: string | undefined;
|
|
3
15
|
}
|
|
@@ -63,24 +75,6 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
63
75
|
stepTargets?: string[] | undefined;
|
|
64
76
|
tags?: Record<string, string> | undefined;
|
|
65
77
|
}
|
|
66
|
-
export declare const MigrationWorkflowStatusEnum: {
|
|
67
|
-
readonly COMPLETED: "COMPLETED";
|
|
68
|
-
readonly CREATING: "CREATING";
|
|
69
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
70
|
-
readonly DELETED: "DELETED";
|
|
71
|
-
readonly DELETING: "DELETING";
|
|
72
|
-
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
73
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
74
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
75
|
-
readonly PAUSED: "PAUSED";
|
|
76
|
-
readonly PAUSING: "PAUSING";
|
|
77
|
-
readonly PAUSING_FAILED: "PAUSING_FAILED";
|
|
78
|
-
readonly STARTING: "STARTING";
|
|
79
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
80
|
-
readonly WORKFLOW_FAILED: "WORKFLOW_FAILED";
|
|
81
|
-
};
|
|
82
|
-
export type MigrationWorkflowStatusEnum =
|
|
83
|
-
(typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
|
|
84
78
|
export interface CreateMigrationWorkflowResponse {
|
|
85
79
|
id?: string | undefined;
|
|
86
80
|
arn?: string | undefined;
|
|
@@ -232,27 +226,11 @@ export interface DeleteTemplateResponse {}
|
|
|
232
226
|
export interface GetMigrationWorkflowTemplateRequest {
|
|
233
227
|
id: string | undefined;
|
|
234
228
|
}
|
|
235
|
-
export declare const DataType: {
|
|
236
|
-
readonly INTEGER: "INTEGER";
|
|
237
|
-
readonly STRING: "STRING";
|
|
238
|
-
readonly STRINGLIST: "STRINGLIST";
|
|
239
|
-
readonly STRINGMAP: "STRINGMAP";
|
|
240
|
-
};
|
|
241
|
-
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
242
229
|
export interface TemplateInput {
|
|
243
230
|
inputName?: string | undefined;
|
|
244
231
|
dataType?: DataType | undefined;
|
|
245
232
|
required?: boolean | undefined;
|
|
246
233
|
}
|
|
247
|
-
export declare const TemplateStatus: {
|
|
248
|
-
readonly CREATED: "CREATED";
|
|
249
|
-
readonly CREATING: "CREATING";
|
|
250
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
251
|
-
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
252
|
-
readonly READY: "READY";
|
|
253
|
-
};
|
|
254
|
-
export type TemplateStatus =
|
|
255
|
-
(typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
256
234
|
export interface GetMigrationWorkflowTemplateResponse {
|
|
257
235
|
id?: string | undefined;
|
|
258
236
|
templateArn?: string | undefined;
|
|
@@ -297,11 +275,6 @@ export interface ListPluginsRequest {
|
|
|
297
275
|
maxResults?: number | undefined;
|
|
298
276
|
nextToken?: string | undefined;
|
|
299
277
|
}
|
|
300
|
-
export declare const PluginHealth: {
|
|
301
|
-
readonly PLUGIN_HEALTHY: "HEALTHY";
|
|
302
|
-
readonly PLUGIN_UNHEALTHY: "UNHEALTHY";
|
|
303
|
-
};
|
|
304
|
-
export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
|
|
305
278
|
export interface PluginSummary {
|
|
306
279
|
pluginId?: string | undefined;
|
|
307
280
|
hostname?: string | undefined;
|
|
@@ -329,32 +302,14 @@ export interface StepOutput {
|
|
|
329
302
|
dataType?: DataType | undefined;
|
|
330
303
|
required?: boolean | undefined;
|
|
331
304
|
}
|
|
332
|
-
export declare const StepActionType: {
|
|
333
|
-
readonly AUTOMATED: "AUTOMATED";
|
|
334
|
-
readonly MANUAL: "MANUAL";
|
|
335
|
-
};
|
|
336
|
-
export type StepActionType =
|
|
337
|
-
(typeof StepActionType)[keyof typeof StepActionType];
|
|
338
305
|
export interface PlatformCommand {
|
|
339
306
|
linux?: string | undefined;
|
|
340
307
|
windows?: string | undefined;
|
|
341
308
|
}
|
|
342
|
-
export declare const RunEnvironment: {
|
|
343
|
-
readonly AWS: "AWS";
|
|
344
|
-
readonly ONPREMISE: "ONPREMISE";
|
|
345
|
-
};
|
|
346
|
-
export type RunEnvironment =
|
|
347
|
-
(typeof RunEnvironment)[keyof typeof RunEnvironment];
|
|
348
309
|
export interface PlatformScriptKey {
|
|
349
310
|
linux?: string | undefined;
|
|
350
311
|
windows?: string | undefined;
|
|
351
312
|
}
|
|
352
|
-
export declare const TargetType: {
|
|
353
|
-
readonly ALL: "ALL";
|
|
354
|
-
readonly NONE: "NONE";
|
|
355
|
-
readonly SINGLE: "SINGLE";
|
|
356
|
-
};
|
|
357
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
358
313
|
export interface StepAutomationConfiguration {
|
|
359
314
|
scriptLocationS3Bucket?: string | undefined;
|
|
360
315
|
scriptLocationS3Key?: PlatformScriptKey | undefined;
|
|
@@ -381,11 +336,6 @@ export interface ListTemplateStepsRequest {
|
|
|
381
336
|
templateId: string | undefined;
|
|
382
337
|
stepGroupId: string | undefined;
|
|
383
338
|
}
|
|
384
|
-
export declare const Owner: {
|
|
385
|
-
readonly AWSManaged: "AWS_MANAGED";
|
|
386
|
-
readonly CUSTOM: "CUSTOM";
|
|
387
|
-
};
|
|
388
|
-
export type Owner = (typeof Owner)[keyof typeof Owner];
|
|
389
339
|
export interface TemplateStepSummary {
|
|
390
340
|
id?: string | undefined;
|
|
391
341
|
stepGroupId?: string | undefined;
|
|
@@ -405,18 +355,6 @@ export interface GetTemplateStepGroupRequest {
|
|
|
405
355
|
templateId: string | undefined;
|
|
406
356
|
id: string | undefined;
|
|
407
357
|
}
|
|
408
|
-
export declare const StepGroupStatus: {
|
|
409
|
-
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
410
|
-
readonly COMPLETED: "COMPLETED";
|
|
411
|
-
readonly FAILED: "FAILED";
|
|
412
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
413
|
-
readonly PAUSED: "PAUSED";
|
|
414
|
-
readonly PAUSING: "PAUSING";
|
|
415
|
-
readonly READY: "READY";
|
|
416
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
417
|
-
};
|
|
418
|
-
export type StepGroupStatus =
|
|
419
|
-
(typeof StepGroupStatus)[keyof typeof StepGroupStatus];
|
|
420
358
|
export interface GetTemplateStepGroupResponse {
|
|
421
359
|
templateId?: string | undefined;
|
|
422
360
|
id?: string | undefined;
|
|
@@ -530,17 +468,6 @@ export interface GetWorkflowStepRequest {
|
|
|
530
468
|
stepGroupId: string | undefined;
|
|
531
469
|
id: string | undefined;
|
|
532
470
|
}
|
|
533
|
-
export declare const StepStatus: {
|
|
534
|
-
readonly AWAITING_DEPENDENCIES: "AWAITING_DEPENDENCIES";
|
|
535
|
-
readonly COMPLETED: "COMPLETED";
|
|
536
|
-
readonly FAILED: "FAILED";
|
|
537
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
538
|
-
readonly PAUSED: "PAUSED";
|
|
539
|
-
readonly READY: "READY";
|
|
540
|
-
readonly SKIPPED: "SKIPPED";
|
|
541
|
-
readonly USER_ATTENTION_REQUIRED: "USER_ATTENTION_REQUIRED";
|
|
542
|
-
};
|
|
543
|
-
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
544
471
|
export interface GetWorkflowStepResponse {
|
|
545
472
|
name?: string | undefined;
|
|
546
473
|
stepGroupId?: 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.
|
|
4
|
+
"version": "3.939.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,17 +20,17 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|