@aws-sdk/client-entityresolution 3.428.0 → 3.430.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 (99) hide show
  1. package/README.md +104 -17
  2. package/dist-cjs/EntityResolution.js +22 -0
  3. package/dist-cjs/commands/CreateIdMappingWorkflowCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIdMappingWorkflowCommand.js +51 -0
  5. package/dist-cjs/commands/GetIdMappingJobCommand.js +51 -0
  6. package/dist-cjs/commands/GetIdMappingWorkflowCommand.js +51 -0
  7. package/dist-cjs/commands/GetProviderServiceCommand.js +51 -0
  8. package/dist-cjs/commands/ListIdMappingJobsCommand.js +51 -0
  9. package/dist-cjs/commands/ListIdMappingWorkflowsCommand.js +51 -0
  10. package/dist-cjs/commands/ListProviderServicesCommand.js +51 -0
  11. package/dist-cjs/commands/StartIdMappingJobCommand.js +51 -0
  12. package/dist-cjs/commands/UpdateIdMappingWorkflowCommand.js +51 -0
  13. package/dist-cjs/commands/UpdateSchemaMappingCommand.js +51 -0
  14. package/dist-cjs/commands/index.js +11 -0
  15. package/dist-cjs/endpoint/ruleset.js +3 -3
  16. package/dist-cjs/models/models_0.js +29 -12
  17. package/dist-cjs/pagination/ListIdMappingJobsPaginator.js +29 -0
  18. package/dist-cjs/pagination/ListIdMappingWorkflowsPaginator.js +29 -0
  19. package/dist-cjs/pagination/ListProviderServicesPaginator.js +29 -0
  20. package/dist-cjs/pagination/index.js +3 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +917 -71
  22. package/dist-es/EntityResolution.js +22 -0
  23. package/dist-es/commands/CreateIdMappingWorkflowCommand.js +47 -0
  24. package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +47 -0
  25. package/dist-es/commands/GetIdMappingJobCommand.js +47 -0
  26. package/dist-es/commands/GetIdMappingWorkflowCommand.js +47 -0
  27. package/dist-es/commands/GetProviderServiceCommand.js +47 -0
  28. package/dist-es/commands/ListIdMappingJobsCommand.js +47 -0
  29. package/dist-es/commands/ListIdMappingWorkflowsCommand.js +47 -0
  30. package/dist-es/commands/ListProviderServicesCommand.js +47 -0
  31. package/dist-es/commands/StartIdMappingJobCommand.js +47 -0
  32. package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +47 -0
  33. package/dist-es/commands/UpdateSchemaMappingCommand.js +47 -0
  34. package/dist-es/commands/index.js +11 -0
  35. package/dist-es/endpoint/ruleset.js +3 -3
  36. package/dist-es/models/models_0.js +28 -11
  37. package/dist-es/pagination/ListIdMappingJobsPaginator.js +25 -0
  38. package/dist-es/pagination/ListIdMappingWorkflowsPaginator.js +25 -0
  39. package/dist-es/pagination/ListProviderServicesPaginator.js +25 -0
  40. package/dist-es/pagination/index.js +3 -0
  41. package/dist-es/protocols/Aws_restJson1.js +908 -85
  42. package/dist-types/EntityResolution.d.ts +86 -10
  43. package/dist-types/EntityResolutionClient.d.ts +22 -12
  44. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +160 -0
  45. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +34 -13
  46. package/dist-types/commands/CreateSchemaMappingCommand.d.ts +18 -10
  47. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +94 -0
  48. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +10 -6
  49. package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +15 -9
  50. package/dist-types/commands/GetIdMappingJobCommand.d.ts +110 -0
  51. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +127 -0
  52. package/dist-types/commands/GetMatchIdCommand.d.ts +10 -5
  53. package/dist-types/commands/GetMatchingJobCommand.d.ts +10 -5
  54. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +16 -5
  55. package/dist-types/commands/GetProviderServiceCommand.d.ts +121 -0
  56. package/dist-types/commands/GetSchemaMappingCommand.d.ts +11 -5
  57. package/dist-types/commands/ListIdMappingJobsCommand.d.ts +107 -0
  58. package/dist-types/commands/ListIdMappingWorkflowsCommand.d.ts +103 -0
  59. package/dist-types/commands/ListMatchingJobsCommand.d.ts +8 -4
  60. package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +11 -5
  61. package/dist-types/commands/ListProviderServicesCommand.d.ts +105 -0
  62. package/dist-types/commands/ListSchemaMappingsCommand.d.ts +11 -5
  63. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -5
  64. package/dist-types/commands/StartIdMappingJobCommand.d.ts +110 -0
  65. package/dist-types/commands/StartMatchingJobCommand.d.ts +16 -10
  66. package/dist-types/commands/TagResourceCommand.d.ts +11 -9
  67. package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
  68. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +149 -0
  69. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +27 -9
  70. package/dist-types/commands/UpdateSchemaMappingCommand.d.ts +128 -0
  71. package/dist-types/commands/index.d.ts +11 -0
  72. package/dist-types/index.d.ts +9 -10
  73. package/dist-types/models/models_0.d.ts +1128 -234
  74. package/dist-types/pagination/ListIdMappingJobsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListIdMappingWorkflowsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListProviderServicesPaginator.d.ts +7 -0
  77. package/dist-types/pagination/index.d.ts +3 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
  79. package/dist-types/ts3.4/EntityResolution.d.ts +187 -0
  80. package/dist-types/ts3.4/EntityResolutionClient.d.ts +68 -2
  81. package/dist-types/ts3.4/commands/CreateIdMappingWorkflowCommand.d.ts +42 -0
  82. package/dist-types/ts3.4/commands/DeleteIdMappingWorkflowCommand.d.ts +42 -0
  83. package/dist-types/ts3.4/commands/GetIdMappingJobCommand.d.ts +38 -0
  84. package/dist-types/ts3.4/commands/GetIdMappingWorkflowCommand.d.ts +42 -0
  85. package/dist-types/ts3.4/commands/GetProviderServiceCommand.d.ts +39 -0
  86. package/dist-types/ts3.4/commands/ListIdMappingJobsCommand.d.ts +38 -0
  87. package/dist-types/ts3.4/commands/ListIdMappingWorkflowsCommand.d.ts +42 -0
  88. package/dist-types/ts3.4/commands/ListProviderServicesCommand.d.ts +42 -0
  89. package/dist-types/ts3.4/commands/StartIdMappingJobCommand.d.ts +38 -0
  90. package/dist-types/ts3.4/commands/UpdateIdMappingWorkflowCommand.d.ts +42 -0
  91. package/dist-types/ts3.4/commands/UpdateSchemaMappingCommand.d.ts +39 -0
  92. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  93. package/dist-types/ts3.4/models/models_0.d.ts +268 -55
  94. package/dist-types/ts3.4/pagination/ListIdMappingJobsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/ListIdMappingWorkflowsPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/ListProviderServicesPaginator.d.ts +11 -0
  97. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  98. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
  99. package/package.json +11 -11
@@ -45,6 +45,10 @@ import {
45
45
  UrlParser as __UrlParser,
46
46
  UserAgent as __UserAgent,
47
47
  } from "@smithy/types";
48
+ import {
49
+ CreateIdMappingWorkflowCommandInput,
50
+ CreateIdMappingWorkflowCommandOutput,
51
+ } from "./commands/CreateIdMappingWorkflowCommand";
48
52
  import {
49
53
  CreateMatchingWorkflowCommandInput,
50
54
  CreateMatchingWorkflowCommandOutput,
@@ -53,6 +57,10 @@ import {
53
57
  CreateSchemaMappingCommandInput,
54
58
  CreateSchemaMappingCommandOutput,
55
59
  } from "./commands/CreateSchemaMappingCommand";
60
+ import {
61
+ DeleteIdMappingWorkflowCommandInput,
62
+ DeleteIdMappingWorkflowCommandOutput,
63
+ } from "./commands/DeleteIdMappingWorkflowCommand";
56
64
  import {
57
65
  DeleteMatchingWorkflowCommandInput,
58
66
  DeleteMatchingWorkflowCommandOutput,
@@ -61,6 +69,14 @@ import {
61
69
  DeleteSchemaMappingCommandInput,
62
70
  DeleteSchemaMappingCommandOutput,
63
71
  } from "./commands/DeleteSchemaMappingCommand";
72
+ import {
73
+ GetIdMappingJobCommandInput,
74
+ GetIdMappingJobCommandOutput,
75
+ } from "./commands/GetIdMappingJobCommand";
76
+ import {
77
+ GetIdMappingWorkflowCommandInput,
78
+ GetIdMappingWorkflowCommandOutput,
79
+ } from "./commands/GetIdMappingWorkflowCommand";
64
80
  import {
65
81
  GetMatchIdCommandInput,
66
82
  GetMatchIdCommandOutput,
@@ -73,10 +89,22 @@ import {
73
89
  GetMatchingWorkflowCommandInput,
74
90
  GetMatchingWorkflowCommandOutput,
75
91
  } from "./commands/GetMatchingWorkflowCommand";
92
+ import {
93
+ GetProviderServiceCommandInput,
94
+ GetProviderServiceCommandOutput,
95
+ } from "./commands/GetProviderServiceCommand";
76
96
  import {
77
97
  GetSchemaMappingCommandInput,
78
98
  GetSchemaMappingCommandOutput,
79
99
  } from "./commands/GetSchemaMappingCommand";
100
+ import {
101
+ ListIdMappingJobsCommandInput,
102
+ ListIdMappingJobsCommandOutput,
103
+ } from "./commands/ListIdMappingJobsCommand";
104
+ import {
105
+ ListIdMappingWorkflowsCommandInput,
106
+ ListIdMappingWorkflowsCommandOutput,
107
+ } from "./commands/ListIdMappingWorkflowsCommand";
80
108
  import {
81
109
  ListMatchingJobsCommandInput,
82
110
  ListMatchingJobsCommandOutput,
@@ -85,6 +113,10 @@ import {
85
113
  ListMatchingWorkflowsCommandInput,
86
114
  ListMatchingWorkflowsCommandOutput,
87
115
  } from "./commands/ListMatchingWorkflowsCommand";
116
+ import {
117
+ ListProviderServicesCommandInput,
118
+ ListProviderServicesCommandOutput,
119
+ } from "./commands/ListProviderServicesCommand";
88
120
  import {
89
121
  ListSchemaMappingsCommandInput,
90
122
  ListSchemaMappingsCommandOutput,
@@ -93,6 +125,10 @@ import {
93
125
  ListTagsForResourceCommandInput,
94
126
  ListTagsForResourceCommandOutput,
95
127
  } from "./commands/ListTagsForResourceCommand";
128
+ import {
129
+ StartIdMappingJobCommandInput,
130
+ StartIdMappingJobCommandOutput,
131
+ } from "./commands/StartIdMappingJobCommand";
96
132
  import {
97
133
  StartMatchingJobCommandInput,
98
134
  StartMatchingJobCommandOutput,
@@ -105,10 +141,18 @@ import {
105
141
  UntagResourceCommandInput,
106
142
  UntagResourceCommandOutput,
107
143
  } from "./commands/UntagResourceCommand";
144
+ import {
145
+ UpdateIdMappingWorkflowCommandInput,
146
+ UpdateIdMappingWorkflowCommandOutput,
147
+ } from "./commands/UpdateIdMappingWorkflowCommand";
108
148
  import {
109
149
  UpdateMatchingWorkflowCommandInput,
110
150
  UpdateMatchingWorkflowCommandOutput,
111
151
  } from "./commands/UpdateMatchingWorkflowCommand";
152
+ import {
153
+ UpdateSchemaMappingCommandInput,
154
+ UpdateSchemaMappingCommandOutput,
155
+ } from "./commands/UpdateSchemaMappingCommand";
112
156
  import {
113
157
  ClientInputEndpointParameters,
114
158
  ClientResolvedEndpointParameters,
@@ -117,39 +161,61 @@ import {
117
161
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
118
162
  export { __Client };
119
163
  export type ServiceInputTypes =
164
+ | CreateIdMappingWorkflowCommandInput
120
165
  | CreateMatchingWorkflowCommandInput
121
166
  | CreateSchemaMappingCommandInput
167
+ | DeleteIdMappingWorkflowCommandInput
122
168
  | DeleteMatchingWorkflowCommandInput
123
169
  | DeleteSchemaMappingCommandInput
170
+ | GetIdMappingJobCommandInput
171
+ | GetIdMappingWorkflowCommandInput
124
172
  | GetMatchIdCommandInput
125
173
  | GetMatchingJobCommandInput
126
174
  | GetMatchingWorkflowCommandInput
175
+ | GetProviderServiceCommandInput
127
176
  | GetSchemaMappingCommandInput
177
+ | ListIdMappingJobsCommandInput
178
+ | ListIdMappingWorkflowsCommandInput
128
179
  | ListMatchingJobsCommandInput
129
180
  | ListMatchingWorkflowsCommandInput
181
+ | ListProviderServicesCommandInput
130
182
  | ListSchemaMappingsCommandInput
131
183
  | ListTagsForResourceCommandInput
184
+ | StartIdMappingJobCommandInput
132
185
  | StartMatchingJobCommandInput
133
186
  | TagResourceCommandInput
134
187
  | UntagResourceCommandInput
135
- | UpdateMatchingWorkflowCommandInput;
188
+ | UpdateIdMappingWorkflowCommandInput
189
+ | UpdateMatchingWorkflowCommandInput
190
+ | UpdateSchemaMappingCommandInput;
136
191
  export type ServiceOutputTypes =
192
+ | CreateIdMappingWorkflowCommandOutput
137
193
  | CreateMatchingWorkflowCommandOutput
138
194
  | CreateSchemaMappingCommandOutput
195
+ | DeleteIdMappingWorkflowCommandOutput
139
196
  | DeleteMatchingWorkflowCommandOutput
140
197
  | DeleteSchemaMappingCommandOutput
198
+ | GetIdMappingJobCommandOutput
199
+ | GetIdMappingWorkflowCommandOutput
141
200
  | GetMatchIdCommandOutput
142
201
  | GetMatchingJobCommandOutput
143
202
  | GetMatchingWorkflowCommandOutput
203
+ | GetProviderServiceCommandOutput
144
204
  | GetSchemaMappingCommandOutput
205
+ | ListIdMappingJobsCommandOutput
206
+ | ListIdMappingWorkflowsCommandOutput
145
207
  | ListMatchingJobsCommandOutput
146
208
  | ListMatchingWorkflowsCommandOutput
209
+ | ListProviderServicesCommandOutput
147
210
  | ListSchemaMappingsCommandOutput
148
211
  | ListTagsForResourceCommandOutput
212
+ | StartIdMappingJobCommandOutput
149
213
  | StartMatchingJobCommandOutput
150
214
  | TagResourceCommandOutput
151
215
  | UntagResourceCommandOutput
152
- | UpdateMatchingWorkflowCommandOutput;
216
+ | UpdateIdMappingWorkflowCommandOutput
217
+ | UpdateMatchingWorkflowCommandOutput
218
+ | UpdateSchemaMappingCommandOutput;
153
219
  export interface ClientDefaults
154
220
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
155
221
  requestHandler?: __HttpHandler;
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ CreateIdMappingWorkflowInput,
16
+ CreateIdMappingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateIdMappingWorkflowCommandInput
20
+ extends CreateIdMappingWorkflowInput {}
21
+ export interface CreateIdMappingWorkflowCommandOutput
22
+ extends CreateIdMappingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class CreateIdMappingWorkflowCommand extends $Command<
25
+ CreateIdMappingWorkflowCommandInput,
26
+ CreateIdMappingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: CreateIdMappingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateIdMappingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateIdMappingWorkflowCommandInput,
38
+ CreateIdMappingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ DeleteIdMappingWorkflowInput,
16
+ DeleteIdMappingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteIdMappingWorkflowCommandInput
20
+ extends DeleteIdMappingWorkflowInput {}
21
+ export interface DeleteIdMappingWorkflowCommandOutput
22
+ extends DeleteIdMappingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class DeleteIdMappingWorkflowCommand extends $Command<
25
+ DeleteIdMappingWorkflowCommandInput,
26
+ DeleteIdMappingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteIdMappingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteIdMappingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteIdMappingWorkflowCommandInput,
38
+ DeleteIdMappingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ GetIdMappingJobInput,
16
+ GetIdMappingJobOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetIdMappingJobCommandInput extends GetIdMappingJobInput {}
20
+ export interface GetIdMappingJobCommandOutput
21
+ extends GetIdMappingJobOutput,
22
+ __MetadataBearer {}
23
+ export declare class GetIdMappingJobCommand extends $Command<
24
+ GetIdMappingJobCommandInput,
25
+ GetIdMappingJobCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: GetIdMappingJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetIdMappingJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ GetIdMappingWorkflowInput,
16
+ GetIdMappingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetIdMappingWorkflowCommandInput
20
+ extends GetIdMappingWorkflowInput {}
21
+ export interface GetIdMappingWorkflowCommandOutput
22
+ extends GetIdMappingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetIdMappingWorkflowCommand extends $Command<
25
+ GetIdMappingWorkflowCommandInput,
26
+ GetIdMappingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: GetIdMappingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetIdMappingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetIdMappingWorkflowCommandInput,
38
+ GetIdMappingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ GetProviderServiceInput,
16
+ GetProviderServiceOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetProviderServiceCommandInput
20
+ extends GetProviderServiceInput {}
21
+ export interface GetProviderServiceCommandOutput
22
+ extends GetProviderServiceOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetProviderServiceCommand extends $Command<
25
+ GetProviderServiceCommandInput,
26
+ GetProviderServiceCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: GetProviderServiceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetProviderServiceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<GetProviderServiceCommandInput, GetProviderServiceCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ ListIdMappingJobsInput,
16
+ ListIdMappingJobsOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListIdMappingJobsCommandInput extends ListIdMappingJobsInput {}
20
+ export interface ListIdMappingJobsCommandOutput
21
+ extends ListIdMappingJobsOutput,
22
+ __MetadataBearer {}
23
+ export declare class ListIdMappingJobsCommand extends $Command<
24
+ ListIdMappingJobsCommandInput,
25
+ ListIdMappingJobsCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: ListIdMappingJobsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListIdMappingJobsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ ListIdMappingWorkflowsInput,
16
+ ListIdMappingWorkflowsOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListIdMappingWorkflowsCommandInput
20
+ extends ListIdMappingWorkflowsInput {}
21
+ export interface ListIdMappingWorkflowsCommandOutput
22
+ extends ListIdMappingWorkflowsOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListIdMappingWorkflowsCommand extends $Command<
25
+ ListIdMappingWorkflowsCommandInput,
26
+ ListIdMappingWorkflowsCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: ListIdMappingWorkflowsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListIdMappingWorkflowsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListIdMappingWorkflowsCommandInput,
38
+ ListIdMappingWorkflowsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ ListProviderServicesInput,
16
+ ListProviderServicesOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListProviderServicesCommandInput
20
+ extends ListProviderServicesInput {}
21
+ export interface ListProviderServicesCommandOutput
22
+ extends ListProviderServicesOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListProviderServicesCommand extends $Command<
25
+ ListProviderServicesCommandInput,
26
+ ListProviderServicesCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: ListProviderServicesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListProviderServicesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListProviderServicesCommandInput,
38
+ ListProviderServicesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ StartIdMappingJobInput,
16
+ StartIdMappingJobOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface StartIdMappingJobCommandInput extends StartIdMappingJobInput {}
20
+ export interface StartIdMappingJobCommandOutput
21
+ extends StartIdMappingJobOutput,
22
+ __MetadataBearer {}
23
+ export declare class StartIdMappingJobCommand extends $Command<
24
+ StartIdMappingJobCommandInput,
25
+ StartIdMappingJobCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: StartIdMappingJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: StartIdMappingJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ UpdateIdMappingWorkflowInput,
16
+ UpdateIdMappingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateIdMappingWorkflowCommandInput
20
+ extends UpdateIdMappingWorkflowInput {}
21
+ export interface UpdateIdMappingWorkflowCommandOutput
22
+ extends UpdateIdMappingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class UpdateIdMappingWorkflowCommand extends $Command<
25
+ UpdateIdMappingWorkflowCommandInput,
26
+ UpdateIdMappingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateIdMappingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateIdMappingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateIdMappingWorkflowCommandInput,
38
+ UpdateIdMappingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ UpdateSchemaMappingInput,
16
+ UpdateSchemaMappingOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateSchemaMappingCommandInput
20
+ extends UpdateSchemaMappingInput {}
21
+ export interface UpdateSchemaMappingCommandOutput
22
+ extends UpdateSchemaMappingOutput,
23
+ __MetadataBearer {}
24
+ export declare class UpdateSchemaMappingCommand extends $Command<
25
+ UpdateSchemaMappingCommandInput,
26
+ UpdateSchemaMappingCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateSchemaMappingCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateSchemaMappingCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,16 +1,27 @@
1
+ export * from "./CreateIdMappingWorkflowCommand";
1
2
  export * from "./CreateMatchingWorkflowCommand";
2
3
  export * from "./CreateSchemaMappingCommand";
4
+ export * from "./DeleteIdMappingWorkflowCommand";
3
5
  export * from "./DeleteMatchingWorkflowCommand";
4
6
  export * from "./DeleteSchemaMappingCommand";
7
+ export * from "./GetIdMappingJobCommand";
8
+ export * from "./GetIdMappingWorkflowCommand";
5
9
  export * from "./GetMatchIdCommand";
6
10
  export * from "./GetMatchingJobCommand";
7
11
  export * from "./GetMatchingWorkflowCommand";
12
+ export * from "./GetProviderServiceCommand";
8
13
  export * from "./GetSchemaMappingCommand";
14
+ export * from "./ListIdMappingJobsCommand";
15
+ export * from "./ListIdMappingWorkflowsCommand";
9
16
  export * from "./ListMatchingJobsCommand";
10
17
  export * from "./ListMatchingWorkflowsCommand";
18
+ export * from "./ListProviderServicesCommand";
11
19
  export * from "./ListSchemaMappingsCommand";
12
20
  export * from "./ListTagsForResourceCommand";
21
+ export * from "./StartIdMappingJobCommand";
13
22
  export * from "./StartMatchingJobCommand";
14
23
  export * from "./TagResourceCommand";
15
24
  export * from "./UntagResourceCommand";
25
+ export * from "./UpdateIdMappingWorkflowCommand";
16
26
  export * from "./UpdateMatchingWorkflowCommand";
27
+ export * from "./UpdateSchemaMappingCommand";