@aws-sdk/client-customer-profiles 3.42.0 → 3.47.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 +50 -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 +1 -0
- package/dist-cjs/models/models_0.js +123 -31
- package/dist-cjs/protocols/Aws_restJson1.js +658 -2
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -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 +1 -0
- package/dist-es/models/models_0.js +90 -20
- package/dist-es/protocols/Aws_restJson1.js +689 -6
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/CustomerProfiles.d.ts +50 -6
- package/dist-types/CustomerProfilesClient.d.ts +10 -3
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -0
- package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +48 -0
- package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +37 -0
- package/dist-types/commands/GetMatchesCommand.d.ts +8 -4
- package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +36 -0
- package/dist-types/commands/MergeProfilesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDomainCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +616 -65
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +15 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +8 -3
- 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 +271 -24
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,56 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients to use default values inferred from defaults mode ([#3192](https://github.com/aws/aws-sdk-js-v3/issues/3192)) ([9152e21](https://github.com/aws/aws-sdk-js-v3/commit/9152e210c6ec29f34bb070eaf2874039022e6ab7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **clients:** update clean:dist script to delete dist-* folder ([#3155](https://github.com/aws/aws-sdk-js-v3/issues/3155)) ([cdb1709](https://github.com/aws/aws-sdk-js-v3/commit/cdb17090f82d1fc8755811c82cbed5976ec7e60b))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** extend typedoc.json from root ([#3136](https://github.com/aws/aws-sdk-js-v3/issues/3136)) ([f6a3ef5](https://github.com/aws/aws-sdk-js-v3/commit/f6a3ef541ae2d92872d09d8cab6727911287ebb2))
|
|
28
|
+
* end support for Node.js 10.x ([#3122](https://github.com/aws/aws-sdk-js-v3/issues/3122)) ([7acf18a](https://github.com/aws/aws-sdk-js-v3/commit/7acf18abd3fb1cc461f809110cdb0d7968c2070e))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Features
|
|
49
|
+
|
|
50
|
+
* **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
6
56
|
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
7
57
|
|
|
8
58
|
**Note:** Version bump only for package @aws-sdk/client-customer-profiles
|
|
@@ -10,13 +10,16 @@ const DeleteProfileCommand_1 = require("./commands/DeleteProfileCommand");
|
|
|
10
10
|
const DeleteProfileKeyCommand_1 = require("./commands/DeleteProfileKeyCommand");
|
|
11
11
|
const DeleteProfileObjectCommand_1 = require("./commands/DeleteProfileObjectCommand");
|
|
12
12
|
const DeleteProfileObjectTypeCommand_1 = require("./commands/DeleteProfileObjectTypeCommand");
|
|
13
|
+
const GetAutoMergingPreviewCommand_1 = require("./commands/GetAutoMergingPreviewCommand");
|
|
13
14
|
const GetDomainCommand_1 = require("./commands/GetDomainCommand");
|
|
15
|
+
const GetIdentityResolutionJobCommand_1 = require("./commands/GetIdentityResolutionJobCommand");
|
|
14
16
|
const GetIntegrationCommand_1 = require("./commands/GetIntegrationCommand");
|
|
15
17
|
const GetMatchesCommand_1 = require("./commands/GetMatchesCommand");
|
|
16
18
|
const GetProfileObjectTypeCommand_1 = require("./commands/GetProfileObjectTypeCommand");
|
|
17
19
|
const GetProfileObjectTypeTemplateCommand_1 = require("./commands/GetProfileObjectTypeTemplateCommand");
|
|
18
20
|
const ListAccountIntegrationsCommand_1 = require("./commands/ListAccountIntegrationsCommand");
|
|
19
21
|
const ListDomainsCommand_1 = require("./commands/ListDomainsCommand");
|
|
22
|
+
const ListIdentityResolutionJobsCommand_1 = require("./commands/ListIdentityResolutionJobsCommand");
|
|
20
23
|
const ListIntegrationsCommand_1 = require("./commands/ListIntegrationsCommand");
|
|
21
24
|
const ListProfileObjectsCommand_1 = require("./commands/ListProfileObjectsCommand");
|
|
22
25
|
const ListProfileObjectTypesCommand_1 = require("./commands/ListProfileObjectTypesCommand");
|
|
@@ -159,6 +162,20 @@ class CustomerProfiles extends CustomerProfilesClient_1.CustomerProfilesClient {
|
|
|
159
162
|
return this.send(command, optionsOrCb);
|
|
160
163
|
}
|
|
161
164
|
}
|
|
165
|
+
getAutoMergingPreview(args, optionsOrCb, cb) {
|
|
166
|
+
const command = new GetAutoMergingPreviewCommand_1.GetAutoMergingPreviewCommand(args);
|
|
167
|
+
if (typeof optionsOrCb === "function") {
|
|
168
|
+
this.send(command, optionsOrCb);
|
|
169
|
+
}
|
|
170
|
+
else if (typeof cb === "function") {
|
|
171
|
+
if (typeof optionsOrCb !== "object")
|
|
172
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
173
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
174
|
+
}
|
|
175
|
+
else {
|
|
176
|
+
return this.send(command, optionsOrCb);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
162
179
|
getDomain(args, optionsOrCb, cb) {
|
|
163
180
|
const command = new GetDomainCommand_1.GetDomainCommand(args);
|
|
164
181
|
if (typeof optionsOrCb === "function") {
|
|
@@ -173,6 +190,20 @@ class CustomerProfiles extends CustomerProfilesClient_1.CustomerProfilesClient {
|
|
|
173
190
|
return this.send(command, optionsOrCb);
|
|
174
191
|
}
|
|
175
192
|
}
|
|
193
|
+
getIdentityResolutionJob(args, optionsOrCb, cb) {
|
|
194
|
+
const command = new GetIdentityResolutionJobCommand_1.GetIdentityResolutionJobCommand(args);
|
|
195
|
+
if (typeof optionsOrCb === "function") {
|
|
196
|
+
this.send(command, optionsOrCb);
|
|
197
|
+
}
|
|
198
|
+
else if (typeof cb === "function") {
|
|
199
|
+
if (typeof optionsOrCb !== "object")
|
|
200
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
201
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
202
|
+
}
|
|
203
|
+
else {
|
|
204
|
+
return this.send(command, optionsOrCb);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
176
207
|
getIntegration(args, optionsOrCb, cb) {
|
|
177
208
|
const command = new GetIntegrationCommand_1.GetIntegrationCommand(args);
|
|
178
209
|
if (typeof optionsOrCb === "function") {
|
|
@@ -257,6 +288,20 @@ class CustomerProfiles extends CustomerProfilesClient_1.CustomerProfilesClient {
|
|
|
257
288
|
return this.send(command, optionsOrCb);
|
|
258
289
|
}
|
|
259
290
|
}
|
|
291
|
+
listIdentityResolutionJobs(args, optionsOrCb, cb) {
|
|
292
|
+
const command = new ListIdentityResolutionJobsCommand_1.ListIdentityResolutionJobsCommand(args);
|
|
293
|
+
if (typeof optionsOrCb === "function") {
|
|
294
|
+
this.send(command, optionsOrCb);
|
|
295
|
+
}
|
|
296
|
+
else if (typeof cb === "function") {
|
|
297
|
+
if (typeof optionsOrCb !== "object")
|
|
298
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
299
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
300
|
+
}
|
|
301
|
+
else {
|
|
302
|
+
return this.send(command, optionsOrCb);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
260
305
|
listIntegrations(args, optionsOrCb, cb) {
|
|
261
306
|
const command = new ListIntegrationsCommand_1.ListIntegrationsCommand(args);
|
|
262
307
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAutoMergingPreviewCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class GetAutoMergingPreviewCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "CustomerProfilesClient";
|
|
18
|
+
const commandName = "GetAutoMergingPreviewCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetAutoMergingPreviewRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetAutoMergingPreviewResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_restJson1_1.serializeAws_restJson1GetAutoMergingPreviewCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetAutoMergingPreviewCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.GetAutoMergingPreviewCommand = GetAutoMergingPreviewCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetIdentityResolutionJobCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class GetIdentityResolutionJobCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "CustomerProfilesClient";
|
|
18
|
+
const commandName = "GetIdentityResolutionJobCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetIdentityResolutionJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetIdentityResolutionJobResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_restJson1_1.serializeAws_restJson1GetIdentityResolutionJobCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetIdentityResolutionJobCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.GetIdentityResolutionJobCommand = GetIdentityResolutionJobCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListIdentityResolutionJobsCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class ListIdentityResolutionJobsCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "CustomerProfilesClient";
|
|
18
|
+
const commandName = "ListIdentityResolutionJobsCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListIdentityResolutionJobsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListIdentityResolutionJobsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_restJson1_1.serializeAws_restJson1ListIdentityResolutionJobsCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_restJson1_1.deserializeAws_restJson1ListIdentityResolutionJobsCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ListIdentityResolutionJobsCommand = ListIdentityResolutionJobsCommand;
|
|
@@ -10,13 +10,16 @@ tslib_1.__exportStar(require("./DeleteProfileCommand"), exports);
|
|
|
10
10
|
tslib_1.__exportStar(require("./DeleteProfileKeyCommand"), exports);
|
|
11
11
|
tslib_1.__exportStar(require("./DeleteProfileObjectCommand"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./DeleteProfileObjectTypeCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./GetAutoMergingPreviewCommand"), exports);
|
|
13
14
|
tslib_1.__exportStar(require("./GetDomainCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./GetIdentityResolutionJobCommand"), exports);
|
|
14
16
|
tslib_1.__exportStar(require("./GetIntegrationCommand"), exports);
|
|
15
17
|
tslib_1.__exportStar(require("./GetMatchesCommand"), exports);
|
|
16
18
|
tslib_1.__exportStar(require("./GetProfileObjectTypeCommand"), exports);
|
|
17
19
|
tslib_1.__exportStar(require("./GetProfileObjectTypeTemplateCommand"), exports);
|
|
18
20
|
tslib_1.__exportStar(require("./ListAccountIntegrationsCommand"), exports);
|
|
19
21
|
tslib_1.__exportStar(require("./ListDomainsCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./ListIdentityResolutionJobsCommand"), exports);
|
|
20
23
|
tslib_1.__exportStar(require("./ListIntegrationsCommand"), exports);
|
|
21
24
|
tslib_1.__exportStar(require("./ListProfileObjectTypeTemplatesCommand"), exports);
|
|
22
25
|
tslib_1.__exportStar(require("./ListProfileObjectTypesCommand"), exports);
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UpdateProfileResponse = exports.UpdateProfileRequest = exports.UpdateAddress = exports.UpdateDomainResponse = exports.UpdateDomainRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = void 0;
|
|
6
|
-
var AccessDeniedException;
|
|
7
|
-
(function (AccessDeniedException) {
|
|
8
|
-
AccessDeniedException.filterSensitiveLog = (obj) => ({
|
|
9
|
-
...obj,
|
|
10
|
-
});
|
|
11
|
-
})(AccessDeniedException = exports.AccessDeniedException || (exports.AccessDeniedException = {}));
|
|
3
|
+
exports.GetIntegrationResponse = exports.GetIntegrationRequest = exports.GetIdentityResolutionJobResponse = exports.IdentityResolutionJobStatus = exports.JobStats = exports.ExportingLocation = exports.S3ExportingLocation = exports.GetIdentityResolutionJobRequest = exports.GetDomainResponse = exports.DomainStats = exports.GetDomainRequest = exports.GetAutoMergingPreviewResponse = exports.GetAutoMergingPreviewRequest = exports.DeleteProfileObjectTypeResponse = exports.DeleteProfileObjectTypeRequest = exports.DeleteProfileObjectResponse = exports.DeleteProfileObjectRequest = exports.DeleteProfileKeyResponse = exports.DeleteProfileKeyRequest = exports.DeleteProfileResponse = exports.DeleteProfileRequest = exports.DeleteIntegrationResponse = exports.DeleteIntegrationRequest = exports.DeleteDomainResponse = exports.DeleteDomainRequest = exports.CreateProfileResponse = exports.CreateProfileRequest = exports.PartyType = exports.Gender = exports.CreateDomainResponse = exports.MatchingResponse = exports.CreateDomainRequest = exports.MatchingRequest = exports.JobSchedule = exports.JobScheduleDayOfTheWeek = exports.ExportingConfig = exports.S3ExportingConfig = exports.ConnectorOperator = exports.ZendeskConnectorOperator = exports.ServiceNowConnectorOperator = exports.SalesforceConnectorOperator = exports.S3ConnectorOperator = exports.MarketoConnectorOperator = exports.AutoMerging = exports.Consolidation = exports.ConflictResolution = exports.ConflictResolvingModel = exports.Address = exports.AddProfileKeyResponse = exports.AddProfileKeyRequest = void 0;
|
|
4
|
+
exports.DataPullMode = exports.Task = exports.TaskType = exports.OperatorPropertiesKeys = exports.SourceFlowConfig = exports.SourceConnectorProperties = exports.ZendeskSourceProperties = exports.ServiceNowSourceProperties = exports.SalesforceSourceProperties = exports.S3SourceProperties = exports.MarketoSourceProperties = exports.IncrementalPullConfig = exports.SourceConnectorType = exports.MergeProfilesResponse = exports.MergeProfilesRequest = exports.FieldSourceProfileIds = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListProfileObjectTypeTemplatesResponse = exports.ListProfileObjectTypeTemplateItem = exports.ListProfileObjectTypeTemplatesRequest = exports.ListProfileObjectTypesResponse = exports.ListProfileObjectTypeItem = exports.ListProfileObjectTypesRequest = exports.ListProfileObjectsResponse = exports.ListProfileObjectsItem = exports.ListProfileObjectsRequest = exports.ObjectFilter = exports.ListIntegrationsResponse = exports.ListIntegrationsRequest = exports.ListIdentityResolutionJobsResponse = exports.IdentityResolutionJob = exports.ListIdentityResolutionJobsRequest = exports.ListDomainsResponse = exports.ListDomainItem = exports.ListDomainsRequest = exports.ListAccountIntegrationsResponse = exports.ListIntegrationItem = exports.ListAccountIntegrationsRequest = exports.GetProfileObjectTypeTemplateResponse = exports.GetProfileObjectTypeTemplateRequest = exports.GetProfileObjectTypeResponse = exports.ObjectTypeKey = exports.StandardIdentifier = exports.ObjectTypeField = exports.FieldContentType = exports.GetProfileObjectTypeRequest = exports.GetMatchesResponse = exports.MatchItem = exports.GetMatchesRequest = void 0;
|
|
5
|
+
exports.UpdateProfileResponse = exports.UpdateProfileRequest = exports.UpdateAddress = exports.UpdateDomainResponse = exports.UpdateDomainRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.SearchProfilesResponse = exports.Profile = exports.SearchProfilesRequest = exports.PutProfileObjectTypeResponse = exports.PutProfileObjectTypeRequest = exports.PutProfileObjectResponse = exports.PutProfileObjectRequest = exports.PutIntegrationResponse = exports.PutIntegrationRequest = exports.FlowDefinition = exports.TriggerConfig = exports.TriggerType = exports.TriggerProperties = exports.ScheduledTriggerProperties = void 0;
|
|
12
6
|
var AddProfileKeyRequest;
|
|
13
7
|
(function (AddProfileKeyRequest) {
|
|
14
8
|
AddProfileKeyRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -21,36 +15,35 @@ var AddProfileKeyResponse;
|
|
|
21
15
|
...obj,
|
|
22
16
|
});
|
|
23
17
|
})(AddProfileKeyResponse = exports.AddProfileKeyResponse || (exports.AddProfileKeyResponse = {}));
|
|
24
|
-
var
|
|
25
|
-
(function (
|
|
26
|
-
|
|
27
|
-
...obj,
|
|
28
|
-
});
|
|
29
|
-
})(BadRequestException = exports.BadRequestException || (exports.BadRequestException = {}));
|
|
30
|
-
var InternalServerException;
|
|
31
|
-
(function (InternalServerException) {
|
|
32
|
-
InternalServerException.filterSensitiveLog = (obj) => ({
|
|
18
|
+
var Address;
|
|
19
|
+
(function (Address) {
|
|
20
|
+
Address.filterSensitiveLog = (obj) => ({
|
|
33
21
|
...obj,
|
|
34
22
|
});
|
|
35
|
-
})(
|
|
36
|
-
var
|
|
37
|
-
(function (
|
|
38
|
-
|
|
23
|
+
})(Address = exports.Address || (exports.Address = {}));
|
|
24
|
+
var ConflictResolvingModel;
|
|
25
|
+
(function (ConflictResolvingModel) {
|
|
26
|
+
ConflictResolvingModel["RECENCY"] = "RECENCY";
|
|
27
|
+
ConflictResolvingModel["SOURCE"] = "SOURCE";
|
|
28
|
+
})(ConflictResolvingModel = exports.ConflictResolvingModel || (exports.ConflictResolvingModel = {}));
|
|
29
|
+
var ConflictResolution;
|
|
30
|
+
(function (ConflictResolution) {
|
|
31
|
+
ConflictResolution.filterSensitiveLog = (obj) => ({
|
|
39
32
|
...obj,
|
|
40
33
|
});
|
|
41
|
-
})(
|
|
42
|
-
var
|
|
43
|
-
(function (
|
|
44
|
-
|
|
34
|
+
})(ConflictResolution = exports.ConflictResolution || (exports.ConflictResolution = {}));
|
|
35
|
+
var Consolidation;
|
|
36
|
+
(function (Consolidation) {
|
|
37
|
+
Consolidation.filterSensitiveLog = (obj) => ({
|
|
45
38
|
...obj,
|
|
46
39
|
});
|
|
47
|
-
})(
|
|
48
|
-
var
|
|
49
|
-
(function (
|
|
50
|
-
|
|
40
|
+
})(Consolidation = exports.Consolidation || (exports.Consolidation = {}));
|
|
41
|
+
var AutoMerging;
|
|
42
|
+
(function (AutoMerging) {
|
|
43
|
+
AutoMerging.filterSensitiveLog = (obj) => ({
|
|
51
44
|
...obj,
|
|
52
45
|
});
|
|
53
|
-
})(
|
|
46
|
+
})(AutoMerging = exports.AutoMerging || (exports.AutoMerging = {}));
|
|
54
47
|
var MarketoConnectorOperator;
|
|
55
48
|
(function (MarketoConnectorOperator) {
|
|
56
49
|
MarketoConnectorOperator["ADDITION"] = "ADDITION";
|
|
@@ -164,6 +157,34 @@ var ConnectorOperator;
|
|
|
164
157
|
...obj,
|
|
165
158
|
});
|
|
166
159
|
})(ConnectorOperator = exports.ConnectorOperator || (exports.ConnectorOperator = {}));
|
|
160
|
+
var S3ExportingConfig;
|
|
161
|
+
(function (S3ExportingConfig) {
|
|
162
|
+
S3ExportingConfig.filterSensitiveLog = (obj) => ({
|
|
163
|
+
...obj,
|
|
164
|
+
});
|
|
165
|
+
})(S3ExportingConfig = exports.S3ExportingConfig || (exports.S3ExportingConfig = {}));
|
|
166
|
+
var ExportingConfig;
|
|
167
|
+
(function (ExportingConfig) {
|
|
168
|
+
ExportingConfig.filterSensitiveLog = (obj) => ({
|
|
169
|
+
...obj,
|
|
170
|
+
});
|
|
171
|
+
})(ExportingConfig = exports.ExportingConfig || (exports.ExportingConfig = {}));
|
|
172
|
+
var JobScheduleDayOfTheWeek;
|
|
173
|
+
(function (JobScheduleDayOfTheWeek) {
|
|
174
|
+
JobScheduleDayOfTheWeek["FRIDAY"] = "FRIDAY";
|
|
175
|
+
JobScheduleDayOfTheWeek["MONDAY"] = "MONDAY";
|
|
176
|
+
JobScheduleDayOfTheWeek["SATURDAY"] = "SATURDAY";
|
|
177
|
+
JobScheduleDayOfTheWeek["SUNDAY"] = "SUNDAY";
|
|
178
|
+
JobScheduleDayOfTheWeek["THURSDAY"] = "THURSDAY";
|
|
179
|
+
JobScheduleDayOfTheWeek["TUESDAY"] = "TUESDAY";
|
|
180
|
+
JobScheduleDayOfTheWeek["WEDNESDAY"] = "WEDNESDAY";
|
|
181
|
+
})(JobScheduleDayOfTheWeek = exports.JobScheduleDayOfTheWeek || (exports.JobScheduleDayOfTheWeek = {}));
|
|
182
|
+
var JobSchedule;
|
|
183
|
+
(function (JobSchedule) {
|
|
184
|
+
JobSchedule.filterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
});
|
|
187
|
+
})(JobSchedule = exports.JobSchedule || (exports.JobSchedule = {}));
|
|
167
188
|
var MatchingRequest;
|
|
168
189
|
(function (MatchingRequest) {
|
|
169
190
|
MatchingRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -284,6 +305,18 @@ var DeleteProfileObjectTypeResponse;
|
|
|
284
305
|
...obj,
|
|
285
306
|
});
|
|
286
307
|
})(DeleteProfileObjectTypeResponse = exports.DeleteProfileObjectTypeResponse || (exports.DeleteProfileObjectTypeResponse = {}));
|
|
308
|
+
var GetAutoMergingPreviewRequest;
|
|
309
|
+
(function (GetAutoMergingPreviewRequest) {
|
|
310
|
+
GetAutoMergingPreviewRequest.filterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
});
|
|
313
|
+
})(GetAutoMergingPreviewRequest = exports.GetAutoMergingPreviewRequest || (exports.GetAutoMergingPreviewRequest = {}));
|
|
314
|
+
var GetAutoMergingPreviewResponse;
|
|
315
|
+
(function (GetAutoMergingPreviewResponse) {
|
|
316
|
+
GetAutoMergingPreviewResponse.filterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
})(GetAutoMergingPreviewResponse = exports.GetAutoMergingPreviewResponse || (exports.GetAutoMergingPreviewResponse = {}));
|
|
287
320
|
var GetDomainRequest;
|
|
288
321
|
(function (GetDomainRequest) {
|
|
289
322
|
GetDomainRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -302,6 +335,46 @@ var GetDomainResponse;
|
|
|
302
335
|
...obj,
|
|
303
336
|
});
|
|
304
337
|
})(GetDomainResponse = exports.GetDomainResponse || (exports.GetDomainResponse = {}));
|
|
338
|
+
var GetIdentityResolutionJobRequest;
|
|
339
|
+
(function (GetIdentityResolutionJobRequest) {
|
|
340
|
+
GetIdentityResolutionJobRequest.filterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
})(GetIdentityResolutionJobRequest = exports.GetIdentityResolutionJobRequest || (exports.GetIdentityResolutionJobRequest = {}));
|
|
344
|
+
var S3ExportingLocation;
|
|
345
|
+
(function (S3ExportingLocation) {
|
|
346
|
+
S3ExportingLocation.filterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
})(S3ExportingLocation = exports.S3ExportingLocation || (exports.S3ExportingLocation = {}));
|
|
350
|
+
var ExportingLocation;
|
|
351
|
+
(function (ExportingLocation) {
|
|
352
|
+
ExportingLocation.filterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
})(ExportingLocation = exports.ExportingLocation || (exports.ExportingLocation = {}));
|
|
356
|
+
var JobStats;
|
|
357
|
+
(function (JobStats) {
|
|
358
|
+
JobStats.filterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
})(JobStats = exports.JobStats || (exports.JobStats = {}));
|
|
362
|
+
var IdentityResolutionJobStatus;
|
|
363
|
+
(function (IdentityResolutionJobStatus) {
|
|
364
|
+
IdentityResolutionJobStatus["COMPLETED"] = "COMPLETED";
|
|
365
|
+
IdentityResolutionJobStatus["FAILED"] = "FAILED";
|
|
366
|
+
IdentityResolutionJobStatus["FIND_MATCHING"] = "FIND_MATCHING";
|
|
367
|
+
IdentityResolutionJobStatus["MERGING"] = "MERGING";
|
|
368
|
+
IdentityResolutionJobStatus["PARTIAL_SUCCESS"] = "PARTIAL_SUCCESS";
|
|
369
|
+
IdentityResolutionJobStatus["PENDING"] = "PENDING";
|
|
370
|
+
IdentityResolutionJobStatus["PREPROCESSING"] = "PREPROCESSING";
|
|
371
|
+
})(IdentityResolutionJobStatus = exports.IdentityResolutionJobStatus || (exports.IdentityResolutionJobStatus = {}));
|
|
372
|
+
var GetIdentityResolutionJobResponse;
|
|
373
|
+
(function (GetIdentityResolutionJobResponse) {
|
|
374
|
+
GetIdentityResolutionJobResponse.filterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
})(GetIdentityResolutionJobResponse = exports.GetIdentityResolutionJobResponse || (exports.GetIdentityResolutionJobResponse = {}));
|
|
305
378
|
var GetIntegrationRequest;
|
|
306
379
|
(function (GetIntegrationRequest) {
|
|
307
380
|
GetIntegrationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -358,6 +431,7 @@ var StandardIdentifier;
|
|
|
358
431
|
StandardIdentifier["CASE"] = "CASE";
|
|
359
432
|
StandardIdentifier["LOOKUP_ONLY"] = "LOOKUP_ONLY";
|
|
360
433
|
StandardIdentifier["NEW_ONLY"] = "NEW_ONLY";
|
|
434
|
+
StandardIdentifier["ORDER"] = "ORDER";
|
|
361
435
|
StandardIdentifier["PROFILE"] = "PROFILE";
|
|
362
436
|
StandardIdentifier["SECONDARY"] = "SECONDARY";
|
|
363
437
|
StandardIdentifier["UNIQUE"] = "UNIQUE";
|
|
@@ -422,6 +496,24 @@ var ListDomainsResponse;
|
|
|
422
496
|
...obj,
|
|
423
497
|
});
|
|
424
498
|
})(ListDomainsResponse = exports.ListDomainsResponse || (exports.ListDomainsResponse = {}));
|
|
499
|
+
var ListIdentityResolutionJobsRequest;
|
|
500
|
+
(function (ListIdentityResolutionJobsRequest) {
|
|
501
|
+
ListIdentityResolutionJobsRequest.filterSensitiveLog = (obj) => ({
|
|
502
|
+
...obj,
|
|
503
|
+
});
|
|
504
|
+
})(ListIdentityResolutionJobsRequest = exports.ListIdentityResolutionJobsRequest || (exports.ListIdentityResolutionJobsRequest = {}));
|
|
505
|
+
var IdentityResolutionJob;
|
|
506
|
+
(function (IdentityResolutionJob) {
|
|
507
|
+
IdentityResolutionJob.filterSensitiveLog = (obj) => ({
|
|
508
|
+
...obj,
|
|
509
|
+
});
|
|
510
|
+
})(IdentityResolutionJob = exports.IdentityResolutionJob || (exports.IdentityResolutionJob = {}));
|
|
511
|
+
var ListIdentityResolutionJobsResponse;
|
|
512
|
+
(function (ListIdentityResolutionJobsResponse) {
|
|
513
|
+
ListIdentityResolutionJobsResponse.filterSensitiveLog = (obj) => ({
|
|
514
|
+
...obj,
|
|
515
|
+
});
|
|
516
|
+
})(ListIdentityResolutionJobsResponse = exports.ListIdentityResolutionJobsResponse || (exports.ListIdentityResolutionJobsResponse = {}));
|
|
425
517
|
var ListIntegrationsRequest;
|
|
426
518
|
(function (ListIntegrationsRequest) {
|
|
427
519
|
ListIntegrationsRequest.filterSensitiveLog = (obj) => ({
|