@aws-sdk/client-entityresolution 3.552.0 → 3.556.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +79 -7
- package/dist-cjs/index.js +614 -56
- package/dist-es/EntityResolution.js +18 -0
- package/dist-es/commands/AddPolicyStatementCommand.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 +9 -0
- package/dist-es/models/models_0.js +40 -32
- package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +363 -7
- package/dist-types/EntityResolution.d.ts +64 -0
- package/dist-types/EntityResolutionClient.d.ts +11 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -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 +9 -0
- package/dist-types/models/models_0.d.ts +876 -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 +81 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/AddPolicyStatementCommand.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 +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +216 -41
- 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 +108 -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,53 @@
|
|
|
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";
|
|
3
4
|
import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "../commands/CreateIdMappingWorkflowCommand";
|
|
5
|
+
import { CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput } from "../commands/CreateIdNamespaceCommand";
|
|
4
6
|
import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "../commands/CreateMatchingWorkflowCommand";
|
|
5
7
|
import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "../commands/CreateSchemaMappingCommand";
|
|
6
8
|
import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "../commands/DeleteIdMappingWorkflowCommand";
|
|
9
|
+
import { DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput } from "../commands/DeleteIdNamespaceCommand";
|
|
7
10
|
import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "../commands/DeleteMatchingWorkflowCommand";
|
|
11
|
+
import { DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput } from "../commands/DeletePolicyStatementCommand";
|
|
8
12
|
import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "../commands/DeleteSchemaMappingCommand";
|
|
9
13
|
import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "../commands/GetIdMappingJobCommand";
|
|
10
14
|
import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "../commands/GetIdMappingWorkflowCommand";
|
|
15
|
+
import { GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput } from "../commands/GetIdNamespaceCommand";
|
|
11
16
|
import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "../commands/GetMatchIdCommand";
|
|
12
17
|
import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "../commands/GetMatchingJobCommand";
|
|
13
18
|
import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "../commands/GetMatchingWorkflowCommand";
|
|
19
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
14
20
|
import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "../commands/GetProviderServiceCommand";
|
|
15
21
|
import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "../commands/GetSchemaMappingCommand";
|
|
16
22
|
import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "../commands/ListIdMappingJobsCommand";
|
|
17
23
|
import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "../commands/ListIdMappingWorkflowsCommand";
|
|
24
|
+
import { ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput } from "../commands/ListIdNamespacesCommand";
|
|
18
25
|
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "../commands/ListMatchingJobsCommand";
|
|
19
26
|
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "../commands/ListMatchingWorkflowsCommand";
|
|
20
27
|
import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "../commands/ListProviderServicesCommand";
|
|
21
28
|
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "../commands/ListSchemaMappingsCommand";
|
|
22
29
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
30
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
23
31
|
import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "../commands/StartIdMappingJobCommand";
|
|
24
32
|
import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "../commands/StartMatchingJobCommand";
|
|
25
33
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
26
34
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
27
35
|
import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "../commands/UpdateIdMappingWorkflowCommand";
|
|
36
|
+
import { UpdateIdNamespaceCommandInput, UpdateIdNamespaceCommandOutput } from "../commands/UpdateIdNamespaceCommand";
|
|
28
37
|
import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "../commands/UpdateMatchingWorkflowCommand";
|
|
29
38
|
import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "../commands/UpdateSchemaMappingCommand";
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_restJson1AddPolicyStatementCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_AddPolicyStatementCommand: (input: AddPolicyStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
43
|
/**
|
|
31
44
|
* serializeAws_restJson1CreateIdMappingWorkflowCommand
|
|
32
45
|
*/
|
|
33
46
|
export declare const se_CreateIdMappingWorkflowCommand: (input: CreateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1CreateIdNamespaceCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_CreateIdNamespaceCommand: (input: CreateIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
51
|
/**
|
|
35
52
|
* serializeAws_restJson1CreateMatchingWorkflowCommand
|
|
36
53
|
*/
|
|
@@ -43,10 +60,18 @@ export declare const se_CreateSchemaMappingCommand: (input: CreateSchemaMappingC
|
|
|
43
60
|
* serializeAws_restJson1DeleteIdMappingWorkflowCommand
|
|
44
61
|
*/
|
|
45
62
|
export declare const se_DeleteIdMappingWorkflowCommand: (input: DeleteIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_restJson1DeleteIdNamespaceCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_DeleteIdNamespaceCommand: (input: DeleteIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
67
|
/**
|
|
47
68
|
* serializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
48
69
|
*/
|
|
49
70
|
export declare const se_DeleteMatchingWorkflowCommand: (input: DeleteMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_restJson1DeletePolicyStatementCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_DeletePolicyStatementCommand: (input: DeletePolicyStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
75
|
/**
|
|
51
76
|
* serializeAws_restJson1DeleteSchemaMappingCommand
|
|
52
77
|
*/
|
|
@@ -59,6 +84,10 @@ export declare const se_GetIdMappingJobCommand: (input: GetIdMappingJobCommandIn
|
|
|
59
84
|
* serializeAws_restJson1GetIdMappingWorkflowCommand
|
|
60
85
|
*/
|
|
61
86
|
export declare const se_GetIdMappingWorkflowCommand: (input: GetIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
/**
|
|
88
|
+
* serializeAws_restJson1GetIdNamespaceCommand
|
|
89
|
+
*/
|
|
90
|
+
export declare const se_GetIdNamespaceCommand: (input: GetIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
91
|
/**
|
|
63
92
|
* serializeAws_restJson1GetMatchIdCommand
|
|
64
93
|
*/
|
|
@@ -71,6 +100,10 @@ export declare const se_GetMatchingJobCommand: (input: GetMatchingJobCommandInpu
|
|
|
71
100
|
* serializeAws_restJson1GetMatchingWorkflowCommand
|
|
72
101
|
*/
|
|
73
102
|
export declare const se_GetMatchingWorkflowCommand: (input: GetMatchingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_restJson1GetPolicyCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
107
|
/**
|
|
75
108
|
* serializeAws_restJson1GetProviderServiceCommand
|
|
76
109
|
*/
|
|
@@ -87,6 +120,10 @@ export declare const se_ListIdMappingJobsCommand: (input: ListIdMappingJobsComma
|
|
|
87
120
|
* serializeAws_restJson1ListIdMappingWorkflowsCommand
|
|
88
121
|
*/
|
|
89
122
|
export declare const se_ListIdMappingWorkflowsCommand: (input: ListIdMappingWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
/**
|
|
124
|
+
* serializeAws_restJson1ListIdNamespacesCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const se_ListIdNamespacesCommand: (input: ListIdNamespacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
127
|
/**
|
|
91
128
|
* serializeAws_restJson1ListMatchingJobsCommand
|
|
92
129
|
*/
|
|
@@ -107,6 +144,10 @@ export declare const se_ListSchemaMappingsCommand: (input: ListSchemaMappingsCom
|
|
|
107
144
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
108
145
|
*/
|
|
109
146
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
|
+
/**
|
|
148
|
+
* serializeAws_restJson1PutPolicyCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const se_PutPolicyCommand: (input: PutPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
151
|
/**
|
|
111
152
|
* serializeAws_restJson1StartIdMappingJobCommand
|
|
112
153
|
*/
|
|
@@ -127,6 +168,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
127
168
|
* serializeAws_restJson1UpdateIdMappingWorkflowCommand
|
|
128
169
|
*/
|
|
129
170
|
export declare const se_UpdateIdMappingWorkflowCommand: (input: UpdateIdMappingWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
171
|
+
/**
|
|
172
|
+
* serializeAws_restJson1UpdateIdNamespaceCommand
|
|
173
|
+
*/
|
|
174
|
+
export declare const se_UpdateIdNamespaceCommand: (input: UpdateIdNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
175
|
/**
|
|
131
176
|
* serializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
132
177
|
*/
|
|
@@ -135,10 +180,18 @@ export declare const se_UpdateMatchingWorkflowCommand: (input: UpdateMatchingWor
|
|
|
135
180
|
* serializeAws_restJson1UpdateSchemaMappingCommand
|
|
136
181
|
*/
|
|
137
182
|
export declare const se_UpdateSchemaMappingCommand: (input: UpdateSchemaMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
183
|
+
/**
|
|
184
|
+
* deserializeAws_restJson1AddPolicyStatementCommand
|
|
185
|
+
*/
|
|
186
|
+
export declare const de_AddPolicyStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPolicyStatementCommandOutput>;
|
|
138
187
|
/**
|
|
139
188
|
* deserializeAws_restJson1CreateIdMappingWorkflowCommand
|
|
140
189
|
*/
|
|
141
190
|
export declare const de_CreateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdMappingWorkflowCommandOutput>;
|
|
191
|
+
/**
|
|
192
|
+
* deserializeAws_restJson1CreateIdNamespaceCommand
|
|
193
|
+
*/
|
|
194
|
+
export declare const de_CreateIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdNamespaceCommandOutput>;
|
|
142
195
|
/**
|
|
143
196
|
* deserializeAws_restJson1CreateMatchingWorkflowCommand
|
|
144
197
|
*/
|
|
@@ -151,10 +204,18 @@ export declare const de_CreateSchemaMappingCommand: (output: __HttpResponse, con
|
|
|
151
204
|
* deserializeAws_restJson1DeleteIdMappingWorkflowCommand
|
|
152
205
|
*/
|
|
153
206
|
export declare const de_DeleteIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdMappingWorkflowCommandOutput>;
|
|
207
|
+
/**
|
|
208
|
+
* deserializeAws_restJson1DeleteIdNamespaceCommand
|
|
209
|
+
*/
|
|
210
|
+
export declare const de_DeleteIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdNamespaceCommandOutput>;
|
|
154
211
|
/**
|
|
155
212
|
* deserializeAws_restJson1DeleteMatchingWorkflowCommand
|
|
156
213
|
*/
|
|
157
214
|
export declare const de_DeleteMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
215
|
+
/**
|
|
216
|
+
* deserializeAws_restJson1DeletePolicyStatementCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const de_DeletePolicyStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyStatementCommandOutput>;
|
|
158
219
|
/**
|
|
159
220
|
* deserializeAws_restJson1DeleteSchemaMappingCommand
|
|
160
221
|
*/
|
|
@@ -167,6 +228,10 @@ export declare const de_GetIdMappingJobCommand: (output: __HttpResponse, context
|
|
|
167
228
|
* deserializeAws_restJson1GetIdMappingWorkflowCommand
|
|
168
229
|
*/
|
|
169
230
|
export declare const de_GetIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdMappingWorkflowCommandOutput>;
|
|
231
|
+
/**
|
|
232
|
+
* deserializeAws_restJson1GetIdNamespaceCommand
|
|
233
|
+
*/
|
|
234
|
+
export declare const de_GetIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdNamespaceCommandOutput>;
|
|
170
235
|
/**
|
|
171
236
|
* deserializeAws_restJson1GetMatchIdCommand
|
|
172
237
|
*/
|
|
@@ -179,6 +244,10 @@ export declare const de_GetMatchingJobCommand: (output: __HttpResponse, context:
|
|
|
179
244
|
* deserializeAws_restJson1GetMatchingWorkflowCommand
|
|
180
245
|
*/
|
|
181
246
|
export declare const de_GetMatchingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMatchingWorkflowCommandOutput>;
|
|
247
|
+
/**
|
|
248
|
+
* deserializeAws_restJson1GetPolicyCommand
|
|
249
|
+
*/
|
|
250
|
+
export declare const de_GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
|
|
182
251
|
/**
|
|
183
252
|
* deserializeAws_restJson1GetProviderServiceCommand
|
|
184
253
|
*/
|
|
@@ -195,6 +264,10 @@ export declare const de_ListIdMappingJobsCommand: (output: __HttpResponse, conte
|
|
|
195
264
|
* deserializeAws_restJson1ListIdMappingWorkflowsCommand
|
|
196
265
|
*/
|
|
197
266
|
export declare const de_ListIdMappingWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdMappingWorkflowsCommandOutput>;
|
|
267
|
+
/**
|
|
268
|
+
* deserializeAws_restJson1ListIdNamespacesCommand
|
|
269
|
+
*/
|
|
270
|
+
export declare const de_ListIdNamespacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdNamespacesCommandOutput>;
|
|
198
271
|
/**
|
|
199
272
|
* deserializeAws_restJson1ListMatchingJobsCommand
|
|
200
273
|
*/
|
|
@@ -215,6 +288,10 @@ export declare const de_ListSchemaMappingsCommand: (output: __HttpResponse, cont
|
|
|
215
288
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
216
289
|
*/
|
|
217
290
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
291
|
+
/**
|
|
292
|
+
* deserializeAws_restJson1PutPolicyCommand
|
|
293
|
+
*/
|
|
294
|
+
export declare const de_PutPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPolicyCommandOutput>;
|
|
218
295
|
/**
|
|
219
296
|
* deserializeAws_restJson1StartIdMappingJobCommand
|
|
220
297
|
*/
|
|
@@ -235,6 +312,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
235
312
|
* deserializeAws_restJson1UpdateIdMappingWorkflowCommand
|
|
236
313
|
*/
|
|
237
314
|
export declare const de_UpdateIdMappingWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdMappingWorkflowCommandOutput>;
|
|
315
|
+
/**
|
|
316
|
+
* deserializeAws_restJson1UpdateIdNamespaceCommand
|
|
317
|
+
*/
|
|
318
|
+
export declare const de_UpdateIdNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdNamespaceCommandOutput>;
|
|
238
319
|
/**
|
|
239
320
|
* deserializeAws_restJson1UpdateMatchingWorkflowCommand
|
|
240
321
|
*/
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AddPolicyStatementCommandInput,
|
|
4
|
+
AddPolicyStatementCommandOutput,
|
|
5
|
+
} from "./commands/AddPolicyStatementCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateIdMappingWorkflowCommandInput,
|
|
4
8
|
CreateIdMappingWorkflowCommandOutput,
|
|
5
9
|
} from "./commands/CreateIdMappingWorkflowCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateIdNamespaceCommandInput,
|
|
12
|
+
CreateIdNamespaceCommandOutput,
|
|
13
|
+
} from "./commands/CreateIdNamespaceCommand";
|
|
6
14
|
import {
|
|
7
15
|
CreateMatchingWorkflowCommandInput,
|
|
8
16
|
CreateMatchingWorkflowCommandOutput,
|
|
@@ -15,10 +23,18 @@ import {
|
|
|
15
23
|
DeleteIdMappingWorkflowCommandInput,
|
|
16
24
|
DeleteIdMappingWorkflowCommandOutput,
|
|
17
25
|
} from "./commands/DeleteIdMappingWorkflowCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteIdNamespaceCommandInput,
|
|
28
|
+
DeleteIdNamespaceCommandOutput,
|
|
29
|
+
} from "./commands/DeleteIdNamespaceCommand";
|
|
18
30
|
import {
|
|
19
31
|
DeleteMatchingWorkflowCommandInput,
|
|
20
32
|
DeleteMatchingWorkflowCommandOutput,
|
|
21
33
|
} from "./commands/DeleteMatchingWorkflowCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeletePolicyStatementCommandInput,
|
|
36
|
+
DeletePolicyStatementCommandOutput,
|
|
37
|
+
} from "./commands/DeletePolicyStatementCommand";
|
|
22
38
|
import {
|
|
23
39
|
DeleteSchemaMappingCommandInput,
|
|
24
40
|
DeleteSchemaMappingCommandOutput,
|
|
@@ -31,6 +47,10 @@ import {
|
|
|
31
47
|
GetIdMappingWorkflowCommandInput,
|
|
32
48
|
GetIdMappingWorkflowCommandOutput,
|
|
33
49
|
} from "./commands/GetIdMappingWorkflowCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetIdNamespaceCommandInput,
|
|
52
|
+
GetIdNamespaceCommandOutput,
|
|
53
|
+
} from "./commands/GetIdNamespaceCommand";
|
|
34
54
|
import {
|
|
35
55
|
GetMatchIdCommandInput,
|
|
36
56
|
GetMatchIdCommandOutput,
|
|
@@ -43,6 +63,10 @@ import {
|
|
|
43
63
|
GetMatchingWorkflowCommandInput,
|
|
44
64
|
GetMatchingWorkflowCommandOutput,
|
|
45
65
|
} from "./commands/GetMatchingWorkflowCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetPolicyCommandInput,
|
|
68
|
+
GetPolicyCommandOutput,
|
|
69
|
+
} from "./commands/GetPolicyCommand";
|
|
46
70
|
import {
|
|
47
71
|
GetProviderServiceCommandInput,
|
|
48
72
|
GetProviderServiceCommandOutput,
|
|
@@ -59,6 +83,10 @@ import {
|
|
|
59
83
|
ListIdMappingWorkflowsCommandInput,
|
|
60
84
|
ListIdMappingWorkflowsCommandOutput,
|
|
61
85
|
} from "./commands/ListIdMappingWorkflowsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListIdNamespacesCommandInput,
|
|
88
|
+
ListIdNamespacesCommandOutput,
|
|
89
|
+
} from "./commands/ListIdNamespacesCommand";
|
|
62
90
|
import {
|
|
63
91
|
ListMatchingJobsCommandInput,
|
|
64
92
|
ListMatchingJobsCommandOutput,
|
|
@@ -79,6 +107,10 @@ import {
|
|
|
79
107
|
ListTagsForResourceCommandInput,
|
|
80
108
|
ListTagsForResourceCommandOutput,
|
|
81
109
|
} from "./commands/ListTagsForResourceCommand";
|
|
110
|
+
import {
|
|
111
|
+
PutPolicyCommandInput,
|
|
112
|
+
PutPolicyCommandOutput,
|
|
113
|
+
} from "./commands/PutPolicyCommand";
|
|
82
114
|
import {
|
|
83
115
|
StartIdMappingJobCommandInput,
|
|
84
116
|
StartIdMappingJobCommandOutput,
|
|
@@ -99,6 +131,10 @@ import {
|
|
|
99
131
|
UpdateIdMappingWorkflowCommandInput,
|
|
100
132
|
UpdateIdMappingWorkflowCommandOutput,
|
|
101
133
|
} from "./commands/UpdateIdMappingWorkflowCommand";
|
|
134
|
+
import {
|
|
135
|
+
UpdateIdNamespaceCommandInput,
|
|
136
|
+
UpdateIdNamespaceCommandOutput,
|
|
137
|
+
} from "./commands/UpdateIdNamespaceCommand";
|
|
102
138
|
import {
|
|
103
139
|
UpdateMatchingWorkflowCommandInput,
|
|
104
140
|
UpdateMatchingWorkflowCommandOutput,
|
|
@@ -109,6 +145,19 @@ import {
|
|
|
109
145
|
} from "./commands/UpdateSchemaMappingCommand";
|
|
110
146
|
import { EntityResolutionClient } from "./EntityResolutionClient";
|
|
111
147
|
export interface EntityResolution {
|
|
148
|
+
addPolicyStatement(
|
|
149
|
+
args: AddPolicyStatementCommandInput,
|
|
150
|
+
options?: __HttpHandlerOptions
|
|
151
|
+
): Promise<AddPolicyStatementCommandOutput>;
|
|
152
|
+
addPolicyStatement(
|
|
153
|
+
args: AddPolicyStatementCommandInput,
|
|
154
|
+
cb: (err: any, data?: AddPolicyStatementCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
addPolicyStatement(
|
|
157
|
+
args: AddPolicyStatementCommandInput,
|
|
158
|
+
options: __HttpHandlerOptions,
|
|
159
|
+
cb: (err: any, data?: AddPolicyStatementCommandOutput) => void
|
|
160
|
+
): void;
|
|
112
161
|
createIdMappingWorkflow(
|
|
113
162
|
args: CreateIdMappingWorkflowCommandInput,
|
|
114
163
|
options?: __HttpHandlerOptions
|
|
@@ -122,6 +171,19 @@ export interface EntityResolution {
|
|
|
122
171
|
options: __HttpHandlerOptions,
|
|
123
172
|
cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void
|
|
124
173
|
): void;
|
|
174
|
+
createIdNamespace(
|
|
175
|
+
args: CreateIdNamespaceCommandInput,
|
|
176
|
+
options?: __HttpHandlerOptions
|
|
177
|
+
): Promise<CreateIdNamespaceCommandOutput>;
|
|
178
|
+
createIdNamespace(
|
|
179
|
+
args: CreateIdNamespaceCommandInput,
|
|
180
|
+
cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void
|
|
181
|
+
): void;
|
|
182
|
+
createIdNamespace(
|
|
183
|
+
args: CreateIdNamespaceCommandInput,
|
|
184
|
+
options: __HttpHandlerOptions,
|
|
185
|
+
cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void
|
|
186
|
+
): void;
|
|
125
187
|
createMatchingWorkflow(
|
|
126
188
|
args: CreateMatchingWorkflowCommandInput,
|
|
127
189
|
options?: __HttpHandlerOptions
|
|
@@ -161,6 +223,19 @@ export interface EntityResolution {
|
|
|
161
223
|
options: __HttpHandlerOptions,
|
|
162
224
|
cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void
|
|
163
225
|
): void;
|
|
226
|
+
deleteIdNamespace(
|
|
227
|
+
args: DeleteIdNamespaceCommandInput,
|
|
228
|
+
options?: __HttpHandlerOptions
|
|
229
|
+
): Promise<DeleteIdNamespaceCommandOutput>;
|
|
230
|
+
deleteIdNamespace(
|
|
231
|
+
args: DeleteIdNamespaceCommandInput,
|
|
232
|
+
cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void
|
|
233
|
+
): void;
|
|
234
|
+
deleteIdNamespace(
|
|
235
|
+
args: DeleteIdNamespaceCommandInput,
|
|
236
|
+
options: __HttpHandlerOptions,
|
|
237
|
+
cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void
|
|
238
|
+
): void;
|
|
164
239
|
deleteMatchingWorkflow(
|
|
165
240
|
args: DeleteMatchingWorkflowCommandInput,
|
|
166
241
|
options?: __HttpHandlerOptions
|
|
@@ -174,6 +249,19 @@ export interface EntityResolution {
|
|
|
174
249
|
options: __HttpHandlerOptions,
|
|
175
250
|
cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void
|
|
176
251
|
): void;
|
|
252
|
+
deletePolicyStatement(
|
|
253
|
+
args: DeletePolicyStatementCommandInput,
|
|
254
|
+
options?: __HttpHandlerOptions
|
|
255
|
+
): Promise<DeletePolicyStatementCommandOutput>;
|
|
256
|
+
deletePolicyStatement(
|
|
257
|
+
args: DeletePolicyStatementCommandInput,
|
|
258
|
+
cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
deletePolicyStatement(
|
|
261
|
+
args: DeletePolicyStatementCommandInput,
|
|
262
|
+
options: __HttpHandlerOptions,
|
|
263
|
+
cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void
|
|
264
|
+
): void;
|
|
177
265
|
deleteSchemaMapping(
|
|
178
266
|
args: DeleteSchemaMappingCommandInput,
|
|
179
267
|
options?: __HttpHandlerOptions
|
|
@@ -213,6 +301,19 @@ export interface EntityResolution {
|
|
|
213
301
|
options: __HttpHandlerOptions,
|
|
214
302
|
cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void
|
|
215
303
|
): void;
|
|
304
|
+
getIdNamespace(
|
|
305
|
+
args: GetIdNamespaceCommandInput,
|
|
306
|
+
options?: __HttpHandlerOptions
|
|
307
|
+
): Promise<GetIdNamespaceCommandOutput>;
|
|
308
|
+
getIdNamespace(
|
|
309
|
+
args: GetIdNamespaceCommandInput,
|
|
310
|
+
cb: (err: any, data?: GetIdNamespaceCommandOutput) => void
|
|
311
|
+
): void;
|
|
312
|
+
getIdNamespace(
|
|
313
|
+
args: GetIdNamespaceCommandInput,
|
|
314
|
+
options: __HttpHandlerOptions,
|
|
315
|
+
cb: (err: any, data?: GetIdNamespaceCommandOutput) => void
|
|
316
|
+
): void;
|
|
216
317
|
getMatchId(
|
|
217
318
|
args: GetMatchIdCommandInput,
|
|
218
319
|
options?: __HttpHandlerOptions
|
|
@@ -252,6 +353,19 @@ export interface EntityResolution {
|
|
|
252
353
|
options: __HttpHandlerOptions,
|
|
253
354
|
cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void
|
|
254
355
|
): void;
|
|
356
|
+
getPolicy(
|
|
357
|
+
args: GetPolicyCommandInput,
|
|
358
|
+
options?: __HttpHandlerOptions
|
|
359
|
+
): Promise<GetPolicyCommandOutput>;
|
|
360
|
+
getPolicy(
|
|
361
|
+
args: GetPolicyCommandInput,
|
|
362
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
getPolicy(
|
|
365
|
+
args: GetPolicyCommandInput,
|
|
366
|
+
options: __HttpHandlerOptions,
|
|
367
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
368
|
+
): void;
|
|
255
369
|
getProviderService(
|
|
256
370
|
args: GetProviderServiceCommandInput,
|
|
257
371
|
options?: __HttpHandlerOptions
|
|
@@ -305,6 +419,20 @@ export interface EntityResolution {
|
|
|
305
419
|
options: __HttpHandlerOptions,
|
|
306
420
|
cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void
|
|
307
421
|
): void;
|
|
422
|
+
listIdNamespaces(): Promise<ListIdNamespacesCommandOutput>;
|
|
423
|
+
listIdNamespaces(
|
|
424
|
+
args: ListIdNamespacesCommandInput,
|
|
425
|
+
options?: __HttpHandlerOptions
|
|
426
|
+
): Promise<ListIdNamespacesCommandOutput>;
|
|
427
|
+
listIdNamespaces(
|
|
428
|
+
args: ListIdNamespacesCommandInput,
|
|
429
|
+
cb: (err: any, data?: ListIdNamespacesCommandOutput) => void
|
|
430
|
+
): void;
|
|
431
|
+
listIdNamespaces(
|
|
432
|
+
args: ListIdNamespacesCommandInput,
|
|
433
|
+
options: __HttpHandlerOptions,
|
|
434
|
+
cb: (err: any, data?: ListIdNamespacesCommandOutput) => void
|
|
435
|
+
): void;
|
|
308
436
|
listMatchingJobs(
|
|
309
437
|
args: ListMatchingJobsCommandInput,
|
|
310
438
|
options?: __HttpHandlerOptions
|
|
@@ -373,6 +501,19 @@ export interface EntityResolution {
|
|
|
373
501
|
options: __HttpHandlerOptions,
|
|
374
502
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
375
503
|
): void;
|
|
504
|
+
putPolicy(
|
|
505
|
+
args: PutPolicyCommandInput,
|
|
506
|
+
options?: __HttpHandlerOptions
|
|
507
|
+
): Promise<PutPolicyCommandOutput>;
|
|
508
|
+
putPolicy(
|
|
509
|
+
args: PutPolicyCommandInput,
|
|
510
|
+
cb: (err: any, data?: PutPolicyCommandOutput) => void
|
|
511
|
+
): void;
|
|
512
|
+
putPolicy(
|
|
513
|
+
args: PutPolicyCommandInput,
|
|
514
|
+
options: __HttpHandlerOptions,
|
|
515
|
+
cb: (err: any, data?: PutPolicyCommandOutput) => void
|
|
516
|
+
): void;
|
|
376
517
|
startIdMappingJob(
|
|
377
518
|
args: StartIdMappingJobCommandInput,
|
|
378
519
|
options?: __HttpHandlerOptions
|
|
@@ -438,6 +579,19 @@ export interface EntityResolution {
|
|
|
438
579
|
options: __HttpHandlerOptions,
|
|
439
580
|
cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void
|
|
440
581
|
): void;
|
|
582
|
+
updateIdNamespace(
|
|
583
|
+
args: UpdateIdNamespaceCommandInput,
|
|
584
|
+
options?: __HttpHandlerOptions
|
|
585
|
+
): Promise<UpdateIdNamespaceCommandOutput>;
|
|
586
|
+
updateIdNamespace(
|
|
587
|
+
args: UpdateIdNamespaceCommandInput,
|
|
588
|
+
cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void
|
|
589
|
+
): void;
|
|
590
|
+
updateIdNamespace(
|
|
591
|
+
args: UpdateIdNamespaceCommandInput,
|
|
592
|
+
options: __HttpHandlerOptions,
|
|
593
|
+
cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void
|
|
594
|
+
): void;
|
|
441
595
|
updateMatchingWorkflow(
|
|
442
596
|
args: UpdateMatchingWorkflowCommandInput,
|
|
443
597
|
options?: __HttpHandlerOptions
|
|
@@ -45,10 +45,18 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AddPolicyStatementCommandInput,
|
|
50
|
+
AddPolicyStatementCommandOutput,
|
|
51
|
+
} from "./commands/AddPolicyStatementCommand";
|
|
48
52
|
import {
|
|
49
53
|
CreateIdMappingWorkflowCommandInput,
|
|
50
54
|
CreateIdMappingWorkflowCommandOutput,
|
|
51
55
|
} from "./commands/CreateIdMappingWorkflowCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateIdNamespaceCommandInput,
|
|
58
|
+
CreateIdNamespaceCommandOutput,
|
|
59
|
+
} from "./commands/CreateIdNamespaceCommand";
|
|
52
60
|
import {
|
|
53
61
|
CreateMatchingWorkflowCommandInput,
|
|
54
62
|
CreateMatchingWorkflowCommandOutput,
|
|
@@ -61,10 +69,18 @@ import {
|
|
|
61
69
|
DeleteIdMappingWorkflowCommandInput,
|
|
62
70
|
DeleteIdMappingWorkflowCommandOutput,
|
|
63
71
|
} from "./commands/DeleteIdMappingWorkflowCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteIdNamespaceCommandInput,
|
|
74
|
+
DeleteIdNamespaceCommandOutput,
|
|
75
|
+
} from "./commands/DeleteIdNamespaceCommand";
|
|
64
76
|
import {
|
|
65
77
|
DeleteMatchingWorkflowCommandInput,
|
|
66
78
|
DeleteMatchingWorkflowCommandOutput,
|
|
67
79
|
} from "./commands/DeleteMatchingWorkflowCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeletePolicyStatementCommandInput,
|
|
82
|
+
DeletePolicyStatementCommandOutput,
|
|
83
|
+
} from "./commands/DeletePolicyStatementCommand";
|
|
68
84
|
import {
|
|
69
85
|
DeleteSchemaMappingCommandInput,
|
|
70
86
|
DeleteSchemaMappingCommandOutput,
|
|
@@ -77,6 +93,10 @@ import {
|
|
|
77
93
|
GetIdMappingWorkflowCommandInput,
|
|
78
94
|
GetIdMappingWorkflowCommandOutput,
|
|
79
95
|
} from "./commands/GetIdMappingWorkflowCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetIdNamespaceCommandInput,
|
|
98
|
+
GetIdNamespaceCommandOutput,
|
|
99
|
+
} from "./commands/GetIdNamespaceCommand";
|
|
80
100
|
import {
|
|
81
101
|
GetMatchIdCommandInput,
|
|
82
102
|
GetMatchIdCommandOutput,
|
|
@@ -89,6 +109,10 @@ import {
|
|
|
89
109
|
GetMatchingWorkflowCommandInput,
|
|
90
110
|
GetMatchingWorkflowCommandOutput,
|
|
91
111
|
} from "./commands/GetMatchingWorkflowCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetPolicyCommandInput,
|
|
114
|
+
GetPolicyCommandOutput,
|
|
115
|
+
} from "./commands/GetPolicyCommand";
|
|
92
116
|
import {
|
|
93
117
|
GetProviderServiceCommandInput,
|
|
94
118
|
GetProviderServiceCommandOutput,
|
|
@@ -105,6 +129,10 @@ import {
|
|
|
105
129
|
ListIdMappingWorkflowsCommandInput,
|
|
106
130
|
ListIdMappingWorkflowsCommandOutput,
|
|
107
131
|
} from "./commands/ListIdMappingWorkflowsCommand";
|
|
132
|
+
import {
|
|
133
|
+
ListIdNamespacesCommandInput,
|
|
134
|
+
ListIdNamespacesCommandOutput,
|
|
135
|
+
} from "./commands/ListIdNamespacesCommand";
|
|
108
136
|
import {
|
|
109
137
|
ListMatchingJobsCommandInput,
|
|
110
138
|
ListMatchingJobsCommandOutput,
|
|
@@ -125,6 +153,10 @@ import {
|
|
|
125
153
|
ListTagsForResourceCommandInput,
|
|
126
154
|
ListTagsForResourceCommandOutput,
|
|
127
155
|
} from "./commands/ListTagsForResourceCommand";
|
|
156
|
+
import {
|
|
157
|
+
PutPolicyCommandInput,
|
|
158
|
+
PutPolicyCommandOutput,
|
|
159
|
+
} from "./commands/PutPolicyCommand";
|
|
128
160
|
import {
|
|
129
161
|
StartIdMappingJobCommandInput,
|
|
130
162
|
StartIdMappingJobCommandOutput,
|
|
@@ -145,6 +177,10 @@ import {
|
|
|
145
177
|
UpdateIdMappingWorkflowCommandInput,
|
|
146
178
|
UpdateIdMappingWorkflowCommandOutput,
|
|
147
179
|
} from "./commands/UpdateIdMappingWorkflowCommand";
|
|
180
|
+
import {
|
|
181
|
+
UpdateIdNamespaceCommandInput,
|
|
182
|
+
UpdateIdNamespaceCommandOutput,
|
|
183
|
+
} from "./commands/UpdateIdNamespaceCommand";
|
|
148
184
|
import {
|
|
149
185
|
UpdateMatchingWorkflowCommandInput,
|
|
150
186
|
UpdateMatchingWorkflowCommandOutput,
|
|
@@ -161,59 +197,77 @@ import {
|
|
|
161
197
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
162
198
|
export { __Client };
|
|
163
199
|
export type ServiceInputTypes =
|
|
200
|
+
| AddPolicyStatementCommandInput
|
|
164
201
|
| CreateIdMappingWorkflowCommandInput
|
|
202
|
+
| CreateIdNamespaceCommandInput
|
|
165
203
|
| CreateMatchingWorkflowCommandInput
|
|
166
204
|
| CreateSchemaMappingCommandInput
|
|
167
205
|
| DeleteIdMappingWorkflowCommandInput
|
|
206
|
+
| DeleteIdNamespaceCommandInput
|
|
168
207
|
| DeleteMatchingWorkflowCommandInput
|
|
208
|
+
| DeletePolicyStatementCommandInput
|
|
169
209
|
| DeleteSchemaMappingCommandInput
|
|
170
210
|
| GetIdMappingJobCommandInput
|
|
171
211
|
| GetIdMappingWorkflowCommandInput
|
|
212
|
+
| GetIdNamespaceCommandInput
|
|
172
213
|
| GetMatchIdCommandInput
|
|
173
214
|
| GetMatchingJobCommandInput
|
|
174
215
|
| GetMatchingWorkflowCommandInput
|
|
216
|
+
| GetPolicyCommandInput
|
|
175
217
|
| GetProviderServiceCommandInput
|
|
176
218
|
| GetSchemaMappingCommandInput
|
|
177
219
|
| ListIdMappingJobsCommandInput
|
|
178
220
|
| ListIdMappingWorkflowsCommandInput
|
|
221
|
+
| ListIdNamespacesCommandInput
|
|
179
222
|
| ListMatchingJobsCommandInput
|
|
180
223
|
| ListMatchingWorkflowsCommandInput
|
|
181
224
|
| ListProviderServicesCommandInput
|
|
182
225
|
| ListSchemaMappingsCommandInput
|
|
183
226
|
| ListTagsForResourceCommandInput
|
|
227
|
+
| PutPolicyCommandInput
|
|
184
228
|
| StartIdMappingJobCommandInput
|
|
185
229
|
| StartMatchingJobCommandInput
|
|
186
230
|
| TagResourceCommandInput
|
|
187
231
|
| UntagResourceCommandInput
|
|
188
232
|
| UpdateIdMappingWorkflowCommandInput
|
|
233
|
+
| UpdateIdNamespaceCommandInput
|
|
189
234
|
| UpdateMatchingWorkflowCommandInput
|
|
190
235
|
| UpdateSchemaMappingCommandInput;
|
|
191
236
|
export type ServiceOutputTypes =
|
|
237
|
+
| AddPolicyStatementCommandOutput
|
|
192
238
|
| CreateIdMappingWorkflowCommandOutput
|
|
239
|
+
| CreateIdNamespaceCommandOutput
|
|
193
240
|
| CreateMatchingWorkflowCommandOutput
|
|
194
241
|
| CreateSchemaMappingCommandOutput
|
|
195
242
|
| DeleteIdMappingWorkflowCommandOutput
|
|
243
|
+
| DeleteIdNamespaceCommandOutput
|
|
196
244
|
| DeleteMatchingWorkflowCommandOutput
|
|
245
|
+
| DeletePolicyStatementCommandOutput
|
|
197
246
|
| DeleteSchemaMappingCommandOutput
|
|
198
247
|
| GetIdMappingJobCommandOutput
|
|
199
248
|
| GetIdMappingWorkflowCommandOutput
|
|
249
|
+
| GetIdNamespaceCommandOutput
|
|
200
250
|
| GetMatchIdCommandOutput
|
|
201
251
|
| GetMatchingJobCommandOutput
|
|
202
252
|
| GetMatchingWorkflowCommandOutput
|
|
253
|
+
| GetPolicyCommandOutput
|
|
203
254
|
| GetProviderServiceCommandOutput
|
|
204
255
|
| GetSchemaMappingCommandOutput
|
|
205
256
|
| ListIdMappingJobsCommandOutput
|
|
206
257
|
| ListIdMappingWorkflowsCommandOutput
|
|
258
|
+
| ListIdNamespacesCommandOutput
|
|
207
259
|
| ListMatchingJobsCommandOutput
|
|
208
260
|
| ListMatchingWorkflowsCommandOutput
|
|
209
261
|
| ListProviderServicesCommandOutput
|
|
210
262
|
| ListSchemaMappingsCommandOutput
|
|
211
263
|
| ListTagsForResourceCommandOutput
|
|
264
|
+
| PutPolicyCommandOutput
|
|
212
265
|
| StartIdMappingJobCommandOutput
|
|
213
266
|
| StartMatchingJobCommandOutput
|
|
214
267
|
| TagResourceCommandOutput
|
|
215
268
|
| UntagResourceCommandOutput
|
|
216
269
|
| UpdateIdMappingWorkflowCommandOutput
|
|
270
|
+
| UpdateIdNamespaceCommandOutput
|
|
217
271
|
| UpdateMatchingWorkflowCommandOutput
|
|
218
272
|
| UpdateSchemaMappingCommandOutput;
|
|
219
273
|
export interface ClientDefaults
|