@aws-sdk/client-entityresolution 3.554.0 → 3.562.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 (63) hide show
  1. package/README.md +87 -7
  2. package/dist-cjs/index.js +683 -56
  3. package/dist-es/EntityResolution.js +20 -0
  4. package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
  5. package/dist-es/commands/BatchDeleteUniqueIdCommand.js +24 -0
  6. package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
  7. package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
  8. package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
  9. package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
  10. package/dist-es/commands/GetPolicyCommand.js +24 -0
  11. package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
  12. package/dist-es/commands/PutPolicyCommand.js +24 -0
  13. package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
  14. package/dist-es/commands/index.js +10 -0
  15. package/dist-es/models/models_0.js +48 -32
  16. package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
  17. package/dist-es/pagination/index.js +1 -0
  18. package/dist-es/protocols/Aws_restJson1.js +399 -7
  19. package/dist-types/EntityResolution.d.ts +71 -0
  20. package/dist-types/EntityResolutionClient.d.ts +12 -2
  21. package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
  22. package/dist-types/commands/BatchDeleteUniqueIdCommand.d.ts +91 -0
  23. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
  24. package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
  25. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
  26. package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
  27. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
  28. package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
  29. package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
  30. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
  31. package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
  32. package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
  33. package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
  34. package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
  35. package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
  36. package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
  37. package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
  38. package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
  39. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
  40. package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
  41. package/dist-types/commands/index.d.ts +10 -0
  42. package/dist-types/models/models_0.d.ts +972 -83
  43. package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
  44. package/dist-types/pagination/index.d.ts +1 -0
  45. package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
  46. package/dist-types/ts3.4/EntityResolution.d.ts +171 -0
  47. package/dist-types/ts3.4/EntityResolutionClient.d.ts +60 -0
  48. package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
  49. package/dist-types/ts3.4/commands/BatchDeleteUniqueIdCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
  51. package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
  52. package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
  53. package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  55. package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
  56. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
  57. package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
  58. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +245 -40
  60. package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  62. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
  63. package/package.json +4 -4
@@ -3,10 +3,22 @@ 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";
10
+ import {
11
+ BatchDeleteUniqueIdCommandInput,
12
+ BatchDeleteUniqueIdCommandOutput,
13
+ } from "../commands/BatchDeleteUniqueIdCommand";
6
14
  import {
7
15
  CreateIdMappingWorkflowCommandInput,
8
16
  CreateIdMappingWorkflowCommandOutput,
9
17
  } from "../commands/CreateIdMappingWorkflowCommand";
18
+ import {
19
+ CreateIdNamespaceCommandInput,
20
+ CreateIdNamespaceCommandOutput,
21
+ } from "../commands/CreateIdNamespaceCommand";
10
22
  import {
11
23
  CreateMatchingWorkflowCommandInput,
12
24
  CreateMatchingWorkflowCommandOutput,
@@ -19,10 +31,18 @@ import {
19
31
  DeleteIdMappingWorkflowCommandInput,
20
32
  DeleteIdMappingWorkflowCommandOutput,
21
33
  } from "../commands/DeleteIdMappingWorkflowCommand";
34
+ import {
35
+ DeleteIdNamespaceCommandInput,
36
+ DeleteIdNamespaceCommandOutput,
37
+ } from "../commands/DeleteIdNamespaceCommand";
22
38
  import {
23
39
  DeleteMatchingWorkflowCommandInput,
24
40
  DeleteMatchingWorkflowCommandOutput,
25
41
  } from "../commands/DeleteMatchingWorkflowCommand";
42
+ import {
43
+ DeletePolicyStatementCommandInput,
44
+ DeletePolicyStatementCommandOutput,
45
+ } from "../commands/DeletePolicyStatementCommand";
26
46
  import {
27
47
  DeleteSchemaMappingCommandInput,
28
48
  DeleteSchemaMappingCommandOutput,
@@ -35,6 +55,10 @@ import {
35
55
  GetIdMappingWorkflowCommandInput,
36
56
  GetIdMappingWorkflowCommandOutput,
37
57
  } from "../commands/GetIdMappingWorkflowCommand";
58
+ import {
59
+ GetIdNamespaceCommandInput,
60
+ GetIdNamespaceCommandOutput,
61
+ } from "../commands/GetIdNamespaceCommand";
38
62
  import {
39
63
  GetMatchIdCommandInput,
40
64
  GetMatchIdCommandOutput,
@@ -47,6 +71,10 @@ import {
47
71
  GetMatchingWorkflowCommandInput,
48
72
  GetMatchingWorkflowCommandOutput,
49
73
  } from "../commands/GetMatchingWorkflowCommand";
74
+ import {
75
+ GetPolicyCommandInput,
76
+ GetPolicyCommandOutput,
77
+ } from "../commands/GetPolicyCommand";
50
78
  import {
51
79
  GetProviderServiceCommandInput,
52
80
  GetProviderServiceCommandOutput,
@@ -63,6 +91,10 @@ import {
63
91
  ListIdMappingWorkflowsCommandInput,
64
92
  ListIdMappingWorkflowsCommandOutput,
65
93
  } from "../commands/ListIdMappingWorkflowsCommand";
94
+ import {
95
+ ListIdNamespacesCommandInput,
96
+ ListIdNamespacesCommandOutput,
97
+ } from "../commands/ListIdNamespacesCommand";
66
98
  import {
67
99
  ListMatchingJobsCommandInput,
68
100
  ListMatchingJobsCommandOutput,
@@ -83,6 +115,10 @@ import {
83
115
  ListTagsForResourceCommandInput,
84
116
  ListTagsForResourceCommandOutput,
85
117
  } from "../commands/ListTagsForResourceCommand";
118
+ import {
119
+ PutPolicyCommandInput,
120
+ PutPolicyCommandOutput,
121
+ } from "../commands/PutPolicyCommand";
86
122
  import {
87
123
  StartIdMappingJobCommandInput,
88
124
  StartIdMappingJobCommandOutput,
@@ -103,6 +139,10 @@ import {
103
139
  UpdateIdMappingWorkflowCommandInput,
104
140
  UpdateIdMappingWorkflowCommandOutput,
105
141
  } from "../commands/UpdateIdMappingWorkflowCommand";
142
+ import {
143
+ UpdateIdNamespaceCommandInput,
144
+ UpdateIdNamespaceCommandOutput,
145
+ } from "../commands/UpdateIdNamespaceCommand";
106
146
  import {
107
147
  UpdateMatchingWorkflowCommandInput,
108
148
  UpdateMatchingWorkflowCommandOutput,
@@ -111,10 +151,22 @@ import {
111
151
  UpdateSchemaMappingCommandInput,
112
152
  UpdateSchemaMappingCommandOutput,
113
153
  } from "../commands/UpdateSchemaMappingCommand";
154
+ export declare const se_AddPolicyStatementCommand: (
155
+ input: AddPolicyStatementCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_BatchDeleteUniqueIdCommand: (
159
+ input: BatchDeleteUniqueIdCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
114
162
  export declare const se_CreateIdMappingWorkflowCommand: (
115
163
  input: CreateIdMappingWorkflowCommandInput,
116
164
  context: __SerdeContext
117
165
  ) => Promise<__HttpRequest>;
166
+ export declare const se_CreateIdNamespaceCommand: (
167
+ input: CreateIdNamespaceCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
118
170
  export declare const se_CreateMatchingWorkflowCommand: (
119
171
  input: CreateMatchingWorkflowCommandInput,
120
172
  context: __SerdeContext
@@ -127,10 +179,18 @@ export declare const se_DeleteIdMappingWorkflowCommand: (
127
179
  input: DeleteIdMappingWorkflowCommandInput,
128
180
  context: __SerdeContext
129
181
  ) => Promise<__HttpRequest>;
182
+ export declare const se_DeleteIdNamespaceCommand: (
183
+ input: DeleteIdNamespaceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
130
186
  export declare const se_DeleteMatchingWorkflowCommand: (
131
187
  input: DeleteMatchingWorkflowCommandInput,
132
188
  context: __SerdeContext
133
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_DeletePolicyStatementCommand: (
191
+ input: DeletePolicyStatementCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
134
194
  export declare const se_DeleteSchemaMappingCommand: (
135
195
  input: DeleteSchemaMappingCommandInput,
136
196
  context: __SerdeContext
@@ -143,6 +203,10 @@ export declare const se_GetIdMappingWorkflowCommand: (
143
203
  input: GetIdMappingWorkflowCommandInput,
144
204
  context: __SerdeContext
145
205
  ) => Promise<__HttpRequest>;
206
+ export declare const se_GetIdNamespaceCommand: (
207
+ input: GetIdNamespaceCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
146
210
  export declare const se_GetMatchIdCommand: (
147
211
  input: GetMatchIdCommandInput,
148
212
  context: __SerdeContext
@@ -155,6 +219,10 @@ export declare const se_GetMatchingWorkflowCommand: (
155
219
  input: GetMatchingWorkflowCommandInput,
156
220
  context: __SerdeContext
157
221
  ) => Promise<__HttpRequest>;
222
+ export declare const se_GetPolicyCommand: (
223
+ input: GetPolicyCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
158
226
  export declare const se_GetProviderServiceCommand: (
159
227
  input: GetProviderServiceCommandInput,
160
228
  context: __SerdeContext
@@ -171,6 +239,10 @@ export declare const se_ListIdMappingWorkflowsCommand: (
171
239
  input: ListIdMappingWorkflowsCommandInput,
172
240
  context: __SerdeContext
173
241
  ) => Promise<__HttpRequest>;
242
+ export declare const se_ListIdNamespacesCommand: (
243
+ input: ListIdNamespacesCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
174
246
  export declare const se_ListMatchingJobsCommand: (
175
247
  input: ListMatchingJobsCommandInput,
176
248
  context: __SerdeContext
@@ -191,6 +263,10 @@ export declare const se_ListTagsForResourceCommand: (
191
263
  input: ListTagsForResourceCommandInput,
192
264
  context: __SerdeContext
193
265
  ) => Promise<__HttpRequest>;
266
+ export declare const se_PutPolicyCommand: (
267
+ input: PutPolicyCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
194
270
  export declare const se_StartIdMappingJobCommand: (
195
271
  input: StartIdMappingJobCommandInput,
196
272
  context: __SerdeContext
@@ -211,6 +287,10 @@ export declare const se_UpdateIdMappingWorkflowCommand: (
211
287
  input: UpdateIdMappingWorkflowCommandInput,
212
288
  context: __SerdeContext
213
289
  ) => Promise<__HttpRequest>;
290
+ export declare const se_UpdateIdNamespaceCommand: (
291
+ input: UpdateIdNamespaceCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
214
294
  export declare const se_UpdateMatchingWorkflowCommand: (
215
295
  input: UpdateMatchingWorkflowCommandInput,
216
296
  context: __SerdeContext
@@ -219,10 +299,22 @@ export declare const se_UpdateSchemaMappingCommand: (
219
299
  input: UpdateSchemaMappingCommandInput,
220
300
  context: __SerdeContext
221
301
  ) => Promise<__HttpRequest>;
302
+ export declare const de_AddPolicyStatementCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<AddPolicyStatementCommandOutput>;
306
+ export declare const de_BatchDeleteUniqueIdCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<BatchDeleteUniqueIdCommandOutput>;
222
310
  export declare const de_CreateIdMappingWorkflowCommand: (
223
311
  output: __HttpResponse,
224
312
  context: __SerdeContext
225
313
  ) => Promise<CreateIdMappingWorkflowCommandOutput>;
314
+ export declare const de_CreateIdNamespaceCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<CreateIdNamespaceCommandOutput>;
226
318
  export declare const de_CreateMatchingWorkflowCommand: (
227
319
  output: __HttpResponse,
228
320
  context: __SerdeContext
@@ -235,10 +327,18 @@ export declare const de_DeleteIdMappingWorkflowCommand: (
235
327
  output: __HttpResponse,
236
328
  context: __SerdeContext
237
329
  ) => Promise<DeleteIdMappingWorkflowCommandOutput>;
330
+ export declare const de_DeleteIdNamespaceCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<DeleteIdNamespaceCommandOutput>;
238
334
  export declare const de_DeleteMatchingWorkflowCommand: (
239
335
  output: __HttpResponse,
240
336
  context: __SerdeContext
241
337
  ) => Promise<DeleteMatchingWorkflowCommandOutput>;
338
+ export declare const de_DeletePolicyStatementCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<DeletePolicyStatementCommandOutput>;
242
342
  export declare const de_DeleteSchemaMappingCommand: (
243
343
  output: __HttpResponse,
244
344
  context: __SerdeContext
@@ -251,6 +351,10 @@ export declare const de_GetIdMappingWorkflowCommand: (
251
351
  output: __HttpResponse,
252
352
  context: __SerdeContext
253
353
  ) => Promise<GetIdMappingWorkflowCommandOutput>;
354
+ export declare const de_GetIdNamespaceCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<GetIdNamespaceCommandOutput>;
254
358
  export declare const de_GetMatchIdCommand: (
255
359
  output: __HttpResponse,
256
360
  context: __SerdeContext
@@ -263,6 +367,10 @@ export declare const de_GetMatchingWorkflowCommand: (
263
367
  output: __HttpResponse,
264
368
  context: __SerdeContext
265
369
  ) => Promise<GetMatchingWorkflowCommandOutput>;
370
+ export declare const de_GetPolicyCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<GetPolicyCommandOutput>;
266
374
  export declare const de_GetProviderServiceCommand: (
267
375
  output: __HttpResponse,
268
376
  context: __SerdeContext
@@ -279,6 +387,10 @@ export declare const de_ListIdMappingWorkflowsCommand: (
279
387
  output: __HttpResponse,
280
388
  context: __SerdeContext
281
389
  ) => Promise<ListIdMappingWorkflowsCommandOutput>;
390
+ export declare const de_ListIdNamespacesCommand: (
391
+ output: __HttpResponse,
392
+ context: __SerdeContext
393
+ ) => Promise<ListIdNamespacesCommandOutput>;
282
394
  export declare const de_ListMatchingJobsCommand: (
283
395
  output: __HttpResponse,
284
396
  context: __SerdeContext
@@ -299,6 +411,10 @@ export declare const de_ListTagsForResourceCommand: (
299
411
  output: __HttpResponse,
300
412
  context: __SerdeContext
301
413
  ) => Promise<ListTagsForResourceCommandOutput>;
414
+ export declare const de_PutPolicyCommand: (
415
+ output: __HttpResponse,
416
+ context: __SerdeContext
417
+ ) => Promise<PutPolicyCommandOutput>;
302
418
  export declare const de_StartIdMappingJobCommand: (
303
419
  output: __HttpResponse,
304
420
  context: __SerdeContext
@@ -319,6 +435,10 @@ export declare const de_UpdateIdMappingWorkflowCommand: (
319
435
  output: __HttpResponse,
320
436
  context: __SerdeContext
321
437
  ) => Promise<UpdateIdMappingWorkflowCommandOutput>;
438
+ export declare const de_UpdateIdNamespaceCommand: (
439
+ output: __HttpResponse,
440
+ context: __SerdeContext
441
+ ) => Promise<UpdateIdNamespaceCommandOutput>;
322
442
  export declare const de_UpdateMatchingWorkflowCommand: (
323
443
  output: __HttpResponse,
324
444
  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.554.0",
4
+ "version": "3.562.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.554.0",
24
- "@aws-sdk/core": "3.554.0",
25
- "@aws-sdk/credential-provider-node": "3.554.0",
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",