@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
|
@@ -1,39 +1,60 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput } from "./commands/AddPolicyStatementCommand";
|
|
2
3
|
import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "./commands/CreateIdMappingWorkflowCommand";
|
|
4
|
+
import { CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput } from "./commands/CreateIdNamespaceCommand";
|
|
3
5
|
import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "./commands/CreateMatchingWorkflowCommand";
|
|
4
6
|
import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "./commands/CreateSchemaMappingCommand";
|
|
5
7
|
import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "./commands/DeleteIdMappingWorkflowCommand";
|
|
8
|
+
import { DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput } from "./commands/DeleteIdNamespaceCommand";
|
|
6
9
|
import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "./commands/DeleteMatchingWorkflowCommand";
|
|
10
|
+
import { DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput } from "./commands/DeletePolicyStatementCommand";
|
|
7
11
|
import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "./commands/DeleteSchemaMappingCommand";
|
|
8
12
|
import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "./commands/GetIdMappingJobCommand";
|
|
9
13
|
import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "./commands/GetIdMappingWorkflowCommand";
|
|
14
|
+
import { GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput } from "./commands/GetIdNamespaceCommand";
|
|
10
15
|
import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "./commands/GetMatchIdCommand";
|
|
11
16
|
import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "./commands/GetMatchingJobCommand";
|
|
12
17
|
import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "./commands/GetMatchingWorkflowCommand";
|
|
18
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
13
19
|
import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "./commands/GetProviderServiceCommand";
|
|
14
20
|
import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "./commands/GetSchemaMappingCommand";
|
|
15
21
|
import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "./commands/ListIdMappingJobsCommand";
|
|
16
22
|
import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "./commands/ListIdMappingWorkflowsCommand";
|
|
23
|
+
import { ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput } from "./commands/ListIdNamespacesCommand";
|
|
17
24
|
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "./commands/ListMatchingJobsCommand";
|
|
18
25
|
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "./commands/ListMatchingWorkflowsCommand";
|
|
19
26
|
import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "./commands/ListProviderServicesCommand";
|
|
20
27
|
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "./commands/ListSchemaMappingsCommand";
|
|
21
28
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
29
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
22
30
|
import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "./commands/StartIdMappingJobCommand";
|
|
23
31
|
import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "./commands/StartMatchingJobCommand";
|
|
24
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
25
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
26
34
|
import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "./commands/UpdateIdMappingWorkflowCommand";
|
|
35
|
+
import { UpdateIdNamespaceCommandInput, UpdateIdNamespaceCommandOutput } from "./commands/UpdateIdNamespaceCommand";
|
|
27
36
|
import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "./commands/UpdateMatchingWorkflowCommand";
|
|
28
37
|
import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "./commands/UpdateSchemaMappingCommand";
|
|
29
38
|
import { EntityResolutionClient } from "./EntityResolutionClient";
|
|
30
39
|
export interface EntityResolution {
|
|
40
|
+
/**
|
|
41
|
+
* @see {@link AddPolicyStatementCommand}
|
|
42
|
+
*/
|
|
43
|
+
addPolicyStatement(args: AddPolicyStatementCommandInput, options?: __HttpHandlerOptions): Promise<AddPolicyStatementCommandOutput>;
|
|
44
|
+
addPolicyStatement(args: AddPolicyStatementCommandInput, cb: (err: any, data?: AddPolicyStatementCommandOutput) => void): void;
|
|
45
|
+
addPolicyStatement(args: AddPolicyStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPolicyStatementCommandOutput) => void): void;
|
|
31
46
|
/**
|
|
32
47
|
* @see {@link CreateIdMappingWorkflowCommand}
|
|
33
48
|
*/
|
|
34
49
|
createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdMappingWorkflowCommandOutput>;
|
|
35
50
|
createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void): void;
|
|
36
51
|
createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void): void;
|
|
52
|
+
/**
|
|
53
|
+
* @see {@link CreateIdNamespaceCommand}
|
|
54
|
+
*/
|
|
55
|
+
createIdNamespace(args: CreateIdNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdNamespaceCommandOutput>;
|
|
56
|
+
createIdNamespace(args: CreateIdNamespaceCommandInput, cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void): void;
|
|
57
|
+
createIdNamespace(args: CreateIdNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdNamespaceCommandOutput) => void): void;
|
|
37
58
|
/**
|
|
38
59
|
* @see {@link CreateMatchingWorkflowCommand}
|
|
39
60
|
*/
|
|
@@ -52,12 +73,24 @@ export interface EntityResolution {
|
|
|
52
73
|
deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdMappingWorkflowCommandOutput>;
|
|
53
74
|
deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void): void;
|
|
54
75
|
deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void): void;
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link DeleteIdNamespaceCommand}
|
|
78
|
+
*/
|
|
79
|
+
deleteIdNamespace(args: DeleteIdNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdNamespaceCommandOutput>;
|
|
80
|
+
deleteIdNamespace(args: DeleteIdNamespaceCommandInput, cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void): void;
|
|
81
|
+
deleteIdNamespace(args: DeleteIdNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdNamespaceCommandOutput) => void): void;
|
|
55
82
|
/**
|
|
56
83
|
* @see {@link DeleteMatchingWorkflowCommand}
|
|
57
84
|
*/
|
|
58
85
|
deleteMatchingWorkflow(args: DeleteMatchingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMatchingWorkflowCommandOutput>;
|
|
59
86
|
deleteMatchingWorkflow(args: DeleteMatchingWorkflowCommandInput, cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void): void;
|
|
60
87
|
deleteMatchingWorkflow(args: DeleteMatchingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMatchingWorkflowCommandOutput) => void): void;
|
|
88
|
+
/**
|
|
89
|
+
* @see {@link DeletePolicyStatementCommand}
|
|
90
|
+
*/
|
|
91
|
+
deletePolicyStatement(args: DeletePolicyStatementCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyStatementCommandOutput>;
|
|
92
|
+
deletePolicyStatement(args: DeletePolicyStatementCommandInput, cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void): void;
|
|
93
|
+
deletePolicyStatement(args: DeletePolicyStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyStatementCommandOutput) => void): void;
|
|
61
94
|
/**
|
|
62
95
|
* @see {@link DeleteSchemaMappingCommand}
|
|
63
96
|
*/
|
|
@@ -76,6 +109,12 @@ export interface EntityResolution {
|
|
|
76
109
|
getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetIdMappingWorkflowCommandOutput>;
|
|
77
110
|
getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void): void;
|
|
78
111
|
getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void): void;
|
|
112
|
+
/**
|
|
113
|
+
* @see {@link GetIdNamespaceCommand}
|
|
114
|
+
*/
|
|
115
|
+
getIdNamespace(args: GetIdNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<GetIdNamespaceCommandOutput>;
|
|
116
|
+
getIdNamespace(args: GetIdNamespaceCommandInput, cb: (err: any, data?: GetIdNamespaceCommandOutput) => void): void;
|
|
117
|
+
getIdNamespace(args: GetIdNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdNamespaceCommandOutput) => void): void;
|
|
79
118
|
/**
|
|
80
119
|
* @see {@link GetMatchIdCommand}
|
|
81
120
|
*/
|
|
@@ -94,6 +133,12 @@ export interface EntityResolution {
|
|
|
94
133
|
getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetMatchingWorkflowCommandOutput>;
|
|
95
134
|
getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void): void;
|
|
96
135
|
getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void): void;
|
|
136
|
+
/**
|
|
137
|
+
* @see {@link GetPolicyCommand}
|
|
138
|
+
*/
|
|
139
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
140
|
+
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
141
|
+
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
97
142
|
/**
|
|
98
143
|
* @see {@link GetProviderServiceCommand}
|
|
99
144
|
*/
|
|
@@ -119,6 +164,13 @@ export interface EntityResolution {
|
|
|
119
164
|
listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListIdMappingWorkflowsCommandOutput>;
|
|
120
165
|
listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void): void;
|
|
121
166
|
listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void): void;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link ListIdNamespacesCommand}
|
|
169
|
+
*/
|
|
170
|
+
listIdNamespaces(): Promise<ListIdNamespacesCommandOutput>;
|
|
171
|
+
listIdNamespaces(args: ListIdNamespacesCommandInput, options?: __HttpHandlerOptions): Promise<ListIdNamespacesCommandOutput>;
|
|
172
|
+
listIdNamespaces(args: ListIdNamespacesCommandInput, cb: (err: any, data?: ListIdNamespacesCommandOutput) => void): void;
|
|
173
|
+
listIdNamespaces(args: ListIdNamespacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdNamespacesCommandOutput) => void): void;
|
|
122
174
|
/**
|
|
123
175
|
* @see {@link ListMatchingJobsCommand}
|
|
124
176
|
*/
|
|
@@ -152,6 +204,12 @@ export interface EntityResolution {
|
|
|
152
204
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
153
205
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
154
206
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
207
|
+
/**
|
|
208
|
+
* @see {@link PutPolicyCommand}
|
|
209
|
+
*/
|
|
210
|
+
putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
|
|
211
|
+
putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
212
|
+
putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
155
213
|
/**
|
|
156
214
|
* @see {@link StartIdMappingJobCommand}
|
|
157
215
|
*/
|
|
@@ -182,6 +240,12 @@ export interface EntityResolution {
|
|
|
182
240
|
updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdMappingWorkflowCommandOutput>;
|
|
183
241
|
updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void): void;
|
|
184
242
|
updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void): void;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link UpdateIdNamespaceCommand}
|
|
245
|
+
*/
|
|
246
|
+
updateIdNamespace(args: UpdateIdNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdNamespaceCommandOutput>;
|
|
247
|
+
updateIdNamespace(args: UpdateIdNamespaceCommandInput, cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void): void;
|
|
248
|
+
updateIdNamespace(args: UpdateIdNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdNamespaceCommandOutput) => void): void;
|
|
185
249
|
/**
|
|
186
250
|
* @see {@link UpdateMatchingWorkflowCommand}
|
|
187
251
|
*/
|
|
@@ -7,31 +7,40 @@ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol
|
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
+
import { AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput } from "./commands/AddPolicyStatementCommand";
|
|
10
11
|
import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "./commands/CreateIdMappingWorkflowCommand";
|
|
12
|
+
import { CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput } from "./commands/CreateIdNamespaceCommand";
|
|
11
13
|
import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "./commands/CreateMatchingWorkflowCommand";
|
|
12
14
|
import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "./commands/CreateSchemaMappingCommand";
|
|
13
15
|
import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "./commands/DeleteIdMappingWorkflowCommand";
|
|
16
|
+
import { DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput } from "./commands/DeleteIdNamespaceCommand";
|
|
14
17
|
import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "./commands/DeleteMatchingWorkflowCommand";
|
|
18
|
+
import { DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput } from "./commands/DeletePolicyStatementCommand";
|
|
15
19
|
import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "./commands/DeleteSchemaMappingCommand";
|
|
16
20
|
import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "./commands/GetIdMappingJobCommand";
|
|
17
21
|
import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "./commands/GetIdMappingWorkflowCommand";
|
|
22
|
+
import { GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput } from "./commands/GetIdNamespaceCommand";
|
|
18
23
|
import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "./commands/GetMatchIdCommand";
|
|
19
24
|
import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "./commands/GetMatchingJobCommand";
|
|
20
25
|
import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "./commands/GetMatchingWorkflowCommand";
|
|
26
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
21
27
|
import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "./commands/GetProviderServiceCommand";
|
|
22
28
|
import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "./commands/GetSchemaMappingCommand";
|
|
23
29
|
import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "./commands/ListIdMappingJobsCommand";
|
|
24
30
|
import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "./commands/ListIdMappingWorkflowsCommand";
|
|
31
|
+
import { ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput } from "./commands/ListIdNamespacesCommand";
|
|
25
32
|
import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "./commands/ListMatchingJobsCommand";
|
|
26
33
|
import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "./commands/ListMatchingWorkflowsCommand";
|
|
27
34
|
import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "./commands/ListProviderServicesCommand";
|
|
28
35
|
import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "./commands/ListSchemaMappingsCommand";
|
|
29
36
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
37
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
30
38
|
import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "./commands/StartIdMappingJobCommand";
|
|
31
39
|
import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "./commands/StartMatchingJobCommand";
|
|
32
40
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
41
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
34
42
|
import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "./commands/UpdateIdMappingWorkflowCommand";
|
|
43
|
+
import { UpdateIdNamespaceCommandInput, UpdateIdNamespaceCommandOutput } from "./commands/UpdateIdNamespaceCommand";
|
|
35
44
|
import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "./commands/UpdateMatchingWorkflowCommand";
|
|
36
45
|
import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "./commands/UpdateSchemaMappingCommand";
|
|
37
46
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
@@ -40,11 +49,11 @@ export { __Client };
|
|
|
40
49
|
/**
|
|
41
50
|
* @public
|
|
42
51
|
*/
|
|
43
|
-
export type ServiceInputTypes = CreateIdMappingWorkflowCommandInput | CreateMatchingWorkflowCommandInput | CreateSchemaMappingCommandInput | DeleteIdMappingWorkflowCommandInput | DeleteMatchingWorkflowCommandInput | DeleteSchemaMappingCommandInput | GetIdMappingJobCommandInput | GetIdMappingWorkflowCommandInput | GetMatchIdCommandInput | GetMatchingJobCommandInput | GetMatchingWorkflowCommandInput | GetProviderServiceCommandInput | GetSchemaMappingCommandInput | ListIdMappingJobsCommandInput | ListIdMappingWorkflowsCommandInput | ListMatchingJobsCommandInput | ListMatchingWorkflowsCommandInput | ListProviderServicesCommandInput | ListSchemaMappingsCommandInput | ListTagsForResourceCommandInput | StartIdMappingJobCommandInput | StartMatchingJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIdMappingWorkflowCommandInput | UpdateMatchingWorkflowCommandInput | UpdateSchemaMappingCommandInput;
|
|
52
|
+
export type ServiceInputTypes = AddPolicyStatementCommandInput | CreateIdMappingWorkflowCommandInput | CreateIdNamespaceCommandInput | CreateMatchingWorkflowCommandInput | CreateSchemaMappingCommandInput | DeleteIdMappingWorkflowCommandInput | DeleteIdNamespaceCommandInput | DeleteMatchingWorkflowCommandInput | DeletePolicyStatementCommandInput | DeleteSchemaMappingCommandInput | GetIdMappingJobCommandInput | GetIdMappingWorkflowCommandInput | GetIdNamespaceCommandInput | GetMatchIdCommandInput | GetMatchingJobCommandInput | GetMatchingWorkflowCommandInput | GetPolicyCommandInput | GetProviderServiceCommandInput | GetSchemaMappingCommandInput | ListIdMappingJobsCommandInput | ListIdMappingWorkflowsCommandInput | ListIdNamespacesCommandInput | ListMatchingJobsCommandInput | ListMatchingWorkflowsCommandInput | ListProviderServicesCommandInput | ListSchemaMappingsCommandInput | ListTagsForResourceCommandInput | PutPolicyCommandInput | StartIdMappingJobCommandInput | StartMatchingJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIdMappingWorkflowCommandInput | UpdateIdNamespaceCommandInput | UpdateMatchingWorkflowCommandInput | UpdateSchemaMappingCommandInput;
|
|
44
53
|
/**
|
|
45
54
|
* @public
|
|
46
55
|
*/
|
|
47
|
-
export type ServiceOutputTypes = CreateIdMappingWorkflowCommandOutput | CreateMatchingWorkflowCommandOutput | CreateSchemaMappingCommandOutput | DeleteIdMappingWorkflowCommandOutput | DeleteMatchingWorkflowCommandOutput | DeleteSchemaMappingCommandOutput | GetIdMappingJobCommandOutput | GetIdMappingWorkflowCommandOutput | GetMatchIdCommandOutput | GetMatchingJobCommandOutput | GetMatchingWorkflowCommandOutput | GetProviderServiceCommandOutput | GetSchemaMappingCommandOutput | ListIdMappingJobsCommandOutput | ListIdMappingWorkflowsCommandOutput | ListMatchingJobsCommandOutput | ListMatchingWorkflowsCommandOutput | ListProviderServicesCommandOutput | ListSchemaMappingsCommandOutput | ListTagsForResourceCommandOutput | StartIdMappingJobCommandOutput | StartMatchingJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIdMappingWorkflowCommandOutput | UpdateMatchingWorkflowCommandOutput | UpdateSchemaMappingCommandOutput;
|
|
56
|
+
export type ServiceOutputTypes = AddPolicyStatementCommandOutput | CreateIdMappingWorkflowCommandOutput | CreateIdNamespaceCommandOutput | CreateMatchingWorkflowCommandOutput | CreateSchemaMappingCommandOutput | DeleteIdMappingWorkflowCommandOutput | DeleteIdNamespaceCommandOutput | DeleteMatchingWorkflowCommandOutput | DeletePolicyStatementCommandOutput | DeleteSchemaMappingCommandOutput | GetIdMappingJobCommandOutput | GetIdMappingWorkflowCommandOutput | GetIdNamespaceCommandOutput | GetMatchIdCommandOutput | GetMatchingJobCommandOutput | GetMatchingWorkflowCommandOutput | GetPolicyCommandOutput | GetProviderServiceCommandOutput | GetSchemaMappingCommandOutput | ListIdMappingJobsCommandOutput | ListIdMappingWorkflowsCommandOutput | ListIdNamespacesCommandOutput | ListMatchingJobsCommandOutput | ListMatchingWorkflowsCommandOutput | ListProviderServicesCommandOutput | ListSchemaMappingsCommandOutput | ListTagsForResourceCommandOutput | PutPolicyCommandOutput | StartIdMappingJobCommandOutput | StartMatchingJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIdMappingWorkflowCommandOutput | UpdateIdNamespaceCommandOutput | UpdateMatchingWorkflowCommandOutput | UpdateSchemaMappingCommandOutput;
|
|
48
57
|
/**
|
|
49
58
|
* @public
|
|
50
59
|
*/
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
4
|
+
import { AddPolicyStatementInput, AddPolicyStatementOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link AddPolicyStatementCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface AddPolicyStatementCommandInput extends AddPolicyStatementInput {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link AddPolicyStatementCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface AddPolicyStatementCommandOutput extends AddPolicyStatementOutput, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const AddPolicyStatementCommand_base: {
|
|
24
|
+
new (input: AddPolicyStatementCommandInput): import("@smithy/smithy-client").CommandImpl<AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddPolicyStatementCommandInput): import("@smithy/smithy-client").CommandImpl<AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Adds a policy statement object. To retrieve a list of existing policy statements, use
|
|
30
|
+
* the <code>GetPolicy</code> API.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { EntityResolutionClient, AddPolicyStatementCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
35
|
+
* // const { EntityResolutionClient, AddPolicyStatementCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
36
|
+
* const client = new EntityResolutionClient(config);
|
|
37
|
+
* const input = { // AddPolicyStatementInput
|
|
38
|
+
* arn: "STRING_VALUE", // required
|
|
39
|
+
* statementId: "STRING_VALUE", // required
|
|
40
|
+
* effect: "Allow" || "Deny", // required
|
|
41
|
+
* action: [ // StatementActionList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* principal: [ // StatementPrincipalList // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* condition: "STRING_VALUE",
|
|
48
|
+
* };
|
|
49
|
+
* const command = new AddPolicyStatementCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // AddPolicyStatementOutput
|
|
52
|
+
* // arn: "STRING_VALUE", // required
|
|
53
|
+
* // token: "STRING_VALUE", // required
|
|
54
|
+
* // policy: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param AddPolicyStatementCommandInput - {@link AddPolicyStatementCommandInput}
|
|
60
|
+
* @returns {@link AddPolicyStatementCommandOutput}
|
|
61
|
+
* @see {@link AddPolicyStatementCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link AddPolicyStatementCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
|
|
67
|
+
* 403</code>
|
|
68
|
+
* </p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ConflictException} (client fault)
|
|
71
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
72
|
+
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
73
|
+
* running, etc. <code>HTTP Status Code: 400</code>
|
|
74
|
+
* </p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
78
|
+
* service. <code>HTTP Status Code: 500</code>
|
|
79
|
+
* </p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>The resource could not be found. <code>HTTP Status Code: 404</code>
|
|
83
|
+
* </p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
86
|
+
* <p>The request was denied due to request throttling. <code>HTTP Status Code:
|
|
87
|
+
* 429</code>
|
|
88
|
+
* </p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ValidationException} (client fault)
|
|
91
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
|
|
92
|
+
* Status Code: 400</code>
|
|
93
|
+
* </p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link EntityResolutionServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class AddPolicyStatementCommand extends AddPolicyStatementCommand_base {
|
|
101
|
+
}
|
|
@@ -42,10 +42,11 @@ declare const CreateIdMappingWorkflowCommand_base: {
|
|
|
42
42
|
* inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
|
|
43
43
|
* { // IdMappingWorkflowInputSource
|
|
44
44
|
* inputSourceARN: "STRING_VALUE", // required
|
|
45
|
-
* schemaName: "STRING_VALUE",
|
|
45
|
+
* schemaName: "STRING_VALUE",
|
|
46
|
+
* type: "SOURCE" || "TARGET",
|
|
46
47
|
* },
|
|
47
48
|
* ],
|
|
48
|
-
* outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
|
|
49
|
+
* outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
|
|
49
50
|
* { // IdMappingWorkflowOutputSource
|
|
50
51
|
* outputS3Path: "STRING_VALUE", // required
|
|
51
52
|
* KMSArn: "STRING_VALUE",
|
|
@@ -75,10 +76,11 @@ declare const CreateIdMappingWorkflowCommand_base: {
|
|
|
75
76
|
* // inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
|
|
76
77
|
* // { // IdMappingWorkflowInputSource
|
|
77
78
|
* // inputSourceARN: "STRING_VALUE", // required
|
|
78
|
-
* // schemaName: "STRING_VALUE",
|
|
79
|
+
* // schemaName: "STRING_VALUE",
|
|
80
|
+
* // type: "SOURCE" || "TARGET",
|
|
79
81
|
* // },
|
|
80
82
|
* // ],
|
|
81
|
-
* // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
|
|
83
|
+
* // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
|
|
82
84
|
* // { // IdMappingWorkflowOutputSource
|
|
83
85
|
* // outputS3Path: "STRING_VALUE", // required
|
|
84
86
|
* // KMSArn: "STRING_VALUE",
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
4
|
+
import { CreateIdNamespaceInput, CreateIdNamespaceOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link CreateIdNamespaceCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface CreateIdNamespaceCommandInput extends CreateIdNamespaceInput {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link CreateIdNamespaceCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateIdNamespaceCommandOutput extends CreateIdNamespaceOutput, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const CreateIdNamespaceCommand_base: {
|
|
24
|
+
new (input: CreateIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateIdNamespaceCommandInput, CreateIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Creates an ID namespace object which will help customers provide metadata explaining
|
|
30
|
+
* their dataset and how to use it. Each ID namespace must have a unique name. To modify an
|
|
31
|
+
* existing ID namespace, use the <code>UpdateIdNamespace</code> API.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { EntityResolutionClient, CreateIdNamespaceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
36
|
+
* // const { EntityResolutionClient, CreateIdNamespaceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
37
|
+
* const client = new EntityResolutionClient(config);
|
|
38
|
+
* const input = { // CreateIdNamespaceInput
|
|
39
|
+
* idNamespaceName: "STRING_VALUE", // required
|
|
40
|
+
* description: "STRING_VALUE",
|
|
41
|
+
* inputSourceConfig: [ // IdNamespaceInputSourceConfig
|
|
42
|
+
* { // IdNamespaceInputSource
|
|
43
|
+
* inputSourceARN: "STRING_VALUE", // required
|
|
44
|
+
* schemaName: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowPropertiesList
|
|
48
|
+
* { // IdNamespaceIdMappingWorkflowProperties
|
|
49
|
+
* idMappingType: "PROVIDER", // required
|
|
50
|
+
* providerProperties: { // NamespaceProviderProperties
|
|
51
|
+
* providerServiceArn: "STRING_VALUE", // required
|
|
52
|
+
* providerConfiguration: "DOCUMENT_VALUE",
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* type: "SOURCE" || "TARGET", // required
|
|
57
|
+
* roleArn: "STRING_VALUE",
|
|
58
|
+
* tags: { // TagMap
|
|
59
|
+
* "<keys>": "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* };
|
|
62
|
+
* const command = new CreateIdNamespaceCommand(input);
|
|
63
|
+
* const response = await client.send(command);
|
|
64
|
+
* // { // CreateIdNamespaceOutput
|
|
65
|
+
* // idNamespaceName: "STRING_VALUE", // required
|
|
66
|
+
* // idNamespaceArn: "STRING_VALUE", // required
|
|
67
|
+
* // description: "STRING_VALUE",
|
|
68
|
+
* // inputSourceConfig: [ // IdNamespaceInputSourceConfig
|
|
69
|
+
* // { // IdNamespaceInputSource
|
|
70
|
+
* // inputSourceARN: "STRING_VALUE", // required
|
|
71
|
+
* // schemaName: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowPropertiesList
|
|
75
|
+
* // { // IdNamespaceIdMappingWorkflowProperties
|
|
76
|
+
* // idMappingType: "PROVIDER", // required
|
|
77
|
+
* // providerProperties: { // NamespaceProviderProperties
|
|
78
|
+
* // providerServiceArn: "STRING_VALUE", // required
|
|
79
|
+
* // providerConfiguration: "DOCUMENT_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // type: "SOURCE" || "TARGET", // required
|
|
84
|
+
* // roleArn: "STRING_VALUE",
|
|
85
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
86
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
87
|
+
* // tags: { // TagMap
|
|
88
|
+
* // "<keys>": "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param CreateIdNamespaceCommandInput - {@link CreateIdNamespaceCommandInput}
|
|
95
|
+
* @returns {@link CreateIdNamespaceCommandOutput}
|
|
96
|
+
* @see {@link CreateIdNamespaceCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link CreateIdNamespaceCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
|
|
102
|
+
* 403</code>
|
|
103
|
+
* </p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ConflictException} (client fault)
|
|
106
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
107
|
+
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
108
|
+
* running, etc. <code>HTTP Status Code: 400</code>
|
|
109
|
+
* </p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ExceedsLimitException} (client fault)
|
|
112
|
+
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
113
|
+
* Entity Resolution account limits. The error message describes the limit exceeded.
|
|
114
|
+
* <code>HTTP Status Code: 402</code>
|
|
115
|
+
* </p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link InternalServerException} (server fault)
|
|
118
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
119
|
+
* service. <code>HTTP Status Code: 500</code>
|
|
120
|
+
* </p>
|
|
121
|
+
*
|
|
122
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
123
|
+
* <p>The request was denied due to request throttling. <code>HTTP Status Code:
|
|
124
|
+
* 429</code>
|
|
125
|
+
* </p>
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link ValidationException} (client fault)
|
|
128
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
|
|
129
|
+
* Status Code: 400</code>
|
|
130
|
+
* </p>
|
|
131
|
+
*
|
|
132
|
+
* @throws {@link EntityResolutionServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
134
|
+
*
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export declare class CreateIdNamespaceCommand extends CreateIdNamespaceCommand_base {
|
|
138
|
+
}
|
|
@@ -56,6 +56,12 @@ declare const DeleteIdMappingWorkflowCommand_base: {
|
|
|
56
56
|
* 403</code>
|
|
57
57
|
* </p>
|
|
58
58
|
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
61
|
+
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
62
|
+
* running, etc. <code>HTTP Status Code: 400</code>
|
|
63
|
+
* </p>
|
|
64
|
+
*
|
|
59
65
|
* @throws {@link InternalServerException} (server fault)
|
|
60
66
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
61
67
|
* service. <code>HTTP Status Code: 500</code>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
4
|
+
import { DeleteIdNamespaceInput, DeleteIdNamespaceOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link DeleteIdNamespaceCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface DeleteIdNamespaceCommandInput extends DeleteIdNamespaceInput {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link DeleteIdNamespaceCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface DeleteIdNamespaceCommandOutput extends DeleteIdNamespaceOutput, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const DeleteIdNamespaceCommand_base: {
|
|
24
|
+
new (input: DeleteIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIdNamespaceCommandInput, DeleteIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Deletes the <code>IdNamespace</code> with a given name.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { EntityResolutionClient, DeleteIdNamespaceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
34
|
+
* // const { EntityResolutionClient, DeleteIdNamespaceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
35
|
+
* const client = new EntityResolutionClient(config);
|
|
36
|
+
* const input = { // DeleteIdNamespaceInput
|
|
37
|
+
* idNamespaceName: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new DeleteIdNamespaceCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // DeleteIdNamespaceOutput
|
|
42
|
+
* // message: "STRING_VALUE", // required
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteIdNamespaceCommandInput - {@link DeleteIdNamespaceCommandInput}
|
|
48
|
+
* @returns {@link DeleteIdNamespaceCommandOutput}
|
|
49
|
+
* @see {@link DeleteIdNamespaceCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteIdNamespaceCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
|
|
55
|
+
* 403</code>
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalServerException} (server fault)
|
|
59
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
60
|
+
* service. <code>HTTP Status Code: 500</code>
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
64
|
+
* <p>The request was denied due to request throttling. <code>HTTP Status Code:
|
|
65
|
+
* 429</code>
|
|
66
|
+
* </p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
|
|
70
|
+
* Status Code: 400</code>
|
|
71
|
+
* </p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link EntityResolutionServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class DeleteIdNamespaceCommand extends DeleteIdNamespaceCommand_base {
|
|
79
|
+
}
|
|
@@ -56,6 +56,12 @@ declare const DeleteMatchingWorkflowCommand_base: {
|
|
|
56
56
|
* 403</code>
|
|
57
57
|
* </p>
|
|
58
58
|
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
61
|
+
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
62
|
+
* running, etc. <code>HTTP Status Code: 400</code>
|
|
63
|
+
* </p>
|
|
64
|
+
*
|
|
59
65
|
* @throws {@link InternalServerException} (server fault)
|
|
60
66
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
61
67
|
* service. <code>HTTP Status Code: 500</code>
|