@aws-sdk/client-customer-profiles 3.39.0 → 3.43.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/CHANGELOG.md +41 -0
- package/dist-cjs/CustomerProfiles.js +45 -0
- package/dist-cjs/commands/GetAutoMergingPreviewCommand.js +36 -0
- package/dist-cjs/commands/GetIdentityResolutionJobCommand.js +36 -0
- package/dist-cjs/commands/ListIdentityResolutionJobsCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +74 -5
- package/dist-cjs/models/models_0.js +124 -3
- package/dist-cjs/protocols/Aws_restJson1.js +621 -2
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/CustomerProfiles.js +45 -0
- package/dist-es/commands/GetAutoMergingPreviewCommand.js +39 -0
- package/dist-es/commands/GetIdentityResolutionJobCommand.js +39 -0
- package/dist-es/commands/ListIdentityResolutionJobsCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +74 -5
- package/dist-es/models/models_0.js +89 -0
- package/dist-es/protocols/Aws_restJson1.js +653 -4
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/CustomerProfiles.d.ts +48 -2
- package/dist-types/CustomerProfilesClient.d.ts +13 -2
- package/dist-types/commands/AddProfileKeyCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +3 -1
- package/dist-types/commands/CreateProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +48 -0
- package/dist-types/commands/GetDomainCommand.d.ts +1 -1
- package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +37 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/GetMatchesCommand.d.ts +8 -3
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +36 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectTypeTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectTypesCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/SearchProfilesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +3 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +573 -28
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +15 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +9 -2
- package/dist-types/ts3.4/commands/GetAutoMergingPreviewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetIdentityResolutionJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListIdentityResolutionJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +250 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -4,6 +4,7 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
6
|
const sha256_browser_1 = require("@aws-crypto/sha256-browser");
|
|
7
|
+
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
7
8
|
const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
|
|
8
9
|
const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
|
|
9
10
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
@@ -13,7 +14,7 @@ const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
|
|
|
13
14
|
const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
|
|
14
15
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
15
16
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
17
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
17
18
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
18
19
|
return {
|
|
19
20
|
...clientSharedValues,
|
|
@@ -30,8 +31,10 @@ const getRuntimeConfig = (config) => {
|
|
|
30
31
|
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (() => Promise.resolve(middleware_retry_1.DEFAULT_RETRY_MODE)),
|
|
31
32
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : sha256_browser_1.Sha256,
|
|
32
33
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : fetch_http_handler_1.streamCollector,
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
35
|
+
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
36
|
+
utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_browser_1.fromUtf8,
|
|
37
|
+
utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_browser_1.toUtf8,
|
|
35
38
|
};
|
|
36
39
|
};
|
|
37
40
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -17,7 +17,7 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
19
|
const getRuntimeConfig = (config) => {
|
|
20
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
20
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
21
21
|
smithy_client_1.emitWarningIfUnsupportedVersion(process.version);
|
|
22
22
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
23
23
|
return {
|
|
@@ -35,8 +35,10 @@ const getRuntimeConfig = (config) => {
|
|
|
35
35
|
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS),
|
|
36
36
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
|
|
37
37
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
39
|
+
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
40
|
+
utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_node_1.fromUtf8,
|
|
41
|
+
utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_node_1.toUtf8,
|
|
40
42
|
};
|
|
41
43
|
};
|
|
42
44
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -8,13 +8,16 @@ import { DeleteProfileCommand, } from "./commands/DeleteProfileCommand";
|
|
|
8
8
|
import { DeleteProfileKeyCommand, } from "./commands/DeleteProfileKeyCommand";
|
|
9
9
|
import { DeleteProfileObjectCommand, } from "./commands/DeleteProfileObjectCommand";
|
|
10
10
|
import { DeleteProfileObjectTypeCommand, } from "./commands/DeleteProfileObjectTypeCommand";
|
|
11
|
+
import { GetAutoMergingPreviewCommand, } from "./commands/GetAutoMergingPreviewCommand";
|
|
11
12
|
import { GetDomainCommand } from "./commands/GetDomainCommand";
|
|
13
|
+
import { GetIdentityResolutionJobCommand, } from "./commands/GetIdentityResolutionJobCommand";
|
|
12
14
|
import { GetIntegrationCommand, } from "./commands/GetIntegrationCommand";
|
|
13
15
|
import { GetMatchesCommand } from "./commands/GetMatchesCommand";
|
|
14
16
|
import { GetProfileObjectTypeCommand, } from "./commands/GetProfileObjectTypeCommand";
|
|
15
17
|
import { GetProfileObjectTypeTemplateCommand, } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
16
18
|
import { ListAccountIntegrationsCommand, } from "./commands/ListAccountIntegrationsCommand";
|
|
17
19
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
20
|
+
import { ListIdentityResolutionJobsCommand, } from "./commands/ListIdentityResolutionJobsCommand";
|
|
18
21
|
import { ListIntegrationsCommand, } from "./commands/ListIntegrationsCommand";
|
|
19
22
|
import { ListProfileObjectsCommand, } from "./commands/ListProfileObjectsCommand";
|
|
20
23
|
import { ListProfileObjectTypesCommand, } from "./commands/ListProfileObjectTypesCommand";
|
|
@@ -161,6 +164,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
161
164
|
return this.send(command, optionsOrCb);
|
|
162
165
|
}
|
|
163
166
|
};
|
|
167
|
+
CustomerProfiles.prototype.getAutoMergingPreview = function (args, optionsOrCb, cb) {
|
|
168
|
+
var command = new GetAutoMergingPreviewCommand(args);
|
|
169
|
+
if (typeof optionsOrCb === "function") {
|
|
170
|
+
this.send(command, optionsOrCb);
|
|
171
|
+
}
|
|
172
|
+
else if (typeof cb === "function") {
|
|
173
|
+
if (typeof optionsOrCb !== "object")
|
|
174
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
175
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
176
|
+
}
|
|
177
|
+
else {
|
|
178
|
+
return this.send(command, optionsOrCb);
|
|
179
|
+
}
|
|
180
|
+
};
|
|
164
181
|
CustomerProfiles.prototype.getDomain = function (args, optionsOrCb, cb) {
|
|
165
182
|
var command = new GetDomainCommand(args);
|
|
166
183
|
if (typeof optionsOrCb === "function") {
|
|
@@ -175,6 +192,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
175
192
|
return this.send(command, optionsOrCb);
|
|
176
193
|
}
|
|
177
194
|
};
|
|
195
|
+
CustomerProfiles.prototype.getIdentityResolutionJob = function (args, optionsOrCb, cb) {
|
|
196
|
+
var command = new GetIdentityResolutionJobCommand(args);
|
|
197
|
+
if (typeof optionsOrCb === "function") {
|
|
198
|
+
this.send(command, optionsOrCb);
|
|
199
|
+
}
|
|
200
|
+
else if (typeof cb === "function") {
|
|
201
|
+
if (typeof optionsOrCb !== "object")
|
|
202
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
203
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
204
|
+
}
|
|
205
|
+
else {
|
|
206
|
+
return this.send(command, optionsOrCb);
|
|
207
|
+
}
|
|
208
|
+
};
|
|
178
209
|
CustomerProfiles.prototype.getIntegration = function (args, optionsOrCb, cb) {
|
|
179
210
|
var command = new GetIntegrationCommand(args);
|
|
180
211
|
if (typeof optionsOrCb === "function") {
|
|
@@ -259,6 +290,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
259
290
|
return this.send(command, optionsOrCb);
|
|
260
291
|
}
|
|
261
292
|
};
|
|
293
|
+
CustomerProfiles.prototype.listIdentityResolutionJobs = function (args, optionsOrCb, cb) {
|
|
294
|
+
var command = new ListIdentityResolutionJobsCommand(args);
|
|
295
|
+
if (typeof optionsOrCb === "function") {
|
|
296
|
+
this.send(command, optionsOrCb);
|
|
297
|
+
}
|
|
298
|
+
else if (typeof cb === "function") {
|
|
299
|
+
if (typeof optionsOrCb !== "object")
|
|
300
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
301
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
302
|
+
}
|
|
303
|
+
else {
|
|
304
|
+
return this.send(command, optionsOrCb);
|
|
305
|
+
}
|
|
306
|
+
};
|
|
262
307
|
CustomerProfiles.prototype.listIntegrations = function (args, optionsOrCb, cb) {
|
|
263
308
|
var command = new ListIntegrationsCommand(args);
|
|
264
309
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { GetAutoMergingPreviewRequest, GetAutoMergingPreviewResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1GetAutoMergingPreviewCommand, serializeAws_restJson1GetAutoMergingPreviewCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var GetAutoMergingPreviewCommand = (function (_super) {
|
|
7
|
+
__extends(GetAutoMergingPreviewCommand, _super);
|
|
8
|
+
function GetAutoMergingPreviewCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
GetAutoMergingPreviewCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "CustomerProfilesClient";
|
|
18
|
+
var commandName = "GetAutoMergingPreviewCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: GetAutoMergingPreviewRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetAutoMergingPreviewResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetAutoMergingPreviewCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1GetAutoMergingPreviewCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
GetAutoMergingPreviewCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1GetAutoMergingPreviewCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return GetAutoMergingPreviewCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetAutoMergingPreviewCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { GetIdentityResolutionJobRequest, GetIdentityResolutionJobResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1GetIdentityResolutionJobCommand, serializeAws_restJson1GetIdentityResolutionJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var GetIdentityResolutionJobCommand = (function (_super) {
|
|
7
|
+
__extends(GetIdentityResolutionJobCommand, _super);
|
|
8
|
+
function GetIdentityResolutionJobCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
GetIdentityResolutionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "CustomerProfilesClient";
|
|
18
|
+
var commandName = "GetIdentityResolutionJobCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: GetIdentityResolutionJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetIdentityResolutionJobResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetIdentityResolutionJobCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1GetIdentityResolutionJobCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
GetIdentityResolutionJobCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1GetIdentityResolutionJobCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return GetIdentityResolutionJobCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetIdentityResolutionJobCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListIdentityResolutionJobsRequest, ListIdentityResolutionJobsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListIdentityResolutionJobsCommand, serializeAws_restJson1ListIdentityResolutionJobsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListIdentityResolutionJobsCommand = (function (_super) {
|
|
7
|
+
__extends(ListIdentityResolutionJobsCommand, _super);
|
|
8
|
+
function ListIdentityResolutionJobsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListIdentityResolutionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "CustomerProfilesClient";
|
|
18
|
+
var commandName = "ListIdentityResolutionJobsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListIdentityResolutionJobsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListIdentityResolutionJobsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListIdentityResolutionJobsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListIdentityResolutionJobsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListIdentityResolutionJobsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListIdentityResolutionJobsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListIdentityResolutionJobsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListIdentityResolutionJobsCommand };
|
|
@@ -7,13 +7,16 @@ export * from "./DeleteProfileCommand";
|
|
|
7
7
|
export * from "./DeleteProfileKeyCommand";
|
|
8
8
|
export * from "./DeleteProfileObjectCommand";
|
|
9
9
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
10
|
+
export * from "./GetAutoMergingPreviewCommand";
|
|
10
11
|
export * from "./GetDomainCommand";
|
|
12
|
+
export * from "./GetIdentityResolutionJobCommand";
|
|
11
13
|
export * from "./GetIntegrationCommand";
|
|
12
14
|
export * from "./GetMatchesCommand";
|
|
13
15
|
export * from "./GetProfileObjectTypeCommand";
|
|
14
16
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
15
17
|
export * from "./ListAccountIntegrationsCommand";
|
|
16
18
|
export * from "./ListDomainsCommand";
|
|
19
|
+
export * from "./ListIdentityResolutionJobsCommand";
|
|
17
20
|
export * from "./ListIntegrationsCommand";
|
|
18
21
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
19
22
|
export * from "./ListProfileObjectTypesCommand";
|
package/dist-es/endpoints.js
CHANGED
|
@@ -27,27 +27,96 @@ var partitionHash = {
|
|
|
27
27
|
"us-west-2",
|
|
28
28
|
],
|
|
29
29
|
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
|
|
30
|
-
|
|
30
|
+
variants: [
|
|
31
|
+
{
|
|
32
|
+
hostname: "profile.{region}.amazonaws.com",
|
|
33
|
+
tags: [],
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
hostname: "profile-fips.{region}.amazonaws.com",
|
|
37
|
+
tags: ["fips"],
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
hostname: "profile-fips.{region}.api.aws",
|
|
41
|
+
tags: ["dualstack", "fips"],
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
hostname: "profile.{region}.api.aws",
|
|
45
|
+
tags: ["dualstack"],
|
|
46
|
+
},
|
|
47
|
+
],
|
|
31
48
|
},
|
|
32
49
|
"aws-cn": {
|
|
33
50
|
regions: ["cn-north-1", "cn-northwest-1"],
|
|
34
51
|
regionRegex: "^cn\\-\\w+\\-\\d+$",
|
|
35
|
-
|
|
52
|
+
variants: [
|
|
53
|
+
{
|
|
54
|
+
hostname: "profile.{region}.amazonaws.com.cn",
|
|
55
|
+
tags: [],
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
hostname: "profile-fips.{region}.amazonaws.com.cn",
|
|
59
|
+
tags: ["fips"],
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
hostname: "profile-fips.{region}.api.amazonwebservices.com.cn",
|
|
63
|
+
tags: ["dualstack", "fips"],
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
hostname: "profile.{region}.api.amazonwebservices.com.cn",
|
|
67
|
+
tags: ["dualstack"],
|
|
68
|
+
},
|
|
69
|
+
],
|
|
36
70
|
},
|
|
37
71
|
"aws-iso": {
|
|
38
72
|
regions: ["us-iso-east-1", "us-iso-west-1"],
|
|
39
73
|
regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
|
|
40
|
-
|
|
74
|
+
variants: [
|
|
75
|
+
{
|
|
76
|
+
hostname: "profile.{region}.c2s.ic.gov",
|
|
77
|
+
tags: [],
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
hostname: "profile-fips.{region}.c2s.ic.gov",
|
|
81
|
+
tags: ["fips"],
|
|
82
|
+
},
|
|
83
|
+
],
|
|
41
84
|
},
|
|
42
85
|
"aws-iso-b": {
|
|
43
86
|
regions: ["us-isob-east-1"],
|
|
44
87
|
regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
|
|
45
|
-
|
|
88
|
+
variants: [
|
|
89
|
+
{
|
|
90
|
+
hostname: "profile.{region}.sc2s.sgov.gov",
|
|
91
|
+
tags: [],
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
hostname: "profile-fips.{region}.sc2s.sgov.gov",
|
|
95
|
+
tags: ["fips"],
|
|
96
|
+
},
|
|
97
|
+
],
|
|
46
98
|
},
|
|
47
99
|
"aws-us-gov": {
|
|
48
100
|
regions: ["us-gov-east-1", "us-gov-west-1"],
|
|
49
101
|
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
50
|
-
|
|
102
|
+
variants: [
|
|
103
|
+
{
|
|
104
|
+
hostname: "profile.{region}.amazonaws.com",
|
|
105
|
+
tags: [],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
hostname: "profile-fips.{region}.amazonaws.com",
|
|
109
|
+
tags: ["fips"],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
hostname: "profile-fips.{region}.api.aws",
|
|
113
|
+
tags: ["dualstack", "fips"],
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
hostname: "profile.{region}.api.aws",
|
|
117
|
+
tags: ["dualstack"],
|
|
118
|
+
},
|
|
119
|
+
],
|
|
51
120
|
},
|
|
52
121
|
};
|
|
53
122
|
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
@@ -31,6 +31,23 @@ export var Address;
|
|
|
31
31
|
(function (Address) {
|
|
32
32
|
Address.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
33
|
})(Address || (Address = {}));
|
|
34
|
+
export var ConflictResolvingModel;
|
|
35
|
+
(function (ConflictResolvingModel) {
|
|
36
|
+
ConflictResolvingModel["RECENCY"] = "RECENCY";
|
|
37
|
+
ConflictResolvingModel["SOURCE"] = "SOURCE";
|
|
38
|
+
})(ConflictResolvingModel || (ConflictResolvingModel = {}));
|
|
39
|
+
export var ConflictResolution;
|
|
40
|
+
(function (ConflictResolution) {
|
|
41
|
+
ConflictResolution.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
42
|
+
})(ConflictResolution || (ConflictResolution = {}));
|
|
43
|
+
export var Consolidation;
|
|
44
|
+
(function (Consolidation) {
|
|
45
|
+
Consolidation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
46
|
+
})(Consolidation || (Consolidation = {}));
|
|
47
|
+
export var AutoMerging;
|
|
48
|
+
(function (AutoMerging) {
|
|
49
|
+
AutoMerging.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
50
|
+
})(AutoMerging || (AutoMerging = {}));
|
|
34
51
|
export var MarketoConnectorOperator;
|
|
35
52
|
(function (MarketoConnectorOperator) {
|
|
36
53
|
MarketoConnectorOperator["ADDITION"] = "ADDITION";
|
|
@@ -142,6 +159,28 @@ export var ConnectorOperator;
|
|
|
142
159
|
(function (ConnectorOperator) {
|
|
143
160
|
ConnectorOperator.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
161
|
})(ConnectorOperator || (ConnectorOperator = {}));
|
|
162
|
+
export var S3ExportingConfig;
|
|
163
|
+
(function (S3ExportingConfig) {
|
|
164
|
+
S3ExportingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
})(S3ExportingConfig || (S3ExportingConfig = {}));
|
|
166
|
+
export var ExportingConfig;
|
|
167
|
+
(function (ExportingConfig) {
|
|
168
|
+
ExportingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
})(ExportingConfig || (ExportingConfig = {}));
|
|
170
|
+
export var JobScheduleDayOfTheWeek;
|
|
171
|
+
(function (JobScheduleDayOfTheWeek) {
|
|
172
|
+
JobScheduleDayOfTheWeek["FRIDAY"] = "FRIDAY";
|
|
173
|
+
JobScheduleDayOfTheWeek["MONDAY"] = "MONDAY";
|
|
174
|
+
JobScheduleDayOfTheWeek["SATURDAY"] = "SATURDAY";
|
|
175
|
+
JobScheduleDayOfTheWeek["SUNDAY"] = "SUNDAY";
|
|
176
|
+
JobScheduleDayOfTheWeek["THURSDAY"] = "THURSDAY";
|
|
177
|
+
JobScheduleDayOfTheWeek["TUESDAY"] = "TUESDAY";
|
|
178
|
+
JobScheduleDayOfTheWeek["WEDNESDAY"] = "WEDNESDAY";
|
|
179
|
+
})(JobScheduleDayOfTheWeek || (JobScheduleDayOfTheWeek = {}));
|
|
180
|
+
export var JobSchedule;
|
|
181
|
+
(function (JobSchedule) {
|
|
182
|
+
JobSchedule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
})(JobSchedule || (JobSchedule = {}));
|
|
145
184
|
export var MatchingRequest;
|
|
146
185
|
(function (MatchingRequest) {
|
|
147
186
|
MatchingRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -226,6 +265,14 @@ export var DeleteProfileObjectTypeResponse;
|
|
|
226
265
|
(function (DeleteProfileObjectTypeResponse) {
|
|
227
266
|
DeleteProfileObjectTypeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
267
|
})(DeleteProfileObjectTypeResponse || (DeleteProfileObjectTypeResponse = {}));
|
|
268
|
+
export var GetAutoMergingPreviewRequest;
|
|
269
|
+
(function (GetAutoMergingPreviewRequest) {
|
|
270
|
+
GetAutoMergingPreviewRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
})(GetAutoMergingPreviewRequest || (GetAutoMergingPreviewRequest = {}));
|
|
272
|
+
export var GetAutoMergingPreviewResponse;
|
|
273
|
+
(function (GetAutoMergingPreviewResponse) {
|
|
274
|
+
GetAutoMergingPreviewResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
})(GetAutoMergingPreviewResponse || (GetAutoMergingPreviewResponse = {}));
|
|
229
276
|
export var GetDomainRequest;
|
|
230
277
|
(function (GetDomainRequest) {
|
|
231
278
|
GetDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -238,6 +285,36 @@ export var GetDomainResponse;
|
|
|
238
285
|
(function (GetDomainResponse) {
|
|
239
286
|
GetDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
287
|
})(GetDomainResponse || (GetDomainResponse = {}));
|
|
288
|
+
export var GetIdentityResolutionJobRequest;
|
|
289
|
+
(function (GetIdentityResolutionJobRequest) {
|
|
290
|
+
GetIdentityResolutionJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
})(GetIdentityResolutionJobRequest || (GetIdentityResolutionJobRequest = {}));
|
|
292
|
+
export var S3ExportingLocation;
|
|
293
|
+
(function (S3ExportingLocation) {
|
|
294
|
+
S3ExportingLocation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
})(S3ExportingLocation || (S3ExportingLocation = {}));
|
|
296
|
+
export var ExportingLocation;
|
|
297
|
+
(function (ExportingLocation) {
|
|
298
|
+
ExportingLocation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
})(ExportingLocation || (ExportingLocation = {}));
|
|
300
|
+
export var JobStats;
|
|
301
|
+
(function (JobStats) {
|
|
302
|
+
JobStats.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
})(JobStats || (JobStats = {}));
|
|
304
|
+
export var IdentityResolutionJobStatus;
|
|
305
|
+
(function (IdentityResolutionJobStatus) {
|
|
306
|
+
IdentityResolutionJobStatus["COMPLETED"] = "COMPLETED";
|
|
307
|
+
IdentityResolutionJobStatus["FAILED"] = "FAILED";
|
|
308
|
+
IdentityResolutionJobStatus["FIND_MATCHING"] = "FIND_MATCHING";
|
|
309
|
+
IdentityResolutionJobStatus["MERGING"] = "MERGING";
|
|
310
|
+
IdentityResolutionJobStatus["PARTIAL_SUCCESS"] = "PARTIAL_SUCCESS";
|
|
311
|
+
IdentityResolutionJobStatus["PENDING"] = "PENDING";
|
|
312
|
+
IdentityResolutionJobStatus["PREPROCESSING"] = "PREPROCESSING";
|
|
313
|
+
})(IdentityResolutionJobStatus || (IdentityResolutionJobStatus = {}));
|
|
314
|
+
export var GetIdentityResolutionJobResponse;
|
|
315
|
+
(function (GetIdentityResolutionJobResponse) {
|
|
316
|
+
GetIdentityResolutionJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
})(GetIdentityResolutionJobResponse || (GetIdentityResolutionJobResponse = {}));
|
|
241
318
|
export var GetIntegrationRequest;
|
|
242
319
|
(function (GetIntegrationRequest) {
|
|
243
320
|
GetIntegrationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -324,6 +401,18 @@ export var ListDomainsResponse;
|
|
|
324
401
|
(function (ListDomainsResponse) {
|
|
325
402
|
ListDomainsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
403
|
})(ListDomainsResponse || (ListDomainsResponse = {}));
|
|
404
|
+
export var ListIdentityResolutionJobsRequest;
|
|
405
|
+
(function (ListIdentityResolutionJobsRequest) {
|
|
406
|
+
ListIdentityResolutionJobsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
+
})(ListIdentityResolutionJobsRequest || (ListIdentityResolutionJobsRequest = {}));
|
|
408
|
+
export var IdentityResolutionJob;
|
|
409
|
+
(function (IdentityResolutionJob) {
|
|
410
|
+
IdentityResolutionJob.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
|
+
})(IdentityResolutionJob || (IdentityResolutionJob = {}));
|
|
412
|
+
export var ListIdentityResolutionJobsResponse;
|
|
413
|
+
(function (ListIdentityResolutionJobsResponse) {
|
|
414
|
+
ListIdentityResolutionJobsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
+
})(ListIdentityResolutionJobsResponse || (ListIdentityResolutionJobsResponse = {}));
|
|
327
416
|
export var ListIntegrationsRequest;
|
|
328
417
|
(function (ListIntegrationsRequest) {
|
|
329
418
|
ListIntegrationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|