@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.
Files changed (60) hide show
  1. package/README.md +79 -7
  2. package/dist-cjs/index.js +614 -56
  3. package/dist-es/EntityResolution.js +18 -0
  4. package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
  5. package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
  6. package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
  7. package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
  8. package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
  9. package/dist-es/commands/GetPolicyCommand.js +24 -0
  10. package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
  11. package/dist-es/commands/PutPolicyCommand.js +24 -0
  12. package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +40 -32
  15. package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +363 -7
  18. package/dist-types/EntityResolution.d.ts +64 -0
  19. package/dist-types/EntityResolutionClient.d.ts +11 -2
  20. package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
  21. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
  22. package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
  23. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
  25. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
  26. package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
  27. package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
  28. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
  29. package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
  30. package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
  31. package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
  32. package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
  33. package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
  34. package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
  35. package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
  36. package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
  37. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
  38. package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
  39. package/dist-types/commands/index.d.ts +9 -0
  40. package/dist-types/models/models_0.d.ts +876 -83
  41. package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  44. package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
  45. package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
  46. package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
  51. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  52. package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
  53. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +216 -41
  57. package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  60. package/package.json +4 -4
package/README.md CHANGED
@@ -33,16 +33,16 @@ using your favorite package manager:
33
33
 
34
34
  The AWS SDK is modulized by clients and commands.
35
35
  To send a request, you only need to import the `EntityResolutionClient` and
36
- the commands you need, for example `ListIdMappingJobsCommand`:
36
+ the commands you need, for example `ListIdNamespacesCommand`:
37
37
 
38
38
  ```js
39
39
  // ES5 example
40
- const { EntityResolutionClient, ListIdMappingJobsCommand } = require("@aws-sdk/client-entityresolution");
40
+ const { EntityResolutionClient, ListIdNamespacesCommand } = require("@aws-sdk/client-entityresolution");
41
41
  ```
42
42
 
43
43
  ```ts
44
44
  // ES6+ example
45
- import { EntityResolutionClient, ListIdMappingJobsCommand } from "@aws-sdk/client-entityresolution";
45
+ import { EntityResolutionClient, ListIdNamespacesCommand } from "@aws-sdk/client-entityresolution";
46
46
  ```
47
47
 
48
48
  ### Usage
@@ -61,7 +61,7 @@ const client = new EntityResolutionClient({ region: "REGION" });
61
61
  const params = {
62
62
  /** input parameters */
63
63
  };
64
- const command = new ListIdMappingJobsCommand(params);
64
+ const command = new ListIdNamespacesCommand(params);
65
65
  ```
66
66
 
67
67
  #### Async/await
@@ -140,7 +140,7 @@ const client = new AWS.EntityResolution({ region: "REGION" });
140
140
 
141
141
  // async/await.
142
142
  try {
143
- const data = await client.listIdMappingJobs(params);
143
+ const data = await client.listIdNamespaces(params);
144
144
  // process data.
145
145
  } catch (error) {
146
146
  // error handling.
@@ -148,7 +148,7 @@ try {
148
148
 
149
149
  // Promises.
150
150
  client
151
- .listIdMappingJobs(params)
151
+ .listIdNamespaces(params)
152
152
  .then((data) => {
153
153
  // process data.
154
154
  })
@@ -157,7 +157,7 @@ client
157
157
  });
158
158
 
159
159
  // callbacks.
160
- client.listIdMappingJobs(params, (err, data) => {
160
+ client.listIdNamespaces(params, (err, data) => {
161
161
  // process err and data.
162
162
  });
163
163
  ```
@@ -213,6 +213,14 @@ see LICENSE for more information.
213
213
 
214
214
  ## Client Commands (Operations List)
215
215
 
216
+ <details>
217
+ <summary>
218
+ AddPolicyStatement
219
+ </summary>
220
+
221
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/AddPolicyStatementCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/AddPolicyStatementCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/AddPolicyStatementCommandOutput/)
222
+
223
+ </details>
216
224
  <details>
217
225
  <summary>
218
226
  CreateIdMappingWorkflow
@@ -220,6 +228,14 @@ CreateIdMappingWorkflow
220
228
 
221
229
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/CreateIdMappingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/CreateIdMappingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/CreateIdMappingWorkflowCommandOutput/)
222
230
 
231
+ </details>
232
+ <details>
233
+ <summary>
234
+ CreateIdNamespace
235
+ </summary>
236
+
237
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/CreateIdNamespaceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/CreateIdNamespaceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/CreateIdNamespaceCommandOutput/)
238
+
223
239
  </details>
224
240
  <details>
225
241
  <summary>
@@ -244,6 +260,14 @@ DeleteIdMappingWorkflow
244
260
 
245
261
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/DeleteIdMappingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteIdMappingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteIdMappingWorkflowCommandOutput/)
246
262
 
263
+ </details>
264
+ <details>
265
+ <summary>
266
+ DeleteIdNamespace
267
+ </summary>
268
+
269
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/DeleteIdNamespaceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteIdNamespaceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteIdNamespaceCommandOutput/)
270
+
247
271
  </details>
248
272
  <details>
249
273
  <summary>
@@ -252,6 +276,14 @@ DeleteMatchingWorkflow
252
276
 
253
277
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/DeleteMatchingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteMatchingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeleteMatchingWorkflowCommandOutput/)
254
278
 
279
+ </details>
280
+ <details>
281
+ <summary>
282
+ DeletePolicyStatement
283
+ </summary>
284
+
285
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/DeletePolicyStatementCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeletePolicyStatementCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/DeletePolicyStatementCommandOutput/)
286
+
255
287
  </details>
256
288
  <details>
257
289
  <summary>
@@ -276,6 +308,14 @@ GetIdMappingWorkflow
276
308
 
277
309
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/GetIdMappingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetIdMappingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetIdMappingWorkflowCommandOutput/)
278
310
 
311
+ </details>
312
+ <details>
313
+ <summary>
314
+ GetIdNamespace
315
+ </summary>
316
+
317
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/GetIdNamespaceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetIdNamespaceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetIdNamespaceCommandOutput/)
318
+
279
319
  </details>
280
320
  <details>
281
321
  <summary>
@@ -300,6 +340,14 @@ GetMatchingWorkflow
300
340
 
301
341
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/GetMatchingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetMatchingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetMatchingWorkflowCommandOutput/)
302
342
 
343
+ </details>
344
+ <details>
345
+ <summary>
346
+ GetPolicy
347
+ </summary>
348
+
349
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/GetPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/GetPolicyCommandOutput/)
350
+
303
351
  </details>
304
352
  <details>
305
353
  <summary>
@@ -332,6 +380,14 @@ ListIdMappingWorkflows
332
380
 
333
381
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/ListIdMappingWorkflowsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListIdMappingWorkflowsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListIdMappingWorkflowsCommandOutput/)
334
382
 
383
+ </details>
384
+ <details>
385
+ <summary>
386
+ ListIdNamespaces
387
+ </summary>
388
+
389
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/ListIdNamespacesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListIdNamespacesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListIdNamespacesCommandOutput/)
390
+
335
391
  </details>
336
392
  <details>
337
393
  <summary>
@@ -372,6 +428,14 @@ ListTagsForResource
372
428
 
373
429
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/ListTagsForResourceCommandOutput/)
374
430
 
431
+ </details>
432
+ <details>
433
+ <summary>
434
+ PutPolicy
435
+ </summary>
436
+
437
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/PutPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/PutPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/PutPolicyCommandOutput/)
438
+
375
439
  </details>
376
440
  <details>
377
441
  <summary>
@@ -412,6 +476,14 @@ UpdateIdMappingWorkflow
412
476
 
413
477
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/UpdateIdMappingWorkflowCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/UpdateIdMappingWorkflowCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/UpdateIdMappingWorkflowCommandOutput/)
414
478
 
479
+ </details>
480
+ <details>
481
+ <summary>
482
+ UpdateIdNamespace
483
+ </summary>
484
+
485
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/UpdateIdNamespaceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/UpdateIdNamespaceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/UpdateIdNamespaceCommandOutput/)
486
+
415
487
  </details>
416
488
  <details>
417
489
  <summary>