@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
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,22 @@ 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>
224
+ <details>
225
+ <summary>
226
+ BatchDeleteUniqueId
227
+ </summary>
228
+
229
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/entityresolution/command/BatchDeleteUniqueIdCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/BatchDeleteUniqueIdCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-entityresolution/Interface/BatchDeleteUniqueIdCommandOutput/)
230
+
231
+ </details>
216
232
  <details>
217
233
  <summary>
218
234
  CreateIdMappingWorkflow
@@ -220,6 +236,14 @@ CreateIdMappingWorkflow
220
236
 
221
237
  [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
238
 
239
+ </details>
240
+ <details>
241
+ <summary>
242
+ CreateIdNamespace
243
+ </summary>
244
+
245
+ [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/)
246
+
223
247
  </details>
224
248
  <details>
225
249
  <summary>
@@ -244,6 +268,14 @@ DeleteIdMappingWorkflow
244
268
 
245
269
  [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
270
 
271
+ </details>
272
+ <details>
273
+ <summary>
274
+ DeleteIdNamespace
275
+ </summary>
276
+
277
+ [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/)
278
+
247
279
  </details>
248
280
  <details>
249
281
  <summary>
@@ -252,6 +284,14 @@ DeleteMatchingWorkflow
252
284
 
253
285
  [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
286
 
287
+ </details>
288
+ <details>
289
+ <summary>
290
+ DeletePolicyStatement
291
+ </summary>
292
+
293
+ [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/)
294
+
255
295
  </details>
256
296
  <details>
257
297
  <summary>
@@ -276,6 +316,14 @@ GetIdMappingWorkflow
276
316
 
277
317
  [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
318
 
319
+ </details>
320
+ <details>
321
+ <summary>
322
+ GetIdNamespace
323
+ </summary>
324
+
325
+ [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/)
326
+
279
327
  </details>
280
328
  <details>
281
329
  <summary>
@@ -300,6 +348,14 @@ GetMatchingWorkflow
300
348
 
301
349
  [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
350
 
351
+ </details>
352
+ <details>
353
+ <summary>
354
+ GetPolicy
355
+ </summary>
356
+
357
+ [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/)
358
+
303
359
  </details>
304
360
  <details>
305
361
  <summary>
@@ -332,6 +388,14 @@ ListIdMappingWorkflows
332
388
 
333
389
  [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
390
 
391
+ </details>
392
+ <details>
393
+ <summary>
394
+ ListIdNamespaces
395
+ </summary>
396
+
397
+ [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/)
398
+
335
399
  </details>
336
400
  <details>
337
401
  <summary>
@@ -372,6 +436,14 @@ ListTagsForResource
372
436
 
373
437
  [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
438
 
439
+ </details>
440
+ <details>
441
+ <summary>
442
+ PutPolicy
443
+ </summary>
444
+
445
+ [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/)
446
+
375
447
  </details>
376
448
  <details>
377
449
  <summary>
@@ -412,6 +484,14 @@ UpdateIdMappingWorkflow
412
484
 
413
485
  [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
486
 
487
+ </details>
488
+ <details>
489
+ <summary>
490
+ UpdateIdNamespace
491
+ </summary>
492
+
493
+ [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/)
494
+
415
495
  </details>
416
496
  <details>
417
497
  <summary>