@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
package/dist-cjs/index.js
CHANGED
|
@@ -22,54 +22,69 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var src_exports = {};
|
|
23
23
|
__export(src_exports, {
|
|
24
24
|
AccessDeniedException: () => AccessDeniedException,
|
|
25
|
+
AddPolicyStatementCommand: () => AddPolicyStatementCommand,
|
|
25
26
|
AttributeMatchingModel: () => AttributeMatchingModel,
|
|
27
|
+
BatchDeleteUniqueIdCommand: () => BatchDeleteUniqueIdCommand,
|
|
26
28
|
ConflictException: () => ConflictException,
|
|
27
29
|
CreateIdMappingWorkflowCommand: () => CreateIdMappingWorkflowCommand,
|
|
30
|
+
CreateIdNamespaceCommand: () => CreateIdNamespaceCommand,
|
|
28
31
|
CreateMatchingWorkflowCommand: () => CreateMatchingWorkflowCommand,
|
|
29
32
|
CreateSchemaMappingCommand: () => CreateSchemaMappingCommand,
|
|
30
33
|
DeleteIdMappingWorkflowCommand: () => DeleteIdMappingWorkflowCommand,
|
|
34
|
+
DeleteIdNamespaceCommand: () => DeleteIdNamespaceCommand,
|
|
31
35
|
DeleteMatchingWorkflowCommand: () => DeleteMatchingWorkflowCommand,
|
|
36
|
+
DeletePolicyStatementCommand: () => DeletePolicyStatementCommand,
|
|
32
37
|
DeleteSchemaMappingCommand: () => DeleteSchemaMappingCommand,
|
|
38
|
+
DeleteUniqueIdErrorType: () => DeleteUniqueIdErrorType,
|
|
39
|
+
DeleteUniqueIdStatus: () => DeleteUniqueIdStatus,
|
|
33
40
|
EntityResolution: () => EntityResolution,
|
|
34
41
|
EntityResolutionClient: () => EntityResolutionClient,
|
|
35
42
|
EntityResolutionServiceException: () => EntityResolutionServiceException,
|
|
36
43
|
ExceedsLimitException: () => ExceedsLimitException,
|
|
37
44
|
GetIdMappingJobCommand: () => GetIdMappingJobCommand,
|
|
38
45
|
GetIdMappingWorkflowCommand: () => GetIdMappingWorkflowCommand,
|
|
46
|
+
GetIdNamespaceCommand: () => GetIdNamespaceCommand,
|
|
39
47
|
GetMatchIdCommand: () => GetMatchIdCommand,
|
|
40
48
|
GetMatchIdInputFilterSensitiveLog: () => GetMatchIdInputFilterSensitiveLog,
|
|
41
49
|
GetMatchingJobCommand: () => GetMatchingJobCommand,
|
|
42
50
|
GetMatchingWorkflowCommand: () => GetMatchingWorkflowCommand,
|
|
51
|
+
GetPolicyCommand: () => GetPolicyCommand,
|
|
43
52
|
GetProviderServiceCommand: () => GetProviderServiceCommand,
|
|
44
53
|
GetSchemaMappingCommand: () => GetSchemaMappingCommand,
|
|
45
54
|
IdMappingType: () => IdMappingType,
|
|
55
|
+
IdNamespaceType: () => IdNamespaceType,
|
|
46
56
|
IncrementalRunType: () => IncrementalRunType,
|
|
47
57
|
InternalServerException: () => InternalServerException,
|
|
48
58
|
JobStatus: () => JobStatus,
|
|
49
59
|
ListIdMappingJobsCommand: () => ListIdMappingJobsCommand,
|
|
50
60
|
ListIdMappingWorkflowsCommand: () => ListIdMappingWorkflowsCommand,
|
|
61
|
+
ListIdNamespacesCommand: () => ListIdNamespacesCommand,
|
|
51
62
|
ListMatchingJobsCommand: () => ListMatchingJobsCommand,
|
|
52
63
|
ListMatchingWorkflowsCommand: () => ListMatchingWorkflowsCommand,
|
|
53
64
|
ListProviderServicesCommand: () => ListProviderServicesCommand,
|
|
54
65
|
ListSchemaMappingsCommand: () => ListSchemaMappingsCommand,
|
|
55
66
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
56
67
|
ProviderEndpointConfiguration: () => ProviderEndpointConfiguration,
|
|
68
|
+
PutPolicyCommand: () => PutPolicyCommand,
|
|
57
69
|
ResolutionType: () => ResolutionType,
|
|
58
70
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
59
71
|
SchemaAttributeType: () => SchemaAttributeType,
|
|
60
72
|
ServiceType: () => ServiceType,
|
|
61
73
|
StartIdMappingJobCommand: () => StartIdMappingJobCommand,
|
|
62
74
|
StartMatchingJobCommand: () => StartMatchingJobCommand,
|
|
75
|
+
StatementEffect: () => StatementEffect,
|
|
63
76
|
TagResourceCommand: () => TagResourceCommand,
|
|
64
77
|
ThrottlingException: () => ThrottlingException,
|
|
65
78
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
66
79
|
UpdateIdMappingWorkflowCommand: () => UpdateIdMappingWorkflowCommand,
|
|
80
|
+
UpdateIdNamespaceCommand: () => UpdateIdNamespaceCommand,
|
|
67
81
|
UpdateMatchingWorkflowCommand: () => UpdateMatchingWorkflowCommand,
|
|
68
82
|
UpdateSchemaMappingCommand: () => UpdateSchemaMappingCommand,
|
|
69
83
|
ValidationException: () => ValidationException,
|
|
70
84
|
__Client: () => import_smithy_client.Client,
|
|
71
85
|
paginateListIdMappingJobs: () => paginateListIdMappingJobs,
|
|
72
86
|
paginateListIdMappingWorkflows: () => paginateListIdMappingWorkflows,
|
|
87
|
+
paginateListIdNamespaces: () => paginateListIdNamespaces,
|
|
73
88
|
paginateListMatchingJobs: () => paginateListMatchingJobs,
|
|
74
89
|
paginateListMatchingWorkflows: () => paginateListMatchingWorkflows,
|
|
75
90
|
paginateListProviderServices: () => paginateListProviderServices,
|
|
@@ -223,7 +238,7 @@ var EntityResolutionClient = _EntityResolutionClient;
|
|
|
223
238
|
// src/EntityResolution.ts
|
|
224
239
|
|
|
225
240
|
|
|
226
|
-
// src/commands/
|
|
241
|
+
// src/commands/AddPolicyStatementCommand.ts
|
|
227
242
|
|
|
228
243
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
229
244
|
|
|
@@ -267,9 +282,9 @@ var _AccessDeniedException = class _AccessDeniedException extends EntityResoluti
|
|
|
267
282
|
};
|
|
268
283
|
__name(_AccessDeniedException, "AccessDeniedException");
|
|
269
284
|
var AccessDeniedException = _AccessDeniedException;
|
|
270
|
-
var
|
|
271
|
-
|
|
272
|
-
|
|
285
|
+
var StatementEffect = {
|
|
286
|
+
Allow: "Allow",
|
|
287
|
+
Deny: "Deny"
|
|
273
288
|
};
|
|
274
289
|
var _ConflictException = class _ConflictException extends EntityResolutionServiceException {
|
|
275
290
|
/**
|
|
@@ -288,28 +303,6 @@ var _ConflictException = class _ConflictException extends EntityResolutionServic
|
|
|
288
303
|
};
|
|
289
304
|
__name(_ConflictException, "ConflictException");
|
|
290
305
|
var ConflictException = _ConflictException;
|
|
291
|
-
var IdMappingType = {
|
|
292
|
-
PROVIDER: "PROVIDER"
|
|
293
|
-
};
|
|
294
|
-
var _ExceedsLimitException = class _ExceedsLimitException extends EntityResolutionServiceException {
|
|
295
|
-
/**
|
|
296
|
-
* @internal
|
|
297
|
-
*/
|
|
298
|
-
constructor(opts) {
|
|
299
|
-
super({
|
|
300
|
-
name: "ExceedsLimitException",
|
|
301
|
-
$fault: "client",
|
|
302
|
-
...opts
|
|
303
|
-
});
|
|
304
|
-
this.name = "ExceedsLimitException";
|
|
305
|
-
this.$fault = "client";
|
|
306
|
-
Object.setPrototypeOf(this, _ExceedsLimitException.prototype);
|
|
307
|
-
this.quotaName = opts.quotaName;
|
|
308
|
-
this.quotaValue = opts.quotaValue;
|
|
309
|
-
}
|
|
310
|
-
};
|
|
311
|
-
__name(_ExceedsLimitException, "ExceedsLimitException");
|
|
312
|
-
var ExceedsLimitException = _ExceedsLimitException;
|
|
313
306
|
var _InternalServerException = class _InternalServerException extends EntityResolutionServiceException {
|
|
314
307
|
/**
|
|
315
308
|
* @internal
|
|
@@ -328,6 +321,23 @@ var _InternalServerException = class _InternalServerException extends EntityReso
|
|
|
328
321
|
};
|
|
329
322
|
__name(_InternalServerException, "InternalServerException");
|
|
330
323
|
var InternalServerException = _InternalServerException;
|
|
324
|
+
var _ResourceNotFoundException = class _ResourceNotFoundException extends EntityResolutionServiceException {
|
|
325
|
+
/**
|
|
326
|
+
* @internal
|
|
327
|
+
*/
|
|
328
|
+
constructor(opts) {
|
|
329
|
+
super({
|
|
330
|
+
name: "ResourceNotFoundException",
|
|
331
|
+
$fault: "client",
|
|
332
|
+
...opts
|
|
333
|
+
});
|
|
334
|
+
this.name = "ResourceNotFoundException";
|
|
335
|
+
this.$fault = "client";
|
|
336
|
+
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
337
|
+
}
|
|
338
|
+
};
|
|
339
|
+
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
340
|
+
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
331
341
|
var _ThrottlingException = class _ThrottlingException extends EntityResolutionServiceException {
|
|
332
342
|
/**
|
|
333
343
|
* @internal
|
|
@@ -365,6 +375,44 @@ var _ValidationException = class _ValidationException extends EntityResolutionSe
|
|
|
365
375
|
};
|
|
366
376
|
__name(_ValidationException, "ValidationException");
|
|
367
377
|
var ValidationException = _ValidationException;
|
|
378
|
+
var AttributeMatchingModel = {
|
|
379
|
+
MANY_TO_MANY: "MANY_TO_MANY",
|
|
380
|
+
ONE_TO_ONE: "ONE_TO_ONE"
|
|
381
|
+
};
|
|
382
|
+
var DeleteUniqueIdErrorType = {
|
|
383
|
+
SERVICE_ERROR: "SERVICE_ERROR",
|
|
384
|
+
VALIDATION_ERROR: "VALIDATION_ERROR"
|
|
385
|
+
};
|
|
386
|
+
var DeleteUniqueIdStatus = {
|
|
387
|
+
ACCEPTED: "ACCEPTED",
|
|
388
|
+
COMPLETED: "COMPLETED"
|
|
389
|
+
};
|
|
390
|
+
var IdMappingType = {
|
|
391
|
+
PROVIDER: "PROVIDER"
|
|
392
|
+
};
|
|
393
|
+
var IdNamespaceType = {
|
|
394
|
+
SOURCE: "SOURCE",
|
|
395
|
+
TARGET: "TARGET"
|
|
396
|
+
};
|
|
397
|
+
var _ExceedsLimitException = class _ExceedsLimitException extends EntityResolutionServiceException {
|
|
398
|
+
/**
|
|
399
|
+
* @internal
|
|
400
|
+
*/
|
|
401
|
+
constructor(opts) {
|
|
402
|
+
super({
|
|
403
|
+
name: "ExceedsLimitException",
|
|
404
|
+
$fault: "client",
|
|
405
|
+
...opts
|
|
406
|
+
});
|
|
407
|
+
this.name = "ExceedsLimitException";
|
|
408
|
+
this.$fault = "client";
|
|
409
|
+
Object.setPrototypeOf(this, _ExceedsLimitException.prototype);
|
|
410
|
+
this.quotaName = opts.quotaName;
|
|
411
|
+
this.quotaValue = opts.quotaValue;
|
|
412
|
+
}
|
|
413
|
+
};
|
|
414
|
+
__name(_ExceedsLimitException, "ExceedsLimitException");
|
|
415
|
+
var ExceedsLimitException = _ExceedsLimitException;
|
|
368
416
|
var IncrementalRunType = {
|
|
369
417
|
IMMEDIATE: "IMMEDIATE"
|
|
370
418
|
};
|
|
@@ -401,23 +449,6 @@ var JobStatus = {
|
|
|
401
449
|
RUNNING: "RUNNING",
|
|
402
450
|
SUCCEEDED: "SUCCEEDED"
|
|
403
451
|
};
|
|
404
|
-
var _ResourceNotFoundException = class _ResourceNotFoundException extends EntityResolutionServiceException {
|
|
405
|
-
/**
|
|
406
|
-
* @internal
|
|
407
|
-
*/
|
|
408
|
-
constructor(opts) {
|
|
409
|
-
super({
|
|
410
|
-
name: "ResourceNotFoundException",
|
|
411
|
-
$fault: "client",
|
|
412
|
-
...opts
|
|
413
|
-
});
|
|
414
|
-
this.name = "ResourceNotFoundException";
|
|
415
|
-
this.$fault = "client";
|
|
416
|
-
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
417
|
-
}
|
|
418
|
-
};
|
|
419
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
420
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
421
452
|
var ProviderEndpointConfiguration;
|
|
422
453
|
((ProviderEndpointConfiguration2) => {
|
|
423
454
|
ProviderEndpointConfiguration2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -436,6 +467,41 @@ var GetMatchIdInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
436
467
|
}), "GetMatchIdInputFilterSensitiveLog");
|
|
437
468
|
|
|
438
469
|
// src/protocols/Aws_restJson1.ts
|
|
470
|
+
var se_AddPolicyStatementCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
471
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
472
|
+
const headers = {
|
|
473
|
+
"content-type": "application/json"
|
|
474
|
+
};
|
|
475
|
+
b.bp("/policies/{arn}/{statementId}");
|
|
476
|
+
b.p("arn", () => input.arn, "{arn}", false);
|
|
477
|
+
b.p("statementId", () => input.statementId, "{statementId}", false);
|
|
478
|
+
let body;
|
|
479
|
+
body = JSON.stringify(
|
|
480
|
+
(0, import_smithy_client.take)(input, {
|
|
481
|
+
action: (_) => (0, import_smithy_client._json)(_),
|
|
482
|
+
condition: [],
|
|
483
|
+
effect: [],
|
|
484
|
+
principal: (_) => (0, import_smithy_client._json)(_)
|
|
485
|
+
})
|
|
486
|
+
);
|
|
487
|
+
b.m("POST").h(headers).b(body);
|
|
488
|
+
return b.build();
|
|
489
|
+
}, "se_AddPolicyStatementCommand");
|
|
490
|
+
var se_BatchDeleteUniqueIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
491
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
492
|
+
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
493
|
+
[_i]: input[_iS],
|
|
494
|
+
[_u]: [
|
|
495
|
+
() => isSerializableHeaderValue(input[_uI]),
|
|
496
|
+
() => (input[_uI] || []).map((_entry) => _entry).join(", ")
|
|
497
|
+
]
|
|
498
|
+
});
|
|
499
|
+
b.bp("/matchingworkflows/{workflowName}/uniqueids");
|
|
500
|
+
b.p("workflowName", () => input.workflowName, "{workflowName}", false);
|
|
501
|
+
let body;
|
|
502
|
+
b.m("DELETE").h(headers).b(body);
|
|
503
|
+
return b.build();
|
|
504
|
+
}, "se_BatchDeleteUniqueIdCommand");
|
|
439
505
|
var se_CreateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
440
506
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
441
507
|
const headers = {
|
|
@@ -457,6 +523,27 @@ var se_CreateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
457
523
|
b.m("POST").h(headers).b(body);
|
|
458
524
|
return b.build();
|
|
459
525
|
}, "se_CreateIdMappingWorkflowCommand");
|
|
526
|
+
var se_CreateIdNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
527
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
528
|
+
const headers = {
|
|
529
|
+
"content-type": "application/json"
|
|
530
|
+
};
|
|
531
|
+
b.bp("/idnamespaces");
|
|
532
|
+
let body;
|
|
533
|
+
body = JSON.stringify(
|
|
534
|
+
(0, import_smithy_client.take)(input, {
|
|
535
|
+
description: [],
|
|
536
|
+
idMappingWorkflowProperties: (_) => se_IdNamespaceIdMappingWorkflowPropertiesList(_, context),
|
|
537
|
+
idNamespaceName: [],
|
|
538
|
+
inputSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
539
|
+
roleArn: [],
|
|
540
|
+
tags: (_) => (0, import_smithy_client._json)(_),
|
|
541
|
+
type: []
|
|
542
|
+
})
|
|
543
|
+
);
|
|
544
|
+
b.m("POST").h(headers).b(body);
|
|
545
|
+
return b.build();
|
|
546
|
+
}, "se_CreateIdNamespaceCommand");
|
|
460
547
|
var se_CreateMatchingWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
461
548
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
462
549
|
const headers = {
|
|
@@ -506,6 +593,15 @@ var se_DeleteIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
506
593
|
b.m("DELETE").h(headers).b(body);
|
|
507
594
|
return b.build();
|
|
508
595
|
}, "se_DeleteIdMappingWorkflowCommand");
|
|
596
|
+
var se_DeleteIdNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
597
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
598
|
+
const headers = {};
|
|
599
|
+
b.bp("/idnamespaces/{idNamespaceName}");
|
|
600
|
+
b.p("idNamespaceName", () => input.idNamespaceName, "{idNamespaceName}", false);
|
|
601
|
+
let body;
|
|
602
|
+
b.m("DELETE").h(headers).b(body);
|
|
603
|
+
return b.build();
|
|
604
|
+
}, "se_DeleteIdNamespaceCommand");
|
|
509
605
|
var se_DeleteMatchingWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
510
606
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
511
607
|
const headers = {};
|
|
@@ -515,6 +611,16 @@ var se_DeleteMatchingWorkflowCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
515
611
|
b.m("DELETE").h(headers).b(body);
|
|
516
612
|
return b.build();
|
|
517
613
|
}, "se_DeleteMatchingWorkflowCommand");
|
|
614
|
+
var se_DeletePolicyStatementCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
615
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
616
|
+
const headers = {};
|
|
617
|
+
b.bp("/policies/{arn}/{statementId}");
|
|
618
|
+
b.p("arn", () => input.arn, "{arn}", false);
|
|
619
|
+
b.p("statementId", () => input.statementId, "{statementId}", false);
|
|
620
|
+
let body;
|
|
621
|
+
b.m("DELETE").h(headers).b(body);
|
|
622
|
+
return b.build();
|
|
623
|
+
}, "se_DeletePolicyStatementCommand");
|
|
518
624
|
var se_DeleteSchemaMappingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
519
625
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
520
626
|
const headers = {};
|
|
@@ -543,6 +649,15 @@ var se_GetIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
543
649
|
b.m("GET").h(headers).b(body);
|
|
544
650
|
return b.build();
|
|
545
651
|
}, "se_GetIdMappingWorkflowCommand");
|
|
652
|
+
var se_GetIdNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
653
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
654
|
+
const headers = {};
|
|
655
|
+
b.bp("/idnamespaces/{idNamespaceName}");
|
|
656
|
+
b.p("idNamespaceName", () => input.idNamespaceName, "{idNamespaceName}", false);
|
|
657
|
+
let body;
|
|
658
|
+
b.m("GET").h(headers).b(body);
|
|
659
|
+
return b.build();
|
|
660
|
+
}, "se_GetIdNamespaceCommand");
|
|
546
661
|
var se_GetMatchIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
547
662
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
548
663
|
const headers = {
|
|
@@ -553,6 +668,7 @@ var se_GetMatchIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
553
668
|
let body;
|
|
554
669
|
body = JSON.stringify(
|
|
555
670
|
(0, import_smithy_client.take)(input, {
|
|
671
|
+
applyNormalization: [],
|
|
556
672
|
record: (_) => (0, import_smithy_client._json)(_)
|
|
557
673
|
})
|
|
558
674
|
);
|
|
@@ -578,6 +694,15 @@ var se_GetMatchingWorkflowCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
578
694
|
b.m("GET").h(headers).b(body);
|
|
579
695
|
return b.build();
|
|
580
696
|
}, "se_GetMatchingWorkflowCommand");
|
|
697
|
+
var se_GetPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
698
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
699
|
+
const headers = {};
|
|
700
|
+
b.bp("/policies/{arn}");
|
|
701
|
+
b.p("arn", () => input.arn, "{arn}", false);
|
|
702
|
+
let body;
|
|
703
|
+
b.m("GET").h(headers).b(body);
|
|
704
|
+
return b.build();
|
|
705
|
+
}, "se_GetPolicyCommand");
|
|
581
706
|
var se_GetProviderServiceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
582
707
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
583
708
|
const headers = {};
|
|
@@ -622,6 +747,18 @@ var se_ListIdMappingWorkflowsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
622
747
|
b.m("GET").h(headers).q(query).b(body);
|
|
623
748
|
return b.build();
|
|
624
749
|
}, "se_ListIdMappingWorkflowsCommand");
|
|
750
|
+
var se_ListIdNamespacesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
751
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
752
|
+
const headers = {};
|
|
753
|
+
b.bp("/idnamespaces");
|
|
754
|
+
const query = (0, import_smithy_client.map)({
|
|
755
|
+
[_nT]: [, input[_nT]],
|
|
756
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()]
|
|
757
|
+
});
|
|
758
|
+
let body;
|
|
759
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
760
|
+
return b.build();
|
|
761
|
+
}, "se_ListIdNamespacesCommand");
|
|
625
762
|
var se_ListMatchingJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
626
763
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
627
764
|
const headers = {};
|
|
@@ -681,12 +818,36 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
681
818
|
b.m("GET").h(headers).b(body);
|
|
682
819
|
return b.build();
|
|
683
820
|
}, "se_ListTagsForResourceCommand");
|
|
821
|
+
var se_PutPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
822
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
823
|
+
const headers = {
|
|
824
|
+
"content-type": "application/json"
|
|
825
|
+
};
|
|
826
|
+
b.bp("/policies/{arn}");
|
|
827
|
+
b.p("arn", () => input.arn, "{arn}", false);
|
|
828
|
+
let body;
|
|
829
|
+
body = JSON.stringify(
|
|
830
|
+
(0, import_smithy_client.take)(input, {
|
|
831
|
+
policy: [],
|
|
832
|
+
token: []
|
|
833
|
+
})
|
|
834
|
+
);
|
|
835
|
+
b.m("PUT").h(headers).b(body);
|
|
836
|
+
return b.build();
|
|
837
|
+
}, "se_PutPolicyCommand");
|
|
684
838
|
var se_StartIdMappingJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
685
839
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
686
|
-
const headers = {
|
|
840
|
+
const headers = {
|
|
841
|
+
"content-type": "application/json"
|
|
842
|
+
};
|
|
687
843
|
b.bp("/idmappingworkflows/{workflowName}/jobs");
|
|
688
844
|
b.p("workflowName", () => input.workflowName, "{workflowName}", false);
|
|
689
845
|
let body;
|
|
846
|
+
body = JSON.stringify(
|
|
847
|
+
(0, import_smithy_client.take)(input, {
|
|
848
|
+
outputSourceConfig: (_) => (0, import_smithy_client._json)(_)
|
|
849
|
+
})
|
|
850
|
+
);
|
|
690
851
|
b.m("POST").h(headers).b(body);
|
|
691
852
|
return b.build();
|
|
692
853
|
}, "se_StartIdMappingJobCommand");
|
|
@@ -750,6 +911,25 @@ var se_UpdateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
750
911
|
b.m("PUT").h(headers).b(body);
|
|
751
912
|
return b.build();
|
|
752
913
|
}, "se_UpdateIdMappingWorkflowCommand");
|
|
914
|
+
var se_UpdateIdNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
915
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
916
|
+
const headers = {
|
|
917
|
+
"content-type": "application/json"
|
|
918
|
+
};
|
|
919
|
+
b.bp("/idnamespaces/{idNamespaceName}");
|
|
920
|
+
b.p("idNamespaceName", () => input.idNamespaceName, "{idNamespaceName}", false);
|
|
921
|
+
let body;
|
|
922
|
+
body = JSON.stringify(
|
|
923
|
+
(0, import_smithy_client.take)(input, {
|
|
924
|
+
description: [],
|
|
925
|
+
idMappingWorkflowProperties: (_) => se_IdNamespaceIdMappingWorkflowPropertiesList(_, context),
|
|
926
|
+
inputSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
927
|
+
roleArn: []
|
|
928
|
+
})
|
|
929
|
+
);
|
|
930
|
+
b.m("PUT").h(headers).b(body);
|
|
931
|
+
return b.build();
|
|
932
|
+
}, "se_UpdateIdNamespaceCommand");
|
|
753
933
|
var se_UpdateMatchingWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
754
934
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
755
935
|
const headers = {
|
|
@@ -788,6 +968,39 @@ var se_UpdateSchemaMappingCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
788
968
|
b.m("PUT").h(headers).b(body);
|
|
789
969
|
return b.build();
|
|
790
970
|
}, "se_UpdateSchemaMappingCommand");
|
|
971
|
+
var de_AddPolicyStatementCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
972
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
973
|
+
return de_CommandError(output, context);
|
|
974
|
+
}
|
|
975
|
+
const contents = (0, import_smithy_client.map)({
|
|
976
|
+
$metadata: deserializeMetadata(output)
|
|
977
|
+
});
|
|
978
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
979
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
980
|
+
arn: import_smithy_client.expectString,
|
|
981
|
+
policy: import_smithy_client.expectString,
|
|
982
|
+
token: import_smithy_client.expectString
|
|
983
|
+
});
|
|
984
|
+
Object.assign(contents, doc);
|
|
985
|
+
return contents;
|
|
986
|
+
}, "de_AddPolicyStatementCommand");
|
|
987
|
+
var de_BatchDeleteUniqueIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
988
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
989
|
+
return de_CommandError(output, context);
|
|
990
|
+
}
|
|
991
|
+
const contents = (0, import_smithy_client.map)({
|
|
992
|
+
$metadata: deserializeMetadata(output)
|
|
993
|
+
});
|
|
994
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
995
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
996
|
+
deleted: import_smithy_client._json,
|
|
997
|
+
disconnectedUniqueIds: import_smithy_client._json,
|
|
998
|
+
errors: import_smithy_client._json,
|
|
999
|
+
status: import_smithy_client.expectString
|
|
1000
|
+
});
|
|
1001
|
+
Object.assign(contents, doc);
|
|
1002
|
+
return contents;
|
|
1003
|
+
}, "de_BatchDeleteUniqueIdCommand");
|
|
791
1004
|
var de_CreateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
792
1005
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
793
1006
|
return de_CommandError(output, context);
|
|
@@ -808,6 +1021,29 @@ var de_CreateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
808
1021
|
Object.assign(contents, doc);
|
|
809
1022
|
return contents;
|
|
810
1023
|
}, "de_CreateIdMappingWorkflowCommand");
|
|
1024
|
+
var de_CreateIdNamespaceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1025
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1026
|
+
return de_CommandError(output, context);
|
|
1027
|
+
}
|
|
1028
|
+
const contents = (0, import_smithy_client.map)({
|
|
1029
|
+
$metadata: deserializeMetadata(output)
|
|
1030
|
+
});
|
|
1031
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1032
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1033
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1034
|
+
description: import_smithy_client.expectString,
|
|
1035
|
+
idMappingWorkflowProperties: (_) => de_IdNamespaceIdMappingWorkflowPropertiesList(_, context),
|
|
1036
|
+
idNamespaceArn: import_smithy_client.expectString,
|
|
1037
|
+
idNamespaceName: import_smithy_client.expectString,
|
|
1038
|
+
inputSourceConfig: import_smithy_client._json,
|
|
1039
|
+
roleArn: import_smithy_client.expectString,
|
|
1040
|
+
tags: import_smithy_client._json,
|
|
1041
|
+
type: import_smithy_client.expectString,
|
|
1042
|
+
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1043
|
+
});
|
|
1044
|
+
Object.assign(contents, doc);
|
|
1045
|
+
return contents;
|
|
1046
|
+
}, "de_CreateIdNamespaceCommand");
|
|
811
1047
|
var de_CreateMatchingWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
812
1048
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
813
1049
|
return de_CommandError(output, context);
|
|
@@ -860,6 +1096,20 @@ var de_DeleteIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
860
1096
|
Object.assign(contents, doc);
|
|
861
1097
|
return contents;
|
|
862
1098
|
}, "de_DeleteIdMappingWorkflowCommand");
|
|
1099
|
+
var de_DeleteIdNamespaceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1100
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1101
|
+
return de_CommandError(output, context);
|
|
1102
|
+
}
|
|
1103
|
+
const contents = (0, import_smithy_client.map)({
|
|
1104
|
+
$metadata: deserializeMetadata(output)
|
|
1105
|
+
});
|
|
1106
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1107
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1108
|
+
message: import_smithy_client.expectString
|
|
1109
|
+
});
|
|
1110
|
+
Object.assign(contents, doc);
|
|
1111
|
+
return contents;
|
|
1112
|
+
}, "de_DeleteIdNamespaceCommand");
|
|
863
1113
|
var de_DeleteMatchingWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
864
1114
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
865
1115
|
return de_CommandError(output, context);
|
|
@@ -874,6 +1124,22 @@ var de_DeleteMatchingWorkflowCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
874
1124
|
Object.assign(contents, doc);
|
|
875
1125
|
return contents;
|
|
876
1126
|
}, "de_DeleteMatchingWorkflowCommand");
|
|
1127
|
+
var de_DeletePolicyStatementCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1128
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1129
|
+
return de_CommandError(output, context);
|
|
1130
|
+
}
|
|
1131
|
+
const contents = (0, import_smithy_client.map)({
|
|
1132
|
+
$metadata: deserializeMetadata(output)
|
|
1133
|
+
});
|
|
1134
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1135
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1136
|
+
arn: import_smithy_client.expectString,
|
|
1137
|
+
policy: import_smithy_client.expectString,
|
|
1138
|
+
token: import_smithy_client.expectString
|
|
1139
|
+
});
|
|
1140
|
+
Object.assign(contents, doc);
|
|
1141
|
+
return contents;
|
|
1142
|
+
}, "de_DeletePolicyStatementCommand");
|
|
877
1143
|
var de_DeleteSchemaMappingCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
878
1144
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
879
1145
|
return de_CommandError(output, context);
|
|
@@ -901,6 +1167,7 @@ var de_GetIdMappingJobCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
901
1167
|
errorDetails: import_smithy_client._json,
|
|
902
1168
|
jobId: import_smithy_client.expectString,
|
|
903
1169
|
metrics: import_smithy_client._json,
|
|
1170
|
+
outputSourceConfig: import_smithy_client._json,
|
|
904
1171
|
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
905
1172
|
status: import_smithy_client.expectString
|
|
906
1173
|
});
|
|
@@ -930,6 +1197,29 @@ var de_GetIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
930
1197
|
Object.assign(contents, doc);
|
|
931
1198
|
return contents;
|
|
932
1199
|
}, "de_GetIdMappingWorkflowCommand");
|
|
1200
|
+
var de_GetIdNamespaceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1201
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1202
|
+
return de_CommandError(output, context);
|
|
1203
|
+
}
|
|
1204
|
+
const contents = (0, import_smithy_client.map)({
|
|
1205
|
+
$metadata: deserializeMetadata(output)
|
|
1206
|
+
});
|
|
1207
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1208
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1209
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1210
|
+
description: import_smithy_client.expectString,
|
|
1211
|
+
idMappingWorkflowProperties: (_) => de_IdNamespaceIdMappingWorkflowPropertiesList(_, context),
|
|
1212
|
+
idNamespaceArn: import_smithy_client.expectString,
|
|
1213
|
+
idNamespaceName: import_smithy_client.expectString,
|
|
1214
|
+
inputSourceConfig: import_smithy_client._json,
|
|
1215
|
+
roleArn: import_smithy_client.expectString,
|
|
1216
|
+
tags: import_smithy_client._json,
|
|
1217
|
+
type: import_smithy_client.expectString,
|
|
1218
|
+
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1219
|
+
});
|
|
1220
|
+
Object.assign(contents, doc);
|
|
1221
|
+
return contents;
|
|
1222
|
+
}, "de_GetIdNamespaceCommand");
|
|
933
1223
|
var de_GetMatchIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
934
1224
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
935
1225
|
return de_CommandError(output, context);
|
|
@@ -939,7 +1229,8 @@ var de_GetMatchIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
939
1229
|
});
|
|
940
1230
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
941
1231
|
const doc = (0, import_smithy_client.take)(data, {
|
|
942
|
-
matchId: import_smithy_client.expectString
|
|
1232
|
+
matchId: import_smithy_client.expectString,
|
|
1233
|
+
matchRule: import_smithy_client.expectString
|
|
943
1234
|
});
|
|
944
1235
|
Object.assign(contents, doc);
|
|
945
1236
|
return contents;
|
|
@@ -957,6 +1248,7 @@ var de_GetMatchingJobCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
957
1248
|
errorDetails: import_smithy_client._json,
|
|
958
1249
|
jobId: import_smithy_client.expectString,
|
|
959
1250
|
metrics: import_smithy_client._json,
|
|
1251
|
+
outputSourceConfig: import_smithy_client._json,
|
|
960
1252
|
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
961
1253
|
status: import_smithy_client.expectString
|
|
962
1254
|
});
|
|
@@ -987,6 +1279,22 @@ var de_GetMatchingWorkflowCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
987
1279
|
Object.assign(contents, doc);
|
|
988
1280
|
return contents;
|
|
989
1281
|
}, "de_GetMatchingWorkflowCommand");
|
|
1282
|
+
var de_GetPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1283
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1284
|
+
return de_CommandError(output, context);
|
|
1285
|
+
}
|
|
1286
|
+
const contents = (0, import_smithy_client.map)({
|
|
1287
|
+
$metadata: deserializeMetadata(output)
|
|
1288
|
+
});
|
|
1289
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1290
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1291
|
+
arn: import_smithy_client.expectString,
|
|
1292
|
+
policy: import_smithy_client.expectString,
|
|
1293
|
+
token: import_smithy_client.expectString
|
|
1294
|
+
});
|
|
1295
|
+
Object.assign(contents, doc);
|
|
1296
|
+
return contents;
|
|
1297
|
+
}, "de_GetPolicyCommand");
|
|
990
1298
|
var de_GetProviderServiceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
991
1299
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
992
1300
|
return de_CommandError(output, context);
|
|
@@ -997,10 +1305,13 @@ var de_GetProviderServiceCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
997
1305
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
998
1306
|
const doc = (0, import_smithy_client.take)(data, {
|
|
999
1307
|
anonymizedOutput: import_smithy_client.expectBoolean,
|
|
1308
|
+
providerComponentSchema: import_smithy_client._json,
|
|
1000
1309
|
providerConfigurationDefinition: (_) => de_Document(_, context),
|
|
1001
1310
|
providerEndpointConfiguration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
1002
1311
|
providerEntityOutputDefinition: (_) => de_Document(_, context),
|
|
1312
|
+
providerIdNameSpaceConfiguration: (_) => de_ProviderIdNameSpaceConfiguration(_, context),
|
|
1003
1313
|
providerIntermediateDataAccessConfiguration: import_smithy_client._json,
|
|
1314
|
+
providerJobConfiguration: (_) => de_Document(_, context),
|
|
1004
1315
|
providerName: import_smithy_client.expectString,
|
|
1005
1316
|
providerServiceArn: import_smithy_client.expectString,
|
|
1006
1317
|
providerServiceDisplayName: import_smithy_client.expectString,
|
|
@@ -1061,6 +1372,21 @@ var de_ListIdMappingWorkflowsCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
1061
1372
|
Object.assign(contents, doc);
|
|
1062
1373
|
return contents;
|
|
1063
1374
|
}, "de_ListIdMappingWorkflowsCommand");
|
|
1375
|
+
var de_ListIdNamespacesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1376
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1377
|
+
return de_CommandError(output, context);
|
|
1378
|
+
}
|
|
1379
|
+
const contents = (0, import_smithy_client.map)({
|
|
1380
|
+
$metadata: deserializeMetadata(output)
|
|
1381
|
+
});
|
|
1382
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1383
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1384
|
+
idNamespaceSummaries: (_) => de_IdNamespaceList(_, context),
|
|
1385
|
+
nextToken: import_smithy_client.expectString
|
|
1386
|
+
});
|
|
1387
|
+
Object.assign(contents, doc);
|
|
1388
|
+
return contents;
|
|
1389
|
+
}, "de_ListIdNamespacesCommand");
|
|
1064
1390
|
var de_ListMatchingJobsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1065
1391
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1066
1392
|
return de_CommandError(output, context);
|
|
@@ -1135,6 +1461,22 @@ var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
1135
1461
|
Object.assign(contents, doc);
|
|
1136
1462
|
return contents;
|
|
1137
1463
|
}, "de_ListTagsForResourceCommand");
|
|
1464
|
+
var de_PutPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1465
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1466
|
+
return de_CommandError(output, context);
|
|
1467
|
+
}
|
|
1468
|
+
const contents = (0, import_smithy_client.map)({
|
|
1469
|
+
$metadata: deserializeMetadata(output)
|
|
1470
|
+
});
|
|
1471
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1472
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1473
|
+
arn: import_smithy_client.expectString,
|
|
1474
|
+
policy: import_smithy_client.expectString,
|
|
1475
|
+
token: import_smithy_client.expectString
|
|
1476
|
+
});
|
|
1477
|
+
Object.assign(contents, doc);
|
|
1478
|
+
return contents;
|
|
1479
|
+
}, "de_PutPolicyCommand");
|
|
1138
1480
|
var de_StartIdMappingJobCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1139
1481
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1140
1482
|
return de_CommandError(output, context);
|
|
@@ -1144,7 +1486,8 @@ var de_StartIdMappingJobCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1144
1486
|
});
|
|
1145
1487
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1146
1488
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1147
|
-
jobId: import_smithy_client.expectString
|
|
1489
|
+
jobId: import_smithy_client.expectString,
|
|
1490
|
+
outputSourceConfig: import_smithy_client._json
|
|
1148
1491
|
});
|
|
1149
1492
|
Object.assign(contents, doc);
|
|
1150
1493
|
return contents;
|
|
@@ -1203,6 +1546,28 @@ var de_UpdateIdMappingWorkflowCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
1203
1546
|
Object.assign(contents, doc);
|
|
1204
1547
|
return contents;
|
|
1205
1548
|
}, "de_UpdateIdMappingWorkflowCommand");
|
|
1549
|
+
var de_UpdateIdNamespaceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1550
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1551
|
+
return de_CommandError(output, context);
|
|
1552
|
+
}
|
|
1553
|
+
const contents = (0, import_smithy_client.map)({
|
|
1554
|
+
$metadata: deserializeMetadata(output)
|
|
1555
|
+
});
|
|
1556
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1557
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
1558
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1559
|
+
description: import_smithy_client.expectString,
|
|
1560
|
+
idMappingWorkflowProperties: (_) => de_IdNamespaceIdMappingWorkflowPropertiesList(_, context),
|
|
1561
|
+
idNamespaceArn: import_smithy_client.expectString,
|
|
1562
|
+
idNamespaceName: import_smithy_client.expectString,
|
|
1563
|
+
inputSourceConfig: import_smithy_client._json,
|
|
1564
|
+
roleArn: import_smithy_client.expectString,
|
|
1565
|
+
type: import_smithy_client.expectString,
|
|
1566
|
+
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1567
|
+
});
|
|
1568
|
+
Object.assign(contents, doc);
|
|
1569
|
+
return contents;
|
|
1570
|
+
}, "de_UpdateIdNamespaceCommand");
|
|
1206
1571
|
var de_UpdateMatchingWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1207
1572
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1208
1573
|
return de_CommandError(output, context);
|
|
@@ -1253,21 +1618,21 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1253
1618
|
case "ConflictException":
|
|
1254
1619
|
case "com.amazonaws.entityresolution#ConflictException":
|
|
1255
1620
|
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
1256
|
-
case "ExceedsLimitException":
|
|
1257
|
-
case "com.amazonaws.entityresolution#ExceedsLimitException":
|
|
1258
|
-
throw await de_ExceedsLimitExceptionRes(parsedOutput, context);
|
|
1259
1621
|
case "InternalServerException":
|
|
1260
1622
|
case "com.amazonaws.entityresolution#InternalServerException":
|
|
1261
1623
|
throw await de_InternalServerExceptionRes(parsedOutput, context);
|
|
1624
|
+
case "ResourceNotFoundException":
|
|
1625
|
+
case "com.amazonaws.entityresolution#ResourceNotFoundException":
|
|
1626
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1262
1627
|
case "ThrottlingException":
|
|
1263
1628
|
case "com.amazonaws.entityresolution#ThrottlingException":
|
|
1264
1629
|
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
1265
1630
|
case "ValidationException":
|
|
1266
1631
|
case "com.amazonaws.entityresolution#ValidationException":
|
|
1267
1632
|
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
1268
|
-
case "
|
|
1269
|
-
case "com.amazonaws.entityresolution#
|
|
1270
|
-
throw await
|
|
1633
|
+
case "ExceedsLimitException":
|
|
1634
|
+
case "com.amazonaws.entityresolution#ExceedsLimitException":
|
|
1635
|
+
throw await de_ExceedsLimitExceptionRes(parsedOutput, context);
|
|
1271
1636
|
default:
|
|
1272
1637
|
const parsedBody = parsedOutput.body;
|
|
1273
1638
|
return throwDefaultError({
|
|
@@ -1377,6 +1742,23 @@ var se_IdMappingTechniques = /* @__PURE__ */ __name((input, context) => {
|
|
|
1377
1742
|
providerProperties: (_) => se_ProviderProperties(_, context)
|
|
1378
1743
|
});
|
|
1379
1744
|
}, "se_IdMappingTechniques");
|
|
1745
|
+
var se_IdNamespaceIdMappingWorkflowProperties = /* @__PURE__ */ __name((input, context) => {
|
|
1746
|
+
return (0, import_smithy_client.take)(input, {
|
|
1747
|
+
idMappingType: [],
|
|
1748
|
+
providerProperties: (_) => se_NamespaceProviderProperties(_, context)
|
|
1749
|
+
});
|
|
1750
|
+
}, "se_IdNamespaceIdMappingWorkflowProperties");
|
|
1751
|
+
var se_IdNamespaceIdMappingWorkflowPropertiesList = /* @__PURE__ */ __name((input, context) => {
|
|
1752
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
1753
|
+
return se_IdNamespaceIdMappingWorkflowProperties(entry, context);
|
|
1754
|
+
});
|
|
1755
|
+
}, "se_IdNamespaceIdMappingWorkflowPropertiesList");
|
|
1756
|
+
var se_NamespaceProviderProperties = /* @__PURE__ */ __name((input, context) => {
|
|
1757
|
+
return (0, import_smithy_client.take)(input, {
|
|
1758
|
+
providerConfiguration: (_) => se_Document(_, context),
|
|
1759
|
+
providerServiceArn: []
|
|
1760
|
+
});
|
|
1761
|
+
}, "se_NamespaceProviderProperties");
|
|
1380
1762
|
var se_ProviderProperties = /* @__PURE__ */ __name((input, context) => {
|
|
1381
1763
|
return (0, import_smithy_client.take)(input, {
|
|
1382
1764
|
intermediateSourceConfiguration: import_smithy_client._json,
|
|
@@ -1414,6 +1796,34 @@ var de_IdMappingWorkflowSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
1414
1796
|
workflowName: import_smithy_client.expectString
|
|
1415
1797
|
});
|
|
1416
1798
|
}, "de_IdMappingWorkflowSummary");
|
|
1799
|
+
var de_IdNamespaceIdMappingWorkflowProperties = /* @__PURE__ */ __name((output, context) => {
|
|
1800
|
+
return (0, import_smithy_client.take)(output, {
|
|
1801
|
+
idMappingType: import_smithy_client.expectString,
|
|
1802
|
+
providerProperties: (_) => de_NamespaceProviderProperties(_, context)
|
|
1803
|
+
});
|
|
1804
|
+
}, "de_IdNamespaceIdMappingWorkflowProperties");
|
|
1805
|
+
var de_IdNamespaceIdMappingWorkflowPropertiesList = /* @__PURE__ */ __name((output, context) => {
|
|
1806
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1807
|
+
return de_IdNamespaceIdMappingWorkflowProperties(entry, context);
|
|
1808
|
+
});
|
|
1809
|
+
return retVal;
|
|
1810
|
+
}, "de_IdNamespaceIdMappingWorkflowPropertiesList");
|
|
1811
|
+
var de_IdNamespaceList = /* @__PURE__ */ __name((output, context) => {
|
|
1812
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1813
|
+
return de_IdNamespaceSummary(entry, context);
|
|
1814
|
+
});
|
|
1815
|
+
return retVal;
|
|
1816
|
+
}, "de_IdNamespaceList");
|
|
1817
|
+
var de_IdNamespaceSummary = /* @__PURE__ */ __name((output, context) => {
|
|
1818
|
+
return (0, import_smithy_client.take)(output, {
|
|
1819
|
+
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1820
|
+
description: import_smithy_client.expectString,
|
|
1821
|
+
idNamespaceArn: import_smithy_client.expectString,
|
|
1822
|
+
idNamespaceName: import_smithy_client.expectString,
|
|
1823
|
+
type: import_smithy_client.expectString,
|
|
1824
|
+
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1825
|
+
});
|
|
1826
|
+
}, "de_IdNamespaceSummary");
|
|
1417
1827
|
var de_JobList = /* @__PURE__ */ __name((output, context) => {
|
|
1418
1828
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1419
1829
|
return de_JobSummary(entry, context);
|
|
@@ -1443,6 +1853,19 @@ var de_MatchingWorkflowSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
1443
1853
|
workflowName: import_smithy_client.expectString
|
|
1444
1854
|
});
|
|
1445
1855
|
}, "de_MatchingWorkflowSummary");
|
|
1856
|
+
var de_NamespaceProviderProperties = /* @__PURE__ */ __name((output, context) => {
|
|
1857
|
+
return (0, import_smithy_client.take)(output, {
|
|
1858
|
+
providerConfiguration: (_) => de_Document(_, context),
|
|
1859
|
+
providerServiceArn: import_smithy_client.expectString
|
|
1860
|
+
});
|
|
1861
|
+
}, "de_NamespaceProviderProperties");
|
|
1862
|
+
var de_ProviderIdNameSpaceConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
1863
|
+
return (0, import_smithy_client.take)(output, {
|
|
1864
|
+
description: import_smithy_client.expectString,
|
|
1865
|
+
providerSourceConfigurationDefinition: (_) => de_Document(_, context),
|
|
1866
|
+
providerTargetConfigurationDefinition: (_) => de_Document(_, context)
|
|
1867
|
+
});
|
|
1868
|
+
}, "de_ProviderIdNameSpaceConfiguration");
|
|
1446
1869
|
var de_ProviderProperties = /* @__PURE__ */ __name((output, context) => {
|
|
1447
1870
|
return (0, import_smithy_client.take)(output, {
|
|
1448
1871
|
intermediateSourceConfiguration: import_smithy_client._json,
|
|
@@ -1481,12 +1904,51 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1481
1904
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1482
1905
|
cfId: output.headers["x-amz-cf-id"]
|
|
1483
1906
|
}), "deserializeMetadata");
|
|
1907
|
+
var isSerializableHeaderValue = /* @__PURE__ */ __name((value) => value !== void 0 && value !== null && value !== "" && (!Object.getOwnPropertyNames(value).includes("length") || value.length != 0) && (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0), "isSerializableHeaderValue");
|
|
1908
|
+
var _i = "inputsource";
|
|
1909
|
+
var _iS = "inputSource";
|
|
1484
1910
|
var _mR = "maxResults";
|
|
1485
1911
|
var _nT = "nextToken";
|
|
1486
1912
|
var _pN = "providerName";
|
|
1487
1913
|
var _tK = "tagKeys";
|
|
1914
|
+
var _u = "uniqueids";
|
|
1915
|
+
var _uI = "uniqueIds";
|
|
1916
|
+
|
|
1917
|
+
// src/commands/AddPolicyStatementCommand.ts
|
|
1918
|
+
var _AddPolicyStatementCommand = class _AddPolicyStatementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1919
|
+
...commonParams
|
|
1920
|
+
}).m(function(Command, cs, config, o) {
|
|
1921
|
+
return [
|
|
1922
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1923
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1924
|
+
];
|
|
1925
|
+
}).s("AWSVeniceService", "AddPolicyStatement", {}).n("EntityResolutionClient", "AddPolicyStatementCommand").f(void 0, void 0).ser(se_AddPolicyStatementCommand).de(de_AddPolicyStatementCommand).build() {
|
|
1926
|
+
};
|
|
1927
|
+
__name(_AddPolicyStatementCommand, "AddPolicyStatementCommand");
|
|
1928
|
+
var AddPolicyStatementCommand = _AddPolicyStatementCommand;
|
|
1929
|
+
|
|
1930
|
+
// src/commands/BatchDeleteUniqueIdCommand.ts
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
var _BatchDeleteUniqueIdCommand = class _BatchDeleteUniqueIdCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1936
|
+
...commonParams
|
|
1937
|
+
}).m(function(Command, cs, config, o) {
|
|
1938
|
+
return [
|
|
1939
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1940
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1941
|
+
];
|
|
1942
|
+
}).s("AWSVeniceService", "BatchDeleteUniqueId", {}).n("EntityResolutionClient", "BatchDeleteUniqueIdCommand").f(void 0, void 0).ser(se_BatchDeleteUniqueIdCommand).de(de_BatchDeleteUniqueIdCommand).build() {
|
|
1943
|
+
};
|
|
1944
|
+
__name(_BatchDeleteUniqueIdCommand, "BatchDeleteUniqueIdCommand");
|
|
1945
|
+
var BatchDeleteUniqueIdCommand = _BatchDeleteUniqueIdCommand;
|
|
1488
1946
|
|
|
1489
1947
|
// src/commands/CreateIdMappingWorkflowCommand.ts
|
|
1948
|
+
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
|
|
1490
1952
|
var _CreateIdMappingWorkflowCommand = class _CreateIdMappingWorkflowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1491
1953
|
...commonParams
|
|
1492
1954
|
}).m(function(Command, cs, config, o) {
|
|
@@ -1499,6 +1961,23 @@ var _CreateIdMappingWorkflowCommand = class _CreateIdMappingWorkflowCommand exte
|
|
|
1499
1961
|
__name(_CreateIdMappingWorkflowCommand, "CreateIdMappingWorkflowCommand");
|
|
1500
1962
|
var CreateIdMappingWorkflowCommand = _CreateIdMappingWorkflowCommand;
|
|
1501
1963
|
|
|
1964
|
+
// src/commands/CreateIdNamespaceCommand.ts
|
|
1965
|
+
|
|
1966
|
+
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
var _CreateIdNamespaceCommand = class _CreateIdNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1970
|
+
...commonParams
|
|
1971
|
+
}).m(function(Command, cs, config, o) {
|
|
1972
|
+
return [
|
|
1973
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1974
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1975
|
+
];
|
|
1976
|
+
}).s("AWSVeniceService", "CreateIdNamespace", {}).n("EntityResolutionClient", "CreateIdNamespaceCommand").f(void 0, void 0).ser(se_CreateIdNamespaceCommand).de(de_CreateIdNamespaceCommand).build() {
|
|
1977
|
+
};
|
|
1978
|
+
__name(_CreateIdNamespaceCommand, "CreateIdNamespaceCommand");
|
|
1979
|
+
var CreateIdNamespaceCommand = _CreateIdNamespaceCommand;
|
|
1980
|
+
|
|
1502
1981
|
// src/commands/CreateMatchingWorkflowCommand.ts
|
|
1503
1982
|
|
|
1504
1983
|
|
|
@@ -1550,6 +2029,23 @@ var _DeleteIdMappingWorkflowCommand = class _DeleteIdMappingWorkflowCommand exte
|
|
|
1550
2029
|
__name(_DeleteIdMappingWorkflowCommand, "DeleteIdMappingWorkflowCommand");
|
|
1551
2030
|
var DeleteIdMappingWorkflowCommand = _DeleteIdMappingWorkflowCommand;
|
|
1552
2031
|
|
|
2032
|
+
// src/commands/DeleteIdNamespaceCommand.ts
|
|
2033
|
+
|
|
2034
|
+
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
var _DeleteIdNamespaceCommand = class _DeleteIdNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2038
|
+
...commonParams
|
|
2039
|
+
}).m(function(Command, cs, config, o) {
|
|
2040
|
+
return [
|
|
2041
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2042
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2043
|
+
];
|
|
2044
|
+
}).s("AWSVeniceService", "DeleteIdNamespace", {}).n("EntityResolutionClient", "DeleteIdNamespaceCommand").f(void 0, void 0).ser(se_DeleteIdNamespaceCommand).de(de_DeleteIdNamespaceCommand).build() {
|
|
2045
|
+
};
|
|
2046
|
+
__name(_DeleteIdNamespaceCommand, "DeleteIdNamespaceCommand");
|
|
2047
|
+
var DeleteIdNamespaceCommand = _DeleteIdNamespaceCommand;
|
|
2048
|
+
|
|
1553
2049
|
// src/commands/DeleteMatchingWorkflowCommand.ts
|
|
1554
2050
|
|
|
1555
2051
|
|
|
@@ -1567,6 +2063,23 @@ var _DeleteMatchingWorkflowCommand = class _DeleteMatchingWorkflowCommand extend
|
|
|
1567
2063
|
__name(_DeleteMatchingWorkflowCommand, "DeleteMatchingWorkflowCommand");
|
|
1568
2064
|
var DeleteMatchingWorkflowCommand = _DeleteMatchingWorkflowCommand;
|
|
1569
2065
|
|
|
2066
|
+
// src/commands/DeletePolicyStatementCommand.ts
|
|
2067
|
+
|
|
2068
|
+
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
var _DeletePolicyStatementCommand = class _DeletePolicyStatementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2072
|
+
...commonParams
|
|
2073
|
+
}).m(function(Command, cs, config, o) {
|
|
2074
|
+
return [
|
|
2075
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2076
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2077
|
+
];
|
|
2078
|
+
}).s("AWSVeniceService", "DeletePolicyStatement", {}).n("EntityResolutionClient", "DeletePolicyStatementCommand").f(void 0, void 0).ser(se_DeletePolicyStatementCommand).de(de_DeletePolicyStatementCommand).build() {
|
|
2079
|
+
};
|
|
2080
|
+
__name(_DeletePolicyStatementCommand, "DeletePolicyStatementCommand");
|
|
2081
|
+
var DeletePolicyStatementCommand = _DeletePolicyStatementCommand;
|
|
2082
|
+
|
|
1570
2083
|
// src/commands/DeleteSchemaMappingCommand.ts
|
|
1571
2084
|
|
|
1572
2085
|
|
|
@@ -1618,6 +2131,23 @@ var _GetIdMappingWorkflowCommand = class _GetIdMappingWorkflowCommand extends im
|
|
|
1618
2131
|
__name(_GetIdMappingWorkflowCommand, "GetIdMappingWorkflowCommand");
|
|
1619
2132
|
var GetIdMappingWorkflowCommand = _GetIdMappingWorkflowCommand;
|
|
1620
2133
|
|
|
2134
|
+
// src/commands/GetIdNamespaceCommand.ts
|
|
2135
|
+
|
|
2136
|
+
|
|
2137
|
+
|
|
2138
|
+
|
|
2139
|
+
var _GetIdNamespaceCommand = class _GetIdNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2140
|
+
...commonParams
|
|
2141
|
+
}).m(function(Command, cs, config, o) {
|
|
2142
|
+
return [
|
|
2143
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2144
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2145
|
+
];
|
|
2146
|
+
}).s("AWSVeniceService", "GetIdNamespace", {}).n("EntityResolutionClient", "GetIdNamespaceCommand").f(void 0, void 0).ser(se_GetIdNamespaceCommand).de(de_GetIdNamespaceCommand).build() {
|
|
2147
|
+
};
|
|
2148
|
+
__name(_GetIdNamespaceCommand, "GetIdNamespaceCommand");
|
|
2149
|
+
var GetIdNamespaceCommand = _GetIdNamespaceCommand;
|
|
2150
|
+
|
|
1621
2151
|
// src/commands/GetMatchIdCommand.ts
|
|
1622
2152
|
|
|
1623
2153
|
|
|
@@ -1669,6 +2199,23 @@ var _GetMatchingWorkflowCommand = class _GetMatchingWorkflowCommand extends impo
|
|
|
1669
2199
|
__name(_GetMatchingWorkflowCommand, "GetMatchingWorkflowCommand");
|
|
1670
2200
|
var GetMatchingWorkflowCommand = _GetMatchingWorkflowCommand;
|
|
1671
2201
|
|
|
2202
|
+
// src/commands/GetPolicyCommand.ts
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
|
|
2206
|
+
|
|
2207
|
+
var _GetPolicyCommand = class _GetPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2208
|
+
...commonParams
|
|
2209
|
+
}).m(function(Command, cs, config, o) {
|
|
2210
|
+
return [
|
|
2211
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2212
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2213
|
+
];
|
|
2214
|
+
}).s("AWSVeniceService", "GetPolicy", {}).n("EntityResolutionClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
2215
|
+
};
|
|
2216
|
+
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
2217
|
+
var GetPolicyCommand = _GetPolicyCommand;
|
|
2218
|
+
|
|
1672
2219
|
// src/commands/GetProviderServiceCommand.ts
|
|
1673
2220
|
|
|
1674
2221
|
|
|
@@ -1737,6 +2284,23 @@ var _ListIdMappingWorkflowsCommand = class _ListIdMappingWorkflowsCommand extend
|
|
|
1737
2284
|
__name(_ListIdMappingWorkflowsCommand, "ListIdMappingWorkflowsCommand");
|
|
1738
2285
|
var ListIdMappingWorkflowsCommand = _ListIdMappingWorkflowsCommand;
|
|
1739
2286
|
|
|
2287
|
+
// src/commands/ListIdNamespacesCommand.ts
|
|
2288
|
+
|
|
2289
|
+
|
|
2290
|
+
|
|
2291
|
+
|
|
2292
|
+
var _ListIdNamespacesCommand = class _ListIdNamespacesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2293
|
+
...commonParams
|
|
2294
|
+
}).m(function(Command, cs, config, o) {
|
|
2295
|
+
return [
|
|
2296
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2297
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2298
|
+
];
|
|
2299
|
+
}).s("AWSVeniceService", "ListIdNamespaces", {}).n("EntityResolutionClient", "ListIdNamespacesCommand").f(void 0, void 0).ser(se_ListIdNamespacesCommand).de(de_ListIdNamespacesCommand).build() {
|
|
2300
|
+
};
|
|
2301
|
+
__name(_ListIdNamespacesCommand, "ListIdNamespacesCommand");
|
|
2302
|
+
var ListIdNamespacesCommand = _ListIdNamespacesCommand;
|
|
2303
|
+
|
|
1740
2304
|
// src/commands/ListMatchingJobsCommand.ts
|
|
1741
2305
|
|
|
1742
2306
|
|
|
@@ -1822,6 +2386,23 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
1822
2386
|
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1823
2387
|
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1824
2388
|
|
|
2389
|
+
// src/commands/PutPolicyCommand.ts
|
|
2390
|
+
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
|
|
2394
|
+
var _PutPolicyCommand = class _PutPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2395
|
+
...commonParams
|
|
2396
|
+
}).m(function(Command, cs, config, o) {
|
|
2397
|
+
return [
|
|
2398
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2399
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2400
|
+
];
|
|
2401
|
+
}).s("AWSVeniceService", "PutPolicy", {}).n("EntityResolutionClient", "PutPolicyCommand").f(void 0, void 0).ser(se_PutPolicyCommand).de(de_PutPolicyCommand).build() {
|
|
2402
|
+
};
|
|
2403
|
+
__name(_PutPolicyCommand, "PutPolicyCommand");
|
|
2404
|
+
var PutPolicyCommand = _PutPolicyCommand;
|
|
2405
|
+
|
|
1825
2406
|
// src/commands/StartIdMappingJobCommand.ts
|
|
1826
2407
|
|
|
1827
2408
|
|
|
@@ -1907,6 +2488,23 @@ var _UpdateIdMappingWorkflowCommand = class _UpdateIdMappingWorkflowCommand exte
|
|
|
1907
2488
|
__name(_UpdateIdMappingWorkflowCommand, "UpdateIdMappingWorkflowCommand");
|
|
1908
2489
|
var UpdateIdMappingWorkflowCommand = _UpdateIdMappingWorkflowCommand;
|
|
1909
2490
|
|
|
2491
|
+
// src/commands/UpdateIdNamespaceCommand.ts
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
var _UpdateIdNamespaceCommand = class _UpdateIdNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2497
|
+
...commonParams
|
|
2498
|
+
}).m(function(Command, cs, config, o) {
|
|
2499
|
+
return [
|
|
2500
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2501
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2502
|
+
];
|
|
2503
|
+
}).s("AWSVeniceService", "UpdateIdNamespace", {}).n("EntityResolutionClient", "UpdateIdNamespaceCommand").f(void 0, void 0).ser(se_UpdateIdNamespaceCommand).de(de_UpdateIdNamespaceCommand).build() {
|
|
2504
|
+
};
|
|
2505
|
+
__name(_UpdateIdNamespaceCommand, "UpdateIdNamespaceCommand");
|
|
2506
|
+
var UpdateIdNamespaceCommand = _UpdateIdNamespaceCommand;
|
|
2507
|
+
|
|
1910
2508
|
// src/commands/UpdateMatchingWorkflowCommand.ts
|
|
1911
2509
|
|
|
1912
2510
|
|
|
@@ -1943,31 +2541,41 @@ var UpdateSchemaMappingCommand = _UpdateSchemaMappingCommand;
|
|
|
1943
2541
|
|
|
1944
2542
|
// src/EntityResolution.ts
|
|
1945
2543
|
var commands = {
|
|
2544
|
+
AddPolicyStatementCommand,
|
|
2545
|
+
BatchDeleteUniqueIdCommand,
|
|
1946
2546
|
CreateIdMappingWorkflowCommand,
|
|
2547
|
+
CreateIdNamespaceCommand,
|
|
1947
2548
|
CreateMatchingWorkflowCommand,
|
|
1948
2549
|
CreateSchemaMappingCommand,
|
|
1949
2550
|
DeleteIdMappingWorkflowCommand,
|
|
2551
|
+
DeleteIdNamespaceCommand,
|
|
1950
2552
|
DeleteMatchingWorkflowCommand,
|
|
2553
|
+
DeletePolicyStatementCommand,
|
|
1951
2554
|
DeleteSchemaMappingCommand,
|
|
1952
2555
|
GetIdMappingJobCommand,
|
|
1953
2556
|
GetIdMappingWorkflowCommand,
|
|
2557
|
+
GetIdNamespaceCommand,
|
|
1954
2558
|
GetMatchIdCommand,
|
|
1955
2559
|
GetMatchingJobCommand,
|
|
1956
2560
|
GetMatchingWorkflowCommand,
|
|
2561
|
+
GetPolicyCommand,
|
|
1957
2562
|
GetProviderServiceCommand,
|
|
1958
2563
|
GetSchemaMappingCommand,
|
|
1959
2564
|
ListIdMappingJobsCommand,
|
|
1960
2565
|
ListIdMappingWorkflowsCommand,
|
|
2566
|
+
ListIdNamespacesCommand,
|
|
1961
2567
|
ListMatchingJobsCommand,
|
|
1962
2568
|
ListMatchingWorkflowsCommand,
|
|
1963
2569
|
ListProviderServicesCommand,
|
|
1964
2570
|
ListSchemaMappingsCommand,
|
|
1965
2571
|
ListTagsForResourceCommand,
|
|
2572
|
+
PutPolicyCommand,
|
|
1966
2573
|
StartIdMappingJobCommand,
|
|
1967
2574
|
StartMatchingJobCommand,
|
|
1968
2575
|
TagResourceCommand,
|
|
1969
2576
|
UntagResourceCommand,
|
|
1970
2577
|
UpdateIdMappingWorkflowCommand,
|
|
2578
|
+
UpdateIdNamespaceCommand,
|
|
1971
2579
|
UpdateMatchingWorkflowCommand,
|
|
1972
2580
|
UpdateSchemaMappingCommand
|
|
1973
2581
|
};
|
|
@@ -1985,6 +2593,10 @@ var paginateListIdMappingJobs = (0, import_core.createPaginator)(EntityResolutio
|
|
|
1985
2593
|
|
|
1986
2594
|
var paginateListIdMappingWorkflows = (0, import_core.createPaginator)(EntityResolutionClient, ListIdMappingWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
1987
2595
|
|
|
2596
|
+
// src/pagination/ListIdNamespacesPaginator.ts
|
|
2597
|
+
|
|
2598
|
+
var paginateListIdNamespaces = (0, import_core.createPaginator)(EntityResolutionClient, ListIdNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
2599
|
+
|
|
1988
2600
|
// src/pagination/ListMatchingJobsPaginator.ts
|
|
1989
2601
|
|
|
1990
2602
|
var paginateListMatchingJobs = (0, import_core.createPaginator)(EntityResolutionClient, ListMatchingJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -2008,52 +2620,67 @@ var paginateListSchemaMappings = (0, import_core.createPaginator)(EntityResoluti
|
|
|
2008
2620
|
EntityResolutionClient,
|
|
2009
2621
|
EntityResolution,
|
|
2010
2622
|
$Command,
|
|
2623
|
+
AddPolicyStatementCommand,
|
|
2624
|
+
BatchDeleteUniqueIdCommand,
|
|
2011
2625
|
CreateIdMappingWorkflowCommand,
|
|
2626
|
+
CreateIdNamespaceCommand,
|
|
2012
2627
|
CreateMatchingWorkflowCommand,
|
|
2013
2628
|
CreateSchemaMappingCommand,
|
|
2014
2629
|
DeleteIdMappingWorkflowCommand,
|
|
2630
|
+
DeleteIdNamespaceCommand,
|
|
2015
2631
|
DeleteMatchingWorkflowCommand,
|
|
2632
|
+
DeletePolicyStatementCommand,
|
|
2016
2633
|
DeleteSchemaMappingCommand,
|
|
2017
2634
|
GetIdMappingJobCommand,
|
|
2018
2635
|
GetIdMappingWorkflowCommand,
|
|
2636
|
+
GetIdNamespaceCommand,
|
|
2019
2637
|
GetMatchIdCommand,
|
|
2020
2638
|
GetMatchingJobCommand,
|
|
2021
2639
|
GetMatchingWorkflowCommand,
|
|
2640
|
+
GetPolicyCommand,
|
|
2022
2641
|
GetProviderServiceCommand,
|
|
2023
2642
|
GetSchemaMappingCommand,
|
|
2024
2643
|
ListIdMappingJobsCommand,
|
|
2025
2644
|
ListIdMappingWorkflowsCommand,
|
|
2645
|
+
ListIdNamespacesCommand,
|
|
2026
2646
|
ListMatchingJobsCommand,
|
|
2027
2647
|
ListMatchingWorkflowsCommand,
|
|
2028
2648
|
ListProviderServicesCommand,
|
|
2029
2649
|
ListSchemaMappingsCommand,
|
|
2030
2650
|
ListTagsForResourceCommand,
|
|
2651
|
+
PutPolicyCommand,
|
|
2031
2652
|
StartIdMappingJobCommand,
|
|
2032
2653
|
StartMatchingJobCommand,
|
|
2033
2654
|
TagResourceCommand,
|
|
2034
2655
|
UntagResourceCommand,
|
|
2035
2656
|
UpdateIdMappingWorkflowCommand,
|
|
2657
|
+
UpdateIdNamespaceCommand,
|
|
2036
2658
|
UpdateMatchingWorkflowCommand,
|
|
2037
2659
|
UpdateSchemaMappingCommand,
|
|
2038
2660
|
paginateListIdMappingJobs,
|
|
2039
2661
|
paginateListIdMappingWorkflows,
|
|
2662
|
+
paginateListIdNamespaces,
|
|
2040
2663
|
paginateListMatchingJobs,
|
|
2041
2664
|
paginateListMatchingWorkflows,
|
|
2042
2665
|
paginateListProviderServices,
|
|
2043
2666
|
paginateListSchemaMappings,
|
|
2044
2667
|
AccessDeniedException,
|
|
2045
|
-
|
|
2668
|
+
StatementEffect,
|
|
2046
2669
|
ConflictException,
|
|
2047
|
-
IdMappingType,
|
|
2048
|
-
ExceedsLimitException,
|
|
2049
2670
|
InternalServerException,
|
|
2671
|
+
ResourceNotFoundException,
|
|
2050
2672
|
ThrottlingException,
|
|
2051
2673
|
ValidationException,
|
|
2674
|
+
AttributeMatchingModel,
|
|
2675
|
+
DeleteUniqueIdErrorType,
|
|
2676
|
+
DeleteUniqueIdStatus,
|
|
2677
|
+
IdMappingType,
|
|
2678
|
+
IdNamespaceType,
|
|
2679
|
+
ExceedsLimitException,
|
|
2052
2680
|
IncrementalRunType,
|
|
2053
2681
|
ResolutionType,
|
|
2054
2682
|
SchemaAttributeType,
|
|
2055
2683
|
JobStatus,
|
|
2056
|
-
ResourceNotFoundException,
|
|
2057
2684
|
ProviderEndpointConfiguration,
|
|
2058
2685
|
ServiceType,
|
|
2059
2686
|
GetMatchIdInputFilterSensitiveLog
|