@aws-sdk/client-entityresolution 3.716.0 → 3.723.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 +221 -160
- package/dist-es/EntityResolutionClient.js +1 -0
- package/dist-es/models/models_0.js +20 -18
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -191,7 +191,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
191
191
|
}, "resolveRuntimeExtensions");
|
|
192
192
|
|
|
193
193
|
// src/EntityResolutionClient.ts
|
|
194
|
-
var
|
|
194
|
+
var EntityResolutionClient = class extends import_smithy_client.Client {
|
|
195
|
+
static {
|
|
196
|
+
__name(this, "EntityResolutionClient");
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* The resolved configuration of EntityResolutionClient class. This is resolved and normalized from the {@link EntityResolutionClientConfig | constructor configuration interface}.
|
|
200
|
+
*/
|
|
201
|
+
config;
|
|
195
202
|
constructor(...[configuration]) {
|
|
196
203
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
197
204
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -201,7 +208,7 @@ var _EntityResolutionClient = class _EntityResolutionClient extends import_smith
|
|
|
201
208
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
202
209
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
203
210
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
204
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
211
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
205
212
|
super(_config_8);
|
|
206
213
|
this.config = _config_8;
|
|
207
214
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -229,8 +236,6 @@ var _EntityResolutionClient = class _EntityResolutionClient extends import_smith
|
|
|
229
236
|
super.destroy();
|
|
230
237
|
}
|
|
231
238
|
};
|
|
232
|
-
__name(_EntityResolutionClient, "EntityResolutionClient");
|
|
233
|
-
var EntityResolutionClient = _EntityResolutionClient;
|
|
234
239
|
|
|
235
240
|
// src/EntityResolution.ts
|
|
236
241
|
|
|
@@ -247,7 +252,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
247
252
|
|
|
248
253
|
// src/models/EntityResolutionServiceException.ts
|
|
249
254
|
|
|
250
|
-
var
|
|
255
|
+
var EntityResolutionServiceException = class _EntityResolutionServiceException extends import_smithy_client.ServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "EntityResolutionServiceException");
|
|
258
|
+
}
|
|
251
259
|
/**
|
|
252
260
|
* @internal
|
|
253
261
|
*/
|
|
@@ -256,12 +264,15 @@ var _EntityResolutionServiceException = class _EntityResolutionServiceException
|
|
|
256
264
|
Object.setPrototypeOf(this, _EntityResolutionServiceException.prototype);
|
|
257
265
|
}
|
|
258
266
|
};
|
|
259
|
-
__name(_EntityResolutionServiceException, "EntityResolutionServiceException");
|
|
260
|
-
var EntityResolutionServiceException = _EntityResolutionServiceException;
|
|
261
267
|
|
|
262
268
|
// src/models/models_0.ts
|
|
263
269
|
|
|
264
|
-
var
|
|
270
|
+
var AccessDeniedException = class _AccessDeniedException extends EntityResolutionServiceException {
|
|
271
|
+
static {
|
|
272
|
+
__name(this, "AccessDeniedException");
|
|
273
|
+
}
|
|
274
|
+
name = "AccessDeniedException";
|
|
275
|
+
$fault = "client";
|
|
265
276
|
/**
|
|
266
277
|
* @internal
|
|
267
278
|
*/
|
|
@@ -271,18 +282,19 @@ var _AccessDeniedException = class _AccessDeniedException extends EntityResoluti
|
|
|
271
282
|
$fault: "client",
|
|
272
283
|
...opts
|
|
273
284
|
});
|
|
274
|
-
this.name = "AccessDeniedException";
|
|
275
|
-
this.$fault = "client";
|
|
276
285
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
277
286
|
}
|
|
278
287
|
};
|
|
279
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
280
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
281
288
|
var StatementEffect = {
|
|
282
289
|
Allow: "Allow",
|
|
283
290
|
Deny: "Deny"
|
|
284
291
|
};
|
|
285
|
-
var
|
|
292
|
+
var ConflictException = class _ConflictException extends EntityResolutionServiceException {
|
|
293
|
+
static {
|
|
294
|
+
__name(this, "ConflictException");
|
|
295
|
+
}
|
|
296
|
+
name = "ConflictException";
|
|
297
|
+
$fault = "client";
|
|
286
298
|
/**
|
|
287
299
|
* @internal
|
|
288
300
|
*/
|
|
@@ -292,14 +304,16 @@ var _ConflictException = class _ConflictException extends EntityResolutionServic
|
|
|
292
304
|
$fault: "client",
|
|
293
305
|
...opts
|
|
294
306
|
});
|
|
295
|
-
this.name = "ConflictException";
|
|
296
|
-
this.$fault = "client";
|
|
297
307
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
298
308
|
}
|
|
299
309
|
};
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
310
|
+
var InternalServerException = class _InternalServerException extends EntityResolutionServiceException {
|
|
311
|
+
static {
|
|
312
|
+
__name(this, "InternalServerException");
|
|
313
|
+
}
|
|
314
|
+
name = "InternalServerException";
|
|
315
|
+
$fault = "server";
|
|
316
|
+
$retryable = {};
|
|
303
317
|
/**
|
|
304
318
|
* @internal
|
|
305
319
|
*/
|
|
@@ -309,15 +323,15 @@ var _InternalServerException = class _InternalServerException extends EntityReso
|
|
|
309
323
|
$fault: "server",
|
|
310
324
|
...opts
|
|
311
325
|
});
|
|
312
|
-
this.name = "InternalServerException";
|
|
313
|
-
this.$fault = "server";
|
|
314
|
-
this.$retryable = {};
|
|
315
326
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
316
327
|
}
|
|
317
328
|
};
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
329
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends EntityResolutionServiceException {
|
|
330
|
+
static {
|
|
331
|
+
__name(this, "ResourceNotFoundException");
|
|
332
|
+
}
|
|
333
|
+
name = "ResourceNotFoundException";
|
|
334
|
+
$fault = "client";
|
|
321
335
|
/**
|
|
322
336
|
* @internal
|
|
323
337
|
*/
|
|
@@ -327,14 +341,18 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Entity
|
|
|
327
341
|
$fault: "client",
|
|
328
342
|
...opts
|
|
329
343
|
});
|
|
330
|
-
this.name = "ResourceNotFoundException";
|
|
331
|
-
this.$fault = "client";
|
|
332
344
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
333
345
|
}
|
|
334
346
|
};
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
347
|
+
var ThrottlingException = class _ThrottlingException extends EntityResolutionServiceException {
|
|
348
|
+
static {
|
|
349
|
+
__name(this, "ThrottlingException");
|
|
350
|
+
}
|
|
351
|
+
name = "ThrottlingException";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
$retryable = {
|
|
354
|
+
throttling: true
|
|
355
|
+
};
|
|
338
356
|
/**
|
|
339
357
|
* @internal
|
|
340
358
|
*/
|
|
@@ -344,17 +362,15 @@ var _ThrottlingException = class _ThrottlingException extends EntityResolutionSe
|
|
|
344
362
|
$fault: "client",
|
|
345
363
|
...opts
|
|
346
364
|
});
|
|
347
|
-
this.name = "ThrottlingException";
|
|
348
|
-
this.$fault = "client";
|
|
349
|
-
this.$retryable = {
|
|
350
|
-
throttling: true
|
|
351
|
-
};
|
|
352
365
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
353
366
|
}
|
|
354
367
|
};
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
368
|
+
var ValidationException = class _ValidationException extends EntityResolutionServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "ValidationException");
|
|
371
|
+
}
|
|
372
|
+
name = "ValidationException";
|
|
373
|
+
$fault = "client";
|
|
358
374
|
/**
|
|
359
375
|
* @internal
|
|
360
376
|
*/
|
|
@@ -364,13 +380,9 @@ var _ValidationException = class _ValidationException extends EntityResolutionSe
|
|
|
364
380
|
$fault: "client",
|
|
365
381
|
...opts
|
|
366
382
|
});
|
|
367
|
-
this.name = "ValidationException";
|
|
368
|
-
this.$fault = "client";
|
|
369
383
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
370
384
|
}
|
|
371
385
|
};
|
|
372
|
-
__name(_ValidationException, "ValidationException");
|
|
373
|
-
var ValidationException = _ValidationException;
|
|
374
386
|
var AttributeMatchingModel = {
|
|
375
387
|
MANY_TO_MANY: "MANY_TO_MANY",
|
|
376
388
|
ONE_TO_ONE: "ONE_TO_ONE"
|
|
@@ -399,7 +411,22 @@ var IdNamespaceType = {
|
|
|
399
411
|
SOURCE: "SOURCE",
|
|
400
412
|
TARGET: "TARGET"
|
|
401
413
|
};
|
|
402
|
-
var
|
|
414
|
+
var ExceedsLimitException = class _ExceedsLimitException extends EntityResolutionServiceException {
|
|
415
|
+
static {
|
|
416
|
+
__name(this, "ExceedsLimitException");
|
|
417
|
+
}
|
|
418
|
+
name = "ExceedsLimitException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
/**
|
|
421
|
+
* <p>The name of the quota that has been breached.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
quotaName;
|
|
425
|
+
/**
|
|
426
|
+
* <p>The current quota value for the customers.</p>
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
quotaValue;
|
|
403
430
|
/**
|
|
404
431
|
* @internal
|
|
405
432
|
*/
|
|
@@ -409,15 +436,11 @@ var _ExceedsLimitException = class _ExceedsLimitException extends EntityResoluti
|
|
|
409
436
|
$fault: "client",
|
|
410
437
|
...opts
|
|
411
438
|
});
|
|
412
|
-
this.name = "ExceedsLimitException";
|
|
413
|
-
this.$fault = "client";
|
|
414
439
|
Object.setPrototypeOf(this, _ExceedsLimitException.prototype);
|
|
415
440
|
this.quotaName = opts.quotaName;
|
|
416
441
|
this.quotaValue = opts.quotaValue;
|
|
417
442
|
}
|
|
418
443
|
};
|
|
419
|
-
__name(_ExceedsLimitException, "ExceedsLimitException");
|
|
420
|
-
var ExceedsLimitException = _ExceedsLimitException;
|
|
421
444
|
var IncrementalRunType = {
|
|
422
445
|
IMMEDIATE: "IMMEDIATE"
|
|
423
446
|
};
|
|
@@ -1922,519 +1945,556 @@ var _u = "uniqueids";
|
|
|
1922
1945
|
var _uI = "uniqueIds";
|
|
1923
1946
|
|
|
1924
1947
|
// src/commands/AddPolicyStatementCommand.ts
|
|
1925
|
-
var
|
|
1948
|
+
var AddPolicyStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1926
1949
|
return [
|
|
1927
1950
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1928
1951
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1929
1952
|
];
|
|
1930
1953
|
}).s("AWSVeniceService", "AddPolicyStatement", {}).n("EntityResolutionClient", "AddPolicyStatementCommand").f(void 0, void 0).ser(se_AddPolicyStatementCommand).de(de_AddPolicyStatementCommand).build() {
|
|
1954
|
+
static {
|
|
1955
|
+
__name(this, "AddPolicyStatementCommand");
|
|
1956
|
+
}
|
|
1931
1957
|
};
|
|
1932
|
-
__name(_AddPolicyStatementCommand, "AddPolicyStatementCommand");
|
|
1933
|
-
var AddPolicyStatementCommand = _AddPolicyStatementCommand;
|
|
1934
1958
|
|
|
1935
1959
|
// src/commands/BatchDeleteUniqueIdCommand.ts
|
|
1936
1960
|
|
|
1937
1961
|
|
|
1938
1962
|
|
|
1939
|
-
var
|
|
1963
|
+
var BatchDeleteUniqueIdCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1940
1964
|
return [
|
|
1941
1965
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1942
1966
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1943
1967
|
];
|
|
1944
1968
|
}).s("AWSVeniceService", "BatchDeleteUniqueId", {}).n("EntityResolutionClient", "BatchDeleteUniqueIdCommand").f(void 0, void 0).ser(se_BatchDeleteUniqueIdCommand).de(de_BatchDeleteUniqueIdCommand).build() {
|
|
1969
|
+
static {
|
|
1970
|
+
__name(this, "BatchDeleteUniqueIdCommand");
|
|
1971
|
+
}
|
|
1945
1972
|
};
|
|
1946
|
-
__name(_BatchDeleteUniqueIdCommand, "BatchDeleteUniqueIdCommand");
|
|
1947
|
-
var BatchDeleteUniqueIdCommand = _BatchDeleteUniqueIdCommand;
|
|
1948
1973
|
|
|
1949
1974
|
// src/commands/CreateIdMappingWorkflowCommand.ts
|
|
1950
1975
|
|
|
1951
1976
|
|
|
1952
1977
|
|
|
1953
|
-
var
|
|
1978
|
+
var CreateIdMappingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1954
1979
|
return [
|
|
1955
1980
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1956
1981
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1957
1982
|
];
|
|
1958
1983
|
}).s("AWSVeniceService", "CreateIdMappingWorkflow", {}).n("EntityResolutionClient", "CreateIdMappingWorkflowCommand").f(void 0, void 0).ser(se_CreateIdMappingWorkflowCommand).de(de_CreateIdMappingWorkflowCommand).build() {
|
|
1984
|
+
static {
|
|
1985
|
+
__name(this, "CreateIdMappingWorkflowCommand");
|
|
1986
|
+
}
|
|
1959
1987
|
};
|
|
1960
|
-
__name(_CreateIdMappingWorkflowCommand, "CreateIdMappingWorkflowCommand");
|
|
1961
|
-
var CreateIdMappingWorkflowCommand = _CreateIdMappingWorkflowCommand;
|
|
1962
1988
|
|
|
1963
1989
|
// src/commands/CreateIdNamespaceCommand.ts
|
|
1964
1990
|
|
|
1965
1991
|
|
|
1966
1992
|
|
|
1967
|
-
var
|
|
1993
|
+
var CreateIdNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1968
1994
|
return [
|
|
1969
1995
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1970
1996
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1971
1997
|
];
|
|
1972
1998
|
}).s("AWSVeniceService", "CreateIdNamespace", {}).n("EntityResolutionClient", "CreateIdNamespaceCommand").f(void 0, void 0).ser(se_CreateIdNamespaceCommand).de(de_CreateIdNamespaceCommand).build() {
|
|
1999
|
+
static {
|
|
2000
|
+
__name(this, "CreateIdNamespaceCommand");
|
|
2001
|
+
}
|
|
1973
2002
|
};
|
|
1974
|
-
__name(_CreateIdNamespaceCommand, "CreateIdNamespaceCommand");
|
|
1975
|
-
var CreateIdNamespaceCommand = _CreateIdNamespaceCommand;
|
|
1976
2003
|
|
|
1977
2004
|
// src/commands/CreateMatchingWorkflowCommand.ts
|
|
1978
2005
|
|
|
1979
2006
|
|
|
1980
2007
|
|
|
1981
|
-
var
|
|
2008
|
+
var CreateMatchingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1982
2009
|
return [
|
|
1983
2010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1984
2011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1985
2012
|
];
|
|
1986
2013
|
}).s("AWSVeniceService", "CreateMatchingWorkflow", {}).n("EntityResolutionClient", "CreateMatchingWorkflowCommand").f(void 0, void 0).ser(se_CreateMatchingWorkflowCommand).de(de_CreateMatchingWorkflowCommand).build() {
|
|
2014
|
+
static {
|
|
2015
|
+
__name(this, "CreateMatchingWorkflowCommand");
|
|
2016
|
+
}
|
|
1987
2017
|
};
|
|
1988
|
-
__name(_CreateMatchingWorkflowCommand, "CreateMatchingWorkflowCommand");
|
|
1989
|
-
var CreateMatchingWorkflowCommand = _CreateMatchingWorkflowCommand;
|
|
1990
2018
|
|
|
1991
2019
|
// src/commands/CreateSchemaMappingCommand.ts
|
|
1992
2020
|
|
|
1993
2021
|
|
|
1994
2022
|
|
|
1995
|
-
var
|
|
2023
|
+
var CreateSchemaMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1996
2024
|
return [
|
|
1997
2025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1998
2026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1999
2027
|
];
|
|
2000
2028
|
}).s("AWSVeniceService", "CreateSchemaMapping", {}).n("EntityResolutionClient", "CreateSchemaMappingCommand").f(void 0, void 0).ser(se_CreateSchemaMappingCommand).de(de_CreateSchemaMappingCommand).build() {
|
|
2029
|
+
static {
|
|
2030
|
+
__name(this, "CreateSchemaMappingCommand");
|
|
2031
|
+
}
|
|
2001
2032
|
};
|
|
2002
|
-
__name(_CreateSchemaMappingCommand, "CreateSchemaMappingCommand");
|
|
2003
|
-
var CreateSchemaMappingCommand = _CreateSchemaMappingCommand;
|
|
2004
2033
|
|
|
2005
2034
|
// src/commands/DeleteIdMappingWorkflowCommand.ts
|
|
2006
2035
|
|
|
2007
2036
|
|
|
2008
2037
|
|
|
2009
|
-
var
|
|
2038
|
+
var DeleteIdMappingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2010
2039
|
return [
|
|
2011
2040
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2012
2041
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2013
2042
|
];
|
|
2014
2043
|
}).s("AWSVeniceService", "DeleteIdMappingWorkflow", {}).n("EntityResolutionClient", "DeleteIdMappingWorkflowCommand").f(void 0, void 0).ser(se_DeleteIdMappingWorkflowCommand).de(de_DeleteIdMappingWorkflowCommand).build() {
|
|
2044
|
+
static {
|
|
2045
|
+
__name(this, "DeleteIdMappingWorkflowCommand");
|
|
2046
|
+
}
|
|
2015
2047
|
};
|
|
2016
|
-
__name(_DeleteIdMappingWorkflowCommand, "DeleteIdMappingWorkflowCommand");
|
|
2017
|
-
var DeleteIdMappingWorkflowCommand = _DeleteIdMappingWorkflowCommand;
|
|
2018
2048
|
|
|
2019
2049
|
// src/commands/DeleteIdNamespaceCommand.ts
|
|
2020
2050
|
|
|
2021
2051
|
|
|
2022
2052
|
|
|
2023
|
-
var
|
|
2053
|
+
var DeleteIdNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2024
2054
|
return [
|
|
2025
2055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2026
2056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2027
2057
|
];
|
|
2028
2058
|
}).s("AWSVeniceService", "DeleteIdNamespace", {}).n("EntityResolutionClient", "DeleteIdNamespaceCommand").f(void 0, void 0).ser(se_DeleteIdNamespaceCommand).de(de_DeleteIdNamespaceCommand).build() {
|
|
2059
|
+
static {
|
|
2060
|
+
__name(this, "DeleteIdNamespaceCommand");
|
|
2061
|
+
}
|
|
2029
2062
|
};
|
|
2030
|
-
__name(_DeleteIdNamespaceCommand, "DeleteIdNamespaceCommand");
|
|
2031
|
-
var DeleteIdNamespaceCommand = _DeleteIdNamespaceCommand;
|
|
2032
2063
|
|
|
2033
2064
|
// src/commands/DeleteMatchingWorkflowCommand.ts
|
|
2034
2065
|
|
|
2035
2066
|
|
|
2036
2067
|
|
|
2037
|
-
var
|
|
2068
|
+
var DeleteMatchingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2038
2069
|
return [
|
|
2039
2070
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2040
2071
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2041
2072
|
];
|
|
2042
2073
|
}).s("AWSVeniceService", "DeleteMatchingWorkflow", {}).n("EntityResolutionClient", "DeleteMatchingWorkflowCommand").f(void 0, void 0).ser(se_DeleteMatchingWorkflowCommand).de(de_DeleteMatchingWorkflowCommand).build() {
|
|
2074
|
+
static {
|
|
2075
|
+
__name(this, "DeleteMatchingWorkflowCommand");
|
|
2076
|
+
}
|
|
2043
2077
|
};
|
|
2044
|
-
__name(_DeleteMatchingWorkflowCommand, "DeleteMatchingWorkflowCommand");
|
|
2045
|
-
var DeleteMatchingWorkflowCommand = _DeleteMatchingWorkflowCommand;
|
|
2046
2078
|
|
|
2047
2079
|
// src/commands/DeletePolicyStatementCommand.ts
|
|
2048
2080
|
|
|
2049
2081
|
|
|
2050
2082
|
|
|
2051
|
-
var
|
|
2083
|
+
var DeletePolicyStatementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2052
2084
|
return [
|
|
2053
2085
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2054
2086
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2055
2087
|
];
|
|
2056
2088
|
}).s("AWSVeniceService", "DeletePolicyStatement", {}).n("EntityResolutionClient", "DeletePolicyStatementCommand").f(void 0, void 0).ser(se_DeletePolicyStatementCommand).de(de_DeletePolicyStatementCommand).build() {
|
|
2089
|
+
static {
|
|
2090
|
+
__name(this, "DeletePolicyStatementCommand");
|
|
2091
|
+
}
|
|
2057
2092
|
};
|
|
2058
|
-
__name(_DeletePolicyStatementCommand, "DeletePolicyStatementCommand");
|
|
2059
|
-
var DeletePolicyStatementCommand = _DeletePolicyStatementCommand;
|
|
2060
2093
|
|
|
2061
2094
|
// src/commands/DeleteSchemaMappingCommand.ts
|
|
2062
2095
|
|
|
2063
2096
|
|
|
2064
2097
|
|
|
2065
|
-
var
|
|
2098
|
+
var DeleteSchemaMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2066
2099
|
return [
|
|
2067
2100
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2068
2101
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2069
2102
|
];
|
|
2070
2103
|
}).s("AWSVeniceService", "DeleteSchemaMapping", {}).n("EntityResolutionClient", "DeleteSchemaMappingCommand").f(void 0, void 0).ser(se_DeleteSchemaMappingCommand).de(de_DeleteSchemaMappingCommand).build() {
|
|
2104
|
+
static {
|
|
2105
|
+
__name(this, "DeleteSchemaMappingCommand");
|
|
2106
|
+
}
|
|
2071
2107
|
};
|
|
2072
|
-
__name(_DeleteSchemaMappingCommand, "DeleteSchemaMappingCommand");
|
|
2073
|
-
var DeleteSchemaMappingCommand = _DeleteSchemaMappingCommand;
|
|
2074
2108
|
|
|
2075
2109
|
// src/commands/GetIdMappingJobCommand.ts
|
|
2076
2110
|
|
|
2077
2111
|
|
|
2078
2112
|
|
|
2079
|
-
var
|
|
2113
|
+
var GetIdMappingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2080
2114
|
return [
|
|
2081
2115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2082
2116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2083
2117
|
];
|
|
2084
2118
|
}).s("AWSVeniceService", "GetIdMappingJob", {}).n("EntityResolutionClient", "GetIdMappingJobCommand").f(void 0, void 0).ser(se_GetIdMappingJobCommand).de(de_GetIdMappingJobCommand).build() {
|
|
2119
|
+
static {
|
|
2120
|
+
__name(this, "GetIdMappingJobCommand");
|
|
2121
|
+
}
|
|
2085
2122
|
};
|
|
2086
|
-
__name(_GetIdMappingJobCommand, "GetIdMappingJobCommand");
|
|
2087
|
-
var GetIdMappingJobCommand = _GetIdMappingJobCommand;
|
|
2088
2123
|
|
|
2089
2124
|
// src/commands/GetIdMappingWorkflowCommand.ts
|
|
2090
2125
|
|
|
2091
2126
|
|
|
2092
2127
|
|
|
2093
|
-
var
|
|
2128
|
+
var GetIdMappingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2094
2129
|
return [
|
|
2095
2130
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2096
2131
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2097
2132
|
];
|
|
2098
2133
|
}).s("AWSVeniceService", "GetIdMappingWorkflow", {}).n("EntityResolutionClient", "GetIdMappingWorkflowCommand").f(void 0, void 0).ser(se_GetIdMappingWorkflowCommand).de(de_GetIdMappingWorkflowCommand).build() {
|
|
2134
|
+
static {
|
|
2135
|
+
__name(this, "GetIdMappingWorkflowCommand");
|
|
2136
|
+
}
|
|
2099
2137
|
};
|
|
2100
|
-
__name(_GetIdMappingWorkflowCommand, "GetIdMappingWorkflowCommand");
|
|
2101
|
-
var GetIdMappingWorkflowCommand = _GetIdMappingWorkflowCommand;
|
|
2102
2138
|
|
|
2103
2139
|
// src/commands/GetIdNamespaceCommand.ts
|
|
2104
2140
|
|
|
2105
2141
|
|
|
2106
2142
|
|
|
2107
|
-
var
|
|
2143
|
+
var GetIdNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2108
2144
|
return [
|
|
2109
2145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2110
2146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2111
2147
|
];
|
|
2112
2148
|
}).s("AWSVeniceService", "GetIdNamespace", {}).n("EntityResolutionClient", "GetIdNamespaceCommand").f(void 0, void 0).ser(se_GetIdNamespaceCommand).de(de_GetIdNamespaceCommand).build() {
|
|
2149
|
+
static {
|
|
2150
|
+
__name(this, "GetIdNamespaceCommand");
|
|
2151
|
+
}
|
|
2113
2152
|
};
|
|
2114
|
-
__name(_GetIdNamespaceCommand, "GetIdNamespaceCommand");
|
|
2115
|
-
var GetIdNamespaceCommand = _GetIdNamespaceCommand;
|
|
2116
2153
|
|
|
2117
2154
|
// src/commands/GetMatchIdCommand.ts
|
|
2118
2155
|
|
|
2119
2156
|
|
|
2120
2157
|
|
|
2121
|
-
var
|
|
2158
|
+
var GetMatchIdCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2122
2159
|
return [
|
|
2123
2160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2124
2161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2125
2162
|
];
|
|
2126
2163
|
}).s("AWSVeniceService", "GetMatchId", {}).n("EntityResolutionClient", "GetMatchIdCommand").f(GetMatchIdInputFilterSensitiveLog, void 0).ser(se_GetMatchIdCommand).de(de_GetMatchIdCommand).build() {
|
|
2164
|
+
static {
|
|
2165
|
+
__name(this, "GetMatchIdCommand");
|
|
2166
|
+
}
|
|
2127
2167
|
};
|
|
2128
|
-
__name(_GetMatchIdCommand, "GetMatchIdCommand");
|
|
2129
|
-
var GetMatchIdCommand = _GetMatchIdCommand;
|
|
2130
2168
|
|
|
2131
2169
|
// src/commands/GetMatchingJobCommand.ts
|
|
2132
2170
|
|
|
2133
2171
|
|
|
2134
2172
|
|
|
2135
|
-
var
|
|
2173
|
+
var GetMatchingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2136
2174
|
return [
|
|
2137
2175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2138
2176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2139
2177
|
];
|
|
2140
2178
|
}).s("AWSVeniceService", "GetMatchingJob", {}).n("EntityResolutionClient", "GetMatchingJobCommand").f(void 0, void 0).ser(se_GetMatchingJobCommand).de(de_GetMatchingJobCommand).build() {
|
|
2179
|
+
static {
|
|
2180
|
+
__name(this, "GetMatchingJobCommand");
|
|
2181
|
+
}
|
|
2141
2182
|
};
|
|
2142
|
-
__name(_GetMatchingJobCommand, "GetMatchingJobCommand");
|
|
2143
|
-
var GetMatchingJobCommand = _GetMatchingJobCommand;
|
|
2144
2183
|
|
|
2145
2184
|
// src/commands/GetMatchingWorkflowCommand.ts
|
|
2146
2185
|
|
|
2147
2186
|
|
|
2148
2187
|
|
|
2149
|
-
var
|
|
2188
|
+
var GetMatchingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2150
2189
|
return [
|
|
2151
2190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2152
2191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2153
2192
|
];
|
|
2154
2193
|
}).s("AWSVeniceService", "GetMatchingWorkflow", {}).n("EntityResolutionClient", "GetMatchingWorkflowCommand").f(void 0, void 0).ser(se_GetMatchingWorkflowCommand).de(de_GetMatchingWorkflowCommand).build() {
|
|
2194
|
+
static {
|
|
2195
|
+
__name(this, "GetMatchingWorkflowCommand");
|
|
2196
|
+
}
|
|
2155
2197
|
};
|
|
2156
|
-
__name(_GetMatchingWorkflowCommand, "GetMatchingWorkflowCommand");
|
|
2157
|
-
var GetMatchingWorkflowCommand = _GetMatchingWorkflowCommand;
|
|
2158
2198
|
|
|
2159
2199
|
// src/commands/GetPolicyCommand.ts
|
|
2160
2200
|
|
|
2161
2201
|
|
|
2162
2202
|
|
|
2163
|
-
var
|
|
2203
|
+
var GetPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2164
2204
|
return [
|
|
2165
2205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2166
2206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2167
2207
|
];
|
|
2168
2208
|
}).s("AWSVeniceService", "GetPolicy", {}).n("EntityResolutionClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
2209
|
+
static {
|
|
2210
|
+
__name(this, "GetPolicyCommand");
|
|
2211
|
+
}
|
|
2169
2212
|
};
|
|
2170
|
-
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
2171
|
-
var GetPolicyCommand = _GetPolicyCommand;
|
|
2172
2213
|
|
|
2173
2214
|
// src/commands/GetProviderServiceCommand.ts
|
|
2174
2215
|
|
|
2175
2216
|
|
|
2176
2217
|
|
|
2177
|
-
var
|
|
2218
|
+
var GetProviderServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2178
2219
|
return [
|
|
2179
2220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2180
2221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2181
2222
|
];
|
|
2182
2223
|
}).s("AWSVeniceService", "GetProviderService", {}).n("EntityResolutionClient", "GetProviderServiceCommand").f(void 0, void 0).ser(se_GetProviderServiceCommand).de(de_GetProviderServiceCommand).build() {
|
|
2224
|
+
static {
|
|
2225
|
+
__name(this, "GetProviderServiceCommand");
|
|
2226
|
+
}
|
|
2183
2227
|
};
|
|
2184
|
-
__name(_GetProviderServiceCommand, "GetProviderServiceCommand");
|
|
2185
|
-
var GetProviderServiceCommand = _GetProviderServiceCommand;
|
|
2186
2228
|
|
|
2187
2229
|
// src/commands/GetSchemaMappingCommand.ts
|
|
2188
2230
|
|
|
2189
2231
|
|
|
2190
2232
|
|
|
2191
|
-
var
|
|
2233
|
+
var GetSchemaMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2192
2234
|
return [
|
|
2193
2235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2194
2236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2195
2237
|
];
|
|
2196
2238
|
}).s("AWSVeniceService", "GetSchemaMapping", {}).n("EntityResolutionClient", "GetSchemaMappingCommand").f(void 0, void 0).ser(se_GetSchemaMappingCommand).de(de_GetSchemaMappingCommand).build() {
|
|
2239
|
+
static {
|
|
2240
|
+
__name(this, "GetSchemaMappingCommand");
|
|
2241
|
+
}
|
|
2197
2242
|
};
|
|
2198
|
-
__name(_GetSchemaMappingCommand, "GetSchemaMappingCommand");
|
|
2199
|
-
var GetSchemaMappingCommand = _GetSchemaMappingCommand;
|
|
2200
2243
|
|
|
2201
2244
|
// src/commands/ListIdMappingJobsCommand.ts
|
|
2202
2245
|
|
|
2203
2246
|
|
|
2204
2247
|
|
|
2205
|
-
var
|
|
2248
|
+
var ListIdMappingJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2206
2249
|
return [
|
|
2207
2250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2208
2251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2209
2252
|
];
|
|
2210
2253
|
}).s("AWSVeniceService", "ListIdMappingJobs", {}).n("EntityResolutionClient", "ListIdMappingJobsCommand").f(void 0, void 0).ser(se_ListIdMappingJobsCommand).de(de_ListIdMappingJobsCommand).build() {
|
|
2254
|
+
static {
|
|
2255
|
+
__name(this, "ListIdMappingJobsCommand");
|
|
2256
|
+
}
|
|
2211
2257
|
};
|
|
2212
|
-
__name(_ListIdMappingJobsCommand, "ListIdMappingJobsCommand");
|
|
2213
|
-
var ListIdMappingJobsCommand = _ListIdMappingJobsCommand;
|
|
2214
2258
|
|
|
2215
2259
|
// src/commands/ListIdMappingWorkflowsCommand.ts
|
|
2216
2260
|
|
|
2217
2261
|
|
|
2218
2262
|
|
|
2219
|
-
var
|
|
2263
|
+
var ListIdMappingWorkflowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2220
2264
|
return [
|
|
2221
2265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2222
2266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2223
2267
|
];
|
|
2224
2268
|
}).s("AWSVeniceService", "ListIdMappingWorkflows", {}).n("EntityResolutionClient", "ListIdMappingWorkflowsCommand").f(void 0, void 0).ser(se_ListIdMappingWorkflowsCommand).de(de_ListIdMappingWorkflowsCommand).build() {
|
|
2269
|
+
static {
|
|
2270
|
+
__name(this, "ListIdMappingWorkflowsCommand");
|
|
2271
|
+
}
|
|
2225
2272
|
};
|
|
2226
|
-
__name(_ListIdMappingWorkflowsCommand, "ListIdMappingWorkflowsCommand");
|
|
2227
|
-
var ListIdMappingWorkflowsCommand = _ListIdMappingWorkflowsCommand;
|
|
2228
2273
|
|
|
2229
2274
|
// src/commands/ListIdNamespacesCommand.ts
|
|
2230
2275
|
|
|
2231
2276
|
|
|
2232
2277
|
|
|
2233
|
-
var
|
|
2278
|
+
var ListIdNamespacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2234
2279
|
return [
|
|
2235
2280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2236
2281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2237
2282
|
];
|
|
2238
2283
|
}).s("AWSVeniceService", "ListIdNamespaces", {}).n("EntityResolutionClient", "ListIdNamespacesCommand").f(void 0, void 0).ser(se_ListIdNamespacesCommand).de(de_ListIdNamespacesCommand).build() {
|
|
2284
|
+
static {
|
|
2285
|
+
__name(this, "ListIdNamespacesCommand");
|
|
2286
|
+
}
|
|
2239
2287
|
};
|
|
2240
|
-
__name(_ListIdNamespacesCommand, "ListIdNamespacesCommand");
|
|
2241
|
-
var ListIdNamespacesCommand = _ListIdNamespacesCommand;
|
|
2242
2288
|
|
|
2243
2289
|
// src/commands/ListMatchingJobsCommand.ts
|
|
2244
2290
|
|
|
2245
2291
|
|
|
2246
2292
|
|
|
2247
|
-
var
|
|
2293
|
+
var ListMatchingJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2248
2294
|
return [
|
|
2249
2295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2250
2296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2251
2297
|
];
|
|
2252
2298
|
}).s("AWSVeniceService", "ListMatchingJobs", {}).n("EntityResolutionClient", "ListMatchingJobsCommand").f(void 0, void 0).ser(se_ListMatchingJobsCommand).de(de_ListMatchingJobsCommand).build() {
|
|
2299
|
+
static {
|
|
2300
|
+
__name(this, "ListMatchingJobsCommand");
|
|
2301
|
+
}
|
|
2253
2302
|
};
|
|
2254
|
-
__name(_ListMatchingJobsCommand, "ListMatchingJobsCommand");
|
|
2255
|
-
var ListMatchingJobsCommand = _ListMatchingJobsCommand;
|
|
2256
2303
|
|
|
2257
2304
|
// src/commands/ListMatchingWorkflowsCommand.ts
|
|
2258
2305
|
|
|
2259
2306
|
|
|
2260
2307
|
|
|
2261
|
-
var
|
|
2308
|
+
var ListMatchingWorkflowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2262
2309
|
return [
|
|
2263
2310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2264
2311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2265
2312
|
];
|
|
2266
2313
|
}).s("AWSVeniceService", "ListMatchingWorkflows", {}).n("EntityResolutionClient", "ListMatchingWorkflowsCommand").f(void 0, void 0).ser(se_ListMatchingWorkflowsCommand).de(de_ListMatchingWorkflowsCommand).build() {
|
|
2314
|
+
static {
|
|
2315
|
+
__name(this, "ListMatchingWorkflowsCommand");
|
|
2316
|
+
}
|
|
2267
2317
|
};
|
|
2268
|
-
__name(_ListMatchingWorkflowsCommand, "ListMatchingWorkflowsCommand");
|
|
2269
|
-
var ListMatchingWorkflowsCommand = _ListMatchingWorkflowsCommand;
|
|
2270
2318
|
|
|
2271
2319
|
// src/commands/ListProviderServicesCommand.ts
|
|
2272
2320
|
|
|
2273
2321
|
|
|
2274
2322
|
|
|
2275
|
-
var
|
|
2323
|
+
var ListProviderServicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2276
2324
|
return [
|
|
2277
2325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2278
2326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2279
2327
|
];
|
|
2280
2328
|
}).s("AWSVeniceService", "ListProviderServices", {}).n("EntityResolutionClient", "ListProviderServicesCommand").f(void 0, void 0).ser(se_ListProviderServicesCommand).de(de_ListProviderServicesCommand).build() {
|
|
2329
|
+
static {
|
|
2330
|
+
__name(this, "ListProviderServicesCommand");
|
|
2331
|
+
}
|
|
2281
2332
|
};
|
|
2282
|
-
__name(_ListProviderServicesCommand, "ListProviderServicesCommand");
|
|
2283
|
-
var ListProviderServicesCommand = _ListProviderServicesCommand;
|
|
2284
2333
|
|
|
2285
2334
|
// src/commands/ListSchemaMappingsCommand.ts
|
|
2286
2335
|
|
|
2287
2336
|
|
|
2288
2337
|
|
|
2289
|
-
var
|
|
2338
|
+
var ListSchemaMappingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2290
2339
|
return [
|
|
2291
2340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2292
2341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2293
2342
|
];
|
|
2294
2343
|
}).s("AWSVeniceService", "ListSchemaMappings", {}).n("EntityResolutionClient", "ListSchemaMappingsCommand").f(void 0, void 0).ser(se_ListSchemaMappingsCommand).de(de_ListSchemaMappingsCommand).build() {
|
|
2344
|
+
static {
|
|
2345
|
+
__name(this, "ListSchemaMappingsCommand");
|
|
2346
|
+
}
|
|
2295
2347
|
};
|
|
2296
|
-
__name(_ListSchemaMappingsCommand, "ListSchemaMappingsCommand");
|
|
2297
|
-
var ListSchemaMappingsCommand = _ListSchemaMappingsCommand;
|
|
2298
2348
|
|
|
2299
2349
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2300
2350
|
|
|
2301
2351
|
|
|
2302
2352
|
|
|
2303
|
-
var
|
|
2353
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2304
2354
|
return [
|
|
2305
2355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2306
2356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2307
2357
|
];
|
|
2308
2358
|
}).s("AWSVeniceService", "ListTagsForResource", {}).n("EntityResolutionClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2359
|
+
static {
|
|
2360
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2361
|
+
}
|
|
2309
2362
|
};
|
|
2310
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2311
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2312
2363
|
|
|
2313
2364
|
// src/commands/PutPolicyCommand.ts
|
|
2314
2365
|
|
|
2315
2366
|
|
|
2316
2367
|
|
|
2317
|
-
var
|
|
2368
|
+
var PutPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2318
2369
|
return [
|
|
2319
2370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2320
2371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2321
2372
|
];
|
|
2322
2373
|
}).s("AWSVeniceService", "PutPolicy", {}).n("EntityResolutionClient", "PutPolicyCommand").f(void 0, void 0).ser(se_PutPolicyCommand).de(de_PutPolicyCommand).build() {
|
|
2374
|
+
static {
|
|
2375
|
+
__name(this, "PutPolicyCommand");
|
|
2376
|
+
}
|
|
2323
2377
|
};
|
|
2324
|
-
__name(_PutPolicyCommand, "PutPolicyCommand");
|
|
2325
|
-
var PutPolicyCommand = _PutPolicyCommand;
|
|
2326
2378
|
|
|
2327
2379
|
// src/commands/StartIdMappingJobCommand.ts
|
|
2328
2380
|
|
|
2329
2381
|
|
|
2330
2382
|
|
|
2331
|
-
var
|
|
2383
|
+
var StartIdMappingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2332
2384
|
return [
|
|
2333
2385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2334
2386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2335
2387
|
];
|
|
2336
2388
|
}).s("AWSVeniceService", "StartIdMappingJob", {}).n("EntityResolutionClient", "StartIdMappingJobCommand").f(void 0, void 0).ser(se_StartIdMappingJobCommand).de(de_StartIdMappingJobCommand).build() {
|
|
2389
|
+
static {
|
|
2390
|
+
__name(this, "StartIdMappingJobCommand");
|
|
2391
|
+
}
|
|
2337
2392
|
};
|
|
2338
|
-
__name(_StartIdMappingJobCommand, "StartIdMappingJobCommand");
|
|
2339
|
-
var StartIdMappingJobCommand = _StartIdMappingJobCommand;
|
|
2340
2393
|
|
|
2341
2394
|
// src/commands/StartMatchingJobCommand.ts
|
|
2342
2395
|
|
|
2343
2396
|
|
|
2344
2397
|
|
|
2345
|
-
var
|
|
2398
|
+
var StartMatchingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2346
2399
|
return [
|
|
2347
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2348
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2349
2402
|
];
|
|
2350
2403
|
}).s("AWSVeniceService", "StartMatchingJob", {}).n("EntityResolutionClient", "StartMatchingJobCommand").f(void 0, void 0).ser(se_StartMatchingJobCommand).de(de_StartMatchingJobCommand).build() {
|
|
2404
|
+
static {
|
|
2405
|
+
__name(this, "StartMatchingJobCommand");
|
|
2406
|
+
}
|
|
2351
2407
|
};
|
|
2352
|
-
__name(_StartMatchingJobCommand, "StartMatchingJobCommand");
|
|
2353
|
-
var StartMatchingJobCommand = _StartMatchingJobCommand;
|
|
2354
2408
|
|
|
2355
2409
|
// src/commands/TagResourceCommand.ts
|
|
2356
2410
|
|
|
2357
2411
|
|
|
2358
2412
|
|
|
2359
|
-
var
|
|
2413
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2360
2414
|
return [
|
|
2361
2415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2362
2416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2363
2417
|
];
|
|
2364
2418
|
}).s("AWSVeniceService", "TagResource", {}).n("EntityResolutionClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2419
|
+
static {
|
|
2420
|
+
__name(this, "TagResourceCommand");
|
|
2421
|
+
}
|
|
2365
2422
|
};
|
|
2366
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2367
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2368
2423
|
|
|
2369
2424
|
// src/commands/UntagResourceCommand.ts
|
|
2370
2425
|
|
|
2371
2426
|
|
|
2372
2427
|
|
|
2373
|
-
var
|
|
2428
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2374
2429
|
return [
|
|
2375
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2376
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2377
2432
|
];
|
|
2378
2433
|
}).s("AWSVeniceService", "UntagResource", {}).n("EntityResolutionClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2434
|
+
static {
|
|
2435
|
+
__name(this, "UntagResourceCommand");
|
|
2436
|
+
}
|
|
2379
2437
|
};
|
|
2380
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2381
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2382
2438
|
|
|
2383
2439
|
// src/commands/UpdateIdMappingWorkflowCommand.ts
|
|
2384
2440
|
|
|
2385
2441
|
|
|
2386
2442
|
|
|
2387
|
-
var
|
|
2443
|
+
var UpdateIdMappingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2388
2444
|
return [
|
|
2389
2445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2390
2446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2391
2447
|
];
|
|
2392
2448
|
}).s("AWSVeniceService", "UpdateIdMappingWorkflow", {}).n("EntityResolutionClient", "UpdateIdMappingWorkflowCommand").f(void 0, void 0).ser(se_UpdateIdMappingWorkflowCommand).de(de_UpdateIdMappingWorkflowCommand).build() {
|
|
2449
|
+
static {
|
|
2450
|
+
__name(this, "UpdateIdMappingWorkflowCommand");
|
|
2451
|
+
}
|
|
2393
2452
|
};
|
|
2394
|
-
__name(_UpdateIdMappingWorkflowCommand, "UpdateIdMappingWorkflowCommand");
|
|
2395
|
-
var UpdateIdMappingWorkflowCommand = _UpdateIdMappingWorkflowCommand;
|
|
2396
2453
|
|
|
2397
2454
|
// src/commands/UpdateIdNamespaceCommand.ts
|
|
2398
2455
|
|
|
2399
2456
|
|
|
2400
2457
|
|
|
2401
|
-
var
|
|
2458
|
+
var UpdateIdNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2402
2459
|
return [
|
|
2403
2460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2404
2461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2405
2462
|
];
|
|
2406
2463
|
}).s("AWSVeniceService", "UpdateIdNamespace", {}).n("EntityResolutionClient", "UpdateIdNamespaceCommand").f(void 0, void 0).ser(se_UpdateIdNamespaceCommand).de(de_UpdateIdNamespaceCommand).build() {
|
|
2464
|
+
static {
|
|
2465
|
+
__name(this, "UpdateIdNamespaceCommand");
|
|
2466
|
+
}
|
|
2407
2467
|
};
|
|
2408
|
-
__name(_UpdateIdNamespaceCommand, "UpdateIdNamespaceCommand");
|
|
2409
|
-
var UpdateIdNamespaceCommand = _UpdateIdNamespaceCommand;
|
|
2410
2468
|
|
|
2411
2469
|
// src/commands/UpdateMatchingWorkflowCommand.ts
|
|
2412
2470
|
|
|
2413
2471
|
|
|
2414
2472
|
|
|
2415
|
-
var
|
|
2473
|
+
var UpdateMatchingWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2416
2474
|
return [
|
|
2417
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2418
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2419
2477
|
];
|
|
2420
2478
|
}).s("AWSVeniceService", "UpdateMatchingWorkflow", {}).n("EntityResolutionClient", "UpdateMatchingWorkflowCommand").f(void 0, void 0).ser(se_UpdateMatchingWorkflowCommand).de(de_UpdateMatchingWorkflowCommand).build() {
|
|
2479
|
+
static {
|
|
2480
|
+
__name(this, "UpdateMatchingWorkflowCommand");
|
|
2481
|
+
}
|
|
2421
2482
|
};
|
|
2422
|
-
__name(_UpdateMatchingWorkflowCommand, "UpdateMatchingWorkflowCommand");
|
|
2423
|
-
var UpdateMatchingWorkflowCommand = _UpdateMatchingWorkflowCommand;
|
|
2424
2483
|
|
|
2425
2484
|
// src/commands/UpdateSchemaMappingCommand.ts
|
|
2426
2485
|
|
|
2427
2486
|
|
|
2428
2487
|
|
|
2429
|
-
var
|
|
2488
|
+
var UpdateSchemaMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2430
2489
|
return [
|
|
2431
2490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2432
2491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2433
2492
|
];
|
|
2434
2493
|
}).s("AWSVeniceService", "UpdateSchemaMapping", {}).n("EntityResolutionClient", "UpdateSchemaMappingCommand").f(void 0, void 0).ser(se_UpdateSchemaMappingCommand).de(de_UpdateSchemaMappingCommand).build() {
|
|
2494
|
+
static {
|
|
2495
|
+
__name(this, "UpdateSchemaMappingCommand");
|
|
2496
|
+
}
|
|
2435
2497
|
};
|
|
2436
|
-
__name(_UpdateSchemaMappingCommand, "UpdateSchemaMappingCommand");
|
|
2437
|
-
var UpdateSchemaMappingCommand = _UpdateSchemaMappingCommand;
|
|
2438
2498
|
|
|
2439
2499
|
// src/EntityResolution.ts
|
|
2440
2500
|
var commands = {
|
|
@@ -2476,10 +2536,11 @@ var commands = {
|
|
|
2476
2536
|
UpdateMatchingWorkflowCommand,
|
|
2477
2537
|
UpdateSchemaMappingCommand
|
|
2478
2538
|
};
|
|
2479
|
-
var
|
|
2539
|
+
var EntityResolution = class extends EntityResolutionClient {
|
|
2540
|
+
static {
|
|
2541
|
+
__name(this, "EntityResolution");
|
|
2542
|
+
}
|
|
2480
2543
|
};
|
|
2481
|
-
__name(_EntityResolution, "EntityResolution");
|
|
2482
|
-
var EntityResolution = _EntityResolution;
|
|
2483
2544
|
(0, import_smithy_client.createAggregatedClient)(commands, EntityResolution);
|
|
2484
2545
|
|
|
2485
2546
|
// src/pagination/ListIdMappingJobsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class EntityResolutionClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { EntityResolutionServiceException as __BaseException } from "./EntityResolutionServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -17,66 +17,66 @@ export const StatementEffect = {
|
|
|
17
17
|
Deny: "Deny",
|
|
18
18
|
};
|
|
19
19
|
export class ConflictException extends __BaseException {
|
|
20
|
+
name = "ConflictException";
|
|
21
|
+
$fault = "client";
|
|
20
22
|
constructor(opts) {
|
|
21
23
|
super({
|
|
22
24
|
name: "ConflictException",
|
|
23
25
|
$fault: "client",
|
|
24
26
|
...opts,
|
|
25
27
|
});
|
|
26
|
-
this.name = "ConflictException";
|
|
27
|
-
this.$fault = "client";
|
|
28
28
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
export class InternalServerException extends __BaseException {
|
|
32
|
+
name = "InternalServerException";
|
|
33
|
+
$fault = "server";
|
|
34
|
+
$retryable = {};
|
|
32
35
|
constructor(opts) {
|
|
33
36
|
super({
|
|
34
37
|
name: "InternalServerException",
|
|
35
38
|
$fault: "server",
|
|
36
39
|
...opts,
|
|
37
40
|
});
|
|
38
|
-
this.name = "InternalServerException";
|
|
39
|
-
this.$fault = "server";
|
|
40
|
-
this.$retryable = {};
|
|
41
41
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
export class ResourceNotFoundException extends __BaseException {
|
|
45
|
+
name = "ResourceNotFoundException";
|
|
46
|
+
$fault = "client";
|
|
45
47
|
constructor(opts) {
|
|
46
48
|
super({
|
|
47
49
|
name: "ResourceNotFoundException",
|
|
48
50
|
$fault: "client",
|
|
49
51
|
...opts,
|
|
50
52
|
});
|
|
51
|
-
this.name = "ResourceNotFoundException";
|
|
52
|
-
this.$fault = "client";
|
|
53
53
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
export class ThrottlingException extends __BaseException {
|
|
57
|
+
name = "ThrottlingException";
|
|
58
|
+
$fault = "client";
|
|
59
|
+
$retryable = {
|
|
60
|
+
throttling: true,
|
|
61
|
+
};
|
|
57
62
|
constructor(opts) {
|
|
58
63
|
super({
|
|
59
64
|
name: "ThrottlingException",
|
|
60
65
|
$fault: "client",
|
|
61
66
|
...opts,
|
|
62
67
|
});
|
|
63
|
-
this.name = "ThrottlingException";
|
|
64
|
-
this.$fault = "client";
|
|
65
|
-
this.$retryable = {
|
|
66
|
-
throttling: true,
|
|
67
|
-
};
|
|
68
68
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
export class ValidationException extends __BaseException {
|
|
72
|
+
name = "ValidationException";
|
|
73
|
+
$fault = "client";
|
|
72
74
|
constructor(opts) {
|
|
73
75
|
super({
|
|
74
76
|
name: "ValidationException",
|
|
75
77
|
$fault: "client",
|
|
76
78
|
...opts,
|
|
77
79
|
});
|
|
78
|
-
this.name = "ValidationException";
|
|
79
|
-
this.$fault = "client";
|
|
80
80
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -109,14 +109,16 @@ export const IdNamespaceType = {
|
|
|
109
109
|
TARGET: "TARGET",
|
|
110
110
|
};
|
|
111
111
|
export class ExceedsLimitException extends __BaseException {
|
|
112
|
+
name = "ExceedsLimitException";
|
|
113
|
+
$fault = "client";
|
|
114
|
+
quotaName;
|
|
115
|
+
quotaValue;
|
|
112
116
|
constructor(opts) {
|
|
113
117
|
super({
|
|
114
118
|
name: "ExceedsLimitException",
|
|
115
119
|
$fault: "client",
|
|
116
120
|
...opts,
|
|
117
121
|
});
|
|
118
|
-
this.name = "ExceedsLimitException";
|
|
119
|
-
this.$fault = "client";
|
|
120
122
|
Object.setPrototypeOf(this, ExceedsLimitException.prototype);
|
|
121
123
|
this.quotaName = opts.quotaName;
|
|
122
124
|
this.quotaValue = opts.quotaValue;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: EntityResolutionClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-entityresolution",
|
|
3
3
|
"description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-entityresolution",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|