@aws-sdk/client-entityresolution 3.952.0 → 3.953.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/dist-cjs/index.js +548 -384
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AddPolicyStatementCommand.js +2 -2
- package/dist-es/commands/BatchDeleteUniqueIdCommand.js +2 -2
- package/dist-es/commands/CreateIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/CreateIdNamespaceCommand.js +2 -2
- package/dist-es/commands/CreateMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/CreateSchemaMappingCommand.js +2 -2
- package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/DeleteIdNamespaceCommand.js +2 -2
- package/dist-es/commands/DeleteMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/DeletePolicyStatementCommand.js +2 -2
- package/dist-es/commands/DeleteSchemaMappingCommand.js +2 -2
- package/dist-es/commands/GenerateMatchIdCommand.js +2 -2
- package/dist-es/commands/GetIdMappingJobCommand.js +2 -2
- package/dist-es/commands/GetIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/GetIdNamespaceCommand.js +2 -2
- package/dist-es/commands/GetMatchIdCommand.js +2 -2
- package/dist-es/commands/GetMatchingJobCommand.js +2 -2
- package/dist-es/commands/GetMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetProviderServiceCommand.js +2 -2
- package/dist-es/commands/GetSchemaMappingCommand.js +2 -2
- package/dist-es/commands/ListIdMappingJobsCommand.js +2 -2
- package/dist-es/commands/ListIdMappingWorkflowsCommand.js +2 -2
- package/dist-es/commands/ListIdNamespacesCommand.js +2 -2
- package/dist-es/commands/ListMatchingJobsCommand.js +2 -2
- package/dist-es/commands/ListMatchingWorkflowsCommand.js +2 -2
- package/dist-es/commands/ListProviderServicesCommand.js +2 -2
- package/dist-es/commands/ListSchemaMappingsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/StartIdMappingJobCommand.js +2 -2
- package/dist-es/commands/StartMatchingJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/UpdateIdNamespaceCommand.js +2 -2
- package/dist-es/commands/UpdateMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/UpdateSchemaMappingCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +337 -341
- package/dist-types/EntityResolutionClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +169 -210
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -211
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class EntityResolutionClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class EntityResolutionServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, EntityResolutionServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends EntityResolutionServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends EntityResoluti
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class ConflictException extends EntityResolutionServiceException {
|
|
133
133
|
name = "ConflictException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends EntityResolutionServic
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class InternalServerException extends EntityResolutionServiceException {
|
|
145
145
|
name = "InternalServerException";
|
|
146
146
|
$fault = "server";
|
|
147
147
|
$retryable = {};
|
|
@@ -153,8 +153,8 @@ let InternalServerException$1 = class InternalServerException extends EntityReso
|
|
|
153
153
|
});
|
|
154
154
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
155
155
|
}
|
|
156
|
-
}
|
|
157
|
-
|
|
156
|
+
}
|
|
157
|
+
class ResourceNotFoundException extends EntityResolutionServiceException {
|
|
158
158
|
name = "ResourceNotFoundException";
|
|
159
159
|
$fault = "client";
|
|
160
160
|
constructor(opts) {
|
|
@@ -165,8 +165,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Entity
|
|
|
165
165
|
});
|
|
166
166
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
167
167
|
}
|
|
168
|
-
}
|
|
169
|
-
|
|
168
|
+
}
|
|
169
|
+
class ThrottlingException extends EntityResolutionServiceException {
|
|
170
170
|
name = "ThrottlingException";
|
|
171
171
|
$fault = "client";
|
|
172
172
|
$retryable = {
|
|
@@ -180,8 +180,8 @@ let ThrottlingException$1 = class ThrottlingException extends EntityResolutionSe
|
|
|
180
180
|
});
|
|
181
181
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
182
182
|
}
|
|
183
|
-
}
|
|
184
|
-
|
|
183
|
+
}
|
|
184
|
+
class ValidationException extends EntityResolutionServiceException {
|
|
185
185
|
name = "ValidationException";
|
|
186
186
|
$fault = "client";
|
|
187
187
|
constructor(opts) {
|
|
@@ -192,8 +192,8 @@ let ValidationException$1 = class ValidationException extends EntityResolutionSe
|
|
|
192
192
|
});
|
|
193
193
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
194
194
|
}
|
|
195
|
-
}
|
|
196
|
-
|
|
195
|
+
}
|
|
196
|
+
class ExceedsLimitException extends EntityResolutionServiceException {
|
|
197
197
|
name = "ExceedsLimitException";
|
|
198
198
|
$fault = "client";
|
|
199
199
|
quotaName;
|
|
@@ -208,7 +208,7 @@ let ExceedsLimitException$1 = class ExceedsLimitException extends EntityResoluti
|
|
|
208
208
|
this.quotaName = opts.quotaName;
|
|
209
209
|
this.quotaValue = opts.quotaValue;
|
|
210
210
|
}
|
|
211
|
-
}
|
|
211
|
+
}
|
|
212
212
|
|
|
213
213
|
const _ADE = "AccessDeniedException";
|
|
214
214
|
const _APS = "AddPolicyStatement";
|
|
@@ -552,9 +552,9 @@ const _wA = "workflowArn";
|
|
|
552
552
|
const _wN = "workflowName";
|
|
553
553
|
const _wS = "workflowSummaries";
|
|
554
554
|
const n0 = "com.amazonaws.entityresolution";
|
|
555
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
556
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
557
|
-
var AddPolicyStatementInput = [
|
|
555
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
556
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
557
|
+
var AddPolicyStatementInput$ = [
|
|
558
558
|
3,
|
|
559
559
|
n0,
|
|
560
560
|
_APSI,
|
|
@@ -562,8 +562,8 @@ var AddPolicyStatementInput = [
|
|
|
562
562
|
[_a, _sI, _ef, _ac, _p, _co],
|
|
563
563
|
[[0, 1], [0, 1], 0, 64 | 0, 64 | 0, 0],
|
|
564
564
|
];
|
|
565
|
-
var AddPolicyStatementOutput = [3, n0, _APSO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
566
|
-
var BatchDeleteUniqueIdInput = [
|
|
565
|
+
var AddPolicyStatementOutput$ = [3, n0, _APSO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
566
|
+
var BatchDeleteUniqueIdInput$ = [
|
|
567
567
|
3,
|
|
568
568
|
n0,
|
|
569
569
|
_BDUII,
|
|
@@ -575,7 +575,7 @@ var BatchDeleteUniqueIdInput = [
|
|
|
575
575
|
[64 | 0, { [_hH]: _uI }],
|
|
576
576
|
],
|
|
577
577
|
];
|
|
578
|
-
var BatchDeleteUniqueIdOutput = [
|
|
578
|
+
var BatchDeleteUniqueIdOutput$ = [
|
|
579
579
|
3,
|
|
580
580
|
n0,
|
|
581
581
|
_BDUIO,
|
|
@@ -583,9 +583,9 @@ var BatchDeleteUniqueIdOutput = [
|
|
|
583
583
|
[_s, _er, _d, _dUI],
|
|
584
584
|
[0, () => DeleteUniqueIdErrorsList, () => DeletedUniqueIdList, 64 | 0],
|
|
585
585
|
];
|
|
586
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
587
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
588
|
-
var CreateIdMappingWorkflowInput = [
|
|
586
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
587
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
588
|
+
var CreateIdMappingWorkflowInput$ = [
|
|
589
589
|
3,
|
|
590
590
|
n0,
|
|
591
591
|
_CIMWI,
|
|
@@ -596,13 +596,13 @@ var CreateIdMappingWorkflowInput = [
|
|
|
596
596
|
0,
|
|
597
597
|
() => IdMappingWorkflowInputSourceConfig,
|
|
598
598
|
() => IdMappingWorkflowOutputSourceConfig,
|
|
599
|
-
() => IdMappingTechniques
|
|
600
|
-
() => IdMappingIncrementalRunConfig
|
|
599
|
+
() => IdMappingTechniques$,
|
|
600
|
+
() => IdMappingIncrementalRunConfig$,
|
|
601
601
|
0,
|
|
602
602
|
128 | 0,
|
|
603
603
|
],
|
|
604
604
|
];
|
|
605
|
-
var CreateIdMappingWorkflowOutput = [
|
|
605
|
+
var CreateIdMappingWorkflowOutput$ = [
|
|
606
606
|
3,
|
|
607
607
|
n0,
|
|
608
608
|
_CIMWO,
|
|
@@ -614,12 +614,12 @@ var CreateIdMappingWorkflowOutput = [
|
|
|
614
614
|
0,
|
|
615
615
|
() => IdMappingWorkflowInputSourceConfig,
|
|
616
616
|
() => IdMappingWorkflowOutputSourceConfig,
|
|
617
|
-
() => IdMappingTechniques
|
|
618
|
-
() => IdMappingIncrementalRunConfig
|
|
617
|
+
() => IdMappingTechniques$,
|
|
618
|
+
() => IdMappingIncrementalRunConfig$,
|
|
619
619
|
0,
|
|
620
620
|
],
|
|
621
621
|
];
|
|
622
|
-
var CreateIdNamespaceInput = [
|
|
622
|
+
var CreateIdNamespaceInput$ = [
|
|
623
623
|
3,
|
|
624
624
|
n0,
|
|
625
625
|
_CINI,
|
|
@@ -627,7 +627,7 @@ var CreateIdNamespaceInput = [
|
|
|
627
627
|
[_iNN, _de, _iSC, _iMWP, _ty, _rA, _ta],
|
|
628
628
|
[0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 128 | 0],
|
|
629
629
|
];
|
|
630
|
-
var CreateIdNamespaceOutput = [
|
|
630
|
+
var CreateIdNamespaceOutput$ = [
|
|
631
631
|
3,
|
|
632
632
|
n0,
|
|
633
633
|
_CINO,
|
|
@@ -635,7 +635,7 @@ var CreateIdNamespaceOutput = [
|
|
|
635
635
|
[_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA, _ta],
|
|
636
636
|
[0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4, 128 | 0],
|
|
637
637
|
];
|
|
638
|
-
var CreateMatchingWorkflowInput = [
|
|
638
|
+
var CreateMatchingWorkflowInput$ = [
|
|
639
639
|
3,
|
|
640
640
|
n0,
|
|
641
641
|
_CMWI,
|
|
@@ -646,13 +646,13 @@ var CreateMatchingWorkflowInput = [
|
|
|
646
646
|
0,
|
|
647
647
|
() => InputSourceConfig,
|
|
648
648
|
() => OutputSourceConfig,
|
|
649
|
-
() => ResolutionTechniques
|
|
650
|
-
() => IncrementalRunConfig
|
|
649
|
+
() => ResolutionTechniques$,
|
|
650
|
+
() => IncrementalRunConfig$,
|
|
651
651
|
0,
|
|
652
652
|
128 | 0,
|
|
653
653
|
],
|
|
654
654
|
];
|
|
655
|
-
var CreateMatchingWorkflowOutput = [
|
|
655
|
+
var CreateMatchingWorkflowOutput$ = [
|
|
656
656
|
3,
|
|
657
657
|
n0,
|
|
658
658
|
_CMWO,
|
|
@@ -664,12 +664,12 @@ var CreateMatchingWorkflowOutput = [
|
|
|
664
664
|
0,
|
|
665
665
|
() => InputSourceConfig,
|
|
666
666
|
() => OutputSourceConfig,
|
|
667
|
-
() => ResolutionTechniques
|
|
668
|
-
() => IncrementalRunConfig
|
|
667
|
+
() => ResolutionTechniques$,
|
|
668
|
+
() => IncrementalRunConfig$,
|
|
669
669
|
0,
|
|
670
670
|
],
|
|
671
671
|
];
|
|
672
|
-
var CreateSchemaMappingInput = [
|
|
672
|
+
var CreateSchemaMappingInput$ = [
|
|
673
673
|
3,
|
|
674
674
|
n0,
|
|
675
675
|
_CSMI,
|
|
@@ -677,7 +677,7 @@ var CreateSchemaMappingInput = [
|
|
|
677
677
|
[_sN, _de, _mIF, _ta],
|
|
678
678
|
[0, 0, () => SchemaInputAttributes, 128 | 0],
|
|
679
679
|
];
|
|
680
|
-
var CreateSchemaMappingOutput = [
|
|
680
|
+
var CreateSchemaMappingOutput$ = [
|
|
681
681
|
3,
|
|
682
682
|
n0,
|
|
683
683
|
_CSMO,
|
|
@@ -685,15 +685,15 @@ var CreateSchemaMappingOutput = [
|
|
|
685
685
|
[_sN, _sA, _de, _mIF],
|
|
686
686
|
[0, 0, 0, () => SchemaInputAttributes],
|
|
687
687
|
];
|
|
688
|
-
var CustomerProfilesIntegrationConfig = [3, n0, _CPIC, 0, [_dA, _oTA], [0, 0]];
|
|
689
|
-
var DeletedUniqueId = [3, n0, _DUI, 0, [_uIn], [0]];
|
|
690
|
-
var DeleteIdMappingWorkflowInput = [3, n0, _DIMWI, 0, [_wN], [[0, 1]]];
|
|
691
|
-
var DeleteIdMappingWorkflowOutput = [3, n0, _DIMWO, 0, [_m], [0]];
|
|
692
|
-
var DeleteIdNamespaceInput = [3, n0, _DINI, 0, [_iNN], [[0, 1]]];
|
|
693
|
-
var DeleteIdNamespaceOutput = [3, n0, _DINO, 0, [_m], [0]];
|
|
694
|
-
var DeleteMatchingWorkflowInput = [3, n0, _DMWI, 0, [_wN], [[0, 1]]];
|
|
695
|
-
var DeleteMatchingWorkflowOutput = [3, n0, _DMWO, 0, [_m], [0]];
|
|
696
|
-
var DeletePolicyStatementInput = [
|
|
688
|
+
var CustomerProfilesIntegrationConfig$ = [3, n0, _CPIC, 0, [_dA, _oTA], [0, 0]];
|
|
689
|
+
var DeletedUniqueId$ = [3, n0, _DUI, 0, [_uIn], [0]];
|
|
690
|
+
var DeleteIdMappingWorkflowInput$ = [3, n0, _DIMWI, 0, [_wN], [[0, 1]]];
|
|
691
|
+
var DeleteIdMappingWorkflowOutput$ = [3, n0, _DIMWO, 0, [_m], [0]];
|
|
692
|
+
var DeleteIdNamespaceInput$ = [3, n0, _DINI, 0, [_iNN], [[0, 1]]];
|
|
693
|
+
var DeleteIdNamespaceOutput$ = [3, n0, _DINO, 0, [_m], [0]];
|
|
694
|
+
var DeleteMatchingWorkflowInput$ = [3, n0, _DMWI, 0, [_wN], [[0, 1]]];
|
|
695
|
+
var DeleteMatchingWorkflowOutput$ = [3, n0, _DMWO, 0, [_m], [0]];
|
|
696
|
+
var DeletePolicyStatementInput$ = [
|
|
697
697
|
3,
|
|
698
698
|
n0,
|
|
699
699
|
_DPSI,
|
|
@@ -704,12 +704,12 @@ var DeletePolicyStatementInput = [
|
|
|
704
704
|
[0, 1],
|
|
705
705
|
],
|
|
706
706
|
];
|
|
707
|
-
var DeletePolicyStatementOutput = [3, n0, _DPSO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
708
|
-
var DeleteSchemaMappingInput = [3, n0, _DSMI, 0, [_sN], [[0, 1]]];
|
|
709
|
-
var DeleteSchemaMappingOutput = [3, n0, _DSMO, 0, [_m], [0]];
|
|
710
|
-
var DeleteUniqueIdError = [3, n0, _DUIE, 0, [_uIn, _eT], [0, 0]];
|
|
711
|
-
var ErrorDetails = [3, n0, _ED, 0, [_eM], [0]];
|
|
712
|
-
var ExceedsLimitException = [
|
|
707
|
+
var DeletePolicyStatementOutput$ = [3, n0, _DPSO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
708
|
+
var DeleteSchemaMappingInput$ = [3, n0, _DSMI, 0, [_sN], [[0, 1]]];
|
|
709
|
+
var DeleteSchemaMappingOutput$ = [3, n0, _DSMO, 0, [_m], [0]];
|
|
710
|
+
var DeleteUniqueIdError$ = [3, n0, _DUIE, 0, [_uIn, _eT], [0, 0]];
|
|
711
|
+
var ErrorDetails$ = [3, n0, _ED, 0, [_eM], [0]];
|
|
712
|
+
var ExceedsLimitException$ = [
|
|
713
713
|
-3,
|
|
714
714
|
n0,
|
|
715
715
|
_ELE,
|
|
@@ -717,9 +717,9 @@ var ExceedsLimitException = [
|
|
|
717
717
|
[_m, _qN, _qV],
|
|
718
718
|
[0, 0, 1],
|
|
719
719
|
];
|
|
720
|
-
schema.TypeRegistry.for(n0).registerError(ExceedsLimitException
|
|
721
|
-
var FailedRecord = [3, n0, _FR, 0, [_iSARN, _uIn, _eM], [0, 0, 0]];
|
|
722
|
-
var GenerateMatchIdInput = [
|
|
720
|
+
schema.TypeRegistry.for(n0).registerError(ExceedsLimitException$, ExceedsLimitException);
|
|
721
|
+
var FailedRecord$ = [3, n0, _FR, 0, [_iSARN, _uIn, _eM], [0, 0, 0]];
|
|
722
|
+
var GenerateMatchIdInput$ = [
|
|
723
723
|
3,
|
|
724
724
|
n0,
|
|
725
725
|
_GMII,
|
|
@@ -727,7 +727,7 @@ var GenerateMatchIdInput = [
|
|
|
727
727
|
[_wN, _r, _pT],
|
|
728
728
|
[[0, 1], [() => RecordList, 0], 0],
|
|
729
729
|
];
|
|
730
|
-
var GenerateMatchIdOutput = [
|
|
730
|
+
var GenerateMatchIdOutput$ = [
|
|
731
731
|
3,
|
|
732
732
|
n0,
|
|
733
733
|
_GMIO,
|
|
@@ -735,7 +735,7 @@ var GenerateMatchIdOutput = [
|
|
|
735
735
|
[_mG, _fR],
|
|
736
736
|
[() => MatchGroupsList, () => FailedRecordsList],
|
|
737
737
|
];
|
|
738
|
-
var GetIdMappingJobInput = [
|
|
738
|
+
var GetIdMappingJobInput$ = [
|
|
739
739
|
3,
|
|
740
740
|
n0,
|
|
741
741
|
_GIMJI,
|
|
@@ -746,16 +746,16 @@ var GetIdMappingJobInput = [
|
|
|
746
746
|
[0, 1],
|
|
747
747
|
],
|
|
748
748
|
];
|
|
749
|
-
var GetIdMappingJobOutput = [
|
|
749
|
+
var GetIdMappingJobOutput$ = [
|
|
750
750
|
3,
|
|
751
751
|
n0,
|
|
752
752
|
_GIMJO,
|
|
753
753
|
0,
|
|
754
754
|
[_jI, _s, _sT, _eTn, _me, _eD, _oSC, _jT],
|
|
755
|
-
[0, 0, 4, 4, () => IdMappingJobMetrics
|
|
755
|
+
[0, 0, 4, 4, () => IdMappingJobMetrics$, () => ErrorDetails$, () => IdMappingJobOutputSourceConfig, 0],
|
|
756
756
|
];
|
|
757
|
-
var GetIdMappingWorkflowInput = [3, n0, _GIMWI, 0, [_wN], [[0, 1]]];
|
|
758
|
-
var GetIdMappingWorkflowOutput = [
|
|
757
|
+
var GetIdMappingWorkflowInput$ = [3, n0, _GIMWI, 0, [_wN], [[0, 1]]];
|
|
758
|
+
var GetIdMappingWorkflowOutput$ = [
|
|
759
759
|
3,
|
|
760
760
|
n0,
|
|
761
761
|
_GIMWO,
|
|
@@ -767,16 +767,16 @@ var GetIdMappingWorkflowOutput = [
|
|
|
767
767
|
0,
|
|
768
768
|
() => IdMappingWorkflowInputSourceConfig,
|
|
769
769
|
() => IdMappingWorkflowOutputSourceConfig,
|
|
770
|
-
() => IdMappingTechniques
|
|
770
|
+
() => IdMappingTechniques$,
|
|
771
771
|
4,
|
|
772
772
|
4,
|
|
773
|
-
() => IdMappingIncrementalRunConfig
|
|
773
|
+
() => IdMappingIncrementalRunConfig$,
|
|
774
774
|
0,
|
|
775
775
|
128 | 0,
|
|
776
776
|
],
|
|
777
777
|
];
|
|
778
|
-
var GetIdNamespaceInput = [3, n0, _GINI, 0, [_iNN], [[0, 1]]];
|
|
779
|
-
var GetIdNamespaceOutput = [
|
|
778
|
+
var GetIdNamespaceInput$ = [3, n0, _GINI, 0, [_iNN], [[0, 1]]];
|
|
779
|
+
var GetIdNamespaceOutput$ = [
|
|
780
780
|
3,
|
|
781
781
|
n0,
|
|
782
782
|
_GINO,
|
|
@@ -784,7 +784,7 @@ var GetIdNamespaceOutput = [
|
|
|
784
784
|
[_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA, _ta],
|
|
785
785
|
[0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4, 128 | 0],
|
|
786
786
|
];
|
|
787
|
-
var GetMatchIdInput = [
|
|
787
|
+
var GetMatchIdInput$ = [
|
|
788
788
|
3,
|
|
789
789
|
n0,
|
|
790
790
|
_GMIIe,
|
|
@@ -792,8 +792,8 @@ var GetMatchIdInput = [
|
|
|
792
792
|
[_wN, _re, _aN],
|
|
793
793
|
[[0, 1], [() => RecordAttributeMap, 0], 2],
|
|
794
794
|
];
|
|
795
|
-
var GetMatchIdOutput = [3, n0, _GMIOe, 0, [_mI, _mR], [0, 0]];
|
|
796
|
-
var GetMatchingJobInput = [
|
|
795
|
+
var GetMatchIdOutput$ = [3, n0, _GMIOe, 0, [_mI, _mR], [0, 0]];
|
|
796
|
+
var GetMatchingJobInput$ = [
|
|
797
797
|
3,
|
|
798
798
|
n0,
|
|
799
799
|
_GMJI,
|
|
@@ -804,16 +804,16 @@ var GetMatchingJobInput = [
|
|
|
804
804
|
[0, 1],
|
|
805
805
|
],
|
|
806
806
|
];
|
|
807
|
-
var GetMatchingJobOutput = [
|
|
807
|
+
var GetMatchingJobOutput$ = [
|
|
808
808
|
3,
|
|
809
809
|
n0,
|
|
810
810
|
_GMJO,
|
|
811
811
|
0,
|
|
812
812
|
[_jI, _s, _sT, _eTn, _me, _eD, _oSC],
|
|
813
|
-
[0, 0, 4, 4, () => JobMetrics
|
|
813
|
+
[0, 0, 4, 4, () => JobMetrics$, () => ErrorDetails$, () => JobOutputSourceConfig],
|
|
814
814
|
];
|
|
815
|
-
var GetMatchingWorkflowInput = [3, n0, _GMWI, 0, [_wN], [[0, 1]]];
|
|
816
|
-
var GetMatchingWorkflowOutput = [
|
|
815
|
+
var GetMatchingWorkflowInput$ = [3, n0, _GMWI, 0, [_wN], [[0, 1]]];
|
|
816
|
+
var GetMatchingWorkflowOutput$ = [
|
|
817
817
|
3,
|
|
818
818
|
n0,
|
|
819
819
|
_GMWO,
|
|
@@ -825,17 +825,17 @@ var GetMatchingWorkflowOutput = [
|
|
|
825
825
|
0,
|
|
826
826
|
() => InputSourceConfig,
|
|
827
827
|
() => OutputSourceConfig,
|
|
828
|
-
() => ResolutionTechniques
|
|
828
|
+
() => ResolutionTechniques$,
|
|
829
829
|
4,
|
|
830
830
|
4,
|
|
831
|
-
() => IncrementalRunConfig
|
|
831
|
+
() => IncrementalRunConfig$,
|
|
832
832
|
0,
|
|
833
833
|
128 | 0,
|
|
834
834
|
],
|
|
835
835
|
];
|
|
836
|
-
var GetPolicyInput = [3, n0, _GPI, 0, [_a], [[0, 1]]];
|
|
837
|
-
var GetPolicyOutput = [3, n0, _GPO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
838
|
-
var GetProviderServiceInput = [
|
|
836
|
+
var GetPolicyInput$ = [3, n0, _GPI, 0, [_a], [[0, 1]]];
|
|
837
|
+
var GetPolicyOutput$ = [3, n0, _GPO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
838
|
+
var GetProviderServiceInput$ = [
|
|
839
839
|
3,
|
|
840
840
|
n0,
|
|
841
841
|
_GPSI,
|
|
@@ -846,7 +846,7 @@ var GetProviderServiceInput = [
|
|
|
846
846
|
[0, 1],
|
|
847
847
|
],
|
|
848
848
|
];
|
|
849
|
-
var GetProviderServiceOutput = [
|
|
849
|
+
var GetProviderServiceOutput$ = [
|
|
850
850
|
3,
|
|
851
851
|
n0,
|
|
852
852
|
_GPSO,
|
|
@@ -859,17 +859,17 @@ var GetProviderServiceOutput = [
|
|
|
859
859
|
0,
|
|
860
860
|
0,
|
|
861
861
|
15,
|
|
862
|
-
() => ProviderIdNameSpaceConfiguration
|
|
862
|
+
() => ProviderIdNameSpaceConfiguration$,
|
|
863
863
|
15,
|
|
864
|
-
() => ProviderEndpointConfiguration
|
|
864
|
+
() => ProviderEndpointConfiguration$,
|
|
865
865
|
2,
|
|
866
866
|
15,
|
|
867
|
-
() => ProviderIntermediateDataAccessConfiguration
|
|
868
|
-
() => ProviderComponentSchema
|
|
867
|
+
() => ProviderIntermediateDataAccessConfiguration$,
|
|
868
|
+
() => ProviderComponentSchema$,
|
|
869
869
|
],
|
|
870
870
|
];
|
|
871
|
-
var GetSchemaMappingInput = [3, n0, _GSMI, 0, [_sN], [[0, 1]]];
|
|
872
|
-
var GetSchemaMappingOutput = [
|
|
871
|
+
var GetSchemaMappingInput$ = [3, n0, _GSMI, 0, [_sN], [[0, 1]]];
|
|
872
|
+
var GetSchemaMappingOutput$ = [
|
|
873
873
|
3,
|
|
874
874
|
n0,
|
|
875
875
|
_GSMO,
|
|
@@ -877,8 +877,8 @@ var GetSchemaMappingOutput = [
|
|
|
877
877
|
[_sN, _sA, _de, _mIF, _cA, _uA, _ta, _hW],
|
|
878
878
|
[0, 0, 0, () => SchemaInputAttributes, 4, 4, 128 | 0, 2],
|
|
879
879
|
];
|
|
880
|
-
var IdMappingIncrementalRunConfig = [3, n0, _IMIRC, 0, [_iRT], [0]];
|
|
881
|
-
var IdMappingJobMetrics = [
|
|
880
|
+
var IdMappingIncrementalRunConfig$ = [3, n0, _IMIRC, 0, [_iRT], [0]];
|
|
881
|
+
var IdMappingJobMetrics$ = [
|
|
882
882
|
3,
|
|
883
883
|
n0,
|
|
884
884
|
_IMJM,
|
|
@@ -886,8 +886,8 @@ var IdMappingJobMetrics = [
|
|
|
886
886
|
[_iR, _tRP, _rNP, _dRP, _tMR, _tMSR, _tMTR, _uRL, _nMR, _nMSR, _nMTR, _nURL, _mRR, _mSRR, _mTRR],
|
|
887
887
|
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
|
|
888
888
|
];
|
|
889
|
-
var IdMappingJobOutputSource = [3, n0, _IMJOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
|
|
890
|
-
var IdMappingRuleBasedProperties = [
|
|
889
|
+
var IdMappingJobOutputSource$ = [3, n0, _IMJOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
|
|
890
|
+
var IdMappingRuleBasedProperties$ = [
|
|
891
891
|
3,
|
|
892
892
|
n0,
|
|
893
893
|
_IMRBP,
|
|
@@ -895,28 +895,28 @@ var IdMappingRuleBasedProperties = [
|
|
|
895
895
|
[_ru, _rDT, _aMM, _rMM],
|
|
896
896
|
[() => RuleList, 0, 0, 0],
|
|
897
897
|
];
|
|
898
|
-
var IdMappingTechniques = [
|
|
898
|
+
var IdMappingTechniques$ = [
|
|
899
899
|
3,
|
|
900
900
|
n0,
|
|
901
901
|
_IMT,
|
|
902
902
|
0,
|
|
903
903
|
[_iMTd, _rBP, _pP],
|
|
904
|
-
[0, () => IdMappingRuleBasedProperties
|
|
904
|
+
[0, () => IdMappingRuleBasedProperties$, () => ProviderProperties$],
|
|
905
905
|
];
|
|
906
|
-
var IdMappingWorkflowInputSource = [3, n0, _IMWIS, 0, [_iSARN, _sN, _ty], [0, 0, 0]];
|
|
907
|
-
var IdMappingWorkflowOutputSource = [3, n0, _IMWOS, 0, [_KMSA, _oSP], [0, 0]];
|
|
908
|
-
var IdMappingWorkflowSummary = [3, n0, _IMWS, 0, [_wN, _wA, _cA, _uA], [0, 0, 4, 4]];
|
|
909
|
-
var IdNamespaceIdMappingWorkflowMetadata = [3, n0, _INIMWM, 0, [_iMTd], [0]];
|
|
910
|
-
var IdNamespaceIdMappingWorkflowProperties = [
|
|
906
|
+
var IdMappingWorkflowInputSource$ = [3, n0, _IMWIS, 0, [_iSARN, _sN, _ty], [0, 0, 0]];
|
|
907
|
+
var IdMappingWorkflowOutputSource$ = [3, n0, _IMWOS, 0, [_KMSA, _oSP], [0, 0]];
|
|
908
|
+
var IdMappingWorkflowSummary$ = [3, n0, _IMWS, 0, [_wN, _wA, _cA, _uA], [0, 0, 4, 4]];
|
|
909
|
+
var IdNamespaceIdMappingWorkflowMetadata$ = [3, n0, _INIMWM, 0, [_iMTd], [0]];
|
|
910
|
+
var IdNamespaceIdMappingWorkflowProperties$ = [
|
|
911
911
|
3,
|
|
912
912
|
n0,
|
|
913
913
|
_INIMWP,
|
|
914
914
|
0,
|
|
915
915
|
[_iMTd, _rBP, _pP],
|
|
916
|
-
[0, () => NamespaceRuleBasedProperties
|
|
916
|
+
[0, () => NamespaceRuleBasedProperties$, () => NamespaceProviderProperties$],
|
|
917
917
|
];
|
|
918
|
-
var IdNamespaceInputSource = [3, n0, _INIS, 0, [_iSARN, _sN], [0, 0]];
|
|
919
|
-
var IdNamespaceSummary = [
|
|
918
|
+
var IdNamespaceInputSource$ = [3, n0, _INIS, 0, [_iSARN, _sN], [0, 0]];
|
|
919
|
+
var IdNamespaceSummary$ = [
|
|
920
920
|
3,
|
|
921
921
|
n0,
|
|
922
922
|
_INS,
|
|
@@ -924,15 +924,15 @@ var IdNamespaceSummary = [
|
|
|
924
924
|
[_iNN, _iNA, _de, _iMWP, _ty, _cA, _uA],
|
|
925
925
|
[0, 0, 0, () => IdNamespaceIdMappingWorkflowMetadataList, 0, 4, 4],
|
|
926
926
|
];
|
|
927
|
-
var IncrementalRunConfig = [3, n0, _IRC, 0, [_iRT], [0]];
|
|
928
|
-
var InputSource = [3, n0, _IS, 0, [_iSARN, _sN, _aN], [0, 0, 2]];
|
|
929
|
-
var IntermediateSourceConfiguration = [3, n0, _ISC, 0, [_iSP], [0]];
|
|
930
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
931
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
932
|
-
var JobMetrics = [3, n0, _JM, 0, [_iR, _tRP, _rNP, _dRP, _mID], [1, 1, 1, 1, 1]];
|
|
933
|
-
var JobOutputSource = [3, n0, _JOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
|
|
934
|
-
var JobSummary = [3, n0, _JS, 0, [_jI, _s, _sT, _eTn], [0, 0, 4, 4]];
|
|
935
|
-
var ListIdMappingJobsInput = [
|
|
927
|
+
var IncrementalRunConfig$ = [3, n0, _IRC, 0, [_iRT], [0]];
|
|
928
|
+
var InputSource$ = [3, n0, _IS, 0, [_iSARN, _sN, _aN], [0, 0, 2]];
|
|
929
|
+
var IntermediateSourceConfiguration$ = [3, n0, _ISC, 0, [_iSP], [0]];
|
|
930
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
931
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
932
|
+
var JobMetrics$ = [3, n0, _JM, 0, [_iR, _tRP, _rNP, _dRP, _mID], [1, 1, 1, 1, 1]];
|
|
933
|
+
var JobOutputSource$ = [3, n0, _JOS, 0, [_rA, _oSP, _KMSA], [0, 0, 0]];
|
|
934
|
+
var JobSummary$ = [3, n0, _JS, 0, [_jI, _s, _sT, _eTn], [0, 0, 4, 4]];
|
|
935
|
+
var ListIdMappingJobsInput$ = [
|
|
936
936
|
3,
|
|
937
937
|
n0,
|
|
938
938
|
_LIMJI,
|
|
@@ -944,8 +944,8 @@ var ListIdMappingJobsInput = [
|
|
|
944
944
|
[1, { [_hQ]: _mRa }],
|
|
945
945
|
],
|
|
946
946
|
];
|
|
947
|
-
var ListIdMappingJobsOutput = [3, n0, _LIMJO, 0, [_j, _nT], [() => JobList, 0]];
|
|
948
|
-
var ListIdMappingWorkflowsInput = [
|
|
947
|
+
var ListIdMappingJobsOutput$ = [3, n0, _LIMJO, 0, [_j, _nT], [() => JobList, 0]];
|
|
948
|
+
var ListIdMappingWorkflowsInput$ = [
|
|
949
949
|
3,
|
|
950
950
|
n0,
|
|
951
951
|
_LIMWI,
|
|
@@ -956,7 +956,7 @@ var ListIdMappingWorkflowsInput = [
|
|
|
956
956
|
[1, { [_hQ]: _mRa }],
|
|
957
957
|
],
|
|
958
958
|
];
|
|
959
|
-
var ListIdMappingWorkflowsOutput = [
|
|
959
|
+
var ListIdMappingWorkflowsOutput$ = [
|
|
960
960
|
3,
|
|
961
961
|
n0,
|
|
962
962
|
_LIMWO,
|
|
@@ -964,7 +964,7 @@ var ListIdMappingWorkflowsOutput = [
|
|
|
964
964
|
[_wS, _nT],
|
|
965
965
|
[() => IdMappingWorkflowList, 0],
|
|
966
966
|
];
|
|
967
|
-
var ListIdNamespacesInput = [
|
|
967
|
+
var ListIdNamespacesInput$ = [
|
|
968
968
|
3,
|
|
969
969
|
n0,
|
|
970
970
|
_LINI,
|
|
@@ -975,8 +975,8 @@ var ListIdNamespacesInput = [
|
|
|
975
975
|
[1, { [_hQ]: _mRa }],
|
|
976
976
|
],
|
|
977
977
|
];
|
|
978
|
-
var ListIdNamespacesOutput = [3, n0, _LINO, 0, [_iNS, _nT], [() => IdNamespaceList, 0]];
|
|
979
|
-
var ListMatchingJobsInput = [
|
|
978
|
+
var ListIdNamespacesOutput$ = [3, n0, _LINO, 0, [_iNS, _nT], [() => IdNamespaceList, 0]];
|
|
979
|
+
var ListMatchingJobsInput$ = [
|
|
980
980
|
3,
|
|
981
981
|
n0,
|
|
982
982
|
_LMJI,
|
|
@@ -988,8 +988,8 @@ var ListMatchingJobsInput = [
|
|
|
988
988
|
[1, { [_hQ]: _mRa }],
|
|
989
989
|
],
|
|
990
990
|
];
|
|
991
|
-
var ListMatchingJobsOutput = [3, n0, _LMJO, 0, [_j, _nT], [() => JobList, 0]];
|
|
992
|
-
var ListMatchingWorkflowsInput = [
|
|
991
|
+
var ListMatchingJobsOutput$ = [3, n0, _LMJO, 0, [_j, _nT], [() => JobList, 0]];
|
|
992
|
+
var ListMatchingWorkflowsInput$ = [
|
|
993
993
|
3,
|
|
994
994
|
n0,
|
|
995
995
|
_LMWI,
|
|
@@ -1000,7 +1000,7 @@ var ListMatchingWorkflowsInput = [
|
|
|
1000
1000
|
[1, { [_hQ]: _mRa }],
|
|
1001
1001
|
],
|
|
1002
1002
|
];
|
|
1003
|
-
var ListMatchingWorkflowsOutput = [
|
|
1003
|
+
var ListMatchingWorkflowsOutput$ = [
|
|
1004
1004
|
3,
|
|
1005
1005
|
n0,
|
|
1006
1006
|
_LMWO,
|
|
@@ -1008,7 +1008,7 @@ var ListMatchingWorkflowsOutput = [
|
|
|
1008
1008
|
[_wS, _nT],
|
|
1009
1009
|
[() => MatchingWorkflowList, 0],
|
|
1010
1010
|
];
|
|
1011
|
-
var ListProviderServicesInput = [
|
|
1011
|
+
var ListProviderServicesInput$ = [
|
|
1012
1012
|
3,
|
|
1013
1013
|
n0,
|
|
1014
1014
|
_LPSI,
|
|
@@ -1020,7 +1020,7 @@ var ListProviderServicesInput = [
|
|
|
1020
1020
|
[0, { [_hQ]: _pN }],
|
|
1021
1021
|
],
|
|
1022
1022
|
];
|
|
1023
|
-
var ListProviderServicesOutput = [
|
|
1023
|
+
var ListProviderServicesOutput$ = [
|
|
1024
1024
|
3,
|
|
1025
1025
|
n0,
|
|
1026
1026
|
_LPSO,
|
|
@@ -1028,7 +1028,7 @@ var ListProviderServicesOutput = [
|
|
|
1028
1028
|
[_pSS, _nT],
|
|
1029
1029
|
[() => ProviderServiceList, 0],
|
|
1030
1030
|
];
|
|
1031
|
-
var ListSchemaMappingsInput = [
|
|
1031
|
+
var ListSchemaMappingsInput$ = [
|
|
1032
1032
|
3,
|
|
1033
1033
|
n0,
|
|
1034
1034
|
_LSMI,
|
|
@@ -1039,7 +1039,7 @@ var ListSchemaMappingsInput = [
|
|
|
1039
1039
|
[1, { [_hQ]: _mRa }],
|
|
1040
1040
|
],
|
|
1041
1041
|
];
|
|
1042
|
-
var ListSchemaMappingsOutput = [
|
|
1042
|
+
var ListSchemaMappingsOutput$ = [
|
|
1043
1043
|
3,
|
|
1044
1044
|
n0,
|
|
1045
1045
|
_LSMO,
|
|
@@ -1047,11 +1047,11 @@ var ListSchemaMappingsOutput = [
|
|
|
1047
1047
|
[_sL, _nT],
|
|
1048
1048
|
[() => SchemaMappingList, 0],
|
|
1049
1049
|
];
|
|
1050
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
|
|
1051
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_ta], [128 | 0]];
|
|
1052
|
-
var MatchedRecord = [3, n0, _MR, 0, [_iSARN, _rI], [0, 0]];
|
|
1053
|
-
var MatchGroup = [3, n0, _MG, 0, [_r, _mI, _mR], [() => MatchedRecordsList, 0, 0]];
|
|
1054
|
-
var MatchingWorkflowSummary = [
|
|
1050
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
|
|
1051
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_ta], [128 | 0]];
|
|
1052
|
+
var MatchedRecord$ = [3, n0, _MR, 0, [_iSARN, _rI], [0, 0]];
|
|
1053
|
+
var MatchGroup$ = [3, n0, _MG, 0, [_r, _mI, _mR], [() => MatchedRecordsList, 0, 0]];
|
|
1054
|
+
var MatchingWorkflowSummary$ = [
|
|
1055
1055
|
3,
|
|
1056
1056
|
n0,
|
|
1057
1057
|
_MWS,
|
|
@@ -1059,8 +1059,8 @@ var MatchingWorkflowSummary = [
|
|
|
1059
1059
|
[_wN, _wA, _cA, _uA, _rTe],
|
|
1060
1060
|
[0, 0, 4, 4, 0],
|
|
1061
1061
|
];
|
|
1062
|
-
var NamespaceProviderProperties = [3, n0, _NPP, 0, [_pSA, _pC], [0, 15]];
|
|
1063
|
-
var NamespaceRuleBasedProperties = [
|
|
1062
|
+
var NamespaceProviderProperties$ = [3, n0, _NPP, 0, [_pSA, _pC], [0, 15]];
|
|
1063
|
+
var NamespaceRuleBasedProperties$ = [
|
|
1064
1064
|
3,
|
|
1065
1065
|
n0,
|
|
1066
1066
|
_NRBP,
|
|
@@ -1068,16 +1068,16 @@ var NamespaceRuleBasedProperties = [
|
|
|
1068
1068
|
[_ru, _rDTu, _aMM, _rMMe],
|
|
1069
1069
|
[() => RuleList, 64 | 0, 0, 64 | 0],
|
|
1070
1070
|
];
|
|
1071
|
-
var OutputAttribute = [3, n0, _OA, 0, [_n, _h], [0, 2]];
|
|
1072
|
-
var OutputSource = [
|
|
1071
|
+
var OutputAttribute$ = [3, n0, _OA, 0, [_n, _h], [0, 2]];
|
|
1072
|
+
var OutputSource$ = [
|
|
1073
1073
|
3,
|
|
1074
1074
|
n0,
|
|
1075
1075
|
_OS,
|
|
1076
1076
|
0,
|
|
1077
1077
|
[_KMSA, _oSP, _o, _aN, _cPIC],
|
|
1078
|
-
[0, 0, () => OutputAttributes, 2, () => CustomerProfilesIntegrationConfig],
|
|
1078
|
+
[0, 0, () => OutputAttributes, 2, () => CustomerProfilesIntegrationConfig$],
|
|
1079
1079
|
];
|
|
1080
|
-
var ProviderComponentSchema = [
|
|
1080
|
+
var ProviderComponentSchema$ = [
|
|
1081
1081
|
3,
|
|
1082
1082
|
n0,
|
|
1083
1083
|
_PCS,
|
|
@@ -1085,7 +1085,7 @@ var ProviderComponentSchema = [
|
|
|
1085
1085
|
[_sc, _pSAr],
|
|
1086
1086
|
[[1, n0, _S, 0, 64 | 0], () => ProviderSchemaAttributes],
|
|
1087
1087
|
];
|
|
1088
|
-
var ProviderIdNameSpaceConfiguration = [
|
|
1088
|
+
var ProviderIdNameSpaceConfiguration$ = [
|
|
1089
1089
|
3,
|
|
1090
1090
|
n0,
|
|
1091
1091
|
_PINSC,
|
|
@@ -1093,7 +1093,7 @@ var ProviderIdNameSpaceConfiguration = [
|
|
|
1093
1093
|
[_de, _pTCD, _pSCD],
|
|
1094
1094
|
[0, 15, 15],
|
|
1095
1095
|
];
|
|
1096
|
-
var ProviderIntermediateDataAccessConfiguration = [
|
|
1096
|
+
var ProviderIntermediateDataAccessConfiguration$ = [
|
|
1097
1097
|
3,
|
|
1098
1098
|
n0,
|
|
1099
1099
|
_PIDAC,
|
|
@@ -1101,7 +1101,7 @@ var ProviderIntermediateDataAccessConfiguration = [
|
|
|
1101
1101
|
[_aAI, _rBA],
|
|
1102
1102
|
[64 | 0, 64 | 0],
|
|
1103
1103
|
];
|
|
1104
|
-
var ProviderMarketplaceConfiguration = [
|
|
1104
|
+
var ProviderMarketplaceConfiguration$ = [
|
|
1105
1105
|
3,
|
|
1106
1106
|
n0,
|
|
1107
1107
|
_PMC,
|
|
@@ -1109,16 +1109,16 @@ var ProviderMarketplaceConfiguration = [
|
|
|
1109
1109
|
[_dSI, _rIe, _aI, _lI],
|
|
1110
1110
|
[0, 0, 0, 0],
|
|
1111
1111
|
];
|
|
1112
|
-
var ProviderProperties = [
|
|
1112
|
+
var ProviderProperties$ = [
|
|
1113
1113
|
3,
|
|
1114
1114
|
n0,
|
|
1115
1115
|
_PP,
|
|
1116
1116
|
0,
|
|
1117
1117
|
[_pSA, _pC, _iSCn],
|
|
1118
|
-
[0, 15, () => IntermediateSourceConfiguration],
|
|
1118
|
+
[0, 15, () => IntermediateSourceConfiguration$],
|
|
1119
1119
|
];
|
|
1120
|
-
var ProviderSchemaAttribute = [3, n0, _PSA, 0, [_fN, _ty, _sTu, _ha], [0, 0, 0, 2]];
|
|
1121
|
-
var ProviderServiceSummary = [
|
|
1120
|
+
var ProviderSchemaAttribute$ = [3, n0, _PSA, 0, [_fN, _ty, _sTu, _ha], [0, 0, 0, 2]];
|
|
1121
|
+
var ProviderServiceSummary$ = [
|
|
1122
1122
|
3,
|
|
1123
1123
|
n0,
|
|
1124
1124
|
_PSS,
|
|
@@ -1126,9 +1126,9 @@ var ProviderServiceSummary = [
|
|
|
1126
1126
|
[_pSA, _pN, _pSDN, _pSN, _pST],
|
|
1127
1127
|
[0, 0, 0, 0, 0],
|
|
1128
1128
|
];
|
|
1129
|
-
var PutPolicyInput = [3, n0, _PPI, 0, [_a, _t, _po], [[0, 1], 0, 0]];
|
|
1130
|
-
var PutPolicyOutput = [3, n0, _PPO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
1131
|
-
var _Record = [
|
|
1129
|
+
var PutPolicyInput$ = [3, n0, _PPI, 0, [_a, _t, _po], [[0, 1], 0, 0]];
|
|
1130
|
+
var PutPolicyOutput$ = [3, n0, _PPO, 0, [_a, _t, _po], [0, 0, 0]];
|
|
1131
|
+
var _Record$ = [
|
|
1132
1132
|
3,
|
|
1133
1133
|
n0,
|
|
1134
1134
|
_R,
|
|
@@ -1136,21 +1136,21 @@ var _Record = [
|
|
|
1136
1136
|
[_iSARN, _uIn, _rAM],
|
|
1137
1137
|
[0, 0, [() => RecordAttributeMapString255, 0]],
|
|
1138
1138
|
];
|
|
1139
|
-
var ResolutionTechniques = [
|
|
1139
|
+
var ResolutionTechniques$ = [
|
|
1140
1140
|
3,
|
|
1141
1141
|
n0,
|
|
1142
1142
|
_RT,
|
|
1143
1143
|
0,
|
|
1144
1144
|
[_rTe, _rBP, _rCP, _pP],
|
|
1145
|
-
[0, () => RuleBasedProperties
|
|
1145
|
+
[0, () => RuleBasedProperties$, () => RuleConditionProperties$, () => ProviderProperties$],
|
|
1146
1146
|
];
|
|
1147
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1148
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1149
|
-
var Rule = [3, n0, _Ru, 0, [_rN, _mK], [0, 64 | 0]];
|
|
1150
|
-
var RuleBasedProperties = [3, n0, _RBP, 0, [_ru, _aMM, _mP], [() => RuleList, 0, 0]];
|
|
1151
|
-
var RuleCondition = [3, n0, _RC, 0, [_rN, _co], [0, 0]];
|
|
1152
|
-
var RuleConditionProperties = [3, n0, _RCP, 0, [_ru], [() => RuleConditionList]];
|
|
1153
|
-
var SchemaInputAttribute = [
|
|
1147
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1148
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1149
|
+
var Rule$ = [3, n0, _Ru, 0, [_rN, _mK], [0, 64 | 0]];
|
|
1150
|
+
var RuleBasedProperties$ = [3, n0, _RBP, 0, [_ru, _aMM, _mP], [() => RuleList, 0, 0]];
|
|
1151
|
+
var RuleCondition$ = [3, n0, _RC, 0, [_rN, _co], [0, 0]];
|
|
1152
|
+
var RuleConditionProperties$ = [3, n0, _RCP, 0, [_ru], [() => RuleConditionList]];
|
|
1153
|
+
var SchemaInputAttribute$ = [
|
|
1154
1154
|
3,
|
|
1155
1155
|
n0,
|
|
1156
1156
|
_SIA,
|
|
@@ -1158,8 +1158,8 @@ var SchemaInputAttribute = [
|
|
|
1158
1158
|
[_fN, _ty, _gN, _mKa, _sTu, _h],
|
|
1159
1159
|
[0, 0, 0, 0, 0, 2],
|
|
1160
1160
|
];
|
|
1161
|
-
var SchemaMappingSummary = [3, n0, _SMS, 0, [_sN, _sA, _cA, _uA, _hW], [0, 0, 4, 4, 2]];
|
|
1162
|
-
var StartIdMappingJobInput = [
|
|
1161
|
+
var SchemaMappingSummary$ = [3, n0, _SMS, 0, [_sN, _sA, _cA, _uA, _hW], [0, 0, 4, 4, 2]];
|
|
1162
|
+
var StartIdMappingJobInput$ = [
|
|
1163
1163
|
3,
|
|
1164
1164
|
n0,
|
|
1165
1165
|
_SIMJI,
|
|
@@ -1167,7 +1167,7 @@ var StartIdMappingJobInput = [
|
|
|
1167
1167
|
[_wN, _oSC, _jT],
|
|
1168
1168
|
[[0, 1], () => IdMappingJobOutputSourceConfig, 0],
|
|
1169
1169
|
];
|
|
1170
|
-
var StartIdMappingJobOutput = [
|
|
1170
|
+
var StartIdMappingJobOutput$ = [
|
|
1171
1171
|
3,
|
|
1172
1172
|
n0,
|
|
1173
1173
|
_SIMJO,
|
|
@@ -1175,13 +1175,13 @@ var StartIdMappingJobOutput = [
|
|
|
1175
1175
|
[_jI, _oSC, _jT],
|
|
1176
1176
|
[0, () => IdMappingJobOutputSourceConfig, 0],
|
|
1177
1177
|
];
|
|
1178
|
-
var StartMatchingJobInput = [3, n0, _SMJI, 0, [_wN], [[0, 1]]];
|
|
1179
|
-
var StartMatchingJobOutput = [3, n0, _SMJO, 0, [_jI], [0]];
|
|
1180
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
|
|
1181
|
-
var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
1182
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1183
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1184
|
-
var UntagResourceInput = [
|
|
1178
|
+
var StartMatchingJobInput$ = [3, n0, _SMJI, 0, [_wN], [[0, 1]]];
|
|
1179
|
+
var StartMatchingJobOutput$ = [3, n0, _SMJO, 0, [_jI], [0]];
|
|
1180
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
|
|
1181
|
+
var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
|
|
1182
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1183
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1184
|
+
var UntagResourceInput$ = [
|
|
1185
1185
|
3,
|
|
1186
1186
|
n0,
|
|
1187
1187
|
_URI,
|
|
@@ -1192,8 +1192,8 @@ var UntagResourceInput = [
|
|
|
1192
1192
|
[64 | 0, { [_hQ]: _tK }],
|
|
1193
1193
|
],
|
|
1194
1194
|
];
|
|
1195
|
-
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
1196
|
-
var UpdateIdMappingWorkflowInput = [
|
|
1195
|
+
var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
|
|
1196
|
+
var UpdateIdMappingWorkflowInput$ = [
|
|
1197
1197
|
3,
|
|
1198
1198
|
n0,
|
|
1199
1199
|
_UIMWI,
|
|
@@ -1204,12 +1204,12 @@ var UpdateIdMappingWorkflowInput = [
|
|
|
1204
1204
|
0,
|
|
1205
1205
|
() => IdMappingWorkflowInputSourceConfig,
|
|
1206
1206
|
() => IdMappingWorkflowOutputSourceConfig,
|
|
1207
|
-
() => IdMappingTechniques
|
|
1208
|
-
() => IdMappingIncrementalRunConfig
|
|
1207
|
+
() => IdMappingTechniques$,
|
|
1208
|
+
() => IdMappingIncrementalRunConfig$,
|
|
1209
1209
|
0,
|
|
1210
1210
|
],
|
|
1211
1211
|
];
|
|
1212
|
-
var UpdateIdMappingWorkflowOutput = [
|
|
1212
|
+
var UpdateIdMappingWorkflowOutput$ = [
|
|
1213
1213
|
3,
|
|
1214
1214
|
n0,
|
|
1215
1215
|
_UIMWO,
|
|
@@ -1221,12 +1221,12 @@ var UpdateIdMappingWorkflowOutput = [
|
|
|
1221
1221
|
0,
|
|
1222
1222
|
() => IdMappingWorkflowInputSourceConfig,
|
|
1223
1223
|
() => IdMappingWorkflowOutputSourceConfig,
|
|
1224
|
-
() => IdMappingTechniques
|
|
1225
|
-
() => IdMappingIncrementalRunConfig
|
|
1224
|
+
() => IdMappingTechniques$,
|
|
1225
|
+
() => IdMappingIncrementalRunConfig$,
|
|
1226
1226
|
0,
|
|
1227
1227
|
],
|
|
1228
1228
|
];
|
|
1229
|
-
var UpdateIdNamespaceInput = [
|
|
1229
|
+
var UpdateIdNamespaceInput$ = [
|
|
1230
1230
|
3,
|
|
1231
1231
|
n0,
|
|
1232
1232
|
_UINI,
|
|
@@ -1234,7 +1234,7 @@ var UpdateIdNamespaceInput = [
|
|
|
1234
1234
|
[_iNN, _de, _iSC, _iMWP, _rA],
|
|
1235
1235
|
[[0, 1], 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0],
|
|
1236
1236
|
];
|
|
1237
|
-
var UpdateIdNamespaceOutput = [
|
|
1237
|
+
var UpdateIdNamespaceOutput$ = [
|
|
1238
1238
|
3,
|
|
1239
1239
|
n0,
|
|
1240
1240
|
_UINO,
|
|
@@ -1242,7 +1242,7 @@ var UpdateIdNamespaceOutput = [
|
|
|
1242
1242
|
[_iNN, _iNA, _de, _iSC, _iMWP, _ty, _rA, _cA, _uA],
|
|
1243
1243
|
[0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 0, 4, 4],
|
|
1244
1244
|
];
|
|
1245
|
-
var UpdateMatchingWorkflowInput = [
|
|
1245
|
+
var UpdateMatchingWorkflowInput$ = [
|
|
1246
1246
|
3,
|
|
1247
1247
|
n0,
|
|
1248
1248
|
_UMWI,
|
|
@@ -1253,20 +1253,28 @@ var UpdateMatchingWorkflowInput = [
|
|
|
1253
1253
|
0,
|
|
1254
1254
|
() => InputSourceConfig,
|
|
1255
1255
|
() => OutputSourceConfig,
|
|
1256
|
-
() => ResolutionTechniques
|
|
1257
|
-
() => IncrementalRunConfig
|
|
1256
|
+
() => ResolutionTechniques$,
|
|
1257
|
+
() => IncrementalRunConfig$,
|
|
1258
1258
|
0,
|
|
1259
1259
|
],
|
|
1260
1260
|
];
|
|
1261
|
-
var UpdateMatchingWorkflowOutput = [
|
|
1261
|
+
var UpdateMatchingWorkflowOutput$ = [
|
|
1262
1262
|
3,
|
|
1263
1263
|
n0,
|
|
1264
1264
|
_UMWO,
|
|
1265
1265
|
0,
|
|
1266
1266
|
[_wN, _de, _iSC, _oSC, _rT, _iRC, _rA],
|
|
1267
|
-
[
|
|
1267
|
+
[
|
|
1268
|
+
0,
|
|
1269
|
+
0,
|
|
1270
|
+
() => InputSourceConfig,
|
|
1271
|
+
() => OutputSourceConfig,
|
|
1272
|
+
() => ResolutionTechniques$,
|
|
1273
|
+
() => IncrementalRunConfig$,
|
|
1274
|
+
0,
|
|
1275
|
+
],
|
|
1268
1276
|
];
|
|
1269
|
-
var UpdateSchemaMappingInput = [
|
|
1277
|
+
var UpdateSchemaMappingInput$ = [
|
|
1270
1278
|
3,
|
|
1271
1279
|
n0,
|
|
1272
1280
|
_USMI,
|
|
@@ -1274,7 +1282,7 @@ var UpdateSchemaMappingInput = [
|
|
|
1274
1282
|
[_sN, _de, _mIF],
|
|
1275
1283
|
[[0, 1], 0, () => SchemaInputAttributes],
|
|
1276
1284
|
];
|
|
1277
|
-
var UpdateSchemaMappingOutput = [
|
|
1285
|
+
var UpdateSchemaMappingOutput$ = [
|
|
1278
1286
|
3,
|
|
1279
1287
|
n0,
|
|
1280
1288
|
_USMO,
|
|
@@ -1282,9 +1290,9 @@ var UpdateSchemaMappingOutput = [
|
|
|
1282
1290
|
[_sN, _sA, _de, _mIF],
|
|
1283
1291
|
[0, 0, 0, () => SchemaInputAttributes],
|
|
1284
1292
|
];
|
|
1285
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1286
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1287
|
-
var EntityResolutionServiceException = [
|
|
1293
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1294
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1295
|
+
var EntityResolutionServiceException$ = [
|
|
1288
1296
|
-3,
|
|
1289
1297
|
_sm,
|
|
1290
1298
|
"EntityResolutionServiceException",
|
|
@@ -1292,370 +1300,358 @@ var EntityResolutionServiceException = [
|
|
|
1292
1300
|
[],
|
|
1293
1301
|
[],
|
|
1294
1302
|
];
|
|
1295
|
-
schema.TypeRegistry.for(_sm).registerError(EntityResolutionServiceException
|
|
1296
|
-
var DeletedUniqueIdList = [1, n0, _DUIL, 0, () => DeletedUniqueId];
|
|
1297
|
-
var DeleteUniqueIdErrorsList = [1, n0, _DUIEL, 0, () => DeleteUniqueIdError];
|
|
1298
|
-
var FailedRecordsList = [1, n0, _FRL, 0, () => FailedRecord];
|
|
1299
|
-
var IdMappingJobOutputSourceConfig = [1, n0, _IMJOSC, 0, () => IdMappingJobOutputSource];
|
|
1300
|
-
var IdMappingWorkflowInputSourceConfig = [
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
_IMWISC,
|
|
1304
|
-
0,
|
|
1305
|
-
() => IdMappingWorkflowInputSource,
|
|
1306
|
-
];
|
|
1307
|
-
var IdMappingWorkflowList = [1, n0, _IMWL, 0, () => IdMappingWorkflowSummary];
|
|
1308
|
-
var IdMappingWorkflowOutputSourceConfig = [
|
|
1309
|
-
1,
|
|
1310
|
-
n0,
|
|
1311
|
-
_IMWOSC,
|
|
1312
|
-
0,
|
|
1313
|
-
() => IdMappingWorkflowOutputSource,
|
|
1314
|
-
];
|
|
1303
|
+
schema.TypeRegistry.for(_sm).registerError(EntityResolutionServiceException$, EntityResolutionServiceException);
|
|
1304
|
+
var DeletedUniqueIdList = [1, n0, _DUIL, 0, () => DeletedUniqueId$];
|
|
1305
|
+
var DeleteUniqueIdErrorsList = [1, n0, _DUIEL, 0, () => DeleteUniqueIdError$];
|
|
1306
|
+
var FailedRecordsList = [1, n0, _FRL, 0, () => FailedRecord$];
|
|
1307
|
+
var IdMappingJobOutputSourceConfig = [1, n0, _IMJOSC, 0, () => IdMappingJobOutputSource$];
|
|
1308
|
+
var IdMappingWorkflowInputSourceConfig = [1, n0, _IMWISC, 0, () => IdMappingWorkflowInputSource$];
|
|
1309
|
+
var IdMappingWorkflowList = [1, n0, _IMWL, 0, () => IdMappingWorkflowSummary$];
|
|
1310
|
+
var IdMappingWorkflowOutputSourceConfig = [1, n0, _IMWOSC, 0, () => IdMappingWorkflowOutputSource$];
|
|
1315
1311
|
var IdNamespaceIdMappingWorkflowMetadataList = [
|
|
1316
1312
|
1,
|
|
1317
1313
|
n0,
|
|
1318
1314
|
_INIMWML,
|
|
1319
1315
|
0,
|
|
1320
|
-
() => IdNamespaceIdMappingWorkflowMetadata
|
|
1316
|
+
() => IdNamespaceIdMappingWorkflowMetadata$,
|
|
1321
1317
|
];
|
|
1322
1318
|
var IdNamespaceIdMappingWorkflowPropertiesList = [
|
|
1323
1319
|
1,
|
|
1324
1320
|
n0,
|
|
1325
1321
|
_INIMWPL,
|
|
1326
1322
|
0,
|
|
1327
|
-
() => IdNamespaceIdMappingWorkflowProperties
|
|
1328
|
-
];
|
|
1329
|
-
var IdNamespaceInputSourceConfig = [1, n0, _INISC, 0, () => IdNamespaceInputSource];
|
|
1330
|
-
var IdNamespaceList = [1, n0, _INL, 0, () => IdNamespaceSummary];
|
|
1331
|
-
var InputSourceConfig = [1, n0, _ISCn, 0, () => InputSource];
|
|
1332
|
-
var JobList = [1, n0, _JL, 0, () => JobSummary];
|
|
1333
|
-
var JobOutputSourceConfig = [1, n0, _JOSC, 0, () => JobOutputSource];
|
|
1334
|
-
var MatchedRecordsList = [1, n0, _MRL, 0, () => MatchedRecord];
|
|
1335
|
-
var MatchGroupsList = [1, n0, _MGL, 0, () => MatchGroup];
|
|
1336
|
-
var MatchingWorkflowList = [1, n0, _MWL, 0, () => MatchingWorkflowSummary];
|
|
1337
|
-
var OutputAttributes = [1, n0, _OAu, 0, () => OutputAttribute];
|
|
1338
|
-
var OutputSourceConfig = [1, n0, _OSC, 0, () => OutputSource];
|
|
1339
|
-
var ProviderSchemaAttributes = [1, n0, _PSAr, 0, () => ProviderSchemaAttribute];
|
|
1340
|
-
var ProviderServiceList = [1, n0, _PSL, 0, () => ProviderServiceSummary];
|
|
1341
|
-
var RecordList = [1, n0, _RL, 0, [() => _Record
|
|
1342
|
-
var RuleConditionList = [1, n0, _RCL, 0, () => RuleCondition];
|
|
1343
|
-
var RuleList = [1, n0, _RLu, 0, () => Rule];
|
|
1344
|
-
var SchemaInputAttributes = [1, n0, _SIAc, 0, () => SchemaInputAttribute];
|
|
1345
|
-
var SchemaMappingList = [1, n0, _SML, 0, () => SchemaMappingSummary];
|
|
1323
|
+
() => IdNamespaceIdMappingWorkflowProperties$,
|
|
1324
|
+
];
|
|
1325
|
+
var IdNamespaceInputSourceConfig = [1, n0, _INISC, 0, () => IdNamespaceInputSource$];
|
|
1326
|
+
var IdNamespaceList = [1, n0, _INL, 0, () => IdNamespaceSummary$];
|
|
1327
|
+
var InputSourceConfig = [1, n0, _ISCn, 0, () => InputSource$];
|
|
1328
|
+
var JobList = [1, n0, _JL, 0, () => JobSummary$];
|
|
1329
|
+
var JobOutputSourceConfig = [1, n0, _JOSC, 0, () => JobOutputSource$];
|
|
1330
|
+
var MatchedRecordsList = [1, n0, _MRL, 0, () => MatchedRecord$];
|
|
1331
|
+
var MatchGroupsList = [1, n0, _MGL, 0, () => MatchGroup$];
|
|
1332
|
+
var MatchingWorkflowList = [1, n0, _MWL, 0, () => MatchingWorkflowSummary$];
|
|
1333
|
+
var OutputAttributes = [1, n0, _OAu, 0, () => OutputAttribute$];
|
|
1334
|
+
var OutputSourceConfig = [1, n0, _OSC, 0, () => OutputSource$];
|
|
1335
|
+
var ProviderSchemaAttributes = [1, n0, _PSAr, 0, () => ProviderSchemaAttribute$];
|
|
1336
|
+
var ProviderServiceList = [1, n0, _PSL, 0, () => ProviderServiceSummary$];
|
|
1337
|
+
var RecordList = [1, n0, _RL, 0, [() => _Record$, 0]];
|
|
1338
|
+
var RuleConditionList = [1, n0, _RCL, 0, () => RuleCondition$];
|
|
1339
|
+
var RuleList = [1, n0, _RLu, 0, () => Rule$];
|
|
1340
|
+
var SchemaInputAttributes = [1, n0, _SIAc, 0, () => SchemaInputAttribute$];
|
|
1341
|
+
var SchemaMappingList = [1, n0, _SML, 0, () => SchemaMappingSummary$];
|
|
1346
1342
|
var RecordAttributeMap = [2, n0, _RAM, 8, 0, 0];
|
|
1347
1343
|
var RecordAttributeMapString255 = [2, n0, _RAMS, 8, 0, 0];
|
|
1348
|
-
var ProviderEndpointConfiguration = [
|
|
1344
|
+
var ProviderEndpointConfiguration$ = [
|
|
1349
1345
|
3,
|
|
1350
1346
|
n0,
|
|
1351
1347
|
_PEC,
|
|
1352
1348
|
0,
|
|
1353
1349
|
[_mC],
|
|
1354
|
-
[() => ProviderMarketplaceConfiguration],
|
|
1350
|
+
[() => ProviderMarketplaceConfiguration$],
|
|
1355
1351
|
];
|
|
1356
|
-
var AddPolicyStatement = [
|
|
1352
|
+
var AddPolicyStatement$ = [
|
|
1357
1353
|
9,
|
|
1358
1354
|
n0,
|
|
1359
1355
|
_APS,
|
|
1360
1356
|
{ [_ht]: ["POST", "/policies/{arn}/{statementId}", 200] },
|
|
1361
|
-
() => AddPolicyStatementInput
|
|
1362
|
-
() => AddPolicyStatementOutput
|
|
1357
|
+
() => AddPolicyStatementInput$,
|
|
1358
|
+
() => AddPolicyStatementOutput$,
|
|
1363
1359
|
];
|
|
1364
|
-
var BatchDeleteUniqueId = [
|
|
1360
|
+
var BatchDeleteUniqueId$ = [
|
|
1365
1361
|
9,
|
|
1366
1362
|
n0,
|
|
1367
1363
|
_BDUI,
|
|
1368
1364
|
{ [_ht]: ["DELETE", "/matchingworkflows/{workflowName}/uniqueids", 200] },
|
|
1369
|
-
() => BatchDeleteUniqueIdInput
|
|
1370
|
-
() => BatchDeleteUniqueIdOutput
|
|
1365
|
+
() => BatchDeleteUniqueIdInput$,
|
|
1366
|
+
() => BatchDeleteUniqueIdOutput$,
|
|
1371
1367
|
];
|
|
1372
|
-
var CreateIdMappingWorkflow = [
|
|
1368
|
+
var CreateIdMappingWorkflow$ = [
|
|
1373
1369
|
9,
|
|
1374
1370
|
n0,
|
|
1375
1371
|
_CIMW,
|
|
1376
1372
|
{ [_ht]: ["POST", "/idmappingworkflows", 200] },
|
|
1377
|
-
() => CreateIdMappingWorkflowInput
|
|
1378
|
-
() => CreateIdMappingWorkflowOutput
|
|
1373
|
+
() => CreateIdMappingWorkflowInput$,
|
|
1374
|
+
() => CreateIdMappingWorkflowOutput$,
|
|
1379
1375
|
];
|
|
1380
|
-
var CreateIdNamespace = [
|
|
1376
|
+
var CreateIdNamespace$ = [
|
|
1381
1377
|
9,
|
|
1382
1378
|
n0,
|
|
1383
1379
|
_CIN,
|
|
1384
1380
|
{ [_ht]: ["POST", "/idnamespaces", 200] },
|
|
1385
|
-
() => CreateIdNamespaceInput
|
|
1386
|
-
() => CreateIdNamespaceOutput
|
|
1381
|
+
() => CreateIdNamespaceInput$,
|
|
1382
|
+
() => CreateIdNamespaceOutput$,
|
|
1387
1383
|
];
|
|
1388
|
-
var CreateMatchingWorkflow = [
|
|
1384
|
+
var CreateMatchingWorkflow$ = [
|
|
1389
1385
|
9,
|
|
1390
1386
|
n0,
|
|
1391
1387
|
_CMW,
|
|
1392
1388
|
{ [_ht]: ["POST", "/matchingworkflows", 200] },
|
|
1393
|
-
() => CreateMatchingWorkflowInput
|
|
1394
|
-
() => CreateMatchingWorkflowOutput
|
|
1389
|
+
() => CreateMatchingWorkflowInput$,
|
|
1390
|
+
() => CreateMatchingWorkflowOutput$,
|
|
1395
1391
|
];
|
|
1396
|
-
var CreateSchemaMapping = [
|
|
1392
|
+
var CreateSchemaMapping$ = [
|
|
1397
1393
|
9,
|
|
1398
1394
|
n0,
|
|
1399
1395
|
_CSM,
|
|
1400
1396
|
{ [_ht]: ["POST", "/schemas", 200] },
|
|
1401
|
-
() => CreateSchemaMappingInput
|
|
1402
|
-
() => CreateSchemaMappingOutput
|
|
1397
|
+
() => CreateSchemaMappingInput$,
|
|
1398
|
+
() => CreateSchemaMappingOutput$,
|
|
1403
1399
|
];
|
|
1404
|
-
var DeleteIdMappingWorkflow = [
|
|
1400
|
+
var DeleteIdMappingWorkflow$ = [
|
|
1405
1401
|
9,
|
|
1406
1402
|
n0,
|
|
1407
1403
|
_DIMW,
|
|
1408
1404
|
{ [_ht]: ["DELETE", "/idmappingworkflows/{workflowName}", 200] },
|
|
1409
|
-
() => DeleteIdMappingWorkflowInput
|
|
1410
|
-
() => DeleteIdMappingWorkflowOutput
|
|
1405
|
+
() => DeleteIdMappingWorkflowInput$,
|
|
1406
|
+
() => DeleteIdMappingWorkflowOutput$,
|
|
1411
1407
|
];
|
|
1412
|
-
var DeleteIdNamespace = [
|
|
1408
|
+
var DeleteIdNamespace$ = [
|
|
1413
1409
|
9,
|
|
1414
1410
|
n0,
|
|
1415
1411
|
_DIN,
|
|
1416
1412
|
{ [_ht]: ["DELETE", "/idnamespaces/{idNamespaceName}", 200] },
|
|
1417
|
-
() => DeleteIdNamespaceInput
|
|
1418
|
-
() => DeleteIdNamespaceOutput
|
|
1413
|
+
() => DeleteIdNamespaceInput$,
|
|
1414
|
+
() => DeleteIdNamespaceOutput$,
|
|
1419
1415
|
];
|
|
1420
|
-
var DeleteMatchingWorkflow = [
|
|
1416
|
+
var DeleteMatchingWorkflow$ = [
|
|
1421
1417
|
9,
|
|
1422
1418
|
n0,
|
|
1423
1419
|
_DMW,
|
|
1424
1420
|
{ [_ht]: ["DELETE", "/matchingworkflows/{workflowName}", 200] },
|
|
1425
|
-
() => DeleteMatchingWorkflowInput
|
|
1426
|
-
() => DeleteMatchingWorkflowOutput
|
|
1421
|
+
() => DeleteMatchingWorkflowInput$,
|
|
1422
|
+
() => DeleteMatchingWorkflowOutput$,
|
|
1427
1423
|
];
|
|
1428
|
-
var DeletePolicyStatement = [
|
|
1424
|
+
var DeletePolicyStatement$ = [
|
|
1429
1425
|
9,
|
|
1430
1426
|
n0,
|
|
1431
1427
|
_DPS,
|
|
1432
1428
|
{ [_ht]: ["DELETE", "/policies/{arn}/{statementId}", 200] },
|
|
1433
|
-
() => DeletePolicyStatementInput
|
|
1434
|
-
() => DeletePolicyStatementOutput
|
|
1429
|
+
() => DeletePolicyStatementInput$,
|
|
1430
|
+
() => DeletePolicyStatementOutput$,
|
|
1435
1431
|
];
|
|
1436
|
-
var DeleteSchemaMapping = [
|
|
1432
|
+
var DeleteSchemaMapping$ = [
|
|
1437
1433
|
9,
|
|
1438
1434
|
n0,
|
|
1439
1435
|
_DSM,
|
|
1440
1436
|
{ [_ht]: ["DELETE", "/schemas/{schemaName}", 200] },
|
|
1441
|
-
() => DeleteSchemaMappingInput
|
|
1442
|
-
() => DeleteSchemaMappingOutput
|
|
1437
|
+
() => DeleteSchemaMappingInput$,
|
|
1438
|
+
() => DeleteSchemaMappingOutput$,
|
|
1443
1439
|
];
|
|
1444
|
-
var GenerateMatchId = [
|
|
1440
|
+
var GenerateMatchId$ = [
|
|
1445
1441
|
9,
|
|
1446
1442
|
n0,
|
|
1447
1443
|
_GMI,
|
|
1448
1444
|
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/generateMatches", 200] },
|
|
1449
|
-
() => GenerateMatchIdInput
|
|
1450
|
-
() => GenerateMatchIdOutput
|
|
1445
|
+
() => GenerateMatchIdInput$,
|
|
1446
|
+
() => GenerateMatchIdOutput$,
|
|
1451
1447
|
];
|
|
1452
|
-
var GetIdMappingJob = [
|
|
1448
|
+
var GetIdMappingJob$ = [
|
|
1453
1449
|
9,
|
|
1454
1450
|
n0,
|
|
1455
1451
|
_GIMJ,
|
|
1456
1452
|
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs/{jobId}", 200] },
|
|
1457
|
-
() => GetIdMappingJobInput
|
|
1458
|
-
() => GetIdMappingJobOutput
|
|
1453
|
+
() => GetIdMappingJobInput$,
|
|
1454
|
+
() => GetIdMappingJobOutput$,
|
|
1459
1455
|
];
|
|
1460
|
-
var GetIdMappingWorkflow = [
|
|
1456
|
+
var GetIdMappingWorkflow$ = [
|
|
1461
1457
|
9,
|
|
1462
1458
|
n0,
|
|
1463
1459
|
_GIMW,
|
|
1464
1460
|
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}", 200] },
|
|
1465
|
-
() => GetIdMappingWorkflowInput
|
|
1466
|
-
() => GetIdMappingWorkflowOutput
|
|
1461
|
+
() => GetIdMappingWorkflowInput$,
|
|
1462
|
+
() => GetIdMappingWorkflowOutput$,
|
|
1467
1463
|
];
|
|
1468
|
-
var GetIdNamespace = [
|
|
1464
|
+
var GetIdNamespace$ = [
|
|
1469
1465
|
9,
|
|
1470
1466
|
n0,
|
|
1471
1467
|
_GIN,
|
|
1472
1468
|
{ [_ht]: ["GET", "/idnamespaces/{idNamespaceName}", 200] },
|
|
1473
|
-
() => GetIdNamespaceInput
|
|
1474
|
-
() => GetIdNamespaceOutput
|
|
1469
|
+
() => GetIdNamespaceInput$,
|
|
1470
|
+
() => GetIdNamespaceOutput$,
|
|
1475
1471
|
];
|
|
1476
|
-
var GetMatchId = [
|
|
1472
|
+
var GetMatchId$ = [
|
|
1477
1473
|
9,
|
|
1478
1474
|
n0,
|
|
1479
1475
|
_GMIe,
|
|
1480
1476
|
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/matches", 200] },
|
|
1481
|
-
() => GetMatchIdInput
|
|
1482
|
-
() => GetMatchIdOutput
|
|
1477
|
+
() => GetMatchIdInput$,
|
|
1478
|
+
() => GetMatchIdOutput$,
|
|
1483
1479
|
];
|
|
1484
|
-
var GetMatchingJob = [
|
|
1480
|
+
var GetMatchingJob$ = [
|
|
1485
1481
|
9,
|
|
1486
1482
|
n0,
|
|
1487
1483
|
_GMJ,
|
|
1488
1484
|
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs/{jobId}", 200] },
|
|
1489
|
-
() => GetMatchingJobInput
|
|
1490
|
-
() => GetMatchingJobOutput
|
|
1485
|
+
() => GetMatchingJobInput$,
|
|
1486
|
+
() => GetMatchingJobOutput$,
|
|
1491
1487
|
];
|
|
1492
|
-
var GetMatchingWorkflow = [
|
|
1488
|
+
var GetMatchingWorkflow$ = [
|
|
1493
1489
|
9,
|
|
1494
1490
|
n0,
|
|
1495
1491
|
_GMW,
|
|
1496
1492
|
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}", 200] },
|
|
1497
|
-
() => GetMatchingWorkflowInput
|
|
1498
|
-
() => GetMatchingWorkflowOutput
|
|
1493
|
+
() => GetMatchingWorkflowInput$,
|
|
1494
|
+
() => GetMatchingWorkflowOutput$,
|
|
1499
1495
|
];
|
|
1500
|
-
var GetPolicy = [
|
|
1496
|
+
var GetPolicy$ = [
|
|
1501
1497
|
9,
|
|
1502
1498
|
n0,
|
|
1503
1499
|
_GP,
|
|
1504
1500
|
{ [_ht]: ["GET", "/policies/{arn}", 200] },
|
|
1505
|
-
() => GetPolicyInput
|
|
1506
|
-
() => GetPolicyOutput
|
|
1501
|
+
() => GetPolicyInput$,
|
|
1502
|
+
() => GetPolicyOutput$,
|
|
1507
1503
|
];
|
|
1508
|
-
var GetProviderService = [
|
|
1504
|
+
var GetProviderService$ = [
|
|
1509
1505
|
9,
|
|
1510
1506
|
n0,
|
|
1511
1507
|
_GPS,
|
|
1512
1508
|
{ [_ht]: ["GET", "/providerservices/{providerName}/{providerServiceName}", 200] },
|
|
1513
|
-
() => GetProviderServiceInput
|
|
1514
|
-
() => GetProviderServiceOutput
|
|
1509
|
+
() => GetProviderServiceInput$,
|
|
1510
|
+
() => GetProviderServiceOutput$,
|
|
1515
1511
|
];
|
|
1516
|
-
var GetSchemaMapping = [
|
|
1512
|
+
var GetSchemaMapping$ = [
|
|
1517
1513
|
9,
|
|
1518
1514
|
n0,
|
|
1519
1515
|
_GSM,
|
|
1520
1516
|
{ [_ht]: ["GET", "/schemas/{schemaName}", 200] },
|
|
1521
|
-
() => GetSchemaMappingInput
|
|
1522
|
-
() => GetSchemaMappingOutput
|
|
1517
|
+
() => GetSchemaMappingInput$,
|
|
1518
|
+
() => GetSchemaMappingOutput$,
|
|
1523
1519
|
];
|
|
1524
|
-
var ListIdMappingJobs = [
|
|
1520
|
+
var ListIdMappingJobs$ = [
|
|
1525
1521
|
9,
|
|
1526
1522
|
n0,
|
|
1527
1523
|
_LIMJ,
|
|
1528
1524
|
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs", 200] },
|
|
1529
|
-
() => ListIdMappingJobsInput
|
|
1530
|
-
() => ListIdMappingJobsOutput
|
|
1525
|
+
() => ListIdMappingJobsInput$,
|
|
1526
|
+
() => ListIdMappingJobsOutput$,
|
|
1531
1527
|
];
|
|
1532
|
-
var ListIdMappingWorkflows = [
|
|
1528
|
+
var ListIdMappingWorkflows$ = [
|
|
1533
1529
|
9,
|
|
1534
1530
|
n0,
|
|
1535
1531
|
_LIMW,
|
|
1536
1532
|
{ [_ht]: ["GET", "/idmappingworkflows", 200] },
|
|
1537
|
-
() => ListIdMappingWorkflowsInput
|
|
1538
|
-
() => ListIdMappingWorkflowsOutput
|
|
1533
|
+
() => ListIdMappingWorkflowsInput$,
|
|
1534
|
+
() => ListIdMappingWorkflowsOutput$,
|
|
1539
1535
|
];
|
|
1540
|
-
var ListIdNamespaces = [
|
|
1536
|
+
var ListIdNamespaces$ = [
|
|
1541
1537
|
9,
|
|
1542
1538
|
n0,
|
|
1543
1539
|
_LIN,
|
|
1544
1540
|
{ [_ht]: ["GET", "/idnamespaces", 200] },
|
|
1545
|
-
() => ListIdNamespacesInput
|
|
1546
|
-
() => ListIdNamespacesOutput
|
|
1541
|
+
() => ListIdNamespacesInput$,
|
|
1542
|
+
() => ListIdNamespacesOutput$,
|
|
1547
1543
|
];
|
|
1548
|
-
var ListMatchingJobs = [
|
|
1544
|
+
var ListMatchingJobs$ = [
|
|
1549
1545
|
9,
|
|
1550
1546
|
n0,
|
|
1551
1547
|
_LMJ,
|
|
1552
1548
|
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs", 200] },
|
|
1553
|
-
() => ListMatchingJobsInput
|
|
1554
|
-
() => ListMatchingJobsOutput
|
|
1549
|
+
() => ListMatchingJobsInput$,
|
|
1550
|
+
() => ListMatchingJobsOutput$,
|
|
1555
1551
|
];
|
|
1556
|
-
var ListMatchingWorkflows = [
|
|
1552
|
+
var ListMatchingWorkflows$ = [
|
|
1557
1553
|
9,
|
|
1558
1554
|
n0,
|
|
1559
1555
|
_LMW,
|
|
1560
1556
|
{ [_ht]: ["GET", "/matchingworkflows", 200] },
|
|
1561
|
-
() => ListMatchingWorkflowsInput
|
|
1562
|
-
() => ListMatchingWorkflowsOutput
|
|
1557
|
+
() => ListMatchingWorkflowsInput$,
|
|
1558
|
+
() => ListMatchingWorkflowsOutput$,
|
|
1563
1559
|
];
|
|
1564
|
-
var ListProviderServices = [
|
|
1560
|
+
var ListProviderServices$ = [
|
|
1565
1561
|
9,
|
|
1566
1562
|
n0,
|
|
1567
1563
|
_LPS,
|
|
1568
1564
|
{ [_ht]: ["GET", "/providerservices", 200] },
|
|
1569
|
-
() => ListProviderServicesInput
|
|
1570
|
-
() => ListProviderServicesOutput
|
|
1565
|
+
() => ListProviderServicesInput$,
|
|
1566
|
+
() => ListProviderServicesOutput$,
|
|
1571
1567
|
];
|
|
1572
|
-
var ListSchemaMappings = [
|
|
1568
|
+
var ListSchemaMappings$ = [
|
|
1573
1569
|
9,
|
|
1574
1570
|
n0,
|
|
1575
1571
|
_LSM,
|
|
1576
1572
|
{ [_ht]: ["GET", "/schemas", 200] },
|
|
1577
|
-
() => ListSchemaMappingsInput
|
|
1578
|
-
() => ListSchemaMappingsOutput
|
|
1573
|
+
() => ListSchemaMappingsInput$,
|
|
1574
|
+
() => ListSchemaMappingsOutput$,
|
|
1579
1575
|
];
|
|
1580
|
-
var ListTagsForResource = [
|
|
1576
|
+
var ListTagsForResource$ = [
|
|
1581
1577
|
9,
|
|
1582
1578
|
n0,
|
|
1583
1579
|
_LTFR,
|
|
1584
1580
|
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] },
|
|
1585
|
-
() => ListTagsForResourceInput
|
|
1586
|
-
() => ListTagsForResourceOutput
|
|
1581
|
+
() => ListTagsForResourceInput$,
|
|
1582
|
+
() => ListTagsForResourceOutput$,
|
|
1587
1583
|
];
|
|
1588
|
-
var PutPolicy = [
|
|
1584
|
+
var PutPolicy$ = [
|
|
1589
1585
|
9,
|
|
1590
1586
|
n0,
|
|
1591
1587
|
_PPu,
|
|
1592
1588
|
{ [_ht]: ["PUT", "/policies/{arn}", 200] },
|
|
1593
|
-
() => PutPolicyInput
|
|
1594
|
-
() => PutPolicyOutput
|
|
1589
|
+
() => PutPolicyInput$,
|
|
1590
|
+
() => PutPolicyOutput$,
|
|
1595
1591
|
];
|
|
1596
|
-
var StartIdMappingJob = [
|
|
1592
|
+
var StartIdMappingJob$ = [
|
|
1597
1593
|
9,
|
|
1598
1594
|
n0,
|
|
1599
1595
|
_SIMJ,
|
|
1600
1596
|
{ [_ht]: ["POST", "/idmappingworkflows/{workflowName}/jobs", 200] },
|
|
1601
|
-
() => StartIdMappingJobInput
|
|
1602
|
-
() => StartIdMappingJobOutput
|
|
1597
|
+
() => StartIdMappingJobInput$,
|
|
1598
|
+
() => StartIdMappingJobOutput$,
|
|
1603
1599
|
];
|
|
1604
|
-
var StartMatchingJob = [
|
|
1600
|
+
var StartMatchingJob$ = [
|
|
1605
1601
|
9,
|
|
1606
1602
|
n0,
|
|
1607
1603
|
_SMJ,
|
|
1608
1604
|
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/jobs", 200] },
|
|
1609
|
-
() => StartMatchingJobInput
|
|
1610
|
-
() => StartMatchingJobOutput
|
|
1605
|
+
() => StartMatchingJobInput$,
|
|
1606
|
+
() => StartMatchingJobOutput$,
|
|
1611
1607
|
];
|
|
1612
|
-
var TagResource = [
|
|
1608
|
+
var TagResource$ = [
|
|
1613
1609
|
9,
|
|
1614
1610
|
n0,
|
|
1615
1611
|
_TR,
|
|
1616
1612
|
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] },
|
|
1617
|
-
() => TagResourceInput
|
|
1618
|
-
() => TagResourceOutput
|
|
1613
|
+
() => TagResourceInput$,
|
|
1614
|
+
() => TagResourceOutput$,
|
|
1619
1615
|
];
|
|
1620
|
-
var UntagResource = [
|
|
1616
|
+
var UntagResource$ = [
|
|
1621
1617
|
9,
|
|
1622
1618
|
n0,
|
|
1623
1619
|
_UR,
|
|
1624
1620
|
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
1625
|
-
() => UntagResourceInput
|
|
1626
|
-
() => UntagResourceOutput
|
|
1621
|
+
() => UntagResourceInput$,
|
|
1622
|
+
() => UntagResourceOutput$,
|
|
1627
1623
|
];
|
|
1628
|
-
var UpdateIdMappingWorkflow = [
|
|
1624
|
+
var UpdateIdMappingWorkflow$ = [
|
|
1629
1625
|
9,
|
|
1630
1626
|
n0,
|
|
1631
1627
|
_UIMW,
|
|
1632
1628
|
{ [_ht]: ["PUT", "/idmappingworkflows/{workflowName}", 200] },
|
|
1633
|
-
() => UpdateIdMappingWorkflowInput
|
|
1634
|
-
() => UpdateIdMappingWorkflowOutput
|
|
1629
|
+
() => UpdateIdMappingWorkflowInput$,
|
|
1630
|
+
() => UpdateIdMappingWorkflowOutput$,
|
|
1635
1631
|
];
|
|
1636
|
-
var UpdateIdNamespace = [
|
|
1632
|
+
var UpdateIdNamespace$ = [
|
|
1637
1633
|
9,
|
|
1638
1634
|
n0,
|
|
1639
1635
|
_UIN,
|
|
1640
1636
|
{ [_ht]: ["PUT", "/idnamespaces/{idNamespaceName}", 200] },
|
|
1641
|
-
() => UpdateIdNamespaceInput
|
|
1642
|
-
() => UpdateIdNamespaceOutput
|
|
1637
|
+
() => UpdateIdNamespaceInput$,
|
|
1638
|
+
() => UpdateIdNamespaceOutput$,
|
|
1643
1639
|
];
|
|
1644
|
-
var UpdateMatchingWorkflow = [
|
|
1640
|
+
var UpdateMatchingWorkflow$ = [
|
|
1645
1641
|
9,
|
|
1646
1642
|
n0,
|
|
1647
1643
|
_UMW,
|
|
1648
1644
|
{ [_ht]: ["PUT", "/matchingworkflows/{workflowName}", 200] },
|
|
1649
|
-
() => UpdateMatchingWorkflowInput
|
|
1650
|
-
() => UpdateMatchingWorkflowOutput
|
|
1645
|
+
() => UpdateMatchingWorkflowInput$,
|
|
1646
|
+
() => UpdateMatchingWorkflowOutput$,
|
|
1651
1647
|
];
|
|
1652
|
-
var UpdateSchemaMapping = [
|
|
1648
|
+
var UpdateSchemaMapping$ = [
|
|
1653
1649
|
9,
|
|
1654
1650
|
n0,
|
|
1655
1651
|
_USM,
|
|
1656
1652
|
{ [_ht]: ["PUT", "/schemas/{schemaName}", 200] },
|
|
1657
|
-
() => UpdateSchemaMappingInput
|
|
1658
|
-
() => UpdateSchemaMappingOutput
|
|
1653
|
+
() => UpdateSchemaMappingInput$,
|
|
1654
|
+
() => UpdateSchemaMappingOutput$,
|
|
1659
1655
|
];
|
|
1660
1656
|
|
|
1661
1657
|
class AddPolicyStatementCommand extends smithyClient.Command
|
|
@@ -1666,7 +1662,7 @@ class AddPolicyStatementCommand extends smithyClient.Command
|
|
|
1666
1662
|
})
|
|
1667
1663
|
.s("AWSVeniceService", "AddPolicyStatement", {})
|
|
1668
1664
|
.n("EntityResolutionClient", "AddPolicyStatementCommand")
|
|
1669
|
-
.sc(AddPolicyStatement)
|
|
1665
|
+
.sc(AddPolicyStatement$)
|
|
1670
1666
|
.build() {
|
|
1671
1667
|
}
|
|
1672
1668
|
|
|
@@ -1678,7 +1674,7 @@ class BatchDeleteUniqueIdCommand extends smithyClient.Command
|
|
|
1678
1674
|
})
|
|
1679
1675
|
.s("AWSVeniceService", "BatchDeleteUniqueId", {})
|
|
1680
1676
|
.n("EntityResolutionClient", "BatchDeleteUniqueIdCommand")
|
|
1681
|
-
.sc(BatchDeleteUniqueId)
|
|
1677
|
+
.sc(BatchDeleteUniqueId$)
|
|
1682
1678
|
.build() {
|
|
1683
1679
|
}
|
|
1684
1680
|
|
|
@@ -1690,7 +1686,7 @@ class CreateIdMappingWorkflowCommand extends smithyClient.Command
|
|
|
1690
1686
|
})
|
|
1691
1687
|
.s("AWSVeniceService", "CreateIdMappingWorkflow", {})
|
|
1692
1688
|
.n("EntityResolutionClient", "CreateIdMappingWorkflowCommand")
|
|
1693
|
-
.sc(CreateIdMappingWorkflow)
|
|
1689
|
+
.sc(CreateIdMappingWorkflow$)
|
|
1694
1690
|
.build() {
|
|
1695
1691
|
}
|
|
1696
1692
|
|
|
@@ -1702,7 +1698,7 @@ class CreateIdNamespaceCommand extends smithyClient.Command
|
|
|
1702
1698
|
})
|
|
1703
1699
|
.s("AWSVeniceService", "CreateIdNamespace", {})
|
|
1704
1700
|
.n("EntityResolutionClient", "CreateIdNamespaceCommand")
|
|
1705
|
-
.sc(CreateIdNamespace)
|
|
1701
|
+
.sc(CreateIdNamespace$)
|
|
1706
1702
|
.build() {
|
|
1707
1703
|
}
|
|
1708
1704
|
|
|
@@ -1714,7 +1710,7 @@ class CreateMatchingWorkflowCommand extends smithyClient.Command
|
|
|
1714
1710
|
})
|
|
1715
1711
|
.s("AWSVeniceService", "CreateMatchingWorkflow", {})
|
|
1716
1712
|
.n("EntityResolutionClient", "CreateMatchingWorkflowCommand")
|
|
1717
|
-
.sc(CreateMatchingWorkflow)
|
|
1713
|
+
.sc(CreateMatchingWorkflow$)
|
|
1718
1714
|
.build() {
|
|
1719
1715
|
}
|
|
1720
1716
|
|
|
@@ -1726,7 +1722,7 @@ class CreateSchemaMappingCommand extends smithyClient.Command
|
|
|
1726
1722
|
})
|
|
1727
1723
|
.s("AWSVeniceService", "CreateSchemaMapping", {})
|
|
1728
1724
|
.n("EntityResolutionClient", "CreateSchemaMappingCommand")
|
|
1729
|
-
.sc(CreateSchemaMapping)
|
|
1725
|
+
.sc(CreateSchemaMapping$)
|
|
1730
1726
|
.build() {
|
|
1731
1727
|
}
|
|
1732
1728
|
|
|
@@ -1738,7 +1734,7 @@ class DeleteIdMappingWorkflowCommand extends smithyClient.Command
|
|
|
1738
1734
|
})
|
|
1739
1735
|
.s("AWSVeniceService", "DeleteIdMappingWorkflow", {})
|
|
1740
1736
|
.n("EntityResolutionClient", "DeleteIdMappingWorkflowCommand")
|
|
1741
|
-
.sc(DeleteIdMappingWorkflow)
|
|
1737
|
+
.sc(DeleteIdMappingWorkflow$)
|
|
1742
1738
|
.build() {
|
|
1743
1739
|
}
|
|
1744
1740
|
|
|
@@ -1750,7 +1746,7 @@ class DeleteIdNamespaceCommand extends smithyClient.Command
|
|
|
1750
1746
|
})
|
|
1751
1747
|
.s("AWSVeniceService", "DeleteIdNamespace", {})
|
|
1752
1748
|
.n("EntityResolutionClient", "DeleteIdNamespaceCommand")
|
|
1753
|
-
.sc(DeleteIdNamespace)
|
|
1749
|
+
.sc(DeleteIdNamespace$)
|
|
1754
1750
|
.build() {
|
|
1755
1751
|
}
|
|
1756
1752
|
|
|
@@ -1762,7 +1758,7 @@ class DeleteMatchingWorkflowCommand extends smithyClient.Command
|
|
|
1762
1758
|
})
|
|
1763
1759
|
.s("AWSVeniceService", "DeleteMatchingWorkflow", {})
|
|
1764
1760
|
.n("EntityResolutionClient", "DeleteMatchingWorkflowCommand")
|
|
1765
|
-
.sc(DeleteMatchingWorkflow)
|
|
1761
|
+
.sc(DeleteMatchingWorkflow$)
|
|
1766
1762
|
.build() {
|
|
1767
1763
|
}
|
|
1768
1764
|
|
|
@@ -1774,7 +1770,7 @@ class DeletePolicyStatementCommand extends smithyClient.Command
|
|
|
1774
1770
|
})
|
|
1775
1771
|
.s("AWSVeniceService", "DeletePolicyStatement", {})
|
|
1776
1772
|
.n("EntityResolutionClient", "DeletePolicyStatementCommand")
|
|
1777
|
-
.sc(DeletePolicyStatement)
|
|
1773
|
+
.sc(DeletePolicyStatement$)
|
|
1778
1774
|
.build() {
|
|
1779
1775
|
}
|
|
1780
1776
|
|
|
@@ -1786,7 +1782,7 @@ class DeleteSchemaMappingCommand extends smithyClient.Command
|
|
|
1786
1782
|
})
|
|
1787
1783
|
.s("AWSVeniceService", "DeleteSchemaMapping", {})
|
|
1788
1784
|
.n("EntityResolutionClient", "DeleteSchemaMappingCommand")
|
|
1789
|
-
.sc(DeleteSchemaMapping)
|
|
1785
|
+
.sc(DeleteSchemaMapping$)
|
|
1790
1786
|
.build() {
|
|
1791
1787
|
}
|
|
1792
1788
|
|
|
@@ -1798,7 +1794,7 @@ class GenerateMatchIdCommand extends smithyClient.Command
|
|
|
1798
1794
|
})
|
|
1799
1795
|
.s("AWSVeniceService", "GenerateMatchId", {})
|
|
1800
1796
|
.n("EntityResolutionClient", "GenerateMatchIdCommand")
|
|
1801
|
-
.sc(GenerateMatchId)
|
|
1797
|
+
.sc(GenerateMatchId$)
|
|
1802
1798
|
.build() {
|
|
1803
1799
|
}
|
|
1804
1800
|
|
|
@@ -1810,7 +1806,7 @@ class GetIdMappingJobCommand extends smithyClient.Command
|
|
|
1810
1806
|
})
|
|
1811
1807
|
.s("AWSVeniceService", "GetIdMappingJob", {})
|
|
1812
1808
|
.n("EntityResolutionClient", "GetIdMappingJobCommand")
|
|
1813
|
-
.sc(GetIdMappingJob)
|
|
1809
|
+
.sc(GetIdMappingJob$)
|
|
1814
1810
|
.build() {
|
|
1815
1811
|
}
|
|
1816
1812
|
|
|
@@ -1822,7 +1818,7 @@ class GetIdMappingWorkflowCommand extends smithyClient.Command
|
|
|
1822
1818
|
})
|
|
1823
1819
|
.s("AWSVeniceService", "GetIdMappingWorkflow", {})
|
|
1824
1820
|
.n("EntityResolutionClient", "GetIdMappingWorkflowCommand")
|
|
1825
|
-
.sc(GetIdMappingWorkflow)
|
|
1821
|
+
.sc(GetIdMappingWorkflow$)
|
|
1826
1822
|
.build() {
|
|
1827
1823
|
}
|
|
1828
1824
|
|
|
@@ -1834,7 +1830,7 @@ class GetIdNamespaceCommand extends smithyClient.Command
|
|
|
1834
1830
|
})
|
|
1835
1831
|
.s("AWSVeniceService", "GetIdNamespace", {})
|
|
1836
1832
|
.n("EntityResolutionClient", "GetIdNamespaceCommand")
|
|
1837
|
-
.sc(GetIdNamespace)
|
|
1833
|
+
.sc(GetIdNamespace$)
|
|
1838
1834
|
.build() {
|
|
1839
1835
|
}
|
|
1840
1836
|
|
|
@@ -1846,7 +1842,7 @@ class GetMatchIdCommand extends smithyClient.Command
|
|
|
1846
1842
|
})
|
|
1847
1843
|
.s("AWSVeniceService", "GetMatchId", {})
|
|
1848
1844
|
.n("EntityResolutionClient", "GetMatchIdCommand")
|
|
1849
|
-
.sc(GetMatchId)
|
|
1845
|
+
.sc(GetMatchId$)
|
|
1850
1846
|
.build() {
|
|
1851
1847
|
}
|
|
1852
1848
|
|
|
@@ -1858,7 +1854,7 @@ class GetMatchingJobCommand extends smithyClient.Command
|
|
|
1858
1854
|
})
|
|
1859
1855
|
.s("AWSVeniceService", "GetMatchingJob", {})
|
|
1860
1856
|
.n("EntityResolutionClient", "GetMatchingJobCommand")
|
|
1861
|
-
.sc(GetMatchingJob)
|
|
1857
|
+
.sc(GetMatchingJob$)
|
|
1862
1858
|
.build() {
|
|
1863
1859
|
}
|
|
1864
1860
|
|
|
@@ -1870,7 +1866,7 @@ class GetMatchingWorkflowCommand extends smithyClient.Command
|
|
|
1870
1866
|
})
|
|
1871
1867
|
.s("AWSVeniceService", "GetMatchingWorkflow", {})
|
|
1872
1868
|
.n("EntityResolutionClient", "GetMatchingWorkflowCommand")
|
|
1873
|
-
.sc(GetMatchingWorkflow)
|
|
1869
|
+
.sc(GetMatchingWorkflow$)
|
|
1874
1870
|
.build() {
|
|
1875
1871
|
}
|
|
1876
1872
|
|
|
@@ -1882,7 +1878,7 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
1882
1878
|
})
|
|
1883
1879
|
.s("AWSVeniceService", "GetPolicy", {})
|
|
1884
1880
|
.n("EntityResolutionClient", "GetPolicyCommand")
|
|
1885
|
-
.sc(GetPolicy)
|
|
1881
|
+
.sc(GetPolicy$)
|
|
1886
1882
|
.build() {
|
|
1887
1883
|
}
|
|
1888
1884
|
|
|
@@ -1894,7 +1890,7 @@ class GetProviderServiceCommand extends smithyClient.Command
|
|
|
1894
1890
|
})
|
|
1895
1891
|
.s("AWSVeniceService", "GetProviderService", {})
|
|
1896
1892
|
.n("EntityResolutionClient", "GetProviderServiceCommand")
|
|
1897
|
-
.sc(GetProviderService)
|
|
1893
|
+
.sc(GetProviderService$)
|
|
1898
1894
|
.build() {
|
|
1899
1895
|
}
|
|
1900
1896
|
|
|
@@ -1906,7 +1902,7 @@ class GetSchemaMappingCommand extends smithyClient.Command
|
|
|
1906
1902
|
})
|
|
1907
1903
|
.s("AWSVeniceService", "GetSchemaMapping", {})
|
|
1908
1904
|
.n("EntityResolutionClient", "GetSchemaMappingCommand")
|
|
1909
|
-
.sc(GetSchemaMapping)
|
|
1905
|
+
.sc(GetSchemaMapping$)
|
|
1910
1906
|
.build() {
|
|
1911
1907
|
}
|
|
1912
1908
|
|
|
@@ -1918,7 +1914,7 @@ class ListIdMappingJobsCommand extends smithyClient.Command
|
|
|
1918
1914
|
})
|
|
1919
1915
|
.s("AWSVeniceService", "ListIdMappingJobs", {})
|
|
1920
1916
|
.n("EntityResolutionClient", "ListIdMappingJobsCommand")
|
|
1921
|
-
.sc(ListIdMappingJobs)
|
|
1917
|
+
.sc(ListIdMappingJobs$)
|
|
1922
1918
|
.build() {
|
|
1923
1919
|
}
|
|
1924
1920
|
|
|
@@ -1930,7 +1926,7 @@ class ListIdMappingWorkflowsCommand extends smithyClient.Command
|
|
|
1930
1926
|
})
|
|
1931
1927
|
.s("AWSVeniceService", "ListIdMappingWorkflows", {})
|
|
1932
1928
|
.n("EntityResolutionClient", "ListIdMappingWorkflowsCommand")
|
|
1933
|
-
.sc(ListIdMappingWorkflows)
|
|
1929
|
+
.sc(ListIdMappingWorkflows$)
|
|
1934
1930
|
.build() {
|
|
1935
1931
|
}
|
|
1936
1932
|
|
|
@@ -1942,7 +1938,7 @@ class ListIdNamespacesCommand extends smithyClient.Command
|
|
|
1942
1938
|
})
|
|
1943
1939
|
.s("AWSVeniceService", "ListIdNamespaces", {})
|
|
1944
1940
|
.n("EntityResolutionClient", "ListIdNamespacesCommand")
|
|
1945
|
-
.sc(ListIdNamespaces)
|
|
1941
|
+
.sc(ListIdNamespaces$)
|
|
1946
1942
|
.build() {
|
|
1947
1943
|
}
|
|
1948
1944
|
|
|
@@ -1954,7 +1950,7 @@ class ListMatchingJobsCommand extends smithyClient.Command
|
|
|
1954
1950
|
})
|
|
1955
1951
|
.s("AWSVeniceService", "ListMatchingJobs", {})
|
|
1956
1952
|
.n("EntityResolutionClient", "ListMatchingJobsCommand")
|
|
1957
|
-
.sc(ListMatchingJobs)
|
|
1953
|
+
.sc(ListMatchingJobs$)
|
|
1958
1954
|
.build() {
|
|
1959
1955
|
}
|
|
1960
1956
|
|
|
@@ -1966,7 +1962,7 @@ class ListMatchingWorkflowsCommand extends smithyClient.Command
|
|
|
1966
1962
|
})
|
|
1967
1963
|
.s("AWSVeniceService", "ListMatchingWorkflows", {})
|
|
1968
1964
|
.n("EntityResolutionClient", "ListMatchingWorkflowsCommand")
|
|
1969
|
-
.sc(ListMatchingWorkflows)
|
|
1965
|
+
.sc(ListMatchingWorkflows$)
|
|
1970
1966
|
.build() {
|
|
1971
1967
|
}
|
|
1972
1968
|
|
|
@@ -1978,7 +1974,7 @@ class ListProviderServicesCommand extends smithyClient.Command
|
|
|
1978
1974
|
})
|
|
1979
1975
|
.s("AWSVeniceService", "ListProviderServices", {})
|
|
1980
1976
|
.n("EntityResolutionClient", "ListProviderServicesCommand")
|
|
1981
|
-
.sc(ListProviderServices)
|
|
1977
|
+
.sc(ListProviderServices$)
|
|
1982
1978
|
.build() {
|
|
1983
1979
|
}
|
|
1984
1980
|
|
|
@@ -1990,7 +1986,7 @@ class ListSchemaMappingsCommand extends smithyClient.Command
|
|
|
1990
1986
|
})
|
|
1991
1987
|
.s("AWSVeniceService", "ListSchemaMappings", {})
|
|
1992
1988
|
.n("EntityResolutionClient", "ListSchemaMappingsCommand")
|
|
1993
|
-
.sc(ListSchemaMappings)
|
|
1989
|
+
.sc(ListSchemaMappings$)
|
|
1994
1990
|
.build() {
|
|
1995
1991
|
}
|
|
1996
1992
|
|
|
@@ -2002,7 +1998,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2002
1998
|
})
|
|
2003
1999
|
.s("AWSVeniceService", "ListTagsForResource", {})
|
|
2004
2000
|
.n("EntityResolutionClient", "ListTagsForResourceCommand")
|
|
2005
|
-
.sc(ListTagsForResource)
|
|
2001
|
+
.sc(ListTagsForResource$)
|
|
2006
2002
|
.build() {
|
|
2007
2003
|
}
|
|
2008
2004
|
|
|
@@ -2014,7 +2010,7 @@ class PutPolicyCommand extends smithyClient.Command
|
|
|
2014
2010
|
})
|
|
2015
2011
|
.s("AWSVeniceService", "PutPolicy", {})
|
|
2016
2012
|
.n("EntityResolutionClient", "PutPolicyCommand")
|
|
2017
|
-
.sc(PutPolicy)
|
|
2013
|
+
.sc(PutPolicy$)
|
|
2018
2014
|
.build() {
|
|
2019
2015
|
}
|
|
2020
2016
|
|
|
@@ -2026,7 +2022,7 @@ class StartIdMappingJobCommand extends smithyClient.Command
|
|
|
2026
2022
|
})
|
|
2027
2023
|
.s("AWSVeniceService", "StartIdMappingJob", {})
|
|
2028
2024
|
.n("EntityResolutionClient", "StartIdMappingJobCommand")
|
|
2029
|
-
.sc(StartIdMappingJob)
|
|
2025
|
+
.sc(StartIdMappingJob$)
|
|
2030
2026
|
.build() {
|
|
2031
2027
|
}
|
|
2032
2028
|
|
|
@@ -2038,7 +2034,7 @@ class StartMatchingJobCommand extends smithyClient.Command
|
|
|
2038
2034
|
})
|
|
2039
2035
|
.s("AWSVeniceService", "StartMatchingJob", {})
|
|
2040
2036
|
.n("EntityResolutionClient", "StartMatchingJobCommand")
|
|
2041
|
-
.sc(StartMatchingJob)
|
|
2037
|
+
.sc(StartMatchingJob$)
|
|
2042
2038
|
.build() {
|
|
2043
2039
|
}
|
|
2044
2040
|
|
|
@@ -2050,7 +2046,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2050
2046
|
})
|
|
2051
2047
|
.s("AWSVeniceService", "TagResource", {})
|
|
2052
2048
|
.n("EntityResolutionClient", "TagResourceCommand")
|
|
2053
|
-
.sc(TagResource)
|
|
2049
|
+
.sc(TagResource$)
|
|
2054
2050
|
.build() {
|
|
2055
2051
|
}
|
|
2056
2052
|
|
|
@@ -2062,7 +2058,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2062
2058
|
})
|
|
2063
2059
|
.s("AWSVeniceService", "UntagResource", {})
|
|
2064
2060
|
.n("EntityResolutionClient", "UntagResourceCommand")
|
|
2065
|
-
.sc(UntagResource)
|
|
2061
|
+
.sc(UntagResource$)
|
|
2066
2062
|
.build() {
|
|
2067
2063
|
}
|
|
2068
2064
|
|
|
@@ -2074,7 +2070,7 @@ class UpdateIdMappingWorkflowCommand extends smithyClient.Command
|
|
|
2074
2070
|
})
|
|
2075
2071
|
.s("AWSVeniceService", "UpdateIdMappingWorkflow", {})
|
|
2076
2072
|
.n("EntityResolutionClient", "UpdateIdMappingWorkflowCommand")
|
|
2077
|
-
.sc(UpdateIdMappingWorkflow)
|
|
2073
|
+
.sc(UpdateIdMappingWorkflow$)
|
|
2078
2074
|
.build() {
|
|
2079
2075
|
}
|
|
2080
2076
|
|
|
@@ -2086,7 +2082,7 @@ class UpdateIdNamespaceCommand extends smithyClient.Command
|
|
|
2086
2082
|
})
|
|
2087
2083
|
.s("AWSVeniceService", "UpdateIdNamespace", {})
|
|
2088
2084
|
.n("EntityResolutionClient", "UpdateIdNamespaceCommand")
|
|
2089
|
-
.sc(UpdateIdNamespace)
|
|
2085
|
+
.sc(UpdateIdNamespace$)
|
|
2090
2086
|
.build() {
|
|
2091
2087
|
}
|
|
2092
2088
|
|
|
@@ -2098,7 +2094,7 @@ class UpdateMatchingWorkflowCommand extends smithyClient.Command
|
|
|
2098
2094
|
})
|
|
2099
2095
|
.s("AWSVeniceService", "UpdateMatchingWorkflow", {})
|
|
2100
2096
|
.n("EntityResolutionClient", "UpdateMatchingWorkflowCommand")
|
|
2101
|
-
.sc(UpdateMatchingWorkflow)
|
|
2097
|
+
.sc(UpdateMatchingWorkflow$)
|
|
2102
2098
|
.build() {
|
|
2103
2099
|
}
|
|
2104
2100
|
|
|
@@ -2110,7 +2106,7 @@ class UpdateSchemaMappingCommand extends smithyClient.Command
|
|
|
2110
2106
|
})
|
|
2111
2107
|
.s("AWSVeniceService", "UpdateSchemaMapping", {})
|
|
2112
2108
|
.n("EntityResolutionClient", "UpdateSchemaMappingCommand")
|
|
2113
|
-
.sc(UpdateSchemaMapping)
|
|
2109
|
+
.sc(UpdateSchemaMapping$)
|
|
2114
2110
|
.build() {
|
|
2115
2111
|
}
|
|
2116
2112
|
|
|
@@ -2273,71 +2269,239 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2273
2269
|
enumerable: true,
|
|
2274
2270
|
get: function () { return smithyClient.Client; }
|
|
2275
2271
|
});
|
|
2276
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2272
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2273
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2274
|
+
exports.AddPolicyStatement$ = AddPolicyStatement$;
|
|
2277
2275
|
exports.AddPolicyStatementCommand = AddPolicyStatementCommand;
|
|
2276
|
+
exports.AddPolicyStatementInput$ = AddPolicyStatementInput$;
|
|
2277
|
+
exports.AddPolicyStatementOutput$ = AddPolicyStatementOutput$;
|
|
2278
2278
|
exports.AttributeMatchingModel = AttributeMatchingModel;
|
|
2279
|
+
exports.BatchDeleteUniqueId$ = BatchDeleteUniqueId$;
|
|
2279
2280
|
exports.BatchDeleteUniqueIdCommand = BatchDeleteUniqueIdCommand;
|
|
2280
|
-
exports.
|
|
2281
|
+
exports.BatchDeleteUniqueIdInput$ = BatchDeleteUniqueIdInput$;
|
|
2282
|
+
exports.BatchDeleteUniqueIdOutput$ = BatchDeleteUniqueIdOutput$;
|
|
2283
|
+
exports.ConflictException = ConflictException;
|
|
2284
|
+
exports.ConflictException$ = ConflictException$;
|
|
2285
|
+
exports.CreateIdMappingWorkflow$ = CreateIdMappingWorkflow$;
|
|
2281
2286
|
exports.CreateIdMappingWorkflowCommand = CreateIdMappingWorkflowCommand;
|
|
2287
|
+
exports.CreateIdMappingWorkflowInput$ = CreateIdMappingWorkflowInput$;
|
|
2288
|
+
exports.CreateIdMappingWorkflowOutput$ = CreateIdMappingWorkflowOutput$;
|
|
2289
|
+
exports.CreateIdNamespace$ = CreateIdNamespace$;
|
|
2282
2290
|
exports.CreateIdNamespaceCommand = CreateIdNamespaceCommand;
|
|
2291
|
+
exports.CreateIdNamespaceInput$ = CreateIdNamespaceInput$;
|
|
2292
|
+
exports.CreateIdNamespaceOutput$ = CreateIdNamespaceOutput$;
|
|
2293
|
+
exports.CreateMatchingWorkflow$ = CreateMatchingWorkflow$;
|
|
2283
2294
|
exports.CreateMatchingWorkflowCommand = CreateMatchingWorkflowCommand;
|
|
2295
|
+
exports.CreateMatchingWorkflowInput$ = CreateMatchingWorkflowInput$;
|
|
2296
|
+
exports.CreateMatchingWorkflowOutput$ = CreateMatchingWorkflowOutput$;
|
|
2297
|
+
exports.CreateSchemaMapping$ = CreateSchemaMapping$;
|
|
2284
2298
|
exports.CreateSchemaMappingCommand = CreateSchemaMappingCommand;
|
|
2299
|
+
exports.CreateSchemaMappingInput$ = CreateSchemaMappingInput$;
|
|
2300
|
+
exports.CreateSchemaMappingOutput$ = CreateSchemaMappingOutput$;
|
|
2301
|
+
exports.CustomerProfilesIntegrationConfig$ = CustomerProfilesIntegrationConfig$;
|
|
2302
|
+
exports.DeleteIdMappingWorkflow$ = DeleteIdMappingWorkflow$;
|
|
2285
2303
|
exports.DeleteIdMappingWorkflowCommand = DeleteIdMappingWorkflowCommand;
|
|
2304
|
+
exports.DeleteIdMappingWorkflowInput$ = DeleteIdMappingWorkflowInput$;
|
|
2305
|
+
exports.DeleteIdMappingWorkflowOutput$ = DeleteIdMappingWorkflowOutput$;
|
|
2306
|
+
exports.DeleteIdNamespace$ = DeleteIdNamespace$;
|
|
2286
2307
|
exports.DeleteIdNamespaceCommand = DeleteIdNamespaceCommand;
|
|
2308
|
+
exports.DeleteIdNamespaceInput$ = DeleteIdNamespaceInput$;
|
|
2309
|
+
exports.DeleteIdNamespaceOutput$ = DeleteIdNamespaceOutput$;
|
|
2310
|
+
exports.DeleteMatchingWorkflow$ = DeleteMatchingWorkflow$;
|
|
2287
2311
|
exports.DeleteMatchingWorkflowCommand = DeleteMatchingWorkflowCommand;
|
|
2312
|
+
exports.DeleteMatchingWorkflowInput$ = DeleteMatchingWorkflowInput$;
|
|
2313
|
+
exports.DeleteMatchingWorkflowOutput$ = DeleteMatchingWorkflowOutput$;
|
|
2314
|
+
exports.DeletePolicyStatement$ = DeletePolicyStatement$;
|
|
2288
2315
|
exports.DeletePolicyStatementCommand = DeletePolicyStatementCommand;
|
|
2316
|
+
exports.DeletePolicyStatementInput$ = DeletePolicyStatementInput$;
|
|
2317
|
+
exports.DeletePolicyStatementOutput$ = DeletePolicyStatementOutput$;
|
|
2318
|
+
exports.DeleteSchemaMapping$ = DeleteSchemaMapping$;
|
|
2289
2319
|
exports.DeleteSchemaMappingCommand = DeleteSchemaMappingCommand;
|
|
2320
|
+
exports.DeleteSchemaMappingInput$ = DeleteSchemaMappingInput$;
|
|
2321
|
+
exports.DeleteSchemaMappingOutput$ = DeleteSchemaMappingOutput$;
|
|
2322
|
+
exports.DeleteUniqueIdError$ = DeleteUniqueIdError$;
|
|
2290
2323
|
exports.DeleteUniqueIdErrorType = DeleteUniqueIdErrorType;
|
|
2291
2324
|
exports.DeleteUniqueIdStatus = DeleteUniqueIdStatus;
|
|
2325
|
+
exports.DeletedUniqueId$ = DeletedUniqueId$;
|
|
2292
2326
|
exports.EntityResolution = EntityResolution;
|
|
2293
2327
|
exports.EntityResolutionClient = EntityResolutionClient;
|
|
2294
|
-
exports.EntityResolutionServiceException = EntityResolutionServiceException
|
|
2295
|
-
exports.
|
|
2328
|
+
exports.EntityResolutionServiceException = EntityResolutionServiceException;
|
|
2329
|
+
exports.EntityResolutionServiceException$ = EntityResolutionServiceException$;
|
|
2330
|
+
exports.ErrorDetails$ = ErrorDetails$;
|
|
2331
|
+
exports.ExceedsLimitException = ExceedsLimitException;
|
|
2332
|
+
exports.ExceedsLimitException$ = ExceedsLimitException$;
|
|
2333
|
+
exports.FailedRecord$ = FailedRecord$;
|
|
2334
|
+
exports.GenerateMatchId$ = GenerateMatchId$;
|
|
2296
2335
|
exports.GenerateMatchIdCommand = GenerateMatchIdCommand;
|
|
2336
|
+
exports.GenerateMatchIdInput$ = GenerateMatchIdInput$;
|
|
2337
|
+
exports.GenerateMatchIdOutput$ = GenerateMatchIdOutput$;
|
|
2338
|
+
exports.GetIdMappingJob$ = GetIdMappingJob$;
|
|
2297
2339
|
exports.GetIdMappingJobCommand = GetIdMappingJobCommand;
|
|
2340
|
+
exports.GetIdMappingJobInput$ = GetIdMappingJobInput$;
|
|
2341
|
+
exports.GetIdMappingJobOutput$ = GetIdMappingJobOutput$;
|
|
2342
|
+
exports.GetIdMappingWorkflow$ = GetIdMappingWorkflow$;
|
|
2298
2343
|
exports.GetIdMappingWorkflowCommand = GetIdMappingWorkflowCommand;
|
|
2344
|
+
exports.GetIdMappingWorkflowInput$ = GetIdMappingWorkflowInput$;
|
|
2345
|
+
exports.GetIdMappingWorkflowOutput$ = GetIdMappingWorkflowOutput$;
|
|
2346
|
+
exports.GetIdNamespace$ = GetIdNamespace$;
|
|
2299
2347
|
exports.GetIdNamespaceCommand = GetIdNamespaceCommand;
|
|
2348
|
+
exports.GetIdNamespaceInput$ = GetIdNamespaceInput$;
|
|
2349
|
+
exports.GetIdNamespaceOutput$ = GetIdNamespaceOutput$;
|
|
2350
|
+
exports.GetMatchId$ = GetMatchId$;
|
|
2300
2351
|
exports.GetMatchIdCommand = GetMatchIdCommand;
|
|
2352
|
+
exports.GetMatchIdInput$ = GetMatchIdInput$;
|
|
2353
|
+
exports.GetMatchIdOutput$ = GetMatchIdOutput$;
|
|
2354
|
+
exports.GetMatchingJob$ = GetMatchingJob$;
|
|
2301
2355
|
exports.GetMatchingJobCommand = GetMatchingJobCommand;
|
|
2356
|
+
exports.GetMatchingJobInput$ = GetMatchingJobInput$;
|
|
2357
|
+
exports.GetMatchingJobOutput$ = GetMatchingJobOutput$;
|
|
2358
|
+
exports.GetMatchingWorkflow$ = GetMatchingWorkflow$;
|
|
2302
2359
|
exports.GetMatchingWorkflowCommand = GetMatchingWorkflowCommand;
|
|
2360
|
+
exports.GetMatchingWorkflowInput$ = GetMatchingWorkflowInput$;
|
|
2361
|
+
exports.GetMatchingWorkflowOutput$ = GetMatchingWorkflowOutput$;
|
|
2362
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
2303
2363
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
2364
|
+
exports.GetPolicyInput$ = GetPolicyInput$;
|
|
2365
|
+
exports.GetPolicyOutput$ = GetPolicyOutput$;
|
|
2366
|
+
exports.GetProviderService$ = GetProviderService$;
|
|
2304
2367
|
exports.GetProviderServiceCommand = GetProviderServiceCommand;
|
|
2368
|
+
exports.GetProviderServiceInput$ = GetProviderServiceInput$;
|
|
2369
|
+
exports.GetProviderServiceOutput$ = GetProviderServiceOutput$;
|
|
2370
|
+
exports.GetSchemaMapping$ = GetSchemaMapping$;
|
|
2305
2371
|
exports.GetSchemaMappingCommand = GetSchemaMappingCommand;
|
|
2372
|
+
exports.GetSchemaMappingInput$ = GetSchemaMappingInput$;
|
|
2373
|
+
exports.GetSchemaMappingOutput$ = GetSchemaMappingOutput$;
|
|
2374
|
+
exports.IdMappingIncrementalRunConfig$ = IdMappingIncrementalRunConfig$;
|
|
2306
2375
|
exports.IdMappingIncrementalRunType = IdMappingIncrementalRunType;
|
|
2376
|
+
exports.IdMappingJobMetrics$ = IdMappingJobMetrics$;
|
|
2377
|
+
exports.IdMappingJobOutputSource$ = IdMappingJobOutputSource$;
|
|
2378
|
+
exports.IdMappingRuleBasedProperties$ = IdMappingRuleBasedProperties$;
|
|
2379
|
+
exports.IdMappingTechniques$ = IdMappingTechniques$;
|
|
2307
2380
|
exports.IdMappingType = IdMappingType;
|
|
2381
|
+
exports.IdMappingWorkflowInputSource$ = IdMappingWorkflowInputSource$;
|
|
2382
|
+
exports.IdMappingWorkflowOutputSource$ = IdMappingWorkflowOutputSource$;
|
|
2308
2383
|
exports.IdMappingWorkflowRuleDefinitionType = IdMappingWorkflowRuleDefinitionType;
|
|
2384
|
+
exports.IdMappingWorkflowSummary$ = IdMappingWorkflowSummary$;
|
|
2385
|
+
exports.IdNamespaceIdMappingWorkflowMetadata$ = IdNamespaceIdMappingWorkflowMetadata$;
|
|
2386
|
+
exports.IdNamespaceIdMappingWorkflowProperties$ = IdNamespaceIdMappingWorkflowProperties$;
|
|
2387
|
+
exports.IdNamespaceInputSource$ = IdNamespaceInputSource$;
|
|
2388
|
+
exports.IdNamespaceSummary$ = IdNamespaceSummary$;
|
|
2309
2389
|
exports.IdNamespaceType = IdNamespaceType;
|
|
2390
|
+
exports.IncrementalRunConfig$ = IncrementalRunConfig$;
|
|
2310
2391
|
exports.IncrementalRunType = IncrementalRunType;
|
|
2311
|
-
exports.
|
|
2392
|
+
exports.InputSource$ = InputSource$;
|
|
2393
|
+
exports.IntermediateSourceConfiguration$ = IntermediateSourceConfiguration$;
|
|
2394
|
+
exports.InternalServerException = InternalServerException;
|
|
2395
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2396
|
+
exports.JobMetrics$ = JobMetrics$;
|
|
2397
|
+
exports.JobOutputSource$ = JobOutputSource$;
|
|
2312
2398
|
exports.JobStatus = JobStatus;
|
|
2399
|
+
exports.JobSummary$ = JobSummary$;
|
|
2313
2400
|
exports.JobType = JobType;
|
|
2401
|
+
exports.ListIdMappingJobs$ = ListIdMappingJobs$;
|
|
2314
2402
|
exports.ListIdMappingJobsCommand = ListIdMappingJobsCommand;
|
|
2403
|
+
exports.ListIdMappingJobsInput$ = ListIdMappingJobsInput$;
|
|
2404
|
+
exports.ListIdMappingJobsOutput$ = ListIdMappingJobsOutput$;
|
|
2405
|
+
exports.ListIdMappingWorkflows$ = ListIdMappingWorkflows$;
|
|
2315
2406
|
exports.ListIdMappingWorkflowsCommand = ListIdMappingWorkflowsCommand;
|
|
2407
|
+
exports.ListIdMappingWorkflowsInput$ = ListIdMappingWorkflowsInput$;
|
|
2408
|
+
exports.ListIdMappingWorkflowsOutput$ = ListIdMappingWorkflowsOutput$;
|
|
2409
|
+
exports.ListIdNamespaces$ = ListIdNamespaces$;
|
|
2316
2410
|
exports.ListIdNamespacesCommand = ListIdNamespacesCommand;
|
|
2411
|
+
exports.ListIdNamespacesInput$ = ListIdNamespacesInput$;
|
|
2412
|
+
exports.ListIdNamespacesOutput$ = ListIdNamespacesOutput$;
|
|
2413
|
+
exports.ListMatchingJobs$ = ListMatchingJobs$;
|
|
2317
2414
|
exports.ListMatchingJobsCommand = ListMatchingJobsCommand;
|
|
2415
|
+
exports.ListMatchingJobsInput$ = ListMatchingJobsInput$;
|
|
2416
|
+
exports.ListMatchingJobsOutput$ = ListMatchingJobsOutput$;
|
|
2417
|
+
exports.ListMatchingWorkflows$ = ListMatchingWorkflows$;
|
|
2318
2418
|
exports.ListMatchingWorkflowsCommand = ListMatchingWorkflowsCommand;
|
|
2419
|
+
exports.ListMatchingWorkflowsInput$ = ListMatchingWorkflowsInput$;
|
|
2420
|
+
exports.ListMatchingWorkflowsOutput$ = ListMatchingWorkflowsOutput$;
|
|
2421
|
+
exports.ListProviderServices$ = ListProviderServices$;
|
|
2319
2422
|
exports.ListProviderServicesCommand = ListProviderServicesCommand;
|
|
2423
|
+
exports.ListProviderServicesInput$ = ListProviderServicesInput$;
|
|
2424
|
+
exports.ListProviderServicesOutput$ = ListProviderServicesOutput$;
|
|
2425
|
+
exports.ListSchemaMappings$ = ListSchemaMappings$;
|
|
2320
2426
|
exports.ListSchemaMappingsCommand = ListSchemaMappingsCommand;
|
|
2427
|
+
exports.ListSchemaMappingsInput$ = ListSchemaMappingsInput$;
|
|
2428
|
+
exports.ListSchemaMappingsOutput$ = ListSchemaMappingsOutput$;
|
|
2429
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2321
2430
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2431
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2432
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2433
|
+
exports.MatchGroup$ = MatchGroup$;
|
|
2322
2434
|
exports.MatchPurpose = MatchPurpose;
|
|
2435
|
+
exports.MatchedRecord$ = MatchedRecord$;
|
|
2436
|
+
exports.MatchingWorkflowSummary$ = MatchingWorkflowSummary$;
|
|
2437
|
+
exports.NamespaceProviderProperties$ = NamespaceProviderProperties$;
|
|
2438
|
+
exports.NamespaceRuleBasedProperties$ = NamespaceRuleBasedProperties$;
|
|
2439
|
+
exports.OutputAttribute$ = OutputAttribute$;
|
|
2440
|
+
exports.OutputSource$ = OutputSource$;
|
|
2323
2441
|
exports.ProcessingType = ProcessingType;
|
|
2442
|
+
exports.ProviderComponentSchema$ = ProviderComponentSchema$;
|
|
2443
|
+
exports.ProviderEndpointConfiguration$ = ProviderEndpointConfiguration$;
|
|
2444
|
+
exports.ProviderIdNameSpaceConfiguration$ = ProviderIdNameSpaceConfiguration$;
|
|
2445
|
+
exports.ProviderIntermediateDataAccessConfiguration$ = ProviderIntermediateDataAccessConfiguration$;
|
|
2446
|
+
exports.ProviderMarketplaceConfiguration$ = ProviderMarketplaceConfiguration$;
|
|
2447
|
+
exports.ProviderProperties$ = ProviderProperties$;
|
|
2448
|
+
exports.ProviderSchemaAttribute$ = ProviderSchemaAttribute$;
|
|
2449
|
+
exports.ProviderServiceSummary$ = ProviderServiceSummary$;
|
|
2450
|
+
exports.PutPolicy$ = PutPolicy$;
|
|
2324
2451
|
exports.PutPolicyCommand = PutPolicyCommand;
|
|
2452
|
+
exports.PutPolicyInput$ = PutPolicyInput$;
|
|
2453
|
+
exports.PutPolicyOutput$ = PutPolicyOutput$;
|
|
2325
2454
|
exports.RecordMatchingModel = RecordMatchingModel;
|
|
2455
|
+
exports.ResolutionTechniques$ = ResolutionTechniques$;
|
|
2326
2456
|
exports.ResolutionType = ResolutionType;
|
|
2327
|
-
exports.ResourceNotFoundException = ResourceNotFoundException
|
|
2457
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2458
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2459
|
+
exports.Rule$ = Rule$;
|
|
2460
|
+
exports.RuleBasedProperties$ = RuleBasedProperties$;
|
|
2461
|
+
exports.RuleCondition$ = RuleCondition$;
|
|
2462
|
+
exports.RuleConditionProperties$ = RuleConditionProperties$;
|
|
2328
2463
|
exports.SchemaAttributeType = SchemaAttributeType;
|
|
2464
|
+
exports.SchemaInputAttribute$ = SchemaInputAttribute$;
|
|
2465
|
+
exports.SchemaMappingSummary$ = SchemaMappingSummary$;
|
|
2329
2466
|
exports.ServiceType = ServiceType;
|
|
2467
|
+
exports.StartIdMappingJob$ = StartIdMappingJob$;
|
|
2330
2468
|
exports.StartIdMappingJobCommand = StartIdMappingJobCommand;
|
|
2469
|
+
exports.StartIdMappingJobInput$ = StartIdMappingJobInput$;
|
|
2470
|
+
exports.StartIdMappingJobOutput$ = StartIdMappingJobOutput$;
|
|
2471
|
+
exports.StartMatchingJob$ = StartMatchingJob$;
|
|
2331
2472
|
exports.StartMatchingJobCommand = StartMatchingJobCommand;
|
|
2473
|
+
exports.StartMatchingJobInput$ = StartMatchingJobInput$;
|
|
2474
|
+
exports.StartMatchingJobOutput$ = StartMatchingJobOutput$;
|
|
2332
2475
|
exports.StatementEffect = StatementEffect;
|
|
2476
|
+
exports.TagResource$ = TagResource$;
|
|
2333
2477
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2334
|
-
exports.
|
|
2478
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2479
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2480
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2481
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2482
|
+
exports.UntagResource$ = UntagResource$;
|
|
2335
2483
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2484
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2485
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2486
|
+
exports.UpdateIdMappingWorkflow$ = UpdateIdMappingWorkflow$;
|
|
2336
2487
|
exports.UpdateIdMappingWorkflowCommand = UpdateIdMappingWorkflowCommand;
|
|
2488
|
+
exports.UpdateIdMappingWorkflowInput$ = UpdateIdMappingWorkflowInput$;
|
|
2489
|
+
exports.UpdateIdMappingWorkflowOutput$ = UpdateIdMappingWorkflowOutput$;
|
|
2490
|
+
exports.UpdateIdNamespace$ = UpdateIdNamespace$;
|
|
2337
2491
|
exports.UpdateIdNamespaceCommand = UpdateIdNamespaceCommand;
|
|
2492
|
+
exports.UpdateIdNamespaceInput$ = UpdateIdNamespaceInput$;
|
|
2493
|
+
exports.UpdateIdNamespaceOutput$ = UpdateIdNamespaceOutput$;
|
|
2494
|
+
exports.UpdateMatchingWorkflow$ = UpdateMatchingWorkflow$;
|
|
2338
2495
|
exports.UpdateMatchingWorkflowCommand = UpdateMatchingWorkflowCommand;
|
|
2496
|
+
exports.UpdateMatchingWorkflowInput$ = UpdateMatchingWorkflowInput$;
|
|
2497
|
+
exports.UpdateMatchingWorkflowOutput$ = UpdateMatchingWorkflowOutput$;
|
|
2498
|
+
exports.UpdateSchemaMapping$ = UpdateSchemaMapping$;
|
|
2339
2499
|
exports.UpdateSchemaMappingCommand = UpdateSchemaMappingCommand;
|
|
2340
|
-
exports.
|
|
2500
|
+
exports.UpdateSchemaMappingInput$ = UpdateSchemaMappingInput$;
|
|
2501
|
+
exports.UpdateSchemaMappingOutput$ = UpdateSchemaMappingOutput$;
|
|
2502
|
+
exports.ValidationException = ValidationException;
|
|
2503
|
+
exports.ValidationException$ = ValidationException$;
|
|
2504
|
+
exports._Record$ = _Record$;
|
|
2341
2505
|
exports.paginateListIdMappingJobs = paginateListIdMappingJobs;
|
|
2342
2506
|
exports.paginateListIdMappingWorkflows = paginateListIdMappingWorkflows;
|
|
2343
2507
|
exports.paginateListIdNamespaces = paginateListIdNamespaces;
|