@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.
- package/README.md +87 -7
- package/dist-cjs/index.js +683 -56
- package/dist-es/EntityResolution.js +20 -0
- package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
- package/dist-es/commands/BatchDeleteUniqueIdCommand.js +24 -0
- package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
- package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
- package/dist-es/commands/GetPolicyCommand.js +24 -0
- package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
- package/dist-es/commands/PutPolicyCommand.js +24 -0
- package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +48 -32
- package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +399 -7
- package/dist-types/EntityResolution.d.ts +71 -0
- package/dist-types/EntityResolutionClient.d.ts +12 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
- package/dist-types/commands/BatchDeleteUniqueIdCommand.d.ts +91 -0
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
- package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
- package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
- package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
- package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
- package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
- package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
- package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
- package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +972 -83
- package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +171 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/BatchDeleteUniqueIdCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +245 -40
- package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +4 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput } from "../commands/ListIdNamespacesCommand";
|
|
3
|
+
import { EntityResolutionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListIdNamespaces: (config: EntityResolutionPaginationConfiguration, input: ListIdNamespacesCommandInput, ...rest: any[]) => Paginator<ListIdNamespacesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListIdMappingJobsPaginator";
|
|
3
3
|
export * from "./ListIdMappingWorkflowsPaginator";
|
|
4
|
+
export * from "./ListIdNamespacesPaginator";
|
|
4
5
|
export * from "./ListMatchingJobsPaginator";
|
|
5
6
|
export * from "./ListMatchingWorkflowsPaginator";
|
|
6
7
|
export * from "./ListProviderServicesPaginator";
|
|
@@ -1,36 +1,58 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput } from "../commands/AddPolicyStatementCommand";
|
|
4
|
+
import { BatchDeleteUniqueIdCommandInput, BatchDeleteUniqueIdCommandOutput } from "../commands/BatchDeleteUniqueIdCommand";
|
|
3
5
|
import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "../commands/CreateIdMappingWorkflowCommand";
|
|
6
|
+
import { CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput } from "../commands/CreateIdNamespaceCommand";
|
|
4
7
|
import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "../commands/CreateMatchingWorkflowCommand";
|
|
5
8
|
import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "../commands/CreateSchemaMappingCommand";
|
|
6
9
|
import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "../commands/DeleteIdMappingWorkflowCommand";
|
|
10
|
+
import { DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput } from "../commands/DeleteIdNamespaceCommand";
|
|
7
11
|
import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "../commands/DeleteMatchingWorkflowCommand";
|
|
12
|
+
import { DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput } from "../commands/DeletePolicyStatementCommand";
|
|
8
13
|
import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "../commands/DeleteSchemaMappingCommand";
|
|
9
14
|
import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "../commands/GetIdMappingJobCommand";
|
|
10
15
|
import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "../commands/GetIdMappingWorkflowCommand";
|
|
16
|
+
import { GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput } from "../commands/GetIdNamespaceCommand";
|
|
11
17
|
import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "../commands/GetMatchIdCommand";
|
|
12
18
|
import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "../commands/GetMatchingJobCommand";
|
|
13
19
|
import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "../commands/GetMatchingWorkflowCommand";
|
|
20
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
14
21
|
import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "../commands/GetProviderServiceCommand";
|
|
15
22
|
import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "../commands/GetSchemaMappingCommand";
|
|
16
23
|
import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "../commands/ListIdMappingJobsCommand";
|
|
17
24
|
import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "../commands/ListIdMappingWorkflowsCommand";
|
|
25
|
+
import { ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput } from "../commands/ListIdNamespacesCommand";
|
|
18
26
|
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "../commands/ListMatchingJobsCommand";
|
|
19
27
|
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "../commands/ListMatchingWorkflowsCommand";
|
|
20
28
|
import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "../commands/ListProviderServicesCommand";
|
|
21
29
|
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "../commands/ListSchemaMappingsCommand";
|
|
22
30
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
31
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
23
32
|
import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "../commands/StartIdMappingJobCommand";
|
|
24
33
|
import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "../commands/StartMatchingJobCommand";
|
|
25
34
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
26
35
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
27
36
|
import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "../commands/UpdateIdMappingWorkflowCommand";
|
|
37
|
+
import { UpdateIdNamespaceCommandInput, UpdateIdNamespaceCommandOutput } from "../commands/UpdateIdNamespaceCommand";
|
|
28
38
|
import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "../commands/UpdateMatchingWorkflowCommand";
|
|
29
39
|
import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "../commands/UpdateSchemaMappingCommand";
|
|
40
|
+
/**
|
|
41
|
+
* serializeAws_restJson1AddPolicyStatementCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const se_AddPolicyStatementCommand: (input: AddPolicyStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_restJson1BatchDeleteUniqueIdCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_BatchDeleteUniqueIdCommand: (input: BatchDeleteUniqueIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
48
|
/**
|
|
31
49
|
* serializeAws_restJson1CreateIdMappingWorkflowCommand
|
|
32
50
|
*/
|
|
33
51
|
export declare const se_CreateIdMappingWorkflowCommand: (input: CreateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_restJson1CreateIdNamespaceCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_CreateIdNamespaceCommand: (input: CreateIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
56
|
/**
|
|
35
57
|
* serializeAws_restJson1CreateMatchingWorkflowCommand
|
|
36
58
|
*/
|
|
@@ -43,10 +65,18 @@ export declare const se_CreateSchemaMappingCommand: (input: CreateSchemaMappingC
|
|
|
43
65
|
* serializeAws_restJson1DeleteIdMappingWorkflowCommand
|
|
44
66
|
*/
|
|
45
67
|
export declare const se_DeleteIdMappingWorkflowCommand: (input: DeleteIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* serializeAws_restJson1DeleteIdNamespaceCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const se_DeleteIdNamespaceCommand: (input: DeleteIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
72
|
/**
|
|
47
73
|
* serializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
48
74
|
*/
|
|
49
75
|
export declare const se_DeleteMatchingWorkflowCommand: (input: DeleteMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1DeletePolicyStatementCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_DeletePolicyStatementCommand: (input: DeletePolicyStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
80
|
/**
|
|
51
81
|
* serializeAws_restJson1DeleteSchemaMappingCommand
|
|
52
82
|
*/
|
|
@@ -59,6 +89,10 @@ export declare const se_GetIdMappingJobCommand: (input: GetIdMappingJobCommandIn
|
|
|
59
89
|
* serializeAws_restJson1GetIdMappingWorkflowCommand
|
|
60
90
|
*/
|
|
61
91
|
export declare const se_GetIdMappingWorkflowCommand: (input: GetIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_restJson1GetIdNamespaceCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_GetIdNamespaceCommand: (input: GetIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
96
|
/**
|
|
63
97
|
* serializeAws_restJson1GetMatchIdCommand
|
|
64
98
|
*/
|
|
@@ -71,6 +105,10 @@ export declare const se_GetMatchingJobCommand: (input: GetMatchingJobCommandInpu
|
|
|
71
105
|
* serializeAws_restJson1GetMatchingWorkflowCommand
|
|
72
106
|
*/
|
|
73
107
|
export declare const se_GetMatchingWorkflowCommand: (input: GetMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1GetPolicyCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
112
|
/**
|
|
75
113
|
* serializeAws_restJson1GetProviderServiceCommand
|
|
76
114
|
*/
|
|
@@ -87,6 +125,10 @@ export declare const se_ListIdMappingJobsCommand: (input: ListIdMappingJobsComma
|
|
|
87
125
|
* serializeAws_restJson1ListIdMappingWorkflowsCommand
|
|
88
126
|
*/
|
|
89
127
|
export declare const se_ListIdMappingWorkflowsCommand: (input: ListIdMappingWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
+
/**
|
|
129
|
+
* serializeAws_restJson1ListIdNamespacesCommand
|
|
130
|
+
*/
|
|
131
|
+
export declare const se_ListIdNamespacesCommand: (input: ListIdNamespacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
132
|
/**
|
|
91
133
|
* serializeAws_restJson1ListMatchingJobsCommand
|
|
92
134
|
*/
|
|
@@ -107,6 +149,10 @@ export declare const se_ListSchemaMappingsCommand: (input: ListSchemaMappingsCom
|
|
|
107
149
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
108
150
|
*/
|
|
109
151
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
|
+
/**
|
|
153
|
+
* serializeAws_restJson1PutPolicyCommand
|
|
154
|
+
*/
|
|
155
|
+
export declare const se_PutPolicyCommand: (input: PutPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
156
|
/**
|
|
111
157
|
* serializeAws_restJson1StartIdMappingJobCommand
|
|
112
158
|
*/
|
|
@@ -127,6 +173,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
127
173
|
* serializeAws_restJson1UpdateIdMappingWorkflowCommand
|
|
128
174
|
*/
|
|
129
175
|
export declare const se_UpdateIdMappingWorkflowCommand: (input: UpdateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
|
+
/**
|
|
177
|
+
* serializeAws_restJson1UpdateIdNamespaceCommand
|
|
178
|
+
*/
|
|
179
|
+
export declare const se_UpdateIdNamespaceCommand: (input: UpdateIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
180
|
/**
|
|
131
181
|
* serializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
132
182
|
*/
|
|
@@ -135,10 +185,22 @@ export declare const se_UpdateMatchingWorkflowCommand: (input: UpdateMatchingWor
|
|
|
135
185
|
* serializeAws_restJson1UpdateSchemaMappingCommand
|
|
136
186
|
*/
|
|
137
187
|
export declare const se_UpdateSchemaMappingCommand: (input: UpdateSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
|
+
/**
|
|
189
|
+
* deserializeAws_restJson1AddPolicyStatementCommand
|
|
190
|
+
*/
|
|
191
|
+
export declare const de_AddPolicyStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPolicyStatementCommandOutput>;
|
|
192
|
+
/**
|
|
193
|
+
* deserializeAws_restJson1BatchDeleteUniqueIdCommand
|
|
194
|
+
*/
|
|
195
|
+
export declare const de_BatchDeleteUniqueIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDeleteUniqueIdCommandOutput>;
|
|
138
196
|
/**
|
|
139
197
|
* deserializeAws_restJson1CreateIdMappingWorkflowCommand
|
|
140
198
|
*/
|
|
141
199
|
export declare const de_CreateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdMappingWorkflowCommandOutput>;
|
|
200
|
+
/**
|
|
201
|
+
* deserializeAws_restJson1CreateIdNamespaceCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const de_CreateIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdNamespaceCommandOutput>;
|
|
142
204
|
/**
|
|
143
205
|
* deserializeAws_restJson1CreateMatchingWorkflowCommand
|
|
144
206
|
*/
|
|
@@ -151,10 +213,18 @@ export declare const de_CreateSchemaMappingCommand: (output: __HttpResponse, con
|
|
|
151
213
|
* deserializeAws_restJson1DeleteIdMappingWorkflowCommand
|
|
152
214
|
*/
|
|
153
215
|
export declare const de_DeleteIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdMappingWorkflowCommandOutput>;
|
|
216
|
+
/**
|
|
217
|
+
* deserializeAws_restJson1DeleteIdNamespaceCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const de_DeleteIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdNamespaceCommandOutput>;
|
|
154
220
|
/**
|
|
155
221
|
* deserializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
156
222
|
*/
|
|
157
223
|
export declare const de_DeleteMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
224
|
+
/**
|
|
225
|
+
* deserializeAws_restJson1DeletePolicyStatementCommand
|
|
226
|
+
*/
|
|
227
|
+
export declare const de_DeletePolicyStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyStatementCommandOutput>;
|
|
158
228
|
/**
|
|
159
229
|
* deserializeAws_restJson1DeleteSchemaMappingCommand
|
|
160
230
|
*/
|
|
@@ -167,6 +237,10 @@ export declare const de_GetIdMappingJobCommand: (output: __HttpResponse, context
|
|
|
167
237
|
* deserializeAws_restJson1GetIdMappingWorkflowCommand
|
|
168
238
|
*/
|
|
169
239
|
export declare const de_GetIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdMappingWorkflowCommandOutput>;
|
|
240
|
+
/**
|
|
241
|
+
* deserializeAws_restJson1GetIdNamespaceCommand
|
|
242
|
+
*/
|
|
243
|
+
export declare const de_GetIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdNamespaceCommandOutput>;
|
|
170
244
|
/**
|
|
171
245
|
* deserializeAws_restJson1GetMatchIdCommand
|
|
172
246
|
*/
|
|
@@ -179,6 +253,10 @@ export declare const de_GetMatchingJobCommand: (output: __HttpResponse, context:
|
|
|
179
253
|
* deserializeAws_restJson1GetMatchingWorkflowCommand
|
|
180
254
|
*/
|
|
181
255
|
export declare const de_GetMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchingWorkflowCommandOutput>;
|
|
256
|
+
/**
|
|
257
|
+
* deserializeAws_restJson1GetPolicyCommand
|
|
258
|
+
*/
|
|
259
|
+
export declare const de_GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
|
|
182
260
|
/**
|
|
183
261
|
* deserializeAws_restJson1GetProviderServiceCommand
|
|
184
262
|
*/
|
|
@@ -195,6 +273,10 @@ export declare const de_ListIdMappingJobsCommand: (output: __HttpResponse, conte
|
|
|
195
273
|
* deserializeAws_restJson1ListIdMappingWorkflowsCommand
|
|
196
274
|
*/
|
|
197
275
|
export declare const de_ListIdMappingWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdMappingWorkflowsCommandOutput>;
|
|
276
|
+
/**
|
|
277
|
+
* deserializeAws_restJson1ListIdNamespacesCommand
|
|
278
|
+
*/
|
|
279
|
+
export declare const de_ListIdNamespacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdNamespacesCommandOutput>;
|
|
198
280
|
/**
|
|
199
281
|
* deserializeAws_restJson1ListMatchingJobsCommand
|
|
200
282
|
*/
|
|
@@ -215,6 +297,10 @@ export declare const de_ListSchemaMappingsCommand: (output: __HttpResponse, cont
|
|
|
215
297
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
216
298
|
*/
|
|
217
299
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
300
|
+
/**
|
|
301
|
+
* deserializeAws_restJson1PutPolicyCommand
|
|
302
|
+
*/
|
|
303
|
+
export declare const de_PutPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPolicyCommandOutput>;
|
|
218
304
|
/**
|
|
219
305
|
* deserializeAws_restJson1StartIdMappingJobCommand
|
|
220
306
|
*/
|
|
@@ -235,6 +321,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
235
321
|
* deserializeAws_restJson1UpdateIdMappingWorkflowCommand
|
|
236
322
|
*/
|
|
237
323
|
export declare const de_UpdateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdMappingWorkflowCommandOutput>;
|
|
324
|
+
/**
|
|
325
|
+
* deserializeAws_restJson1UpdateIdNamespaceCommand
|
|
326
|
+
*/
|
|
327
|
+
export declare const de_UpdateIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdNamespaceCommandOutput>;
|
|
238
328
|
/**
|
|
239
329
|
* deserializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
240
330
|
*/
|
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AddPolicyStatementCommandInput,
|
|
4
|
+
AddPolicyStatementCommandOutput,
|
|
5
|
+
} from "./commands/AddPolicyStatementCommand";
|
|
6
|
+
import {
|
|
7
|
+
BatchDeleteUniqueIdCommandInput,
|
|
8
|
+
BatchDeleteUniqueIdCommandOutput,
|
|
9
|
+
} from "./commands/BatchDeleteUniqueIdCommand";
|
|
2
10
|
import {
|
|
3
11
|
CreateIdMappingWorkflowCommandInput,
|
|
4
12
|
CreateIdMappingWorkflowCommandOutput,
|
|
5
13
|
} from "./commands/CreateIdMappingWorkflowCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateIdNamespaceCommandInput,
|
|
16
|
+
CreateIdNamespaceCommandOutput,
|
|
17
|
+
} from "./commands/CreateIdNamespaceCommand";
|
|
6
18
|
import {
|
|
7
19
|
CreateMatchingWorkflowCommandInput,
|
|
8
20
|
CreateMatchingWorkflowCommandOutput,
|
|
@@ -15,10 +27,18 @@ import {
|
|
|
15
27
|
DeleteIdMappingWorkflowCommandInput,
|
|
16
28
|
DeleteIdMappingWorkflowCommandOutput,
|
|
17
29
|
} from "./commands/DeleteIdMappingWorkflowCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteIdNamespaceCommandInput,
|
|
32
|
+
DeleteIdNamespaceCommandOutput,
|
|
33
|
+
} from "./commands/DeleteIdNamespaceCommand";
|
|
18
34
|
import {
|
|
19
35
|
DeleteMatchingWorkflowCommandInput,
|
|
20
36
|
DeleteMatchingWorkflowCommandOutput,
|
|
21
37
|
} from "./commands/DeleteMatchingWorkflowCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeletePolicyStatementCommandInput,
|
|
40
|
+
DeletePolicyStatementCommandOutput,
|
|
41
|
+
} from "./commands/DeletePolicyStatementCommand";
|
|
22
42
|
import {
|
|
23
43
|
DeleteSchemaMappingCommandInput,
|
|
24
44
|
DeleteSchemaMappingCommandOutput,
|
|
@@ -31,6 +51,10 @@ import {
|
|
|
31
51
|
GetIdMappingWorkflowCommandInput,
|
|
32
52
|
GetIdMappingWorkflowCommandOutput,
|
|
33
53
|
} from "./commands/GetIdMappingWorkflowCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetIdNamespaceCommandInput,
|
|
56
|
+
GetIdNamespaceCommandOutput,
|
|
57
|
+
} from "./commands/GetIdNamespaceCommand";
|
|
34
58
|
import {
|
|
35
59
|
GetMatchIdCommandInput,
|
|
36
60
|
GetMatchIdCommandOutput,
|
|
@@ -43,6 +67,10 @@ import {
|
|
|
43
67
|
GetMatchingWorkflowCommandInput,
|
|
44
68
|
GetMatchingWorkflowCommandOutput,
|
|
45
69
|
} from "./commands/GetMatchingWorkflowCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetPolicyCommandInput,
|
|
72
|
+
GetPolicyCommandOutput,
|
|
73
|
+
} from "./commands/GetPolicyCommand";
|
|
46
74
|
import {
|
|
47
75
|
GetProviderServiceCommandInput,
|
|
48
76
|
GetProviderServiceCommandOutput,
|
|
@@ -59,6 +87,10 @@ import {
|
|
|
59
87
|
ListIdMappingWorkflowsCommandInput,
|
|
60
88
|
ListIdMappingWorkflowsCommandOutput,
|
|
61
89
|
} from "./commands/ListIdMappingWorkflowsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListIdNamespacesCommandInput,
|
|
92
|
+
ListIdNamespacesCommandOutput,
|
|
93
|
+
} from "./commands/ListIdNamespacesCommand";
|
|
62
94
|
import {
|
|
63
95
|
ListMatchingJobsCommandInput,
|
|
64
96
|
ListMatchingJobsCommandOutput,
|
|
@@ -79,6 +111,10 @@ import {
|
|
|
79
111
|
ListTagsForResourceCommandInput,
|
|
80
112
|
ListTagsForResourceCommandOutput,
|
|
81
113
|
} from "./commands/ListTagsForResourceCommand";
|
|
114
|
+
import {
|
|
115
|
+
PutPolicyCommandInput,
|
|
116
|
+
PutPolicyCommandOutput,
|
|
117
|
+
} from "./commands/PutPolicyCommand";
|
|
82
118
|
import {
|
|
83
119
|
StartIdMappingJobCommandInput,
|
|
84
120
|
StartIdMappingJobCommandOutput,
|
|
@@ -99,6 +135,10 @@ import {
|
|
|
99
135
|
UpdateIdMappingWorkflowCommandInput,
|
|
100
136
|
UpdateIdMappingWorkflowCommandOutput,
|
|
101
137
|
} from "./commands/UpdateIdMappingWorkflowCommand";
|
|
138
|
+
import {
|
|
139
|
+
UpdateIdNamespaceCommandInput,
|
|
140
|
+
UpdateIdNamespaceCommandOutput,
|
|
141
|
+
} from "./commands/UpdateIdNamespaceCommand";
|
|
102
142
|
import {
|
|
103
143
|
UpdateMatchingWorkflowCommandInput,
|
|
104
144
|
UpdateMatchingWorkflowCommandOutput,
|
|
@@ -109,6 +149,32 @@ import {
|
|
|
109
149
|
} from "./commands/UpdateSchemaMappingCommand";
|
|
110
150
|
import { EntityResolutionClient } from "./EntityResolutionClient";
|
|
111
151
|
export interface EntityResolution {
|
|
152
|
+
addPolicyStatement(
|
|
153
|
+
args: AddPolicyStatementCommandInput,
|
|
154
|
+
options?: __HttpHandlerOptions
|
|
155
|
+
): Promise<AddPolicyStatementCommandOutput>;
|
|
156
|
+
addPolicyStatement(
|
|
157
|
+
args: AddPolicyStatementCommandInput,
|
|
158
|
+
cb: (err: any, data?: AddPolicyStatementCommandOutput) => void
|
|
159
|
+
): void;
|
|
160
|
+
addPolicyStatement(
|
|
161
|
+
args: AddPolicyStatementCommandInput,
|
|
162
|
+
options: __HttpHandlerOptions,
|
|
163
|
+
cb: (err: any, data?: AddPolicyStatementCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
batchDeleteUniqueId(
|
|
166
|
+
args: BatchDeleteUniqueIdCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<BatchDeleteUniqueIdCommandOutput>;
|
|
169
|
+
batchDeleteUniqueId(
|
|
170
|
+
args: BatchDeleteUniqueIdCommandInput,
|
|
171
|
+
cb: (err: any, data?: BatchDeleteUniqueIdCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
batchDeleteUniqueId(
|
|
174
|
+
args: BatchDeleteUniqueIdCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: BatchDeleteUniqueIdCommandOutput) => void
|
|
177
|
+
): void;
|
|
112
178
|
createIdMappingWorkflow(
|
|
113
179
|
args: CreateIdMappingWorkflowCommandInput,
|
|
114
180
|
options?: __HttpHandlerOptions
|
|
@@ -122,6 +188,19 @@ export interface EntityResolution {
|
|
|
122
188
|
options: __HttpHandlerOptions,
|
|
123
189
|
cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void
|
|
124
190
|
): void;
|
|
191
|
+
createIdNamespace(
|
|
192
|
+
args: CreateIdNamespaceCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<CreateIdNamespaceCommandOutput>;
|
|
195
|
+
createIdNamespace(
|
|
196
|
+
args: CreateIdNamespaceCommandInput,
|
|
197
|
+
cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
createIdNamespace(
|
|
200
|
+
args: CreateIdNamespaceCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void
|
|
203
|
+
): void;
|
|
125
204
|
createMatchingWorkflow(
|
|
126
205
|
args: CreateMatchingWorkflowCommandInput,
|
|
127
206
|
options?: __HttpHandlerOptions
|
|
@@ -161,6 +240,19 @@ export interface EntityResolution {
|
|
|
161
240
|
options: __HttpHandlerOptions,
|
|
162
241
|
cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void
|
|
163
242
|
): void;
|
|
243
|
+
deleteIdNamespace(
|
|
244
|
+
args: DeleteIdNamespaceCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<DeleteIdNamespaceCommandOutput>;
|
|
247
|
+
deleteIdNamespace(
|
|
248
|
+
args: DeleteIdNamespaceCommandInput,
|
|
249
|
+
cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
deleteIdNamespace(
|
|
252
|
+
args: DeleteIdNamespaceCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void
|
|
255
|
+
): void;
|
|
164
256
|
deleteMatchingWorkflow(
|
|
165
257
|
args: DeleteMatchingWorkflowCommandInput,
|
|
166
258
|
options?: __HttpHandlerOptions
|
|
@@ -174,6 +266,19 @@ export interface EntityResolution {
|
|
|
174
266
|
options: __HttpHandlerOptions,
|
|
175
267
|
cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void
|
|
176
268
|
): void;
|
|
269
|
+
deletePolicyStatement(
|
|
270
|
+
args: DeletePolicyStatementCommandInput,
|
|
271
|
+
options?: __HttpHandlerOptions
|
|
272
|
+
): Promise<DeletePolicyStatementCommandOutput>;
|
|
273
|
+
deletePolicyStatement(
|
|
274
|
+
args: DeletePolicyStatementCommandInput,
|
|
275
|
+
cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void
|
|
276
|
+
): void;
|
|
277
|
+
deletePolicyStatement(
|
|
278
|
+
args: DeletePolicyStatementCommandInput,
|
|
279
|
+
options: __HttpHandlerOptions,
|
|
280
|
+
cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void
|
|
281
|
+
): void;
|
|
177
282
|
deleteSchemaMapping(
|
|
178
283
|
args: DeleteSchemaMappingCommandInput,
|
|
179
284
|
options?: __HttpHandlerOptions
|
|
@@ -213,6 +318,19 @@ export interface EntityResolution {
|
|
|
213
318
|
options: __HttpHandlerOptions,
|
|
214
319
|
cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void
|
|
215
320
|
): void;
|
|
321
|
+
getIdNamespace(
|
|
322
|
+
args: GetIdNamespaceCommandInput,
|
|
323
|
+
options?: __HttpHandlerOptions
|
|
324
|
+
): Promise<GetIdNamespaceCommandOutput>;
|
|
325
|
+
getIdNamespace(
|
|
326
|
+
args: GetIdNamespaceCommandInput,
|
|
327
|
+
cb: (err: any, data?: GetIdNamespaceCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
getIdNamespace(
|
|
330
|
+
args: GetIdNamespaceCommandInput,
|
|
331
|
+
options: __HttpHandlerOptions,
|
|
332
|
+
cb: (err: any, data?: GetIdNamespaceCommandOutput) => void
|
|
333
|
+
): void;
|
|
216
334
|
getMatchId(
|
|
217
335
|
args: GetMatchIdCommandInput,
|
|
218
336
|
options?: __HttpHandlerOptions
|
|
@@ -252,6 +370,19 @@ export interface EntityResolution {
|
|
|
252
370
|
options: __HttpHandlerOptions,
|
|
253
371
|
cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void
|
|
254
372
|
): void;
|
|
373
|
+
getPolicy(
|
|
374
|
+
args: GetPolicyCommandInput,
|
|
375
|
+
options?: __HttpHandlerOptions
|
|
376
|
+
): Promise<GetPolicyCommandOutput>;
|
|
377
|
+
getPolicy(
|
|
378
|
+
args: GetPolicyCommandInput,
|
|
379
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
getPolicy(
|
|
382
|
+
args: GetPolicyCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
385
|
+
): void;
|
|
255
386
|
getProviderService(
|
|
256
387
|
args: GetProviderServiceCommandInput,
|
|
257
388
|
options?: __HttpHandlerOptions
|
|
@@ -305,6 +436,20 @@ export interface EntityResolution {
|
|
|
305
436
|
options: __HttpHandlerOptions,
|
|
306
437
|
cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void
|
|
307
438
|
): void;
|
|
439
|
+
listIdNamespaces(): Promise<ListIdNamespacesCommandOutput>;
|
|
440
|
+
listIdNamespaces(
|
|
441
|
+
args: ListIdNamespacesCommandInput,
|
|
442
|
+
options?: __HttpHandlerOptions
|
|
443
|
+
): Promise<ListIdNamespacesCommandOutput>;
|
|
444
|
+
listIdNamespaces(
|
|
445
|
+
args: ListIdNamespacesCommandInput,
|
|
446
|
+
cb: (err: any, data?: ListIdNamespacesCommandOutput) => void
|
|
447
|
+
): void;
|
|
448
|
+
listIdNamespaces(
|
|
449
|
+
args: ListIdNamespacesCommandInput,
|
|
450
|
+
options: __HttpHandlerOptions,
|
|
451
|
+
cb: (err: any, data?: ListIdNamespacesCommandOutput) => void
|
|
452
|
+
): void;
|
|
308
453
|
listMatchingJobs(
|
|
309
454
|
args: ListMatchingJobsCommandInput,
|
|
310
455
|
options?: __HttpHandlerOptions
|
|
@@ -373,6 +518,19 @@ export interface EntityResolution {
|
|
|
373
518
|
options: __HttpHandlerOptions,
|
|
374
519
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
375
520
|
): void;
|
|
521
|
+
putPolicy(
|
|
522
|
+
args: PutPolicyCommandInput,
|
|
523
|
+
options?: __HttpHandlerOptions
|
|
524
|
+
): Promise<PutPolicyCommandOutput>;
|
|
525
|
+
putPolicy(
|
|
526
|
+
args: PutPolicyCommandInput,
|
|
527
|
+
cb: (err: any, data?: PutPolicyCommandOutput) => void
|
|
528
|
+
): void;
|
|
529
|
+
putPolicy(
|
|
530
|
+
args: PutPolicyCommandInput,
|
|
531
|
+
options: __HttpHandlerOptions,
|
|
532
|
+
cb: (err: any, data?: PutPolicyCommandOutput) => void
|
|
533
|
+
): void;
|
|
376
534
|
startIdMappingJob(
|
|
377
535
|
args: StartIdMappingJobCommandInput,
|
|
378
536
|
options?: __HttpHandlerOptions
|
|
@@ -438,6 +596,19 @@ export interface EntityResolution {
|
|
|
438
596
|
options: __HttpHandlerOptions,
|
|
439
597
|
cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void
|
|
440
598
|
): void;
|
|
599
|
+
updateIdNamespace(
|
|
600
|
+
args: UpdateIdNamespaceCommandInput,
|
|
601
|
+
options?: __HttpHandlerOptions
|
|
602
|
+
): Promise<UpdateIdNamespaceCommandOutput>;
|
|
603
|
+
updateIdNamespace(
|
|
604
|
+
args: UpdateIdNamespaceCommandInput,
|
|
605
|
+
cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void
|
|
606
|
+
): void;
|
|
607
|
+
updateIdNamespace(
|
|
608
|
+
args: UpdateIdNamespaceCommandInput,
|
|
609
|
+
options: __HttpHandlerOptions,
|
|
610
|
+
cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void
|
|
611
|
+
): void;
|
|
441
612
|
updateMatchingWorkflow(
|
|
442
613
|
args: UpdateMatchingWorkflowCommandInput,
|
|
443
614
|
options?: __HttpHandlerOptions
|