@aws-sdk/client-entityresolution 3.975.0 → 3.980.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/dist-cjs/index.js
CHANGED
|
@@ -1862,6 +1862,20 @@ class UpdateSchemaMappingCommand extends smithyClient.Command
|
|
|
1862
1862
|
.build() {
|
|
1863
1863
|
}
|
|
1864
1864
|
|
|
1865
|
+
const paginateListIdMappingJobs = core.createPaginator(EntityResolutionClient, ListIdMappingJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1866
|
+
|
|
1867
|
+
const paginateListIdMappingWorkflows = core.createPaginator(EntityResolutionClient, ListIdMappingWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1868
|
+
|
|
1869
|
+
const paginateListIdNamespaces = core.createPaginator(EntityResolutionClient, ListIdNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
1870
|
+
|
|
1871
|
+
const paginateListMatchingJobs = core.createPaginator(EntityResolutionClient, ListMatchingJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1872
|
+
|
|
1873
|
+
const paginateListMatchingWorkflows = core.createPaginator(EntityResolutionClient, ListMatchingWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1874
|
+
|
|
1875
|
+
const paginateListProviderServices = core.createPaginator(EntityResolutionClient, ListProviderServicesCommand, "nextToken", "nextToken", "maxResults");
|
|
1876
|
+
|
|
1877
|
+
const paginateListSchemaMappings = core.createPaginator(EntityResolutionClient, ListSchemaMappingsCommand, "nextToken", "nextToken", "maxResults");
|
|
1878
|
+
|
|
1865
1879
|
const commands = {
|
|
1866
1880
|
AddPolicyStatementCommand,
|
|
1867
1881
|
BatchDeleteUniqueIdCommand,
|
|
@@ -1902,23 +1916,18 @@ const commands = {
|
|
|
1902
1916
|
UpdateMatchingWorkflowCommand,
|
|
1903
1917
|
UpdateSchemaMappingCommand,
|
|
1904
1918
|
};
|
|
1919
|
+
const paginators = {
|
|
1920
|
+
paginateListIdMappingJobs,
|
|
1921
|
+
paginateListIdMappingWorkflows,
|
|
1922
|
+
paginateListIdNamespaces,
|
|
1923
|
+
paginateListMatchingJobs,
|
|
1924
|
+
paginateListMatchingWorkflows,
|
|
1925
|
+
paginateListProviderServices,
|
|
1926
|
+
paginateListSchemaMappings,
|
|
1927
|
+
};
|
|
1905
1928
|
class EntityResolution extends EntityResolutionClient {
|
|
1906
1929
|
}
|
|
1907
|
-
smithyClient.createAggregatedClient(commands, EntityResolution);
|
|
1908
|
-
|
|
1909
|
-
const paginateListIdMappingJobs = core.createPaginator(EntityResolutionClient, ListIdMappingJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1910
|
-
|
|
1911
|
-
const paginateListIdMappingWorkflows = core.createPaginator(EntityResolutionClient, ListIdMappingWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1912
|
-
|
|
1913
|
-
const paginateListIdNamespaces = core.createPaginator(EntityResolutionClient, ListIdNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
1914
|
-
|
|
1915
|
-
const paginateListMatchingJobs = core.createPaginator(EntityResolutionClient, ListMatchingJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1916
|
-
|
|
1917
|
-
const paginateListMatchingWorkflows = core.createPaginator(EntityResolutionClient, ListMatchingWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1918
|
-
|
|
1919
|
-
const paginateListProviderServices = core.createPaginator(EntityResolutionClient, ListProviderServicesCommand, "nextToken", "nextToken", "maxResults");
|
|
1920
|
-
|
|
1921
|
-
const paginateListSchemaMappings = core.createPaginator(EntityResolutionClient, ListSchemaMappingsCommand, "nextToken", "nextToken", "maxResults");
|
|
1930
|
+
smithyClient.createAggregatedClient(commands, EntityResolution, { paginators });
|
|
1922
1931
|
|
|
1923
1932
|
const StatementEffect = {
|
|
1924
1933
|
Allow: "Allow",
|
|
@@ -38,6 +38,13 @@ import { UpdateIdNamespaceCommand, } from "./commands/UpdateIdNamespaceCommand";
|
|
|
38
38
|
import { UpdateMatchingWorkflowCommand, } from "./commands/UpdateMatchingWorkflowCommand";
|
|
39
39
|
import { UpdateSchemaMappingCommand, } from "./commands/UpdateSchemaMappingCommand";
|
|
40
40
|
import { EntityResolutionClient } from "./EntityResolutionClient";
|
|
41
|
+
import { paginateListIdMappingJobs } from "./pagination/ListIdMappingJobsPaginator";
|
|
42
|
+
import { paginateListIdMappingWorkflows } from "./pagination/ListIdMappingWorkflowsPaginator";
|
|
43
|
+
import { paginateListIdNamespaces } from "./pagination/ListIdNamespacesPaginator";
|
|
44
|
+
import { paginateListMatchingJobs } from "./pagination/ListMatchingJobsPaginator";
|
|
45
|
+
import { paginateListMatchingWorkflows } from "./pagination/ListMatchingWorkflowsPaginator";
|
|
46
|
+
import { paginateListProviderServices } from "./pagination/ListProviderServicesPaginator";
|
|
47
|
+
import { paginateListSchemaMappings } from "./pagination/ListSchemaMappingsPaginator";
|
|
41
48
|
const commands = {
|
|
42
49
|
AddPolicyStatementCommand,
|
|
43
50
|
BatchDeleteUniqueIdCommand,
|
|
@@ -78,6 +85,15 @@ const commands = {
|
|
|
78
85
|
UpdateMatchingWorkflowCommand,
|
|
79
86
|
UpdateSchemaMappingCommand,
|
|
80
87
|
};
|
|
88
|
+
const paginators = {
|
|
89
|
+
paginateListIdMappingJobs,
|
|
90
|
+
paginateListIdMappingWorkflows,
|
|
91
|
+
paginateListIdNamespaces,
|
|
92
|
+
paginateListMatchingJobs,
|
|
93
|
+
paginateListMatchingWorkflows,
|
|
94
|
+
paginateListProviderServices,
|
|
95
|
+
paginateListSchemaMappings,
|
|
96
|
+
};
|
|
81
97
|
export class EntityResolution extends EntityResolutionClient {
|
|
82
98
|
}
|
|
83
|
-
createAggregatedClient(commands, EntityResolution);
|
|
99
|
+
createAggregatedClient(commands, EntityResolution, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput } from "./commands/AddPolicyStatementCommand";
|
|
3
3
|
import { BatchDeleteUniqueIdCommandInput, BatchDeleteUniqueIdCommandOutput } from "./commands/BatchDeleteUniqueIdCommand";
|
|
4
4
|
import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "./commands/CreateIdMappingWorkflowCommand";
|
|
@@ -272,6 +272,55 @@ export interface EntityResolution {
|
|
|
272
272
|
updateSchemaMapping(args: UpdateSchemaMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaMappingCommandOutput>;
|
|
273
273
|
updateSchemaMapping(args: UpdateSchemaMappingCommandInput, cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void): void;
|
|
274
274
|
updateSchemaMapping(args: UpdateSchemaMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void): void;
|
|
275
|
+
/**
|
|
276
|
+
* @see {@link ListIdMappingJobsCommand}
|
|
277
|
+
* @param args - command input.
|
|
278
|
+
* @param paginationConfig - optional pagination config.
|
|
279
|
+
* @returns AsyncIterable of {@link ListIdMappingJobsCommandOutput}.
|
|
280
|
+
*/
|
|
281
|
+
paginateListIdMappingJobs(args: ListIdMappingJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIdMappingJobsCommandOutput>;
|
|
282
|
+
/**
|
|
283
|
+
* @see {@link ListIdMappingWorkflowsCommand}
|
|
284
|
+
* @param args - command input.
|
|
285
|
+
* @param paginationConfig - optional pagination config.
|
|
286
|
+
* @returns AsyncIterable of {@link ListIdMappingWorkflowsCommandOutput}.
|
|
287
|
+
*/
|
|
288
|
+
paginateListIdMappingWorkflows(args?: ListIdMappingWorkflowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIdMappingWorkflowsCommandOutput>;
|
|
289
|
+
/**
|
|
290
|
+
* @see {@link ListIdNamespacesCommand}
|
|
291
|
+
* @param args - command input.
|
|
292
|
+
* @param paginationConfig - optional pagination config.
|
|
293
|
+
* @returns AsyncIterable of {@link ListIdNamespacesCommandOutput}.
|
|
294
|
+
*/
|
|
295
|
+
paginateListIdNamespaces(args?: ListIdNamespacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIdNamespacesCommandOutput>;
|
|
296
|
+
/**
|
|
297
|
+
* @see {@link ListMatchingJobsCommand}
|
|
298
|
+
* @param args - command input.
|
|
299
|
+
* @param paginationConfig - optional pagination config.
|
|
300
|
+
* @returns AsyncIterable of {@link ListMatchingJobsCommandOutput}.
|
|
301
|
+
*/
|
|
302
|
+
paginateListMatchingJobs(args: ListMatchingJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMatchingJobsCommandOutput>;
|
|
303
|
+
/**
|
|
304
|
+
* @see {@link ListMatchingWorkflowsCommand}
|
|
305
|
+
* @param args - command input.
|
|
306
|
+
* @param paginationConfig - optional pagination config.
|
|
307
|
+
* @returns AsyncIterable of {@link ListMatchingWorkflowsCommandOutput}.
|
|
308
|
+
*/
|
|
309
|
+
paginateListMatchingWorkflows(args?: ListMatchingWorkflowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMatchingWorkflowsCommandOutput>;
|
|
310
|
+
/**
|
|
311
|
+
* @see {@link ListProviderServicesCommand}
|
|
312
|
+
* @param args - command input.
|
|
313
|
+
* @param paginationConfig - optional pagination config.
|
|
314
|
+
* @returns AsyncIterable of {@link ListProviderServicesCommandOutput}.
|
|
315
|
+
*/
|
|
316
|
+
paginateListProviderServices(args?: ListProviderServicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProviderServicesCommandOutput>;
|
|
317
|
+
/**
|
|
318
|
+
* @see {@link ListSchemaMappingsCommand}
|
|
319
|
+
* @param args - command input.
|
|
320
|
+
* @param paginationConfig - optional pagination config.
|
|
321
|
+
* @returns AsyncIterable of {@link ListSchemaMappingsCommandOutput}.
|
|
322
|
+
*/
|
|
323
|
+
paginateListSchemaMappings(args?: ListSchemaMappingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSchemaMappingsCommandOutput>;
|
|
275
324
|
}
|
|
276
325
|
/**
|
|
277
326
|
* <p>Welcome to the <i>Entity Resolution API Reference</i>.</p> <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities that enable developers and analysts at advertising and marketing companies to build an accurate and complete view of their consumers.</p> <p> With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address, and phone number. This is true even when these records have incomplete or conflicting identifiers. For example, Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.</p> <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution User Guide</a>.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AddPolicyStatementCommandInput,
|
|
4
8
|
AddPolicyStatementCommandOutput,
|
|
@@ -652,6 +656,55 @@ export interface EntityResolution {
|
|
|
652
656
|
options: __HttpHandlerOptions,
|
|
653
657
|
cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void
|
|
654
658
|
): void;
|
|
659
|
+
paginateListIdMappingJobs(
|
|
660
|
+
args: ListIdMappingJobsCommandInput,
|
|
661
|
+
paginationConfig?: Pick<
|
|
662
|
+
PaginationConfiguration,
|
|
663
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
664
|
+
>
|
|
665
|
+
): Paginator<ListIdMappingJobsCommandOutput>;
|
|
666
|
+
paginateListIdMappingWorkflows(
|
|
667
|
+
args?: ListIdMappingWorkflowsCommandInput,
|
|
668
|
+
paginationConfig?: Pick<
|
|
669
|
+
PaginationConfiguration,
|
|
670
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
671
|
+
>
|
|
672
|
+
): Paginator<ListIdMappingWorkflowsCommandOutput>;
|
|
673
|
+
paginateListIdNamespaces(
|
|
674
|
+
args?: ListIdNamespacesCommandInput,
|
|
675
|
+
paginationConfig?: Pick<
|
|
676
|
+
PaginationConfiguration,
|
|
677
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
678
|
+
>
|
|
679
|
+
): Paginator<ListIdNamespacesCommandOutput>;
|
|
680
|
+
paginateListMatchingJobs(
|
|
681
|
+
args: ListMatchingJobsCommandInput,
|
|
682
|
+
paginationConfig?: Pick<
|
|
683
|
+
PaginationConfiguration,
|
|
684
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
685
|
+
>
|
|
686
|
+
): Paginator<ListMatchingJobsCommandOutput>;
|
|
687
|
+
paginateListMatchingWorkflows(
|
|
688
|
+
args?: ListMatchingWorkflowsCommandInput,
|
|
689
|
+
paginationConfig?: Pick<
|
|
690
|
+
PaginationConfiguration,
|
|
691
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
692
|
+
>
|
|
693
|
+
): Paginator<ListMatchingWorkflowsCommandOutput>;
|
|
694
|
+
paginateListProviderServices(
|
|
695
|
+
args?: ListProviderServicesCommandInput,
|
|
696
|
+
paginationConfig?: Pick<
|
|
697
|
+
PaginationConfiguration,
|
|
698
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
699
|
+
>
|
|
700
|
+
): Paginator<ListProviderServicesCommandOutput>;
|
|
701
|
+
paginateListSchemaMappings(
|
|
702
|
+
args?: ListSchemaMappingsCommandInput,
|
|
703
|
+
paginationConfig?: Pick<
|
|
704
|
+
PaginationConfiguration,
|
|
705
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
706
|
+
>
|
|
707
|
+
): Paginator<ListSchemaMappingsCommandOutput>;
|
|
655
708
|
}
|
|
656
709
|
export declare class EntityResolution
|
|
657
710
|
extends EntityResolutionClient
|
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.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-entityresolution",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|