@aws-sdk/client-entityresolution 3.378.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/LICENSE +201 -0
- package/README.md +346 -0
- package/dist-cjs/EntityResolution.js +43 -0
- package/dist-cjs/EntityResolutionClient.js +41 -0
- package/dist-cjs/commands/CreateMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/CreateSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/DeleteMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/DeleteSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/GetMatchIdCommand.js +47 -0
- package/dist-cjs/commands/GetMatchingJobCommand.js +46 -0
- package/dist-cjs/commands/GetMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/GetSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/ListMatchingJobsCommand.js +46 -0
- package/dist-cjs/commands/ListMatchingWorkflowsCommand.js +46 -0
- package/dist-cjs/commands/ListSchemaMappingsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartMatchingJobCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/EntityResolutionServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +143 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListMatchingJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListMatchingWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSchemaMappingsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1281 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/EntityResolution.js +39 -0
- package/dist-es/EntityResolutionClient.js +37 -0
- package/dist-es/commands/CreateMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/CreateSchemaMappingCommand.js +42 -0
- package/dist-es/commands/DeleteMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/DeleteSchemaMappingCommand.js +42 -0
- package/dist-es/commands/GetMatchIdCommand.js +43 -0
- package/dist-es/commands/GetMatchingJobCommand.js +42 -0
- package/dist-es/commands/GetMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/GetSchemaMappingCommand.js +42 -0
- package/dist-es/commands/ListMatchingJobsCommand.js +42 -0
- package/dist-es/commands/ListMatchingWorkflowsCommand.js +42 -0
- package/dist-es/commands/ListSchemaMappingsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartMatchingJobCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/EntityResolutionServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +132 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListMatchingJobsPaginator.js +25 -0
- package/dist-es/pagination/ListMatchingWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/ListSchemaMappingsPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1246 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/EntityResolution.d.ts +135 -0
- package/dist-types/EntityResolutionClient.d.ts +191 -0
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +183 -0
- package/dist-types/commands/CreateSchemaMappingCommand.d.ts +123 -0
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +90 -0
- package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +96 -0
- package/dist-types/commands/GetMatchIdCommand.d.ts +96 -0
- package/dist-types/commands/GetMatchingJobCommand.d.ts +106 -0
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +138 -0
- package/dist-types/commands/GetSchemaMappingCommand.d.ts +108 -0
- package/dist-types/commands/ListMatchingJobsCommand.d.ts +103 -0
- package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +98 -0
- package/dist-types/commands/ListSchemaMappingsCommand.d.ts +98 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
- package/dist-types/commands/StartMatchingJobCommand.d.ts +104 -0
- package/dist-types/commands/TagResourceCommand.d.ts +95 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +174 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +24 -0
- package/dist-types/models/EntityResolutionServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1017 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListMatchingJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMatchingWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSchemaMappingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +279 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +209 -0
- package/dist-types/ts3.4/commands/CreateMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateSchemaMappingCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteSchemaMappingCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMatchIdCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMatchingJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMatchingWorkflowCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSchemaMappingCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMatchingJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMatchingWorkflowsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSchemaMappingsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartMatchingJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/EntityResolutionServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +322 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListMatchingJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMatchingWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSchemaMappingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +82 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
- package/package.json +99 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { EntityResolutionClient } from "../EntityResolutionClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface EntityResolutionPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: EntityResolutionClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "../commands/ListMatchingJobsCommand";
|
|
3
|
+
import { EntityResolutionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListMatchingJobs(config: EntityResolutionPaginationConfiguration, input: ListMatchingJobsCommandInput, ...additionalArguments: any): Paginator<ListMatchingJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "../commands/ListMatchingWorkflowsCommand";
|
|
3
|
+
import { EntityResolutionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListMatchingWorkflows(config: EntityResolutionPaginationConfiguration, input: ListMatchingWorkflowsCommandInput, ...additionalArguments: any): Paginator<ListMatchingWorkflowsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "../commands/ListSchemaMappingsCommand";
|
|
3
|
+
import { EntityResolutionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListSchemaMappings(config: EntityResolutionPaginationConfiguration, input: ListSchemaMappingsCommandInput, ...additionalArguments: any): Paginator<ListSchemaMappingsCommandOutput>;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "../commands/CreateMatchingWorkflowCommand";
|
|
4
|
+
import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "../commands/CreateSchemaMappingCommand";
|
|
5
|
+
import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "../commands/DeleteMatchingWorkflowCommand";
|
|
6
|
+
import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "../commands/DeleteSchemaMappingCommand";
|
|
7
|
+
import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "../commands/GetMatchIdCommand";
|
|
8
|
+
import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "../commands/GetMatchingJobCommand";
|
|
9
|
+
import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "../commands/GetMatchingWorkflowCommand";
|
|
10
|
+
import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "../commands/GetSchemaMappingCommand";
|
|
11
|
+
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "../commands/ListMatchingJobsCommand";
|
|
12
|
+
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "../commands/ListMatchingWorkflowsCommand";
|
|
13
|
+
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "../commands/ListSchemaMappingsCommand";
|
|
14
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
15
|
+
import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "../commands/StartMatchingJobCommand";
|
|
16
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
|
+
import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "../commands/UpdateMatchingWorkflowCommand";
|
|
19
|
+
/**
|
|
20
|
+
* serializeAws_restJson1CreateMatchingWorkflowCommand
|
|
21
|
+
*/
|
|
22
|
+
export declare const se_CreateMatchingWorkflowCommand: (input: CreateMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
/**
|
|
24
|
+
* serializeAws_restJson1CreateSchemaMappingCommand
|
|
25
|
+
*/
|
|
26
|
+
export declare const se_CreateSchemaMappingCommand: (input: CreateSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
/**
|
|
28
|
+
* serializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
29
|
+
*/
|
|
30
|
+
export declare const se_DeleteMatchingWorkflowCommand: (input: DeleteMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1DeleteSchemaMappingCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_DeleteSchemaMappingCommand: (input: DeleteSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
/**
|
|
36
|
+
* serializeAws_restJson1GetMatchIdCommand
|
|
37
|
+
*/
|
|
38
|
+
export declare const se_GetMatchIdCommand: (input: GetMatchIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_restJson1GetMatchingJobCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_GetMatchingJobCommand: (input: GetMatchingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1GetMatchingWorkflowCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_GetMatchingWorkflowCommand: (input: GetMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1GetSchemaMappingCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_GetSchemaMappingCommand: (input: GetSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_restJson1ListMatchingJobsCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_ListMatchingJobsCommand: (input: ListMatchingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_restJson1ListMatchingWorkflowsCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_ListMatchingWorkflowsCommand: (input: ListMatchingWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1ListSchemaMappingsCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_ListSchemaMappingsCommand: (input: ListSchemaMappingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_restJson1ListTagsForResourceCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
/**
|
|
68
|
+
* serializeAws_restJson1StartMatchingJobCommand
|
|
69
|
+
*/
|
|
70
|
+
export declare const se_StartMatchingJobCommand: (input: StartMatchingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_restJson1TagResourceCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_restJson1UntagResourceCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_UpdateMatchingWorkflowCommand: (input: UpdateMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* deserializeAws_restJson1CreateMatchingWorkflowCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const de_CreateMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMatchingWorkflowCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* deserializeAws_restJson1CreateSchemaMappingCommand
|
|
89
|
+
*/
|
|
90
|
+
export declare const de_CreateSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchemaMappingCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* deserializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const de_DeleteMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* deserializeAws_restJson1DeleteSchemaMappingCommand
|
|
97
|
+
*/
|
|
98
|
+
export declare const de_DeleteSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaMappingCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* deserializeAws_restJson1GetMatchIdCommand
|
|
101
|
+
*/
|
|
102
|
+
export declare const de_GetMatchIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchIdCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* deserializeAws_restJson1GetMatchingJobCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const de_GetMatchingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchingJobCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* deserializeAws_restJson1GetMatchingWorkflowCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const de_GetMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchingWorkflowCommandOutput>;
|
|
111
|
+
/**
|
|
112
|
+
* deserializeAws_restJson1GetSchemaMappingCommand
|
|
113
|
+
*/
|
|
114
|
+
export declare const de_GetSchemaMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSchemaMappingCommandOutput>;
|
|
115
|
+
/**
|
|
116
|
+
* deserializeAws_restJson1ListMatchingJobsCommand
|
|
117
|
+
*/
|
|
118
|
+
export declare const de_ListMatchingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMatchingJobsCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* deserializeAws_restJson1ListMatchingWorkflowsCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const de_ListMatchingWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMatchingWorkflowsCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* deserializeAws_restJson1ListSchemaMappingsCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const de_ListSchemaMappingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemaMappingsCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
131
|
+
/**
|
|
132
|
+
* deserializeAws_restJson1StartMatchingJobCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const de_StartMatchingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMatchingJobCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* deserializeAws_restJson1TagResourceCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
139
|
+
/**
|
|
140
|
+
* deserializeAws_restJson1UntagResourceCommand
|
|
141
|
+
*/
|
|
142
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_UpdateMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMatchingWorkflowCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { EntityResolutionClientConfig } from "./EntityResolutionClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
32
|
+
}) => import("@smithy/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { EntityResolutionClientConfig } from "./EntityResolutionClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
32
|
+
}) => import("@smithy/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EntityResolutionClientConfig } from "./EntityResolutionClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
24
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
logger: import("@smithy/types").Logger;
|
|
27
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
31
|
+
}) => import("@smithy/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
35
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EntityResolutionClientConfig } from "./EntityResolutionClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
logger: import("@smithy/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
|
+
};
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateMatchingWorkflowCommandInput,
|
|
4
|
+
CreateMatchingWorkflowCommandOutput,
|
|
5
|
+
} from "./commands/CreateMatchingWorkflowCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateSchemaMappingCommandInput,
|
|
8
|
+
CreateSchemaMappingCommandOutput,
|
|
9
|
+
} from "./commands/CreateSchemaMappingCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteMatchingWorkflowCommandInput,
|
|
12
|
+
DeleteMatchingWorkflowCommandOutput,
|
|
13
|
+
} from "./commands/DeleteMatchingWorkflowCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteSchemaMappingCommandInput,
|
|
16
|
+
DeleteSchemaMappingCommandOutput,
|
|
17
|
+
} from "./commands/DeleteSchemaMappingCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetMatchIdCommandInput,
|
|
20
|
+
GetMatchIdCommandOutput,
|
|
21
|
+
} from "./commands/GetMatchIdCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetMatchingJobCommandInput,
|
|
24
|
+
GetMatchingJobCommandOutput,
|
|
25
|
+
} from "./commands/GetMatchingJobCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetMatchingWorkflowCommandInput,
|
|
28
|
+
GetMatchingWorkflowCommandOutput,
|
|
29
|
+
} from "./commands/GetMatchingWorkflowCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetSchemaMappingCommandInput,
|
|
32
|
+
GetSchemaMappingCommandOutput,
|
|
33
|
+
} from "./commands/GetSchemaMappingCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListMatchingJobsCommandInput,
|
|
36
|
+
ListMatchingJobsCommandOutput,
|
|
37
|
+
} from "./commands/ListMatchingJobsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListMatchingWorkflowsCommandInput,
|
|
40
|
+
ListMatchingWorkflowsCommandOutput,
|
|
41
|
+
} from "./commands/ListMatchingWorkflowsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListSchemaMappingsCommandInput,
|
|
44
|
+
ListSchemaMappingsCommandOutput,
|
|
45
|
+
} from "./commands/ListSchemaMappingsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
StartMatchingJobCommandInput,
|
|
52
|
+
StartMatchingJobCommandOutput,
|
|
53
|
+
} from "./commands/StartMatchingJobCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "./commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UntagResourceCommandInput,
|
|
60
|
+
UntagResourceCommandOutput,
|
|
61
|
+
} from "./commands/UntagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateMatchingWorkflowCommandInput,
|
|
64
|
+
UpdateMatchingWorkflowCommandOutput,
|
|
65
|
+
} from "./commands/UpdateMatchingWorkflowCommand";
|
|
66
|
+
import { EntityResolutionClient } from "./EntityResolutionClient";
|
|
67
|
+
export interface EntityResolution {
|
|
68
|
+
createMatchingWorkflow(
|
|
69
|
+
args: CreateMatchingWorkflowCommandInput,
|
|
70
|
+
options?: __HttpHandlerOptions
|
|
71
|
+
): Promise<CreateMatchingWorkflowCommandOutput>;
|
|
72
|
+
createMatchingWorkflow(
|
|
73
|
+
args: CreateMatchingWorkflowCommandInput,
|
|
74
|
+
cb: (err: any, data?: CreateMatchingWorkflowCommandOutput) => void
|
|
75
|
+
): void;
|
|
76
|
+
createMatchingWorkflow(
|
|
77
|
+
args: CreateMatchingWorkflowCommandInput,
|
|
78
|
+
options: __HttpHandlerOptions,
|
|
79
|
+
cb: (err: any, data?: CreateMatchingWorkflowCommandOutput) => void
|
|
80
|
+
): void;
|
|
81
|
+
createSchemaMapping(
|
|
82
|
+
args: CreateSchemaMappingCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<CreateSchemaMappingCommandOutput>;
|
|
85
|
+
createSchemaMapping(
|
|
86
|
+
args: CreateSchemaMappingCommandInput,
|
|
87
|
+
cb: (err: any, data?: CreateSchemaMappingCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
createSchemaMapping(
|
|
90
|
+
args: CreateSchemaMappingCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: CreateSchemaMappingCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
deleteMatchingWorkflow(
|
|
95
|
+
args: DeleteMatchingWorkflowCommandInput,
|
|
96
|
+
options?: __HttpHandlerOptions
|
|
97
|
+
): Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
98
|
+
deleteMatchingWorkflow(
|
|
99
|
+
args: DeleteMatchingWorkflowCommandInput,
|
|
100
|
+
cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
deleteMatchingWorkflow(
|
|
103
|
+
args: DeleteMatchingWorkflowCommandInput,
|
|
104
|
+
options: __HttpHandlerOptions,
|
|
105
|
+
cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
deleteSchemaMapping(
|
|
108
|
+
args: DeleteSchemaMappingCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteSchemaMappingCommandOutput>;
|
|
111
|
+
deleteSchemaMapping(
|
|
112
|
+
args: DeleteSchemaMappingCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteSchemaMappingCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteSchemaMapping(
|
|
116
|
+
args: DeleteSchemaMappingCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteSchemaMappingCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
getMatchId(
|
|
121
|
+
args: GetMatchIdCommandInput,
|
|
122
|
+
options?: __HttpHandlerOptions
|
|
123
|
+
): Promise<GetMatchIdCommandOutput>;
|
|
124
|
+
getMatchId(
|
|
125
|
+
args: GetMatchIdCommandInput,
|
|
126
|
+
cb: (err: any, data?: GetMatchIdCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
getMatchId(
|
|
129
|
+
args: GetMatchIdCommandInput,
|
|
130
|
+
options: __HttpHandlerOptions,
|
|
131
|
+
cb: (err: any, data?: GetMatchIdCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
getMatchingJob(
|
|
134
|
+
args: GetMatchingJobCommandInput,
|
|
135
|
+
options?: __HttpHandlerOptions
|
|
136
|
+
): Promise<GetMatchingJobCommandOutput>;
|
|
137
|
+
getMatchingJob(
|
|
138
|
+
args: GetMatchingJobCommandInput,
|
|
139
|
+
cb: (err: any, data?: GetMatchingJobCommandOutput) => void
|
|
140
|
+
): void;
|
|
141
|
+
getMatchingJob(
|
|
142
|
+
args: GetMatchingJobCommandInput,
|
|
143
|
+
options: __HttpHandlerOptions,
|
|
144
|
+
cb: (err: any, data?: GetMatchingJobCommandOutput) => void
|
|
145
|
+
): void;
|
|
146
|
+
getMatchingWorkflow(
|
|
147
|
+
args: GetMatchingWorkflowCommandInput,
|
|
148
|
+
options?: __HttpHandlerOptions
|
|
149
|
+
): Promise<GetMatchingWorkflowCommandOutput>;
|
|
150
|
+
getMatchingWorkflow(
|
|
151
|
+
args: GetMatchingWorkflowCommandInput,
|
|
152
|
+
cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
getMatchingWorkflow(
|
|
155
|
+
args: GetMatchingWorkflowCommandInput,
|
|
156
|
+
options: __HttpHandlerOptions,
|
|
157
|
+
cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
getSchemaMapping(
|
|
160
|
+
args: GetSchemaMappingCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<GetSchemaMappingCommandOutput>;
|
|
163
|
+
getSchemaMapping(
|
|
164
|
+
args: GetSchemaMappingCommandInput,
|
|
165
|
+
cb: (err: any, data?: GetSchemaMappingCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
getSchemaMapping(
|
|
168
|
+
args: GetSchemaMappingCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: GetSchemaMappingCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
listMatchingJobs(
|
|
173
|
+
args: ListMatchingJobsCommandInput,
|
|
174
|
+
options?: __HttpHandlerOptions
|
|
175
|
+
): Promise<ListMatchingJobsCommandOutput>;
|
|
176
|
+
listMatchingJobs(
|
|
177
|
+
args: ListMatchingJobsCommandInput,
|
|
178
|
+
cb: (err: any, data?: ListMatchingJobsCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
listMatchingJobs(
|
|
181
|
+
args: ListMatchingJobsCommandInput,
|
|
182
|
+
options: __HttpHandlerOptions,
|
|
183
|
+
cb: (err: any, data?: ListMatchingJobsCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listMatchingWorkflows(
|
|
186
|
+
args: ListMatchingWorkflowsCommandInput,
|
|
187
|
+
options?: __HttpHandlerOptions
|
|
188
|
+
): Promise<ListMatchingWorkflowsCommandOutput>;
|
|
189
|
+
listMatchingWorkflows(
|
|
190
|
+
args: ListMatchingWorkflowsCommandInput,
|
|
191
|
+
cb: (err: any, data?: ListMatchingWorkflowsCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
listMatchingWorkflows(
|
|
194
|
+
args: ListMatchingWorkflowsCommandInput,
|
|
195
|
+
options: __HttpHandlerOptions,
|
|
196
|
+
cb: (err: any, data?: ListMatchingWorkflowsCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
listSchemaMappings(
|
|
199
|
+
args: ListSchemaMappingsCommandInput,
|
|
200
|
+
options?: __HttpHandlerOptions
|
|
201
|
+
): Promise<ListSchemaMappingsCommandOutput>;
|
|
202
|
+
listSchemaMappings(
|
|
203
|
+
args: ListSchemaMappingsCommandInput,
|
|
204
|
+
cb: (err: any, data?: ListSchemaMappingsCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
listSchemaMappings(
|
|
207
|
+
args: ListSchemaMappingsCommandInput,
|
|
208
|
+
options: __HttpHandlerOptions,
|
|
209
|
+
cb: (err: any, data?: ListSchemaMappingsCommandOutput) => void
|
|
210
|
+
): void;
|
|
211
|
+
listTagsForResource(
|
|
212
|
+
args: ListTagsForResourceCommandInput,
|
|
213
|
+
options?: __HttpHandlerOptions
|
|
214
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
215
|
+
listTagsForResource(
|
|
216
|
+
args: ListTagsForResourceCommandInput,
|
|
217
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
listTagsForResource(
|
|
220
|
+
args: ListTagsForResourceCommandInput,
|
|
221
|
+
options: __HttpHandlerOptions,
|
|
222
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
startMatchingJob(
|
|
225
|
+
args: StartMatchingJobCommandInput,
|
|
226
|
+
options?: __HttpHandlerOptions
|
|
227
|
+
): Promise<StartMatchingJobCommandOutput>;
|
|
228
|
+
startMatchingJob(
|
|
229
|
+
args: StartMatchingJobCommandInput,
|
|
230
|
+
cb: (err: any, data?: StartMatchingJobCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
startMatchingJob(
|
|
233
|
+
args: StartMatchingJobCommandInput,
|
|
234
|
+
options: __HttpHandlerOptions,
|
|
235
|
+
cb: (err: any, data?: StartMatchingJobCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
tagResource(
|
|
238
|
+
args: TagResourceCommandInput,
|
|
239
|
+
options?: __HttpHandlerOptions
|
|
240
|
+
): Promise<TagResourceCommandOutput>;
|
|
241
|
+
tagResource(
|
|
242
|
+
args: TagResourceCommandInput,
|
|
243
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
tagResource(
|
|
246
|
+
args: TagResourceCommandInput,
|
|
247
|
+
options: __HttpHandlerOptions,
|
|
248
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
untagResource(
|
|
251
|
+
args: UntagResourceCommandInput,
|
|
252
|
+
options?: __HttpHandlerOptions
|
|
253
|
+
): Promise<UntagResourceCommandOutput>;
|
|
254
|
+
untagResource(
|
|
255
|
+
args: UntagResourceCommandInput,
|
|
256
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
untagResource(
|
|
259
|
+
args: UntagResourceCommandInput,
|
|
260
|
+
options: __HttpHandlerOptions,
|
|
261
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
updateMatchingWorkflow(
|
|
264
|
+
args: UpdateMatchingWorkflowCommandInput,
|
|
265
|
+
options?: __HttpHandlerOptions
|
|
266
|
+
): Promise<UpdateMatchingWorkflowCommandOutput>;
|
|
267
|
+
updateMatchingWorkflow(
|
|
268
|
+
args: UpdateMatchingWorkflowCommandInput,
|
|
269
|
+
cb: (err: any, data?: UpdateMatchingWorkflowCommandOutput) => void
|
|
270
|
+
): void;
|
|
271
|
+
updateMatchingWorkflow(
|
|
272
|
+
args: UpdateMatchingWorkflowCommandInput,
|
|
273
|
+
options: __HttpHandlerOptions,
|
|
274
|
+
cb: (err: any, data?: UpdateMatchingWorkflowCommandOutput) => void
|
|
275
|
+
): void;
|
|
276
|
+
}
|
|
277
|
+
export declare class EntityResolution
|
|
278
|
+
extends EntityResolutionClient
|
|
279
|
+
implements EntityResolution {}
|