@aws-sdk/client-entityresolution 3.948.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 (66) hide show
  1. package/dist-cjs/index.js +553 -384
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddPolicyStatementCommand.js +2 -2
  4. package/dist-es/commands/BatchDeleteUniqueIdCommand.js +2 -2
  5. package/dist-es/commands/CreateIdMappingWorkflowCommand.js +2 -2
  6. package/dist-es/commands/CreateIdNamespaceCommand.js +2 -2
  7. package/dist-es/commands/CreateMatchingWorkflowCommand.js +2 -2
  8. package/dist-es/commands/CreateSchemaMappingCommand.js +2 -2
  9. package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +2 -2
  10. package/dist-es/commands/DeleteIdNamespaceCommand.js +2 -2
  11. package/dist-es/commands/DeleteMatchingWorkflowCommand.js +2 -2
  12. package/dist-es/commands/DeletePolicyStatementCommand.js +2 -2
  13. package/dist-es/commands/DeleteSchemaMappingCommand.js +2 -2
  14. package/dist-es/commands/GenerateMatchIdCommand.js +2 -2
  15. package/dist-es/commands/GetIdMappingJobCommand.js +2 -2
  16. package/dist-es/commands/GetIdMappingWorkflowCommand.js +2 -2
  17. package/dist-es/commands/GetIdNamespaceCommand.js +2 -2
  18. package/dist-es/commands/GetMatchIdCommand.js +2 -2
  19. package/dist-es/commands/GetMatchingJobCommand.js +2 -2
  20. package/dist-es/commands/GetMatchingWorkflowCommand.js +2 -2
  21. package/dist-es/commands/GetPolicyCommand.js +2 -2
  22. package/dist-es/commands/GetProviderServiceCommand.js +2 -2
  23. package/dist-es/commands/GetSchemaMappingCommand.js +2 -2
  24. package/dist-es/commands/ListIdMappingJobsCommand.js +2 -2
  25. package/dist-es/commands/ListIdMappingWorkflowsCommand.js +2 -2
  26. package/dist-es/commands/ListIdNamespacesCommand.js +2 -2
  27. package/dist-es/commands/ListMatchingJobsCommand.js +2 -2
  28. package/dist-es/commands/ListMatchingWorkflowsCommand.js +2 -2
  29. package/dist-es/commands/ListProviderServicesCommand.js +2 -2
  30. package/dist-es/commands/ListSchemaMappingsCommand.js +2 -2
  31. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  32. package/dist-es/commands/PutPolicyCommand.js +2 -2
  33. package/dist-es/commands/StartIdMappingJobCommand.js +2 -2
  34. package/dist-es/commands/StartMatchingJobCommand.js +2 -2
  35. package/dist-es/commands/TagResourceCommand.js +2 -2
  36. package/dist-es/commands/UntagResourceCommand.js +2 -2
  37. package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +2 -2
  38. package/dist-es/commands/UpdateIdNamespaceCommand.js +2 -2
  39. package/dist-es/commands/UpdateMatchingWorkflowCommand.js +2 -2
  40. package/dist-es/commands/UpdateSchemaMappingCommand.js +2 -2
  41. package/dist-es/index.js +1 -0
  42. package/dist-es/runtimeConfig.shared.js +6 -1
  43. package/dist-es/schemas/schemas_0.js +342 -341
  44. package/dist-types/EntityResolutionClient.d.ts +1 -10
  45. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +2 -2
  46. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +10 -2
  47. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +1 -1
  48. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +5 -1
  49. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +2 -2
  50. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +10 -2
  51. package/dist-types/index.d.ts +1 -0
  52. package/dist-types/models/models_0.d.ts +29 -8
  53. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  54. package/dist-types/runtimeConfig.d.ts +6 -2
  55. package/dist-types/runtimeConfig.native.d.ts +6 -2
  56. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  57. package/dist-types/schemas/schemas_0.d.ts +169 -209
  58. package/dist-types/ts3.4/EntityResolutionClient.d.ts +0 -4
  59. package/dist-types/ts3.4/index.d.ts +1 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +9 -2
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  64. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  65. package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -210
  66. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.entityresolution" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.entityresolution",
32
+ version: "2018-05-10",
33
+ serviceTarget: "AWSVeniceService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "EntityResolution",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
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 { AddPolicyStatement } from "../schemas/schemas_0";
4
+ import { AddPolicyStatement$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddPolicyStatementCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddPolicyStatementCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "AddPolicyStatement", {})
13
13
  .n("EntityResolutionClient", "AddPolicyStatementCommand")
14
- .sc(AddPolicyStatement)
14
+ .sc(AddPolicyStatement$)
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 { BatchDeleteUniqueId } from "../schemas/schemas_0";
4
+ import { BatchDeleteUniqueId$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchDeleteUniqueIdCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchDeleteUniqueIdCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "BatchDeleteUniqueId", {})
13
13
  .n("EntityResolutionClient", "BatchDeleteUniqueIdCommand")
14
- .sc(BatchDeleteUniqueId)
14
+ .sc(BatchDeleteUniqueId$)
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 { CreateIdMappingWorkflow } from "../schemas/schemas_0";
4
+ import { CreateIdMappingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateIdMappingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateIdMappingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "CreateIdMappingWorkflow", {})
13
13
  .n("EntityResolutionClient", "CreateIdMappingWorkflowCommand")
14
- .sc(CreateIdMappingWorkflow)
14
+ .sc(CreateIdMappingWorkflow$)
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 { CreateIdNamespace } from "../schemas/schemas_0";
4
+ import { CreateIdNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateIdNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateIdNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "CreateIdNamespace", {})
13
13
  .n("EntityResolutionClient", "CreateIdNamespaceCommand")
14
- .sc(CreateIdNamespace)
14
+ .sc(CreateIdNamespace$)
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 { CreateMatchingWorkflow } from "../schemas/schemas_0";
4
+ import { CreateMatchingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMatchingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMatchingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "CreateMatchingWorkflow", {})
13
13
  .n("EntityResolutionClient", "CreateMatchingWorkflowCommand")
14
- .sc(CreateMatchingWorkflow)
14
+ .sc(CreateMatchingWorkflow$)
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 { CreateSchemaMapping } from "../schemas/schemas_0";
4
+ import { CreateSchemaMapping$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSchemaMappingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSchemaMappingCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "CreateSchemaMapping", {})
13
13
  .n("EntityResolutionClient", "CreateSchemaMappingCommand")
14
- .sc(CreateSchemaMapping)
14
+ .sc(CreateSchemaMapping$)
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 { DeleteIdMappingWorkflow } from "../schemas/schemas_0";
4
+ import { DeleteIdMappingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteIdMappingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteIdMappingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "DeleteIdMappingWorkflow", {})
13
13
  .n("EntityResolutionClient", "DeleteIdMappingWorkflowCommand")
14
- .sc(DeleteIdMappingWorkflow)
14
+ .sc(DeleteIdMappingWorkflow$)
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 { DeleteIdNamespace } from "../schemas/schemas_0";
4
+ import { DeleteIdNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteIdNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteIdNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "DeleteIdNamespace", {})
13
13
  .n("EntityResolutionClient", "DeleteIdNamespaceCommand")
14
- .sc(DeleteIdNamespace)
14
+ .sc(DeleteIdNamespace$)
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 { DeleteMatchingWorkflow } from "../schemas/schemas_0";
4
+ import { DeleteMatchingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMatchingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMatchingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "DeleteMatchingWorkflow", {})
13
13
  .n("EntityResolutionClient", "DeleteMatchingWorkflowCommand")
14
- .sc(DeleteMatchingWorkflow)
14
+ .sc(DeleteMatchingWorkflow$)
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 { DeletePolicyStatement } from "../schemas/schemas_0";
4
+ import { DeletePolicyStatement$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeletePolicyStatementCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeletePolicyStatementCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "DeletePolicyStatement", {})
13
13
  .n("EntityResolutionClient", "DeletePolicyStatementCommand")
14
- .sc(DeletePolicyStatement)
14
+ .sc(DeletePolicyStatement$)
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 { DeleteSchemaMapping } from "../schemas/schemas_0";
4
+ import { DeleteSchemaMapping$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSchemaMappingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSchemaMappingCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "DeleteSchemaMapping", {})
13
13
  .n("EntityResolutionClient", "DeleteSchemaMappingCommand")
14
- .sc(DeleteSchemaMapping)
14
+ .sc(DeleteSchemaMapping$)
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 { GenerateMatchId } from "../schemas/schemas_0";
4
+ import { GenerateMatchId$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GenerateMatchIdCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GenerateMatchIdCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GenerateMatchId", {})
13
13
  .n("EntityResolutionClient", "GenerateMatchIdCommand")
14
- .sc(GenerateMatchId)
14
+ .sc(GenerateMatchId$)
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 { GetIdMappingJob } from "../schemas/schemas_0";
4
+ import { GetIdMappingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetIdMappingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetIdMappingJobCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetIdMappingJob", {})
13
13
  .n("EntityResolutionClient", "GetIdMappingJobCommand")
14
- .sc(GetIdMappingJob)
14
+ .sc(GetIdMappingJob$)
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 { GetIdMappingWorkflow } from "../schemas/schemas_0";
4
+ import { GetIdMappingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetIdMappingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetIdMappingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetIdMappingWorkflow", {})
13
13
  .n("EntityResolutionClient", "GetIdMappingWorkflowCommand")
14
- .sc(GetIdMappingWorkflow)
14
+ .sc(GetIdMappingWorkflow$)
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 { GetIdNamespace } from "../schemas/schemas_0";
4
+ import { GetIdNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetIdNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetIdNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetIdNamespace", {})
13
13
  .n("EntityResolutionClient", "GetIdNamespaceCommand")
14
- .sc(GetIdNamespace)
14
+ .sc(GetIdNamespace$)
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 { GetMatchId } from "../schemas/schemas_0";
4
+ import { GetMatchId$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMatchIdCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMatchIdCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetMatchId", {})
13
13
  .n("EntityResolutionClient", "GetMatchIdCommand")
14
- .sc(GetMatchId)
14
+ .sc(GetMatchId$)
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 { GetMatchingJob } from "../schemas/schemas_0";
4
+ import { GetMatchingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMatchingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMatchingJobCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetMatchingJob", {})
13
13
  .n("EntityResolutionClient", "GetMatchingJobCommand")
14
- .sc(GetMatchingJob)
14
+ .sc(GetMatchingJob$)
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 { GetMatchingWorkflow } from "../schemas/schemas_0";
4
+ import { GetMatchingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMatchingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMatchingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetMatchingWorkflow", {})
13
13
  .n("EntityResolutionClient", "GetMatchingWorkflowCommand")
14
- .sc(GetMatchingWorkflow)
14
+ .sc(GetMatchingWorkflow$)
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 { GetPolicy } from "../schemas/schemas_0";
4
+ import { GetPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPolicyCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetPolicy", {})
13
13
  .n("EntityResolutionClient", "GetPolicyCommand")
14
- .sc(GetPolicy)
14
+ .sc(GetPolicy$)
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 { GetProviderService } from "../schemas/schemas_0";
4
+ import { GetProviderService$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetProviderServiceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetProviderServiceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetProviderService", {})
13
13
  .n("EntityResolutionClient", "GetProviderServiceCommand")
14
- .sc(GetProviderService)
14
+ .sc(GetProviderService$)
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 { GetSchemaMapping } from "../schemas/schemas_0";
4
+ import { GetSchemaMapping$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSchemaMappingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSchemaMappingCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "GetSchemaMapping", {})
13
13
  .n("EntityResolutionClient", "GetSchemaMappingCommand")
14
- .sc(GetSchemaMapping)
14
+ .sc(GetSchemaMapping$)
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 { ListIdMappingJobs } from "../schemas/schemas_0";
4
+ import { ListIdMappingJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListIdMappingJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListIdMappingJobsCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListIdMappingJobs", {})
13
13
  .n("EntityResolutionClient", "ListIdMappingJobsCommand")
14
- .sc(ListIdMappingJobs)
14
+ .sc(ListIdMappingJobs$)
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 { ListIdMappingWorkflows } from "../schemas/schemas_0";
4
+ import { ListIdMappingWorkflows$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListIdMappingWorkflowsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListIdMappingWorkflowsCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListIdMappingWorkflows", {})
13
13
  .n("EntityResolutionClient", "ListIdMappingWorkflowsCommand")
14
- .sc(ListIdMappingWorkflows)
14
+ .sc(ListIdMappingWorkflows$)
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 { ListIdNamespaces } from "../schemas/schemas_0";
4
+ import { ListIdNamespaces$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListIdNamespacesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListIdNamespacesCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListIdNamespaces", {})
13
13
  .n("EntityResolutionClient", "ListIdNamespacesCommand")
14
- .sc(ListIdNamespaces)
14
+ .sc(ListIdNamespaces$)
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 { ListMatchingJobs } from "../schemas/schemas_0";
4
+ import { ListMatchingJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMatchingJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMatchingJobsCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListMatchingJobs", {})
13
13
  .n("EntityResolutionClient", "ListMatchingJobsCommand")
14
- .sc(ListMatchingJobs)
14
+ .sc(ListMatchingJobs$)
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 { ListMatchingWorkflows } from "../schemas/schemas_0";
4
+ import { ListMatchingWorkflows$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMatchingWorkflowsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMatchingWorkflowsCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListMatchingWorkflows", {})
13
13
  .n("EntityResolutionClient", "ListMatchingWorkflowsCommand")
14
- .sc(ListMatchingWorkflows)
14
+ .sc(ListMatchingWorkflows$)
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 { ListProviderServices } from "../schemas/schemas_0";
4
+ import { ListProviderServices$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProviderServicesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProviderServicesCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListProviderServices", {})
13
13
  .n("EntityResolutionClient", "ListProviderServicesCommand")
14
- .sc(ListProviderServices)
14
+ .sc(ListProviderServices$)
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 { ListSchemaMappings } from "../schemas/schemas_0";
4
+ import { ListSchemaMappings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSchemaMappingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSchemaMappingsCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListSchemaMappings", {})
13
13
  .n("EntityResolutionClient", "ListSchemaMappingsCommand")
14
- .sc(ListSchemaMappings)
14
+ .sc(ListSchemaMappings$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "ListTagsForResource", {})
13
13
  .n("EntityResolutionClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { PutPolicy } from "../schemas/schemas_0";
4
+ import { PutPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutPolicyCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "PutPolicy", {})
13
13
  .n("EntityResolutionClient", "PutPolicyCommand")
14
- .sc(PutPolicy)
14
+ .sc(PutPolicy$)
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 { StartIdMappingJob } from "../schemas/schemas_0";
4
+ import { StartIdMappingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartIdMappingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartIdMappingJobCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "StartIdMappingJob", {})
13
13
  .n("EntityResolutionClient", "StartIdMappingJobCommand")
14
- .sc(StartIdMappingJob)
14
+ .sc(StartIdMappingJob$)
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 { StartMatchingJob } from "../schemas/schemas_0";
4
+ import { StartMatchingJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartMatchingJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartMatchingJobCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "StartMatchingJob", {})
13
13
  .n("EntityResolutionClient", "StartMatchingJobCommand")
14
- .sc(StartMatchingJob)
14
+ .sc(StartMatchingJob$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "TagResource", {})
13
13
  .n("EntityResolutionClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "UntagResource", {})
13
13
  .n("EntityResolutionClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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 { UpdateIdMappingWorkflow } from "../schemas/schemas_0";
4
+ import { UpdateIdMappingWorkflow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateIdMappingWorkflowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateIdMappingWorkflowCommand extends $Command
11
11
  })
12
12
  .s("AWSVeniceService", "UpdateIdMappingWorkflow", {})
13
13
  .n("EntityResolutionClient", "UpdateIdMappingWorkflowCommand")
14
- .sc(UpdateIdMappingWorkflow)
14
+ .sc(UpdateIdMappingWorkflow$)
15
15
  .build() {
16
16
  }