@aws-sdk/client-entityresolution 3.552.0 → 3.556.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.
- package/README.md +79 -7
- package/dist-cjs/index.js +614 -56
- package/dist-es/EntityResolution.js +18 -0
- package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
- package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
- package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
- package/dist-es/commands/GetPolicyCommand.js +24 -0
- package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
- package/dist-es/commands/PutPolicyCommand.js +24 -0
- package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +40 -32
- package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +363 -7
- package/dist-types/EntityResolution.d.ts +64 -0
- package/dist-types/EntityResolutionClient.d.ts +11 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
- package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
- package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
- package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
- package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
- package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
- package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
- package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
- package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +876 -83
- package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +216 -41
- package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +4 -4
|
@@ -3,10 +3,18 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AddPolicyStatementCommandInput,
|
|
8
|
+
AddPolicyStatementCommandOutput,
|
|
9
|
+
} from "../commands/AddPolicyStatementCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateIdMappingWorkflowCommandInput,
|
|
8
12
|
CreateIdMappingWorkflowCommandOutput,
|
|
9
13
|
} from "../commands/CreateIdMappingWorkflowCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateIdNamespaceCommandInput,
|
|
16
|
+
CreateIdNamespaceCommandOutput,
|
|
17
|
+
} from "../commands/CreateIdNamespaceCommand";
|
|
10
18
|
import {
|
|
11
19
|
CreateMatchingWorkflowCommandInput,
|
|
12
20
|
CreateMatchingWorkflowCommandOutput,
|
|
@@ -19,10 +27,18 @@ import {
|
|
|
19
27
|
DeleteIdMappingWorkflowCommandInput,
|
|
20
28
|
DeleteIdMappingWorkflowCommandOutput,
|
|
21
29
|
} from "../commands/DeleteIdMappingWorkflowCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteIdNamespaceCommandInput,
|
|
32
|
+
DeleteIdNamespaceCommandOutput,
|
|
33
|
+
} from "../commands/DeleteIdNamespaceCommand";
|
|
22
34
|
import {
|
|
23
35
|
DeleteMatchingWorkflowCommandInput,
|
|
24
36
|
DeleteMatchingWorkflowCommandOutput,
|
|
25
37
|
} from "../commands/DeleteMatchingWorkflowCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeletePolicyStatementCommandInput,
|
|
40
|
+
DeletePolicyStatementCommandOutput,
|
|
41
|
+
} from "../commands/DeletePolicyStatementCommand";
|
|
26
42
|
import {
|
|
27
43
|
DeleteSchemaMappingCommandInput,
|
|
28
44
|
DeleteSchemaMappingCommandOutput,
|
|
@@ -35,6 +51,10 @@ import {
|
|
|
35
51
|
GetIdMappingWorkflowCommandInput,
|
|
36
52
|
GetIdMappingWorkflowCommandOutput,
|
|
37
53
|
} from "../commands/GetIdMappingWorkflowCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetIdNamespaceCommandInput,
|
|
56
|
+
GetIdNamespaceCommandOutput,
|
|
57
|
+
} from "../commands/GetIdNamespaceCommand";
|
|
38
58
|
import {
|
|
39
59
|
GetMatchIdCommandInput,
|
|
40
60
|
GetMatchIdCommandOutput,
|
|
@@ -47,6 +67,10 @@ import {
|
|
|
47
67
|
GetMatchingWorkflowCommandInput,
|
|
48
68
|
GetMatchingWorkflowCommandOutput,
|
|
49
69
|
} from "../commands/GetMatchingWorkflowCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetPolicyCommandInput,
|
|
72
|
+
GetPolicyCommandOutput,
|
|
73
|
+
} from "../commands/GetPolicyCommand";
|
|
50
74
|
import {
|
|
51
75
|
GetProviderServiceCommandInput,
|
|
52
76
|
GetProviderServiceCommandOutput,
|
|
@@ -63,6 +87,10 @@ import {
|
|
|
63
87
|
ListIdMappingWorkflowsCommandInput,
|
|
64
88
|
ListIdMappingWorkflowsCommandOutput,
|
|
65
89
|
} from "../commands/ListIdMappingWorkflowsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListIdNamespacesCommandInput,
|
|
92
|
+
ListIdNamespacesCommandOutput,
|
|
93
|
+
} from "../commands/ListIdNamespacesCommand";
|
|
66
94
|
import {
|
|
67
95
|
ListMatchingJobsCommandInput,
|
|
68
96
|
ListMatchingJobsCommandOutput,
|
|
@@ -83,6 +111,10 @@ import {
|
|
|
83
111
|
ListTagsForResourceCommandInput,
|
|
84
112
|
ListTagsForResourceCommandOutput,
|
|
85
113
|
} from "../commands/ListTagsForResourceCommand";
|
|
114
|
+
import {
|
|
115
|
+
PutPolicyCommandInput,
|
|
116
|
+
PutPolicyCommandOutput,
|
|
117
|
+
} from "../commands/PutPolicyCommand";
|
|
86
118
|
import {
|
|
87
119
|
StartIdMappingJobCommandInput,
|
|
88
120
|
StartIdMappingJobCommandOutput,
|
|
@@ -103,6 +135,10 @@ import {
|
|
|
103
135
|
UpdateIdMappingWorkflowCommandInput,
|
|
104
136
|
UpdateIdMappingWorkflowCommandOutput,
|
|
105
137
|
} from "../commands/UpdateIdMappingWorkflowCommand";
|
|
138
|
+
import {
|
|
139
|
+
UpdateIdNamespaceCommandInput,
|
|
140
|
+
UpdateIdNamespaceCommandOutput,
|
|
141
|
+
} from "../commands/UpdateIdNamespaceCommand";
|
|
106
142
|
import {
|
|
107
143
|
UpdateMatchingWorkflowCommandInput,
|
|
108
144
|
UpdateMatchingWorkflowCommandOutput,
|
|
@@ -111,10 +147,18 @@ import {
|
|
|
111
147
|
UpdateSchemaMappingCommandInput,
|
|
112
148
|
UpdateSchemaMappingCommandOutput,
|
|
113
149
|
} from "../commands/UpdateSchemaMappingCommand";
|
|
150
|
+
export declare const se_AddPolicyStatementCommand: (
|
|
151
|
+
input: AddPolicyStatementCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
114
154
|
export declare const se_CreateIdMappingWorkflowCommand: (
|
|
115
155
|
input: CreateIdMappingWorkflowCommandInput,
|
|
116
156
|
context: __SerdeContext
|
|
117
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_CreateIdNamespaceCommand: (
|
|
159
|
+
input: CreateIdNamespaceCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
118
162
|
export declare const se_CreateMatchingWorkflowCommand: (
|
|
119
163
|
input: CreateMatchingWorkflowCommandInput,
|
|
120
164
|
context: __SerdeContext
|
|
@@ -127,10 +171,18 @@ export declare const se_DeleteIdMappingWorkflowCommand: (
|
|
|
127
171
|
input: DeleteIdMappingWorkflowCommandInput,
|
|
128
172
|
context: __SerdeContext
|
|
129
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_DeleteIdNamespaceCommand: (
|
|
175
|
+
input: DeleteIdNamespaceCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
130
178
|
export declare const se_DeleteMatchingWorkflowCommand: (
|
|
131
179
|
input: DeleteMatchingWorkflowCommandInput,
|
|
132
180
|
context: __SerdeContext
|
|
133
181
|
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_DeletePolicyStatementCommand: (
|
|
183
|
+
input: DeletePolicyStatementCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
134
186
|
export declare const se_DeleteSchemaMappingCommand: (
|
|
135
187
|
input: DeleteSchemaMappingCommandInput,
|
|
136
188
|
context: __SerdeContext
|
|
@@ -143,6 +195,10 @@ export declare const se_GetIdMappingWorkflowCommand: (
|
|
|
143
195
|
input: GetIdMappingWorkflowCommandInput,
|
|
144
196
|
context: __SerdeContext
|
|
145
197
|
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_GetIdNamespaceCommand: (
|
|
199
|
+
input: GetIdNamespaceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
146
202
|
export declare const se_GetMatchIdCommand: (
|
|
147
203
|
input: GetMatchIdCommandInput,
|
|
148
204
|
context: __SerdeContext
|
|
@@ -155,6 +211,10 @@ export declare const se_GetMatchingWorkflowCommand: (
|
|
|
155
211
|
input: GetMatchingWorkflowCommandInput,
|
|
156
212
|
context: __SerdeContext
|
|
157
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_GetPolicyCommand: (
|
|
215
|
+
input: GetPolicyCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
158
218
|
export declare const se_GetProviderServiceCommand: (
|
|
159
219
|
input: GetProviderServiceCommandInput,
|
|
160
220
|
context: __SerdeContext
|
|
@@ -171,6 +231,10 @@ export declare const se_ListIdMappingWorkflowsCommand: (
|
|
|
171
231
|
input: ListIdMappingWorkflowsCommandInput,
|
|
172
232
|
context: __SerdeContext
|
|
173
233
|
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const se_ListIdNamespacesCommand: (
|
|
235
|
+
input: ListIdNamespacesCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
174
238
|
export declare const se_ListMatchingJobsCommand: (
|
|
175
239
|
input: ListMatchingJobsCommandInput,
|
|
176
240
|
context: __SerdeContext
|
|
@@ -191,6 +255,10 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
191
255
|
input: ListTagsForResourceCommandInput,
|
|
192
256
|
context: __SerdeContext
|
|
193
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_PutPolicyCommand: (
|
|
259
|
+
input: PutPolicyCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
194
262
|
export declare const se_StartIdMappingJobCommand: (
|
|
195
263
|
input: StartIdMappingJobCommandInput,
|
|
196
264
|
context: __SerdeContext
|
|
@@ -211,6 +279,10 @@ export declare const se_UpdateIdMappingWorkflowCommand: (
|
|
|
211
279
|
input: UpdateIdMappingWorkflowCommandInput,
|
|
212
280
|
context: __SerdeContext
|
|
213
281
|
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const se_UpdateIdNamespaceCommand: (
|
|
283
|
+
input: UpdateIdNamespaceCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
214
286
|
export declare const se_UpdateMatchingWorkflowCommand: (
|
|
215
287
|
input: UpdateMatchingWorkflowCommandInput,
|
|
216
288
|
context: __SerdeContext
|
|
@@ -219,10 +291,18 @@ export declare const se_UpdateSchemaMappingCommand: (
|
|
|
219
291
|
input: UpdateSchemaMappingCommandInput,
|
|
220
292
|
context: __SerdeContext
|
|
221
293
|
) => Promise<__HttpRequest>;
|
|
294
|
+
export declare const de_AddPolicyStatementCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<AddPolicyStatementCommandOutput>;
|
|
222
298
|
export declare const de_CreateIdMappingWorkflowCommand: (
|
|
223
299
|
output: __HttpResponse,
|
|
224
300
|
context: __SerdeContext
|
|
225
301
|
) => Promise<CreateIdMappingWorkflowCommandOutput>;
|
|
302
|
+
export declare const de_CreateIdNamespaceCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<CreateIdNamespaceCommandOutput>;
|
|
226
306
|
export declare const de_CreateMatchingWorkflowCommand: (
|
|
227
307
|
output: __HttpResponse,
|
|
228
308
|
context: __SerdeContext
|
|
@@ -235,10 +315,18 @@ export declare const de_DeleteIdMappingWorkflowCommand: (
|
|
|
235
315
|
output: __HttpResponse,
|
|
236
316
|
context: __SerdeContext
|
|
237
317
|
) => Promise<DeleteIdMappingWorkflowCommandOutput>;
|
|
318
|
+
export declare const de_DeleteIdNamespaceCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<DeleteIdNamespaceCommandOutput>;
|
|
238
322
|
export declare const de_DeleteMatchingWorkflowCommand: (
|
|
239
323
|
output: __HttpResponse,
|
|
240
324
|
context: __SerdeContext
|
|
241
325
|
) => Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
326
|
+
export declare const de_DeletePolicyStatementCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<DeletePolicyStatementCommandOutput>;
|
|
242
330
|
export declare const de_DeleteSchemaMappingCommand: (
|
|
243
331
|
output: __HttpResponse,
|
|
244
332
|
context: __SerdeContext
|
|
@@ -251,6 +339,10 @@ export declare const de_GetIdMappingWorkflowCommand: (
|
|
|
251
339
|
output: __HttpResponse,
|
|
252
340
|
context: __SerdeContext
|
|
253
341
|
) => Promise<GetIdMappingWorkflowCommandOutput>;
|
|
342
|
+
export declare const de_GetIdNamespaceCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<GetIdNamespaceCommandOutput>;
|
|
254
346
|
export declare const de_GetMatchIdCommand: (
|
|
255
347
|
output: __HttpResponse,
|
|
256
348
|
context: __SerdeContext
|
|
@@ -263,6 +355,10 @@ export declare const de_GetMatchingWorkflowCommand: (
|
|
|
263
355
|
output: __HttpResponse,
|
|
264
356
|
context: __SerdeContext
|
|
265
357
|
) => Promise<GetMatchingWorkflowCommandOutput>;
|
|
358
|
+
export declare const de_GetPolicyCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<GetPolicyCommandOutput>;
|
|
266
362
|
export declare const de_GetProviderServiceCommand: (
|
|
267
363
|
output: __HttpResponse,
|
|
268
364
|
context: __SerdeContext
|
|
@@ -279,6 +375,10 @@ export declare const de_ListIdMappingWorkflowsCommand: (
|
|
|
279
375
|
output: __HttpResponse,
|
|
280
376
|
context: __SerdeContext
|
|
281
377
|
) => Promise<ListIdMappingWorkflowsCommandOutput>;
|
|
378
|
+
export declare const de_ListIdNamespacesCommand: (
|
|
379
|
+
output: __HttpResponse,
|
|
380
|
+
context: __SerdeContext
|
|
381
|
+
) => Promise<ListIdNamespacesCommandOutput>;
|
|
282
382
|
export declare const de_ListMatchingJobsCommand: (
|
|
283
383
|
output: __HttpResponse,
|
|
284
384
|
context: __SerdeContext
|
|
@@ -299,6 +399,10 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
299
399
|
output: __HttpResponse,
|
|
300
400
|
context: __SerdeContext
|
|
301
401
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
402
|
+
export declare const de_PutPolicyCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<PutPolicyCommandOutput>;
|
|
302
406
|
export declare const de_StartIdMappingJobCommand: (
|
|
303
407
|
output: __HttpResponse,
|
|
304
408
|
context: __SerdeContext
|
|
@@ -319,6 +423,10 @@ export declare const de_UpdateIdMappingWorkflowCommand: (
|
|
|
319
423
|
output: __HttpResponse,
|
|
320
424
|
context: __SerdeContext
|
|
321
425
|
) => Promise<UpdateIdMappingWorkflowCommandOutput>;
|
|
426
|
+
export declare const de_UpdateIdNamespaceCommand: (
|
|
427
|
+
output: __HttpResponse,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<UpdateIdNamespaceCommandOutput>;
|
|
322
430
|
export declare const de_UpdateMatchingWorkflowCommand: (
|
|
323
431
|
output: __HttpResponse,
|
|
324
432
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-entityresolution",
|
|
3
3
|
"description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.556.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-entityresolution",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.556.0",
|
|
24
|
+
"@aws-sdk/core": "3.556.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.556.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|