@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
|
@@ -45,10 +45,22 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AddPolicyStatementCommandInput,
|
|
50
|
+
AddPolicyStatementCommandOutput,
|
|
51
|
+
} from "./commands/AddPolicyStatementCommand";
|
|
52
|
+
import {
|
|
53
|
+
BatchDeleteUniqueIdCommandInput,
|
|
54
|
+
BatchDeleteUniqueIdCommandOutput,
|
|
55
|
+
} from "./commands/BatchDeleteUniqueIdCommand";
|
|
48
56
|
import {
|
|
49
57
|
CreateIdMappingWorkflowCommandInput,
|
|
50
58
|
CreateIdMappingWorkflowCommandOutput,
|
|
51
59
|
} from "./commands/CreateIdMappingWorkflowCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateIdNamespaceCommandInput,
|
|
62
|
+
CreateIdNamespaceCommandOutput,
|
|
63
|
+
} from "./commands/CreateIdNamespaceCommand";
|
|
52
64
|
import {
|
|
53
65
|
CreateMatchingWorkflowCommandInput,
|
|
54
66
|
CreateMatchingWorkflowCommandOutput,
|
|
@@ -61,10 +73,18 @@ import {
|
|
|
61
73
|
DeleteIdMappingWorkflowCommandInput,
|
|
62
74
|
DeleteIdMappingWorkflowCommandOutput,
|
|
63
75
|
} from "./commands/DeleteIdMappingWorkflowCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteIdNamespaceCommandInput,
|
|
78
|
+
DeleteIdNamespaceCommandOutput,
|
|
79
|
+
} from "./commands/DeleteIdNamespaceCommand";
|
|
64
80
|
import {
|
|
65
81
|
DeleteMatchingWorkflowCommandInput,
|
|
66
82
|
DeleteMatchingWorkflowCommandOutput,
|
|
67
83
|
} from "./commands/DeleteMatchingWorkflowCommand";
|
|
84
|
+
import {
|
|
85
|
+
DeletePolicyStatementCommandInput,
|
|
86
|
+
DeletePolicyStatementCommandOutput,
|
|
87
|
+
} from "./commands/DeletePolicyStatementCommand";
|
|
68
88
|
import {
|
|
69
89
|
DeleteSchemaMappingCommandInput,
|
|
70
90
|
DeleteSchemaMappingCommandOutput,
|
|
@@ -77,6 +97,10 @@ import {
|
|
|
77
97
|
GetIdMappingWorkflowCommandInput,
|
|
78
98
|
GetIdMappingWorkflowCommandOutput,
|
|
79
99
|
} from "./commands/GetIdMappingWorkflowCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetIdNamespaceCommandInput,
|
|
102
|
+
GetIdNamespaceCommandOutput,
|
|
103
|
+
} from "./commands/GetIdNamespaceCommand";
|
|
80
104
|
import {
|
|
81
105
|
GetMatchIdCommandInput,
|
|
82
106
|
GetMatchIdCommandOutput,
|
|
@@ -89,6 +113,10 @@ import {
|
|
|
89
113
|
GetMatchingWorkflowCommandInput,
|
|
90
114
|
GetMatchingWorkflowCommandOutput,
|
|
91
115
|
} from "./commands/GetMatchingWorkflowCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetPolicyCommandInput,
|
|
118
|
+
GetPolicyCommandOutput,
|
|
119
|
+
} from "./commands/GetPolicyCommand";
|
|
92
120
|
import {
|
|
93
121
|
GetProviderServiceCommandInput,
|
|
94
122
|
GetProviderServiceCommandOutput,
|
|
@@ -105,6 +133,10 @@ import {
|
|
|
105
133
|
ListIdMappingWorkflowsCommandInput,
|
|
106
134
|
ListIdMappingWorkflowsCommandOutput,
|
|
107
135
|
} from "./commands/ListIdMappingWorkflowsCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListIdNamespacesCommandInput,
|
|
138
|
+
ListIdNamespacesCommandOutput,
|
|
139
|
+
} from "./commands/ListIdNamespacesCommand";
|
|
108
140
|
import {
|
|
109
141
|
ListMatchingJobsCommandInput,
|
|
110
142
|
ListMatchingJobsCommandOutput,
|
|
@@ -125,6 +157,10 @@ import {
|
|
|
125
157
|
ListTagsForResourceCommandInput,
|
|
126
158
|
ListTagsForResourceCommandOutput,
|
|
127
159
|
} from "./commands/ListTagsForResourceCommand";
|
|
160
|
+
import {
|
|
161
|
+
PutPolicyCommandInput,
|
|
162
|
+
PutPolicyCommandOutput,
|
|
163
|
+
} from "./commands/PutPolicyCommand";
|
|
128
164
|
import {
|
|
129
165
|
StartIdMappingJobCommandInput,
|
|
130
166
|
StartIdMappingJobCommandOutput,
|
|
@@ -145,6 +181,10 @@ import {
|
|
|
145
181
|
UpdateIdMappingWorkflowCommandInput,
|
|
146
182
|
UpdateIdMappingWorkflowCommandOutput,
|
|
147
183
|
} from "./commands/UpdateIdMappingWorkflowCommand";
|
|
184
|
+
import {
|
|
185
|
+
UpdateIdNamespaceCommandInput,
|
|
186
|
+
UpdateIdNamespaceCommandOutput,
|
|
187
|
+
} from "./commands/UpdateIdNamespaceCommand";
|
|
148
188
|
import {
|
|
149
189
|
UpdateMatchingWorkflowCommandInput,
|
|
150
190
|
UpdateMatchingWorkflowCommandOutput,
|
|
@@ -161,59 +201,79 @@ import {
|
|
|
161
201
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
162
202
|
export { __Client };
|
|
163
203
|
export type ServiceInputTypes =
|
|
204
|
+
| AddPolicyStatementCommandInput
|
|
205
|
+
| BatchDeleteUniqueIdCommandInput
|
|
164
206
|
| CreateIdMappingWorkflowCommandInput
|
|
207
|
+
| CreateIdNamespaceCommandInput
|
|
165
208
|
| CreateMatchingWorkflowCommandInput
|
|
166
209
|
| CreateSchemaMappingCommandInput
|
|
167
210
|
| DeleteIdMappingWorkflowCommandInput
|
|
211
|
+
| DeleteIdNamespaceCommandInput
|
|
168
212
|
| DeleteMatchingWorkflowCommandInput
|
|
213
|
+
| DeletePolicyStatementCommandInput
|
|
169
214
|
| DeleteSchemaMappingCommandInput
|
|
170
215
|
| GetIdMappingJobCommandInput
|
|
171
216
|
| GetIdMappingWorkflowCommandInput
|
|
217
|
+
| GetIdNamespaceCommandInput
|
|
172
218
|
| GetMatchIdCommandInput
|
|
173
219
|
| GetMatchingJobCommandInput
|
|
174
220
|
| GetMatchingWorkflowCommandInput
|
|
221
|
+
| GetPolicyCommandInput
|
|
175
222
|
| GetProviderServiceCommandInput
|
|
176
223
|
| GetSchemaMappingCommandInput
|
|
177
224
|
| ListIdMappingJobsCommandInput
|
|
178
225
|
| ListIdMappingWorkflowsCommandInput
|
|
226
|
+
| ListIdNamespacesCommandInput
|
|
179
227
|
| ListMatchingJobsCommandInput
|
|
180
228
|
| ListMatchingWorkflowsCommandInput
|
|
181
229
|
| ListProviderServicesCommandInput
|
|
182
230
|
| ListSchemaMappingsCommandInput
|
|
183
231
|
| ListTagsForResourceCommandInput
|
|
232
|
+
| PutPolicyCommandInput
|
|
184
233
|
| StartIdMappingJobCommandInput
|
|
185
234
|
| StartMatchingJobCommandInput
|
|
186
235
|
| TagResourceCommandInput
|
|
187
236
|
| UntagResourceCommandInput
|
|
188
237
|
| UpdateIdMappingWorkflowCommandInput
|
|
238
|
+
| UpdateIdNamespaceCommandInput
|
|
189
239
|
| UpdateMatchingWorkflowCommandInput
|
|
190
240
|
| UpdateSchemaMappingCommandInput;
|
|
191
241
|
export type ServiceOutputTypes =
|
|
242
|
+
| AddPolicyStatementCommandOutput
|
|
243
|
+
| BatchDeleteUniqueIdCommandOutput
|
|
192
244
|
| CreateIdMappingWorkflowCommandOutput
|
|
245
|
+
| CreateIdNamespaceCommandOutput
|
|
193
246
|
| CreateMatchingWorkflowCommandOutput
|
|
194
247
|
| CreateSchemaMappingCommandOutput
|
|
195
248
|
| DeleteIdMappingWorkflowCommandOutput
|
|
249
|
+
| DeleteIdNamespaceCommandOutput
|
|
196
250
|
| DeleteMatchingWorkflowCommandOutput
|
|
251
|
+
| DeletePolicyStatementCommandOutput
|
|
197
252
|
| DeleteSchemaMappingCommandOutput
|
|
198
253
|
| GetIdMappingJobCommandOutput
|
|
199
254
|
| GetIdMappingWorkflowCommandOutput
|
|
255
|
+
| GetIdNamespaceCommandOutput
|
|
200
256
|
| GetMatchIdCommandOutput
|
|
201
257
|
| GetMatchingJobCommandOutput
|
|
202
258
|
| GetMatchingWorkflowCommandOutput
|
|
259
|
+
| GetPolicyCommandOutput
|
|
203
260
|
| GetProviderServiceCommandOutput
|
|
204
261
|
| GetSchemaMappingCommandOutput
|
|
205
262
|
| ListIdMappingJobsCommandOutput
|
|
206
263
|
| ListIdMappingWorkflowsCommandOutput
|
|
264
|
+
| ListIdNamespacesCommandOutput
|
|
207
265
|
| ListMatchingJobsCommandOutput
|
|
208
266
|
| ListMatchingWorkflowsCommandOutput
|
|
209
267
|
| ListProviderServicesCommandOutput
|
|
210
268
|
| ListSchemaMappingsCommandOutput
|
|
211
269
|
| ListTagsForResourceCommandOutput
|
|
270
|
+
| PutPolicyCommandOutput
|
|
212
271
|
| StartIdMappingJobCommandOutput
|
|
213
272
|
| StartMatchingJobCommandOutput
|
|
214
273
|
| TagResourceCommandOutput
|
|
215
274
|
| UntagResourceCommandOutput
|
|
216
275
|
| UpdateIdMappingWorkflowCommandOutput
|
|
276
|
+
| UpdateIdNamespaceCommandOutput
|
|
217
277
|
| UpdateMatchingWorkflowCommandOutput
|
|
218
278
|
| UpdateSchemaMappingCommandOutput;
|
|
219
279
|
export interface ClientDefaults
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
AddPolicyStatementInput,
|
|
10
|
+
AddPolicyStatementOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface AddPolicyStatementCommandInput
|
|
14
|
+
extends AddPolicyStatementInput {}
|
|
15
|
+
export interface AddPolicyStatementCommandOutput
|
|
16
|
+
extends AddPolicyStatementOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const AddPolicyStatementCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: AddPolicyStatementCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
AddPolicyStatementCommandInput,
|
|
23
|
+
AddPolicyStatementCommandOutput,
|
|
24
|
+
EntityResolutionClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: AddPolicyStatementCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
AddPolicyStatementCommandInput,
|
|
32
|
+
AddPolicyStatementCommandOutput,
|
|
33
|
+
EntityResolutionClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class AddPolicyStatementCommand extends AddPolicyStatementCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
BatchDeleteUniqueIdInput,
|
|
10
|
+
BatchDeleteUniqueIdOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface BatchDeleteUniqueIdCommandInput
|
|
14
|
+
extends BatchDeleteUniqueIdInput {}
|
|
15
|
+
export interface BatchDeleteUniqueIdCommandOutput
|
|
16
|
+
extends BatchDeleteUniqueIdOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchDeleteUniqueIdCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchDeleteUniqueIdCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchDeleteUniqueIdCommandInput,
|
|
23
|
+
BatchDeleteUniqueIdCommandOutput,
|
|
24
|
+
EntityResolutionClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: BatchDeleteUniqueIdCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchDeleteUniqueIdCommandInput,
|
|
32
|
+
BatchDeleteUniqueIdCommandOutput,
|
|
33
|
+
EntityResolutionClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchDeleteUniqueIdCommand extends BatchDeleteUniqueIdCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateIdNamespaceInput,
|
|
10
|
+
CreateIdNamespaceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateIdNamespaceCommandInput extends CreateIdNamespaceInput {}
|
|
14
|
+
export interface CreateIdNamespaceCommandOutput
|
|
15
|
+
extends CreateIdNamespaceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const CreateIdNamespaceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: CreateIdNamespaceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
CreateIdNamespaceCommandInput,
|
|
22
|
+
CreateIdNamespaceCommandOutput,
|
|
23
|
+
EntityResolutionClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateIdNamespaceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateIdNamespaceCommandInput,
|
|
31
|
+
CreateIdNamespaceCommandOutput,
|
|
32
|
+
EntityResolutionClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateIdNamespaceCommand extends CreateIdNamespaceCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteIdNamespaceInput,
|
|
10
|
+
DeleteIdNamespaceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeleteIdNamespaceCommandInput extends DeleteIdNamespaceInput {}
|
|
14
|
+
export interface DeleteIdNamespaceCommandOutput
|
|
15
|
+
extends DeleteIdNamespaceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const DeleteIdNamespaceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: DeleteIdNamespaceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
DeleteIdNamespaceCommandInput,
|
|
22
|
+
DeleteIdNamespaceCommandOutput,
|
|
23
|
+
EntityResolutionClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteIdNamespaceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteIdNamespaceCommandInput,
|
|
31
|
+
DeleteIdNamespaceCommandOutput,
|
|
32
|
+
EntityResolutionClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteIdNamespaceCommand extends DeleteIdNamespaceCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
DeletePolicyStatementInput,
|
|
10
|
+
DeletePolicyStatementOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeletePolicyStatementCommandInput
|
|
14
|
+
extends DeletePolicyStatementInput {}
|
|
15
|
+
export interface DeletePolicyStatementCommandOutput
|
|
16
|
+
extends DeletePolicyStatementOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeletePolicyStatementCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeletePolicyStatementCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeletePolicyStatementCommandInput,
|
|
23
|
+
DeletePolicyStatementCommandOutput,
|
|
24
|
+
EntityResolutionClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeletePolicyStatementCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeletePolicyStatementCommandInput,
|
|
32
|
+
DeletePolicyStatementCommandOutput,
|
|
33
|
+
EntityResolutionClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeletePolicyStatementCommand extends DeletePolicyStatementCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import { GetIdNamespaceInput, GetIdNamespaceOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface GetIdNamespaceCommandInput extends GetIdNamespaceInput {}
|
|
11
|
+
export interface GetIdNamespaceCommandOutput
|
|
12
|
+
extends GetIdNamespaceOutput,
|
|
13
|
+
__MetadataBearer {}
|
|
14
|
+
declare const GetIdNamespaceCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetIdNamespaceCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetIdNamespaceCommandInput,
|
|
19
|
+
GetIdNamespaceCommandOutput,
|
|
20
|
+
EntityResolutionClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetIdNamespaceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetIdNamespaceCommandInput,
|
|
28
|
+
GetIdNamespaceCommandOutput,
|
|
29
|
+
EntityResolutionClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class GetIdNamespaceCommand extends GetIdNamespaceCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import { GetPolicyInput, GetPolicyOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface GetPolicyCommandInput extends GetPolicyInput {}
|
|
11
|
+
export interface GetPolicyCommandOutput
|
|
12
|
+
extends GetPolicyOutput,
|
|
13
|
+
__MetadataBearer {}
|
|
14
|
+
declare const GetPolicyCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetPolicyCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetPolicyCommandInput,
|
|
19
|
+
GetPolicyCommandOutput,
|
|
20
|
+
EntityResolutionClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetPolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetPolicyCommandInput,
|
|
28
|
+
GetPolicyCommandOutput,
|
|
29
|
+
EntityResolutionClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class GetPolicyCommand extends GetPolicyCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
ListIdNamespacesInput,
|
|
10
|
+
ListIdNamespacesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListIdNamespacesCommandInput extends ListIdNamespacesInput {}
|
|
14
|
+
export interface ListIdNamespacesCommandOutput
|
|
15
|
+
extends ListIdNamespacesOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const ListIdNamespacesCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListIdNamespacesCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListIdNamespacesCommandInput,
|
|
22
|
+
ListIdNamespacesCommandOutput,
|
|
23
|
+
EntityResolutionClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListIdNamespacesCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListIdNamespacesCommandInput,
|
|
31
|
+
ListIdNamespacesCommandOutput,
|
|
32
|
+
EntityResolutionClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class ListIdNamespacesCommand extends ListIdNamespacesCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import { PutPolicyInput, PutPolicyOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface PutPolicyCommandInput extends PutPolicyInput {}
|
|
11
|
+
export interface PutPolicyCommandOutput
|
|
12
|
+
extends PutPolicyOutput,
|
|
13
|
+
__MetadataBearer {}
|
|
14
|
+
declare const PutPolicyCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: PutPolicyCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
PutPolicyCommandInput,
|
|
19
|
+
PutPolicyCommandOutput,
|
|
20
|
+
EntityResolutionClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: PutPolicyCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
PutPolicyCommandInput,
|
|
28
|
+
PutPolicyCommandOutput,
|
|
29
|
+
EntityResolutionClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class PutPolicyCommand extends PutPolicyCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EntityResolutionClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EntityResolutionClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateIdNamespaceInput,
|
|
10
|
+
UpdateIdNamespaceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateIdNamespaceCommandInput extends UpdateIdNamespaceInput {}
|
|
14
|
+
export interface UpdateIdNamespaceCommandOutput
|
|
15
|
+
extends UpdateIdNamespaceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const UpdateIdNamespaceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: UpdateIdNamespaceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
UpdateIdNamespaceCommandInput,
|
|
22
|
+
UpdateIdNamespaceCommandOutput,
|
|
23
|
+
EntityResolutionClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateIdNamespaceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateIdNamespaceCommandInput,
|
|
31
|
+
UpdateIdNamespaceCommandOutput,
|
|
32
|
+
EntityResolutionClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class UpdateIdNamespaceCommand extends UpdateIdNamespaceCommand_base {}
|
|
@@ -1,27 +1,37 @@
|
|
|
1
|
+
export * from "./AddPolicyStatementCommand";
|
|
2
|
+
export * from "./BatchDeleteUniqueIdCommand";
|
|
1
3
|
export * from "./CreateIdMappingWorkflowCommand";
|
|
4
|
+
export * from "./CreateIdNamespaceCommand";
|
|
2
5
|
export * from "./CreateMatchingWorkflowCommand";
|
|
3
6
|
export * from "./CreateSchemaMappingCommand";
|
|
4
7
|
export * from "./DeleteIdMappingWorkflowCommand";
|
|
8
|
+
export * from "./DeleteIdNamespaceCommand";
|
|
5
9
|
export * from "./DeleteMatchingWorkflowCommand";
|
|
10
|
+
export * from "./DeletePolicyStatementCommand";
|
|
6
11
|
export * from "./DeleteSchemaMappingCommand";
|
|
7
12
|
export * from "./GetIdMappingJobCommand";
|
|
8
13
|
export * from "./GetIdMappingWorkflowCommand";
|
|
14
|
+
export * from "./GetIdNamespaceCommand";
|
|
9
15
|
export * from "./GetMatchIdCommand";
|
|
10
16
|
export * from "./GetMatchingJobCommand";
|
|
11
17
|
export * from "./GetMatchingWorkflowCommand";
|
|
18
|
+
export * from "./GetPolicyCommand";
|
|
12
19
|
export * from "./GetProviderServiceCommand";
|
|
13
20
|
export * from "./GetSchemaMappingCommand";
|
|
14
21
|
export * from "./ListIdMappingJobsCommand";
|
|
15
22
|
export * from "./ListIdMappingWorkflowsCommand";
|
|
23
|
+
export * from "./ListIdNamespacesCommand";
|
|
16
24
|
export * from "./ListMatchingJobsCommand";
|
|
17
25
|
export * from "./ListMatchingWorkflowsCommand";
|
|
18
26
|
export * from "./ListProviderServicesCommand";
|
|
19
27
|
export * from "./ListSchemaMappingsCommand";
|
|
20
28
|
export * from "./ListTagsForResourceCommand";
|
|
29
|
+
export * from "./PutPolicyCommand";
|
|
21
30
|
export * from "./StartIdMappingJobCommand";
|
|
22
31
|
export * from "./StartMatchingJobCommand";
|
|
23
32
|
export * from "./TagResourceCommand";
|
|
24
33
|
export * from "./UntagResourceCommand";
|
|
25
34
|
export * from "./UpdateIdMappingWorkflowCommand";
|
|
35
|
+
export * from "./UpdateIdNamespaceCommand";
|
|
26
36
|
export * from "./UpdateMatchingWorkflowCommand";
|
|
27
37
|
export * from "./UpdateSchemaMappingCommand";
|