@aws-sdk/client-entityresolution 3.427.0 → 3.429.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 +31 -31
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "../commands/ListIdMappingJobsCommand";
3
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListIdMappingJobs(config: EntityResolutionPaginationConfiguration, input: ListIdMappingJobsCommandInput, ...additionalArguments: any): Paginator<ListIdMappingJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "../commands/ListIdMappingWorkflowsCommand";
3
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListIdMappingWorkflows(config: EntityResolutionPaginationConfiguration, input: ListIdMappingWorkflowsCommandInput, ...additionalArguments: any): Paginator<ListIdMappingWorkflowsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "../commands/ListProviderServicesCommand";
3
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListProviderServices(config: EntityResolutionPaginationConfiguration, input: ListProviderServicesCommandInput, ...additionalArguments: any): Paginator<ListProviderServicesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListIdMappingJobsPaginator";
3
+ export * from "./ListIdMappingWorkflowsPaginator";
2
4
  export * from "./ListMatchingJobsPaginator";
3
5
  export * from "./ListMatchingWorkflowsPaginator";
6
+ export * from "./ListProviderServicesPaginator";
4
7
  export * from "./ListSchemaMappingsPaginator";
@@ -1,21 +1,36 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "../commands/CreateIdMappingWorkflowCommand";
3
4
  import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "../commands/CreateMatchingWorkflowCommand";
4
5
  import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "../commands/CreateSchemaMappingCommand";
6
+ import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "../commands/DeleteIdMappingWorkflowCommand";
5
7
  import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "../commands/DeleteMatchingWorkflowCommand";
6
8
  import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "../commands/DeleteSchemaMappingCommand";
9
+ import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "../commands/GetIdMappingJobCommand";
10
+ import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "../commands/GetIdMappingWorkflowCommand";
7
11
  import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "../commands/GetMatchIdCommand";
8
12
  import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "../commands/GetMatchingJobCommand";
9
13
  import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "../commands/GetMatchingWorkflowCommand";
14
+ import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "../commands/GetProviderServiceCommand";
10
15
  import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "../commands/GetSchemaMappingCommand";
16
+ import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "../commands/ListIdMappingJobsCommand";
17
+ import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "../commands/ListIdMappingWorkflowsCommand";
11
18
  import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "../commands/ListMatchingJobsCommand";
12
19
  import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "../commands/ListMatchingWorkflowsCommand";
20
+ import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "../commands/ListProviderServicesCommand";
13
21
  import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "../commands/ListSchemaMappingsCommand";
14
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "../commands/StartIdMappingJobCommand";
15
24
  import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "../commands/StartMatchingJobCommand";
16
25
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
26
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
27
+ import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "../commands/UpdateIdMappingWorkflowCommand";
18
28
  import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "../commands/UpdateMatchingWorkflowCommand";
29
+ import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "../commands/UpdateSchemaMappingCommand";
30
+ /**
31
+ * serializeAws_restJson1CreateIdMappingWorkflowCommand
32
+ */
33
+ export declare const se_CreateIdMappingWorkflowCommand: (input: CreateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
34
  /**
20
35
  * serializeAws_restJson1CreateMatchingWorkflowCommand
21
36
  */
@@ -24,6 +39,10 @@ export declare const se_CreateMatchingWorkflowCommand: (input: CreateMatchingWor
24
39
  * serializeAws_restJson1CreateSchemaMappingCommand
25
40
  */
26
41
  export declare const se_CreateSchemaMappingCommand: (input: CreateSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ /**
43
+ * serializeAws_restJson1DeleteIdMappingWorkflowCommand
44
+ */
45
+ export declare const se_DeleteIdMappingWorkflowCommand: (input: DeleteIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
46
  /**
28
47
  * serializeAws_restJson1DeleteMatchingWorkflowCommand
29
48
  */
@@ -32,6 +51,14 @@ export declare const se_DeleteMatchingWorkflowCommand: (input: DeleteMatchingWor
32
51
  * serializeAws_restJson1DeleteSchemaMappingCommand
33
52
  */
34
53
  export declare const se_DeleteSchemaMappingCommand: (input: DeleteSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_restJson1GetIdMappingJobCommand
56
+ */
57
+ export declare const se_GetIdMappingJobCommand: (input: GetIdMappingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_restJson1GetIdMappingWorkflowCommand
60
+ */
61
+ export declare const se_GetIdMappingWorkflowCommand: (input: GetIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
62
  /**
36
63
  * serializeAws_restJson1GetMatchIdCommand
37
64
  */
@@ -44,10 +71,22 @@ export declare const se_GetMatchingJobCommand: (input: GetMatchingJobCommandInpu
44
71
  * serializeAws_restJson1GetMatchingWorkflowCommand
45
72
  */
46
73
  export declare const se_GetMatchingWorkflowCommand: (input: GetMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ /**
75
+ * serializeAws_restJson1GetProviderServiceCommand
76
+ */
77
+ export declare const se_GetProviderServiceCommand: (input: GetProviderServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
78
  /**
48
79
  * serializeAws_restJson1GetSchemaMappingCommand
49
80
  */
50
81
  export declare const se_GetSchemaMappingCommand: (input: GetSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_restJson1ListIdMappingJobsCommand
84
+ */
85
+ export declare const se_ListIdMappingJobsCommand: (input: ListIdMappingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_restJson1ListIdMappingWorkflowsCommand
88
+ */
89
+ export declare const se_ListIdMappingWorkflowsCommand: (input: ListIdMappingWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
90
  /**
52
91
  * serializeAws_restJson1ListMatchingJobsCommand
53
92
  */
@@ -56,6 +95,10 @@ export declare const se_ListMatchingJobsCommand: (input: ListMatchingJobsCommand
56
95
  * serializeAws_restJson1ListMatchingWorkflowsCommand
57
96
  */
58
97
  export declare const se_ListMatchingWorkflowsCommand: (input: ListMatchingWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_restJson1ListProviderServicesCommand
100
+ */
101
+ export declare const se_ListProviderServicesCommand: (input: ListProviderServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
102
  /**
60
103
  * serializeAws_restJson1ListSchemaMappingsCommand
61
104
  */
@@ -64,6 +107,10 @@ export declare const se_ListSchemaMappingsCommand: (input: ListSchemaMappingsCom
64
107
  * serializeAws_restJson1ListTagsForResourceCommand
65
108
  */
66
109
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1StartIdMappingJobCommand
112
+ */
113
+ export declare const se_StartIdMappingJobCommand: (input: StartIdMappingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
114
  /**
68
115
  * serializeAws_restJson1StartMatchingJobCommand
69
116
  */
@@ -76,10 +123,22 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
76
123
  * serializeAws_restJson1UntagResourceCommand
77
124
  */
78
125
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_restJson1UpdateIdMappingWorkflowCommand
128
+ */
129
+ export declare const se_UpdateIdMappingWorkflowCommand: (input: UpdateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
130
  /**
80
131
  * serializeAws_restJson1UpdateMatchingWorkflowCommand
81
132
  */
82
133
  export declare const se_UpdateMatchingWorkflowCommand: (input: UpdateMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_restJson1UpdateSchemaMappingCommand
136
+ */
137
+ export declare const se_UpdateSchemaMappingCommand: (input: UpdateSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ /**
139
+ * deserializeAws_restJson1CreateIdMappingWorkflowCommand
140
+ */
141
+ export declare const de_CreateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdMappingWorkflowCommandOutput>;
83
142
  /**
84
143
  * deserializeAws_restJson1CreateMatchingWorkflowCommand
85
144
  */
@@ -88,6 +147,10 @@ export declare const de_CreateMatchingWorkflowCommand: (output: __HttpResponse,
88
147
  * deserializeAws_restJson1CreateSchemaMappingCommand
89
148
  */
90
149
  export declare const de_CreateSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchemaMappingCommandOutput>;
150
+ /**
151
+ * deserializeAws_restJson1DeleteIdMappingWorkflowCommand
152
+ */
153
+ export declare const de_DeleteIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdMappingWorkflowCommandOutput>;
91
154
  /**
92
155
  * deserializeAws_restJson1DeleteMatchingWorkflowCommand
93
156
  */
@@ -96,6 +159,14 @@ export declare const de_DeleteMatchingWorkflowCommand: (output: __HttpResponse,
96
159
  * deserializeAws_restJson1DeleteSchemaMappingCommand
97
160
  */
98
161
  export declare const de_DeleteSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaMappingCommandOutput>;
162
+ /**
163
+ * deserializeAws_restJson1GetIdMappingJobCommand
164
+ */
165
+ export declare const de_GetIdMappingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdMappingJobCommandOutput>;
166
+ /**
167
+ * deserializeAws_restJson1GetIdMappingWorkflowCommand
168
+ */
169
+ export declare const de_GetIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdMappingWorkflowCommandOutput>;
99
170
  /**
100
171
  * deserializeAws_restJson1GetMatchIdCommand
101
172
  */
@@ -108,10 +179,22 @@ export declare const de_GetMatchingJobCommand: (output: __HttpResponse, context:
108
179
  * deserializeAws_restJson1GetMatchingWorkflowCommand
109
180
  */
110
181
  export declare const de_GetMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchingWorkflowCommandOutput>;
182
+ /**
183
+ * deserializeAws_restJson1GetProviderServiceCommand
184
+ */
185
+ export declare const de_GetProviderServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProviderServiceCommandOutput>;
111
186
  /**
112
187
  * deserializeAws_restJson1GetSchemaMappingCommand
113
188
  */
114
189
  export declare const de_GetSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSchemaMappingCommandOutput>;
190
+ /**
191
+ * deserializeAws_restJson1ListIdMappingJobsCommand
192
+ */
193
+ export declare const de_ListIdMappingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdMappingJobsCommandOutput>;
194
+ /**
195
+ * deserializeAws_restJson1ListIdMappingWorkflowsCommand
196
+ */
197
+ export declare const de_ListIdMappingWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdMappingWorkflowsCommandOutput>;
115
198
  /**
116
199
  * deserializeAws_restJson1ListMatchingJobsCommand
117
200
  */
@@ -120,6 +203,10 @@ export declare const de_ListMatchingJobsCommand: (output: __HttpResponse, contex
120
203
  * deserializeAws_restJson1ListMatchingWorkflowsCommand
121
204
  */
122
205
  export declare const de_ListMatchingWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMatchingWorkflowsCommandOutput>;
206
+ /**
207
+ * deserializeAws_restJson1ListProviderServicesCommand
208
+ */
209
+ export declare const de_ListProviderServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProviderServicesCommandOutput>;
123
210
  /**
124
211
  * deserializeAws_restJson1ListSchemaMappingsCommand
125
212
  */
@@ -128,6 +215,10 @@ export declare const de_ListSchemaMappingsCommand: (output: __HttpResponse, cont
128
215
  * deserializeAws_restJson1ListTagsForResourceCommand
129
216
  */
130
217
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
218
+ /**
219
+ * deserializeAws_restJson1StartIdMappingJobCommand
220
+ */
221
+ export declare const de_StartIdMappingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartIdMappingJobCommandOutput>;
131
222
  /**
132
223
  * deserializeAws_restJson1StartMatchingJobCommand
133
224
  */
@@ -140,7 +231,15 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
140
231
  * deserializeAws_restJson1UntagResourceCommand
141
232
  */
142
233
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
234
+ /**
235
+ * deserializeAws_restJson1UpdateIdMappingWorkflowCommand
236
+ */
237
+ export declare const de_UpdateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdMappingWorkflowCommandOutput>;
143
238
  /**
144
239
  * deserializeAws_restJson1UpdateMatchingWorkflowCommand
145
240
  */
146
241
  export declare const de_UpdateMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMatchingWorkflowCommandOutput>;
242
+ /**
243
+ * deserializeAws_restJson1UpdateSchemaMappingCommand
244
+ */
245
+ export declare const de_UpdateSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSchemaMappingCommandOutput>;
@@ -1,4 +1,8 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateIdMappingWorkflowCommandInput,
4
+ CreateIdMappingWorkflowCommandOutput,
5
+ } from "./commands/CreateIdMappingWorkflowCommand";
2
6
  import {
3
7
  CreateMatchingWorkflowCommandInput,
4
8
  CreateMatchingWorkflowCommandOutput,
@@ -7,6 +11,10 @@ import {
7
11
  CreateSchemaMappingCommandInput,
8
12
  CreateSchemaMappingCommandOutput,
9
13
  } from "./commands/CreateSchemaMappingCommand";
14
+ import {
15
+ DeleteIdMappingWorkflowCommandInput,
16
+ DeleteIdMappingWorkflowCommandOutput,
17
+ } from "./commands/DeleteIdMappingWorkflowCommand";
10
18
  import {
11
19
  DeleteMatchingWorkflowCommandInput,
12
20
  DeleteMatchingWorkflowCommandOutput,
@@ -15,6 +23,14 @@ import {
15
23
  DeleteSchemaMappingCommandInput,
16
24
  DeleteSchemaMappingCommandOutput,
17
25
  } from "./commands/DeleteSchemaMappingCommand";
26
+ import {
27
+ GetIdMappingJobCommandInput,
28
+ GetIdMappingJobCommandOutput,
29
+ } from "./commands/GetIdMappingJobCommand";
30
+ import {
31
+ GetIdMappingWorkflowCommandInput,
32
+ GetIdMappingWorkflowCommandOutput,
33
+ } from "./commands/GetIdMappingWorkflowCommand";
18
34
  import {
19
35
  GetMatchIdCommandInput,
20
36
  GetMatchIdCommandOutput,
@@ -27,10 +43,22 @@ import {
27
43
  GetMatchingWorkflowCommandInput,
28
44
  GetMatchingWorkflowCommandOutput,
29
45
  } from "./commands/GetMatchingWorkflowCommand";
46
+ import {
47
+ GetProviderServiceCommandInput,
48
+ GetProviderServiceCommandOutput,
49
+ } from "./commands/GetProviderServiceCommand";
30
50
  import {
31
51
  GetSchemaMappingCommandInput,
32
52
  GetSchemaMappingCommandOutput,
33
53
  } from "./commands/GetSchemaMappingCommand";
54
+ import {
55
+ ListIdMappingJobsCommandInput,
56
+ ListIdMappingJobsCommandOutput,
57
+ } from "./commands/ListIdMappingJobsCommand";
58
+ import {
59
+ ListIdMappingWorkflowsCommandInput,
60
+ ListIdMappingWorkflowsCommandOutput,
61
+ } from "./commands/ListIdMappingWorkflowsCommand";
34
62
  import {
35
63
  ListMatchingJobsCommandInput,
36
64
  ListMatchingJobsCommandOutput,
@@ -39,6 +67,10 @@ import {
39
67
  ListMatchingWorkflowsCommandInput,
40
68
  ListMatchingWorkflowsCommandOutput,
41
69
  } from "./commands/ListMatchingWorkflowsCommand";
70
+ import {
71
+ ListProviderServicesCommandInput,
72
+ ListProviderServicesCommandOutput,
73
+ } from "./commands/ListProviderServicesCommand";
42
74
  import {
43
75
  ListSchemaMappingsCommandInput,
44
76
  ListSchemaMappingsCommandOutput,
@@ -47,6 +79,10 @@ import {
47
79
  ListTagsForResourceCommandInput,
48
80
  ListTagsForResourceCommandOutput,
49
81
  } from "./commands/ListTagsForResourceCommand";
82
+ import {
83
+ StartIdMappingJobCommandInput,
84
+ StartIdMappingJobCommandOutput,
85
+ } from "./commands/StartIdMappingJobCommand";
50
86
  import {
51
87
  StartMatchingJobCommandInput,
52
88
  StartMatchingJobCommandOutput,
@@ -59,12 +95,33 @@ import {
59
95
  UntagResourceCommandInput,
60
96
  UntagResourceCommandOutput,
61
97
  } from "./commands/UntagResourceCommand";
98
+ import {
99
+ UpdateIdMappingWorkflowCommandInput,
100
+ UpdateIdMappingWorkflowCommandOutput,
101
+ } from "./commands/UpdateIdMappingWorkflowCommand";
62
102
  import {
63
103
  UpdateMatchingWorkflowCommandInput,
64
104
  UpdateMatchingWorkflowCommandOutput,
65
105
  } from "./commands/UpdateMatchingWorkflowCommand";
106
+ import {
107
+ UpdateSchemaMappingCommandInput,
108
+ UpdateSchemaMappingCommandOutput,
109
+ } from "./commands/UpdateSchemaMappingCommand";
66
110
  import { EntityResolutionClient } from "./EntityResolutionClient";
67
111
  export interface EntityResolution {
112
+ createIdMappingWorkflow(
113
+ args: CreateIdMappingWorkflowCommandInput,
114
+ options?: __HttpHandlerOptions
115
+ ): Promise<CreateIdMappingWorkflowCommandOutput>;
116
+ createIdMappingWorkflow(
117
+ args: CreateIdMappingWorkflowCommandInput,
118
+ cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void
119
+ ): void;
120
+ createIdMappingWorkflow(
121
+ args: CreateIdMappingWorkflowCommandInput,
122
+ options: __HttpHandlerOptions,
123
+ cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void
124
+ ): void;
68
125
  createMatchingWorkflow(
69
126
  args: CreateMatchingWorkflowCommandInput,
70
127
  options?: __HttpHandlerOptions
@@ -91,6 +148,19 @@ export interface EntityResolution {
91
148
  options: __HttpHandlerOptions,
92
149
  cb: (err: any, data?: CreateSchemaMappingCommandOutput) => void
93
150
  ): void;
151
+ deleteIdMappingWorkflow(
152
+ args: DeleteIdMappingWorkflowCommandInput,
153
+ options?: __HttpHandlerOptions
154
+ ): Promise<DeleteIdMappingWorkflowCommandOutput>;
155
+ deleteIdMappingWorkflow(
156
+ args: DeleteIdMappingWorkflowCommandInput,
157
+ cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void
158
+ ): void;
159
+ deleteIdMappingWorkflow(
160
+ args: DeleteIdMappingWorkflowCommandInput,
161
+ options: __HttpHandlerOptions,
162
+ cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void
163
+ ): void;
94
164
  deleteMatchingWorkflow(
95
165
  args: DeleteMatchingWorkflowCommandInput,
96
166
  options?: __HttpHandlerOptions
@@ -117,6 +187,32 @@ export interface EntityResolution {
117
187
  options: __HttpHandlerOptions,
118
188
  cb: (err: any, data?: DeleteSchemaMappingCommandOutput) => void
119
189
  ): void;
190
+ getIdMappingJob(
191
+ args: GetIdMappingJobCommandInput,
192
+ options?: __HttpHandlerOptions
193
+ ): Promise<GetIdMappingJobCommandOutput>;
194
+ getIdMappingJob(
195
+ args: GetIdMappingJobCommandInput,
196
+ cb: (err: any, data?: GetIdMappingJobCommandOutput) => void
197
+ ): void;
198
+ getIdMappingJob(
199
+ args: GetIdMappingJobCommandInput,
200
+ options: __HttpHandlerOptions,
201
+ cb: (err: any, data?: GetIdMappingJobCommandOutput) => void
202
+ ): void;
203
+ getIdMappingWorkflow(
204
+ args: GetIdMappingWorkflowCommandInput,
205
+ options?: __HttpHandlerOptions
206
+ ): Promise<GetIdMappingWorkflowCommandOutput>;
207
+ getIdMappingWorkflow(
208
+ args: GetIdMappingWorkflowCommandInput,
209
+ cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void
210
+ ): void;
211
+ getIdMappingWorkflow(
212
+ args: GetIdMappingWorkflowCommandInput,
213
+ options: __HttpHandlerOptions,
214
+ cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void
215
+ ): void;
120
216
  getMatchId(
121
217
  args: GetMatchIdCommandInput,
122
218
  options?: __HttpHandlerOptions
@@ -156,6 +252,19 @@ export interface EntityResolution {
156
252
  options: __HttpHandlerOptions,
157
253
  cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void
158
254
  ): void;
255
+ getProviderService(
256
+ args: GetProviderServiceCommandInput,
257
+ options?: __HttpHandlerOptions
258
+ ): Promise<GetProviderServiceCommandOutput>;
259
+ getProviderService(
260
+ args: GetProviderServiceCommandInput,
261
+ cb: (err: any, data?: GetProviderServiceCommandOutput) => void
262
+ ): void;
263
+ getProviderService(
264
+ args: GetProviderServiceCommandInput,
265
+ options: __HttpHandlerOptions,
266
+ cb: (err: any, data?: GetProviderServiceCommandOutput) => void
267
+ ): void;
159
268
  getSchemaMapping(
160
269
  args: GetSchemaMappingCommandInput,
161
270
  options?: __HttpHandlerOptions
@@ -169,6 +278,32 @@ export interface EntityResolution {
169
278
  options: __HttpHandlerOptions,
170
279
  cb: (err: any, data?: GetSchemaMappingCommandOutput) => void
171
280
  ): void;
281
+ listIdMappingJobs(
282
+ args: ListIdMappingJobsCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<ListIdMappingJobsCommandOutput>;
285
+ listIdMappingJobs(
286
+ args: ListIdMappingJobsCommandInput,
287
+ cb: (err: any, data?: ListIdMappingJobsCommandOutput) => void
288
+ ): void;
289
+ listIdMappingJobs(
290
+ args: ListIdMappingJobsCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: ListIdMappingJobsCommandOutput) => void
293
+ ): void;
294
+ listIdMappingWorkflows(
295
+ args: ListIdMappingWorkflowsCommandInput,
296
+ options?: __HttpHandlerOptions
297
+ ): Promise<ListIdMappingWorkflowsCommandOutput>;
298
+ listIdMappingWorkflows(
299
+ args: ListIdMappingWorkflowsCommandInput,
300
+ cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void
301
+ ): void;
302
+ listIdMappingWorkflows(
303
+ args: ListIdMappingWorkflowsCommandInput,
304
+ options: __HttpHandlerOptions,
305
+ cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void
306
+ ): void;
172
307
  listMatchingJobs(
173
308
  args: ListMatchingJobsCommandInput,
174
309
  options?: __HttpHandlerOptions
@@ -195,6 +330,19 @@ export interface EntityResolution {
195
330
  options: __HttpHandlerOptions,
196
331
  cb: (err: any, data?: ListMatchingWorkflowsCommandOutput) => void
197
332
  ): void;
333
+ listProviderServices(
334
+ args: ListProviderServicesCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<ListProviderServicesCommandOutput>;
337
+ listProviderServices(
338
+ args: ListProviderServicesCommandInput,
339
+ cb: (err: any, data?: ListProviderServicesCommandOutput) => void
340
+ ): void;
341
+ listProviderServices(
342
+ args: ListProviderServicesCommandInput,
343
+ options: __HttpHandlerOptions,
344
+ cb: (err: any, data?: ListProviderServicesCommandOutput) => void
345
+ ): void;
198
346
  listSchemaMappings(
199
347
  args: ListSchemaMappingsCommandInput,
200
348
  options?: __HttpHandlerOptions
@@ -221,6 +369,19 @@ export interface EntityResolution {
221
369
  options: __HttpHandlerOptions,
222
370
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
223
371
  ): void;
372
+ startIdMappingJob(
373
+ args: StartIdMappingJobCommandInput,
374
+ options?: __HttpHandlerOptions
375
+ ): Promise<StartIdMappingJobCommandOutput>;
376
+ startIdMappingJob(
377
+ args: StartIdMappingJobCommandInput,
378
+ cb: (err: any, data?: StartIdMappingJobCommandOutput) => void
379
+ ): void;
380
+ startIdMappingJob(
381
+ args: StartIdMappingJobCommandInput,
382
+ options: __HttpHandlerOptions,
383
+ cb: (err: any, data?: StartIdMappingJobCommandOutput) => void
384
+ ): void;
224
385
  startMatchingJob(
225
386
  args: StartMatchingJobCommandInput,
226
387
  options?: __HttpHandlerOptions
@@ -260,6 +421,19 @@ export interface EntityResolution {
260
421
  options: __HttpHandlerOptions,
261
422
  cb: (err: any, data?: UntagResourceCommandOutput) => void
262
423
  ): void;
424
+ updateIdMappingWorkflow(
425
+ args: UpdateIdMappingWorkflowCommandInput,
426
+ options?: __HttpHandlerOptions
427
+ ): Promise<UpdateIdMappingWorkflowCommandOutput>;
428
+ updateIdMappingWorkflow(
429
+ args: UpdateIdMappingWorkflowCommandInput,
430
+ cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void
431
+ ): void;
432
+ updateIdMappingWorkflow(
433
+ args: UpdateIdMappingWorkflowCommandInput,
434
+ options: __HttpHandlerOptions,
435
+ cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void
436
+ ): void;
263
437
  updateMatchingWorkflow(
264
438
  args: UpdateMatchingWorkflowCommandInput,
265
439
  options?: __HttpHandlerOptions
@@ -273,6 +447,19 @@ export interface EntityResolution {
273
447
  options: __HttpHandlerOptions,
274
448
  cb: (err: any, data?: UpdateMatchingWorkflowCommandOutput) => void
275
449
  ): void;
450
+ updateSchemaMapping(
451
+ args: UpdateSchemaMappingCommandInput,
452
+ options?: __HttpHandlerOptions
453
+ ): Promise<UpdateSchemaMappingCommandOutput>;
454
+ updateSchemaMapping(
455
+ args: UpdateSchemaMappingCommandInput,
456
+ cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void
457
+ ): void;
458
+ updateSchemaMapping(
459
+ args: UpdateSchemaMappingCommandInput,
460
+ options: __HttpHandlerOptions,
461
+ cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void
462
+ ): void;
276
463
  }
277
464
  export declare class EntityResolution
278
465
  extends EntityResolutionClient