@aws-sdk/client-migration-hub 3.952.0 → 3.953.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 (41) hide show
  1. package/dist-cjs/index.js +303 -205
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AssociateCreatedArtifactCommand.js +2 -2
  4. package/dist-es/commands/AssociateDiscoveredResourceCommand.js +2 -2
  5. package/dist-es/commands/AssociateSourceResourceCommand.js +2 -2
  6. package/dist-es/commands/CreateProgressUpdateStreamCommand.js +2 -2
  7. package/dist-es/commands/DeleteProgressUpdateStreamCommand.js +2 -2
  8. package/dist-es/commands/DescribeApplicationStateCommand.js +2 -2
  9. package/dist-es/commands/DescribeMigrationTaskCommand.js +2 -2
  10. package/dist-es/commands/DisassociateCreatedArtifactCommand.js +2 -2
  11. package/dist-es/commands/DisassociateDiscoveredResourceCommand.js +2 -2
  12. package/dist-es/commands/DisassociateSourceResourceCommand.js +2 -2
  13. package/dist-es/commands/ImportMigrationTaskCommand.js +2 -2
  14. package/dist-es/commands/ListApplicationStatesCommand.js +2 -2
  15. package/dist-es/commands/ListCreatedArtifactsCommand.js +2 -2
  16. package/dist-es/commands/ListDiscoveredResourcesCommand.js +2 -2
  17. package/dist-es/commands/ListMigrationTaskUpdatesCommand.js +2 -2
  18. package/dist-es/commands/ListMigrationTasksCommand.js +2 -2
  19. package/dist-es/commands/ListProgressUpdateStreamsCommand.js +2 -2
  20. package/dist-es/commands/ListSourceResourcesCommand.js +2 -2
  21. package/dist-es/commands/NotifyApplicationStateCommand.js +2 -2
  22. package/dist-es/commands/NotifyMigrationTaskStateCommand.js +2 -2
  23. package/dist-es/commands/PutResourceAttributesCommand.js +2 -2
  24. package/dist-es/index.js +1 -0
  25. package/dist-es/runtimeConfig.shared.js +6 -6
  26. package/dist-es/schemas/schemas_0.js +169 -155
  27. package/dist-types/MigrationHubClient.d.ts +1 -10
  28. package/dist-types/index.d.ts +1 -0
  29. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  30. package/dist-types/runtimeConfig.d.ts +6 -2
  31. package/dist-types/runtimeConfig.native.d.ts +6 -2
  32. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  33. package/dist-types/schemas/schemas_0.d.ts +85 -95
  34. package/dist-types/ts3.4/MigrationHubClient.d.ts +0 -4
  35. package/dist-types/ts3.4/index.d.ts +1 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +84 -95
  41. package/package.json +34 -34
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.migrationhub",
32
- serviceTarget: "AWSMigrationHub",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.migrationhub",
32
+ version: "2017-05-31",
33
+ serviceTarget: "AWSMigrationHub",
34
+ },
35
35
  serviceId: config?.serviceId ?? "Migration Hub",
36
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateCreatedArtifact } from "../schemas/schemas_0";
4
+ import { AssociateCreatedArtifact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateCreatedArtifactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateCreatedArtifactCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "AssociateCreatedArtifact", {})
13
13
  .n("MigrationHubClient", "AssociateCreatedArtifactCommand")
14
- .sc(AssociateCreatedArtifact)
14
+ .sc(AssociateCreatedArtifact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateDiscoveredResource } from "../schemas/schemas_0";
4
+ import { AssociateDiscoveredResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateDiscoveredResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateDiscoveredResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "AssociateDiscoveredResource", {})
13
13
  .n("MigrationHubClient", "AssociateDiscoveredResourceCommand")
14
- .sc(AssociateDiscoveredResource)
14
+ .sc(AssociateDiscoveredResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateSourceResource } from "../schemas/schemas_0";
4
+ import { AssociateSourceResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateSourceResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateSourceResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "AssociateSourceResource", {})
13
13
  .n("MigrationHubClient", "AssociateSourceResourceCommand")
14
- .sc(AssociateSourceResource)
14
+ .sc(AssociateSourceResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateProgressUpdateStream } from "../schemas/schemas_0";
4
+ import { CreateProgressUpdateStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateProgressUpdateStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateProgressUpdateStreamCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "CreateProgressUpdateStream", {})
13
13
  .n("MigrationHubClient", "CreateProgressUpdateStreamCommand")
14
- .sc(CreateProgressUpdateStream)
14
+ .sc(CreateProgressUpdateStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteProgressUpdateStream } from "../schemas/schemas_0";
4
+ import { DeleteProgressUpdateStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteProgressUpdateStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteProgressUpdateStreamCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DeleteProgressUpdateStream", {})
13
13
  .n("MigrationHubClient", "DeleteProgressUpdateStreamCommand")
14
- .sc(DeleteProgressUpdateStream)
14
+ .sc(DeleteProgressUpdateStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeApplicationState } from "../schemas/schemas_0";
4
+ import { DescribeApplicationState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeApplicationStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeApplicationStateCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DescribeApplicationState", {})
13
13
  .n("MigrationHubClient", "DescribeApplicationStateCommand")
14
- .sc(DescribeApplicationState)
14
+ .sc(DescribeApplicationState$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeMigrationTask } from "../schemas/schemas_0";
4
+ import { DescribeMigrationTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeMigrationTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeMigrationTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DescribeMigrationTask", {})
13
13
  .n("MigrationHubClient", "DescribeMigrationTaskCommand")
14
- .sc(DescribeMigrationTask)
14
+ .sc(DescribeMigrationTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateCreatedArtifact } from "../schemas/schemas_0";
4
+ import { DisassociateCreatedArtifact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateCreatedArtifactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateCreatedArtifactCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DisassociateCreatedArtifact", {})
13
13
  .n("MigrationHubClient", "DisassociateCreatedArtifactCommand")
14
- .sc(DisassociateCreatedArtifact)
14
+ .sc(DisassociateCreatedArtifact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateDiscoveredResource } from "../schemas/schemas_0";
4
+ import { DisassociateDiscoveredResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateDiscoveredResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateDiscoveredResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DisassociateDiscoveredResource", {})
13
13
  .n("MigrationHubClient", "DisassociateDiscoveredResourceCommand")
14
- .sc(DisassociateDiscoveredResource)
14
+ .sc(DisassociateDiscoveredResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateSourceResource } from "../schemas/schemas_0";
4
+ import { DisassociateSourceResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateSourceResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateSourceResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "DisassociateSourceResource", {})
13
13
  .n("MigrationHubClient", "DisassociateSourceResourceCommand")
14
- .sc(DisassociateSourceResource)
14
+ .sc(DisassociateSourceResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ImportMigrationTask } from "../schemas/schemas_0";
4
+ import { ImportMigrationTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ImportMigrationTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ImportMigrationTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ImportMigrationTask", {})
13
13
  .n("MigrationHubClient", "ImportMigrationTaskCommand")
14
- .sc(ImportMigrationTask)
14
+ .sc(ImportMigrationTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListApplicationStates } from "../schemas/schemas_0";
4
+ import { ListApplicationStates$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListApplicationStatesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListApplicationStatesCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListApplicationStates", {})
13
13
  .n("MigrationHubClient", "ListApplicationStatesCommand")
14
- .sc(ListApplicationStates)
14
+ .sc(ListApplicationStates$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListCreatedArtifacts } from "../schemas/schemas_0";
4
+ import { ListCreatedArtifacts$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCreatedArtifactsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCreatedArtifactsCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListCreatedArtifacts", {})
13
13
  .n("MigrationHubClient", "ListCreatedArtifactsCommand")
14
- .sc(ListCreatedArtifacts)
14
+ .sc(ListCreatedArtifacts$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDiscoveredResources } from "../schemas/schemas_0";
4
+ import { ListDiscoveredResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDiscoveredResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDiscoveredResourcesCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListDiscoveredResources", {})
13
13
  .n("MigrationHubClient", "ListDiscoveredResourcesCommand")
14
- .sc(ListDiscoveredResources)
14
+ .sc(ListDiscoveredResources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMigrationTaskUpdates } from "../schemas/schemas_0";
4
+ import { ListMigrationTaskUpdates$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMigrationTaskUpdatesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMigrationTaskUpdatesCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListMigrationTaskUpdates", {})
13
13
  .n("MigrationHubClient", "ListMigrationTaskUpdatesCommand")
14
- .sc(ListMigrationTaskUpdates)
14
+ .sc(ListMigrationTaskUpdates$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMigrationTasks } from "../schemas/schemas_0";
4
+ import { ListMigrationTasks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMigrationTasksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMigrationTasksCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListMigrationTasks", {})
13
13
  .n("MigrationHubClient", "ListMigrationTasksCommand")
14
- .sc(ListMigrationTasks)
14
+ .sc(ListMigrationTasks$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListProgressUpdateStreams } from "../schemas/schemas_0";
4
+ import { ListProgressUpdateStreams$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProgressUpdateStreamsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProgressUpdateStreamsCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListProgressUpdateStreams", {})
13
13
  .n("MigrationHubClient", "ListProgressUpdateStreamsCommand")
14
- .sc(ListProgressUpdateStreams)
14
+ .sc(ListProgressUpdateStreams$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSourceResources } from "../schemas/schemas_0";
4
+ import { ListSourceResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSourceResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSourceResourcesCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "ListSourceResources", {})
13
13
  .n("MigrationHubClient", "ListSourceResourcesCommand")
14
- .sc(ListSourceResources)
14
+ .sc(ListSourceResources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { NotifyApplicationState } from "../schemas/schemas_0";
4
+ import { NotifyApplicationState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class NotifyApplicationStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class NotifyApplicationStateCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "NotifyApplicationState", {})
13
13
  .n("MigrationHubClient", "NotifyApplicationStateCommand")
14
- .sc(NotifyApplicationState)
14
+ .sc(NotifyApplicationState$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { NotifyMigrationTaskState } from "../schemas/schemas_0";
4
+ import { NotifyMigrationTaskState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class NotifyMigrationTaskStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class NotifyMigrationTaskStateCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "NotifyMigrationTaskState", {})
13
13
  .n("MigrationHubClient", "NotifyMigrationTaskStateCommand")
14
- .sc(NotifyMigrationTaskState)
14
+ .sc(NotifyMigrationTaskState$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutResourceAttributes } from "../schemas/schemas_0";
4
+ import { PutResourceAttributes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutResourceAttributesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutResourceAttributesCommand extends $Command
11
11
  })
12
12
  .s("AWSMigrationHub", "PutResourceAttributes", {})
13
13
  .n("MigrationHubClient", "PutResourceAttributesCommand")
14
- .sc(PutResourceAttributes)
14
+ .sc(PutResourceAttributes$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./MigrationHubClient";
2
2
  export * from "./MigrationHub";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_1Protocol({
28
- defaultNamespace: "com.amazonaws.migrationhub",
29
- serviceTarget: "AWSMigrationHub",
30
- awsQueryCompatible: false,
31
- }),
26
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.migrationhub",
29
+ version: "2017-05-31",
30
+ serviceTarget: "AWSMigrationHub",
31
+ },
32
32
  serviceId: config?.serviceId ?? "Migration Hub",
33
33
  urlParser: config?.urlParser ?? parseUrl,
34
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,