@aws-sdk/client-migrationhuborchestrator 3.890.0 → 3.893.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 (32) hide show
  1. package/dist-types/commands/CreateTemplateCommand.d.ts +2 -0
  2. package/dist-types/commands/CreateWorkflowCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateWorkflowStepCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +2 -0
  5. package/dist-types/commands/DeleteTemplateCommand.d.ts +2 -0
  6. package/dist-types/commands/DeleteWorkflowCommand.d.ts +2 -0
  7. package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +2 -0
  9. package/dist-types/commands/GetTemplateCommand.d.ts +2 -0
  10. package/dist-types/commands/GetTemplateStepCommand.d.ts +2 -0
  11. package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +2 -0
  12. package/dist-types/commands/GetWorkflowCommand.d.ts +2 -0
  13. package/dist-types/commands/GetWorkflowStepCommand.d.ts +2 -0
  14. package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +2 -0
  15. package/dist-types/commands/ListPluginsCommand.d.ts +2 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  17. package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListTemplateStepsCommand.d.ts +2 -0
  19. package/dist-types/commands/ListTemplatesCommand.d.ts +2 -0
  20. package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +2 -0
  21. package/dist-types/commands/ListWorkflowStepsCommand.d.ts +2 -0
  22. package/dist-types/commands/ListWorkflowsCommand.d.ts +2 -0
  23. package/dist-types/commands/RetryWorkflowStepCommand.d.ts +2 -0
  24. package/dist-types/commands/StartWorkflowCommand.d.ts +2 -0
  25. package/dist-types/commands/StopWorkflowCommand.d.ts +2 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  28. package/dist-types/commands/UpdateTemplateCommand.d.ts +2 -0
  29. package/dist-types/commands/UpdateWorkflowCommand.d.ts +2 -0
  30. package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +2 -0
  31. package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +2 -0
  32. package/package.json +19 -19
@@ -33,6 +33,8 @@ declare const CreateTemplateCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, CreateTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, CreateTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // CreateTemplateRequest
38
40
  * templateName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateWorkflowCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, CreateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, CreateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // CreateMigrationWorkflowRequest
38
40
  * name: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateWorkflowStepCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // CreateWorkflowStepRequest
38
40
  * name: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateWorkflowStepGroupCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // CreateWorkflowStepGroupRequest
38
40
  * workflowId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteTemplateCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, DeleteTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, DeleteTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // DeleteTemplateRequest
38
40
  * id: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DeleteWorkflowCommand_base: {
34
34
  * ```javascript
35
35
  * import { MigrationHubOrchestratorClient, DeleteWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
36
36
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
37
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
38
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
37
39
  * const client = new MigrationHubOrchestratorClient(config);
38
40
  * const input = { // DeleteMigrationWorkflowRequest
39
41
  * id: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DeleteWorkflowStepCommand_base: {
34
34
  * ```javascript
35
35
  * import { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
36
36
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
37
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
38
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
37
39
  * const client = new MigrationHubOrchestratorClient(config);
38
40
  * const input = { // DeleteWorkflowStepRequest
39
41
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteWorkflowStepGroupCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // DeleteWorkflowStepGroupRequest
38
40
  * workflowId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetTemplateCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetMigrationWorkflowTemplateRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetTemplateStepCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetTemplateStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetTemplateStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetTemplateStepRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetTemplateStepGroupCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetTemplateStepGroupRequest
38
40
  * templateId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkflowCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetMigrationWorkflowRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkflowStepCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetWorkflowStepRequest
38
40
  * workflowId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkflowStepGroupCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // GetWorkflowStepGroupRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListPluginsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListPluginsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListPluginsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListPluginsRequest
38
40
  * maxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListTagsForResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListTemplateStepGroupsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListTemplateStepGroupsRequest
38
40
  * maxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListTemplateStepsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListTemplateStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListTemplateStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListTemplateStepsRequest
38
40
  * maxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListTemplatesCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListTemplatesCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListTemplatesCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListMigrationWorkflowTemplatesRequest
38
40
  * maxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListWorkflowStepGroupsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListWorkflowStepGroupsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListWorkflowStepsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListWorkflowStepsRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListWorkflowsCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, ListWorkflowsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, ListWorkflowsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // ListMigrationWorkflowsRequest
38
40
  * maxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const RetryWorkflowStepCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // RetryWorkflowStepRequest
38
40
  * workflowId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StartWorkflowCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, StartWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, StartWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // StartMigrationWorkflowRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StopWorkflowCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, StopWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, StopWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // StopMigrationWorkflowRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, TagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, TagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // TagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, UntagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, UntagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // UntagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateTemplateCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, UpdateTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, UpdateTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // UpdateTemplateRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateWorkflowCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, UpdateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // UpdateMigrationWorkflowRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateWorkflowStepCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // UpdateWorkflowStepRequest
38
40
  * id: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateWorkflowStepGroupCommand_base: {
33
33
  * ```javascript
34
34
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
35
35
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
36
+ * // import type { MigrationHubOrchestratorClientConfig } from "@aws-sdk/client-migrationhuborchestrator";
37
+ * const config = {}; // type is MigrationHubOrchestratorClientConfig
36
38
  * const client = new MigrationHubOrchestratorClient(config);
37
39
  * const input = { // UpdateWorkflowStepGroupRequest
38
40
  * workflowId: "STRING_VALUE", // required
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.890.0",
4
+ "version": "3.893.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.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
29
- "@aws-sdk/region-config-resolver": "3.890.0",
30
- "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
32
- "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
23
+ "@aws-sdk/core": "3.893.0",
24
+ "@aws-sdk/credential-provider-node": "3.893.0",
25
+ "@aws-sdk/middleware-host-header": "3.893.0",
26
+ "@aws-sdk/middleware-logger": "3.893.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
+ "@aws-sdk/middleware-user-agent": "3.893.0",
29
+ "@aws-sdk/region-config-resolver": "3.893.0",
30
+ "@aws-sdk/types": "3.893.0",
31
+ "@aws-sdk/util-endpoints": "3.893.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.893.0",
33
+ "@aws-sdk/util-user-agent-node": "3.893.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.11.0",
35
+ "@smithy/core": "^3.11.1",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
40
+ "@smithy/middleware-endpoint": "^4.2.3",
41
+ "@smithy/middleware-retry": "^4.2.4",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.2",
47
+ "@smithy/smithy-client": "^4.6.3",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.2",
54
- "@smithy/util-defaults-mode-node": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.3",
54
+ "@smithy/util-defaults-mode-node": "^4.1.3",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",