@aws-sdk/client-migrationhuborchestrator 3.299.0 → 3.300.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-types/commands/CreateWorkflowCommand.d.ts +24 -0
- package/dist-types/commands/CreateWorkflowStepCommand.d.ts +43 -0
- package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +11 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +5 -0
- package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +4 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +3 -0
- package/dist-types/commands/GetTemplateStepCommand.d.ts +5 -0
- package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +4 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +3 -0
- package/dist-types/commands/GetWorkflowStepCommand.d.ts +5 -0
- package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +4 -0
- package/dist-types/commands/ListPluginsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +5 -0
- package/dist-types/commands/ListTemplateStepsCommand.d.ts +6 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +5 -0
- package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +5 -0
- package/dist-types/commands/ListWorkflowStepsCommand.d.ts +6 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +8 -0
- package/dist-types/commands/RetryWorkflowStepCommand.d.ts +5 -0
- package/dist-types/commands/StartWorkflowCommand.d.ts +3 -0
- package/dist-types/commands/StopWorkflowCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +20 -0
- package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +45 -0
- package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +12 -0
- package/package.json +8 -8
|
@@ -26,6 +26,30 @@ export interface CreateWorkflowCommandOutput extends CreateMigrationWorkflowResp
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, CreateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, CreateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* templateId: "STRING_VALUE", // required
|
|
33
|
+
* applicationConfigurationId: "STRING_VALUE", // required
|
|
34
|
+
* inputParameters: { // required
|
|
35
|
+
* "<keys>": { // Union: only one key present
|
|
36
|
+
* integerValue: Number("int"),
|
|
37
|
+
* stringValue: "STRING_VALUE",
|
|
38
|
+
* listOfStringsValue: [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* mapOfStringValue: {
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* stepTargets: [
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
49
|
+
* tags: {
|
|
50
|
+
* "<keys>": "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* };
|
|
29
53
|
* const command = new CreateWorkflowCommand(input);
|
|
30
54
|
* const response = await client.send(command);
|
|
31
55
|
* ```
|
|
@@ -26,6 +26,49 @@ export interface CreateWorkflowStepCommandOutput extends CreateWorkflowStepRespo
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
32
|
+
* workflowId: "STRING_VALUE", // required
|
|
33
|
+
* stepActionType: "STRING_VALUE", // required
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* workflowStepAutomationConfiguration: {
|
|
36
|
+
* scriptLocationS3Bucket: "STRING_VALUE",
|
|
37
|
+
* scriptLocationS3Key: {
|
|
38
|
+
* linux: "STRING_VALUE",
|
|
39
|
+
* windows: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* command: {
|
|
42
|
+
* linux: "STRING_VALUE",
|
|
43
|
+
* windows: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* runEnvironment: "STRING_VALUE",
|
|
46
|
+
* targetType: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* stepTarget: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* outputs: [
|
|
52
|
+
* {
|
|
53
|
+
* name: "STRING_VALUE",
|
|
54
|
+
* dataType: "STRING_VALUE",
|
|
55
|
+
* required: true || false,
|
|
56
|
+
* value: { // Union: only one key present
|
|
57
|
+
* integerValue: Number("int"),
|
|
58
|
+
* stringValue: "STRING_VALUE",
|
|
59
|
+
* listOfStringValue: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* previous: [
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* next: [
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* };
|
|
29
72
|
* const command = new CreateWorkflowStepCommand(input);
|
|
30
73
|
* const response = await client.send(command);
|
|
31
74
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface CreateWorkflowStepGroupCommandOutput extends CreateWorkflowStep
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* workflowId: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* next: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* previous: [
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new CreateWorkflowStepGroupCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteWorkflowCommandOutput extends DeleteMigrationWorkflowResp
|
|
|
27
27
|
* import { MigrationHubOrchestratorClient, DeleteWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubOrchestratorClient, DeleteWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteWorkflowCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface DeleteWorkflowStepCommandOutput extends DeleteWorkflowStepRespo
|
|
|
27
27
|
* import { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
33
|
+
* workflowId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new DeleteWorkflowStepCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteWorkflowStepGroupCommandOutput extends DeleteWorkflowStep
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* workflowId: "STRING_VALUE", // required
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteWorkflowStepGroupCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetTemplateCommandOutput extends GetMigrationWorkflowTemplateRe
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetTemplateCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetTemplateStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetTemplateStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* templateId: "STRING_VALUE", // required
|
|
32
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetTemplateStepCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* templateId: "STRING_VALUE", // required
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetTemplateStepGroupCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetWorkflowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* workflowId: "STRING_VALUE", // required
|
|
31
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetWorkflowStepCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* workflowId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetWorkflowStepGroupCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListPluginsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListPluginsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListPluginsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListTagsForResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* templateId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListTemplateStepGroupsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListTemplateStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListTemplateStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* templateId: "STRING_VALUE", // required
|
|
33
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListTemplateStepsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListTemplatesCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListTemplatesCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* name: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListTemplatesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* workflowId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListWorkflowStepGroupsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* workflowId: "STRING_VALUE", // required
|
|
33
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListWorkflowStepsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, ListWorkflowsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, ListWorkflowsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* templateId: "STRING_VALUE",
|
|
33
|
+
* adsApplicationConfigurationName: "STRING_VALUE",
|
|
34
|
+
* status: "STRING_VALUE",
|
|
35
|
+
* name: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new ListWorkflowsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* workflowId: "STRING_VALUE", // required
|
|
31
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new RetryWorkflowStepCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, StartWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, StartWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartWorkflowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
|
|
|
26
26
|
* import { MigrationHubOrchestratorClient, StopWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubOrchestratorClient, StopWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubOrchestratorClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopWorkflowCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,26 @@ 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 = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE",
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* inputParameters: {
|
|
34
|
+
* "<keys>": { // Union: only one key present
|
|
35
|
+
* integerValue: Number("int"),
|
|
36
|
+
* stringValue: "STRING_VALUE",
|
|
37
|
+
* listOfStringsValue: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* mapOfStringValue: {
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* stepTargets: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
29
49
|
* const command = new UpdateWorkflowCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -26,6 +26,51 @@ 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 = {
|
|
30
|
+
* id: "STRING_VALUE", // required
|
|
31
|
+
* stepGroupId: "STRING_VALUE", // required
|
|
32
|
+
* workflowId: "STRING_VALUE", // required
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* stepActionType: "STRING_VALUE",
|
|
36
|
+
* workflowStepAutomationConfiguration: {
|
|
37
|
+
* scriptLocationS3Bucket: "STRING_VALUE",
|
|
38
|
+
* scriptLocationS3Key: {
|
|
39
|
+
* linux: "STRING_VALUE",
|
|
40
|
+
* windows: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* command: {
|
|
43
|
+
* linux: "STRING_VALUE",
|
|
44
|
+
* windows: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* runEnvironment: "STRING_VALUE",
|
|
47
|
+
* targetType: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* stepTarget: [
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* outputs: [
|
|
53
|
+
* {
|
|
54
|
+
* name: "STRING_VALUE",
|
|
55
|
+
* dataType: "STRING_VALUE",
|
|
56
|
+
* required: true || false,
|
|
57
|
+
* value: { // Union: only one key present
|
|
58
|
+
* integerValue: Number("int"),
|
|
59
|
+
* stringValue: "STRING_VALUE",
|
|
60
|
+
* listOfStringValue: [
|
|
61
|
+
* "STRING_VALUE",
|
|
62
|
+
* ],
|
|
63
|
+
* },
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* previous: [
|
|
67
|
+
* "STRING_VALUE",
|
|
68
|
+
* ],
|
|
69
|
+
* next: [
|
|
70
|
+
* "STRING_VALUE",
|
|
71
|
+
* ],
|
|
72
|
+
* status: "STRING_VALUE",
|
|
73
|
+
* };
|
|
29
74
|
* const command = new UpdateWorkflowStepCommand(input);
|
|
30
75
|
* const response = await client.send(command);
|
|
31
76
|
* ```
|
|
@@ -26,6 +26,18 @@ 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 = {
|
|
30
|
+
* workflowId: "STRING_VALUE", // required
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* name: "STRING_VALUE",
|
|
33
|
+
* description: "STRING_VALUE",
|
|
34
|
+
* next: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* previous: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new UpdateWorkflowStepGroupCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
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.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|