@aws-sdk/client-customer-profiles 3.52.0 → 3.54.1
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 +28 -0
- package/dist-cjs/CustomerProfiles.js +75 -0
- package/dist-cjs/commands/CreateIntegrationWorkflowCommand.js +36 -0
- package/dist-cjs/commands/DeleteWorkflowCommand.js +36 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +36 -0
- package/dist-cjs/commands/GetWorkflowStepsCommand.js +36 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CustomerProfilesServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +349 -144
- package/dist-cjs/protocols/Aws_restJson1.js +997 -1353
- package/dist-es/CustomerProfiles.js +75 -0
- package/dist-es/commands/CreateIntegrationWorkflowCommand.js +39 -0
- package/dist-es/commands/DeleteWorkflowCommand.js +39 -0
- package/dist-es/commands/GetWorkflowCommand.js +39 -0
- package/dist-es/commands/GetWorkflowStepsCommand.js +39 -0
- package/dist-es/commands/ListWorkflowsCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/CustomerProfilesServiceException.js +12 -0
- package/dist-es/models/models_0.js +276 -116
- package/dist-es/protocols/Aws_restJson1.js +1569 -1539
- package/dist-types/CustomerProfiles.d.ts +37 -3
- package/dist-types/CustomerProfilesClient.d.ts +9 -4
- package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +37 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +35 -0
- package/dist-types/commands/GetMatchesCommand.d.ts +0 -3
- package/dist-types/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/commands/GetWorkflowStepsCommand.d.ts +35 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CustomerProfilesServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +986 -477
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CustomerProfiles.d.ts +25 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +9 -4
- package/dist-types/ts3.4/commands/CreateIntegrationWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWorkflowStepsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CustomerProfilesServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +549 -254
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { AddProfileKeyCommand, } from "./commands/AddProfileKeyCommand";
|
|
3
3
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
4
|
+
import { CreateIntegrationWorkflowCommand, } from "./commands/CreateIntegrationWorkflowCommand";
|
|
4
5
|
import { CreateProfileCommand, } from "./commands/CreateProfileCommand";
|
|
5
6
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
6
7
|
import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
|
|
@@ -8,6 +9,7 @@ import { DeleteProfileCommand, } from "./commands/DeleteProfileCommand";
|
|
|
8
9
|
import { DeleteProfileKeyCommand, } from "./commands/DeleteProfileKeyCommand";
|
|
9
10
|
import { DeleteProfileObjectCommand, } from "./commands/DeleteProfileObjectCommand";
|
|
10
11
|
import { DeleteProfileObjectTypeCommand, } from "./commands/DeleteProfileObjectTypeCommand";
|
|
12
|
+
import { DeleteWorkflowCommand, } from "./commands/DeleteWorkflowCommand";
|
|
11
13
|
import { GetAutoMergingPreviewCommand, } from "./commands/GetAutoMergingPreviewCommand";
|
|
12
14
|
import { GetDomainCommand } from "./commands/GetDomainCommand";
|
|
13
15
|
import { GetIdentityResolutionJobCommand, } from "./commands/GetIdentityResolutionJobCommand";
|
|
@@ -15,6 +17,8 @@ import { GetIntegrationCommand, } from "./commands/GetIntegrationCommand";
|
|
|
15
17
|
import { GetMatchesCommand } from "./commands/GetMatchesCommand";
|
|
16
18
|
import { GetProfileObjectTypeCommand, } from "./commands/GetProfileObjectTypeCommand";
|
|
17
19
|
import { GetProfileObjectTypeTemplateCommand, } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
20
|
+
import { GetWorkflowCommand } from "./commands/GetWorkflowCommand";
|
|
21
|
+
import { GetWorkflowStepsCommand, } from "./commands/GetWorkflowStepsCommand";
|
|
18
22
|
import { ListAccountIntegrationsCommand, } from "./commands/ListAccountIntegrationsCommand";
|
|
19
23
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
20
24
|
import { ListIdentityResolutionJobsCommand, } from "./commands/ListIdentityResolutionJobsCommand";
|
|
@@ -23,6 +27,7 @@ import { ListProfileObjectsCommand, } from "./commands/ListProfileObjectsCommand
|
|
|
23
27
|
import { ListProfileObjectTypesCommand, } from "./commands/ListProfileObjectTypesCommand";
|
|
24
28
|
import { ListProfileObjectTypeTemplatesCommand, } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
25
29
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
30
|
+
import { ListWorkflowsCommand, } from "./commands/ListWorkflowsCommand";
|
|
26
31
|
import { MergeProfilesCommand, } from "./commands/MergeProfilesCommand";
|
|
27
32
|
import { PutIntegrationCommand, } from "./commands/PutIntegrationCommand";
|
|
28
33
|
import { PutProfileObjectCommand, } from "./commands/PutProfileObjectCommand";
|
|
@@ -66,6 +71,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
66
71
|
return this.send(command, optionsOrCb);
|
|
67
72
|
}
|
|
68
73
|
};
|
|
74
|
+
CustomerProfiles.prototype.createIntegrationWorkflow = function (args, optionsOrCb, cb) {
|
|
75
|
+
var command = new CreateIntegrationWorkflowCommand(args);
|
|
76
|
+
if (typeof optionsOrCb === "function") {
|
|
77
|
+
this.send(command, optionsOrCb);
|
|
78
|
+
}
|
|
79
|
+
else if (typeof cb === "function") {
|
|
80
|
+
if (typeof optionsOrCb !== "object")
|
|
81
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
82
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
return this.send(command, optionsOrCb);
|
|
86
|
+
}
|
|
87
|
+
};
|
|
69
88
|
CustomerProfiles.prototype.createProfile = function (args, optionsOrCb, cb) {
|
|
70
89
|
var command = new CreateProfileCommand(args);
|
|
71
90
|
if (typeof optionsOrCb === "function") {
|
|
@@ -164,6 +183,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
164
183
|
return this.send(command, optionsOrCb);
|
|
165
184
|
}
|
|
166
185
|
};
|
|
186
|
+
CustomerProfiles.prototype.deleteWorkflow = function (args, optionsOrCb, cb) {
|
|
187
|
+
var command = new DeleteWorkflowCommand(args);
|
|
188
|
+
if (typeof optionsOrCb === "function") {
|
|
189
|
+
this.send(command, optionsOrCb);
|
|
190
|
+
}
|
|
191
|
+
else if (typeof cb === "function") {
|
|
192
|
+
if (typeof optionsOrCb !== "object")
|
|
193
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
194
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
195
|
+
}
|
|
196
|
+
else {
|
|
197
|
+
return this.send(command, optionsOrCb);
|
|
198
|
+
}
|
|
199
|
+
};
|
|
167
200
|
CustomerProfiles.prototype.getAutoMergingPreview = function (args, optionsOrCb, cb) {
|
|
168
201
|
var command = new GetAutoMergingPreviewCommand(args);
|
|
169
202
|
if (typeof optionsOrCb === "function") {
|
|
@@ -262,6 +295,34 @@ var CustomerProfiles = (function (_super) {
|
|
|
262
295
|
return this.send(command, optionsOrCb);
|
|
263
296
|
}
|
|
264
297
|
};
|
|
298
|
+
CustomerProfiles.prototype.getWorkflow = function (args, optionsOrCb, cb) {
|
|
299
|
+
var command = new GetWorkflowCommand(args);
|
|
300
|
+
if (typeof optionsOrCb === "function") {
|
|
301
|
+
this.send(command, optionsOrCb);
|
|
302
|
+
}
|
|
303
|
+
else if (typeof cb === "function") {
|
|
304
|
+
if (typeof optionsOrCb !== "object")
|
|
305
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
306
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
307
|
+
}
|
|
308
|
+
else {
|
|
309
|
+
return this.send(command, optionsOrCb);
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
CustomerProfiles.prototype.getWorkflowSteps = function (args, optionsOrCb, cb) {
|
|
313
|
+
var command = new GetWorkflowStepsCommand(args);
|
|
314
|
+
if (typeof optionsOrCb === "function") {
|
|
315
|
+
this.send(command, optionsOrCb);
|
|
316
|
+
}
|
|
317
|
+
else if (typeof cb === "function") {
|
|
318
|
+
if (typeof optionsOrCb !== "object")
|
|
319
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
320
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
321
|
+
}
|
|
322
|
+
else {
|
|
323
|
+
return this.send(command, optionsOrCb);
|
|
324
|
+
}
|
|
325
|
+
};
|
|
265
326
|
CustomerProfiles.prototype.listAccountIntegrations = function (args, optionsOrCb, cb) {
|
|
266
327
|
var command = new ListAccountIntegrationsCommand(args);
|
|
267
328
|
if (typeof optionsOrCb === "function") {
|
|
@@ -374,6 +435,20 @@ var CustomerProfiles = (function (_super) {
|
|
|
374
435
|
return this.send(command, optionsOrCb);
|
|
375
436
|
}
|
|
376
437
|
};
|
|
438
|
+
CustomerProfiles.prototype.listWorkflows = function (args, optionsOrCb, cb) {
|
|
439
|
+
var command = new ListWorkflowsCommand(args);
|
|
440
|
+
if (typeof optionsOrCb === "function") {
|
|
441
|
+
this.send(command, optionsOrCb);
|
|
442
|
+
}
|
|
443
|
+
else if (typeof cb === "function") {
|
|
444
|
+
if (typeof optionsOrCb !== "object")
|
|
445
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
446
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
447
|
+
}
|
|
448
|
+
else {
|
|
449
|
+
return this.send(command, optionsOrCb);
|
|
450
|
+
}
|
|
451
|
+
};
|
|
377
452
|
CustomerProfiles.prototype.mergeProfiles = function (args, optionsOrCb, cb) {
|
|
378
453
|
var command = new MergeProfilesCommand(args);
|
|
379
454
|
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 { CreateIntegrationWorkflowRequest, CreateIntegrationWorkflowResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1CreateIntegrationWorkflowCommand, serializeAws_restJson1CreateIntegrationWorkflowCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var CreateIntegrationWorkflowCommand = (function (_super) {
|
|
7
|
+
__extends(CreateIntegrationWorkflowCommand, _super);
|
|
8
|
+
function CreateIntegrationWorkflowCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreateIntegrationWorkflowCommand.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 = "CreateIntegrationWorkflowCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreateIntegrationWorkflowRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateIntegrationWorkflowResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreateIntegrationWorkflowCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1CreateIntegrationWorkflowCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreateIntegrationWorkflowCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1CreateIntegrationWorkflowCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreateIntegrationWorkflowCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateIntegrationWorkflowCommand };
|
|
@@ -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 { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1DeleteWorkflowCommand, serializeAws_restJson1DeleteWorkflowCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var DeleteWorkflowCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteWorkflowCommand, _super);
|
|
8
|
+
function DeleteWorkflowCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DeleteWorkflowCommand.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 = "DeleteWorkflowCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DeleteWorkflowRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteWorkflowResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteWorkflowCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1DeleteWorkflowCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DeleteWorkflowCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1DeleteWorkflowCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DeleteWorkflowCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteWorkflowCommand };
|
|
@@ -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 { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1GetWorkflowCommand, serializeAws_restJson1GetWorkflowCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var GetWorkflowCommand = (function (_super) {
|
|
7
|
+
__extends(GetWorkflowCommand, _super);
|
|
8
|
+
function GetWorkflowCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
GetWorkflowCommand.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 = "GetWorkflowCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: GetWorkflowRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetWorkflowResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetWorkflowCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1GetWorkflowCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
GetWorkflowCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1GetWorkflowCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return GetWorkflowCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetWorkflowCommand };
|
|
@@ -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 { GetWorkflowStepsRequest, GetWorkflowStepsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1GetWorkflowStepsCommand, serializeAws_restJson1GetWorkflowStepsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var GetWorkflowStepsCommand = (function (_super) {
|
|
7
|
+
__extends(GetWorkflowStepsCommand, _super);
|
|
8
|
+
function GetWorkflowStepsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
GetWorkflowStepsCommand.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 = "GetWorkflowStepsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: GetWorkflowStepsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetWorkflowStepsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetWorkflowStepsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1GetWorkflowStepsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
GetWorkflowStepsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1GetWorkflowStepsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return GetWorkflowStepsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetWorkflowStepsCommand };
|
|
@@ -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 { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListWorkflowsCommand, serializeAws_restJson1ListWorkflowsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListWorkflowsCommand = (function (_super) {
|
|
7
|
+
__extends(ListWorkflowsCommand, _super);
|
|
8
|
+
function ListWorkflowsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListWorkflowsCommand.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 = "ListWorkflowsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListWorkflowsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListWorkflowsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListWorkflowsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListWorkflowsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListWorkflowsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListWorkflowsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListWorkflowsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListWorkflowsCommand };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AddProfileKeyCommand";
|
|
2
2
|
export * from "./CreateDomainCommand";
|
|
3
|
+
export * from "./CreateIntegrationWorkflowCommand";
|
|
3
4
|
export * from "./CreateProfileCommand";
|
|
4
5
|
export * from "./DeleteDomainCommand";
|
|
5
6
|
export * from "./DeleteIntegrationCommand";
|
|
@@ -7,6 +8,7 @@ export * from "./DeleteProfileCommand";
|
|
|
7
8
|
export * from "./DeleteProfileKeyCommand";
|
|
8
9
|
export * from "./DeleteProfileObjectCommand";
|
|
9
10
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
11
|
+
export * from "./DeleteWorkflowCommand";
|
|
10
12
|
export * from "./GetAutoMergingPreviewCommand";
|
|
11
13
|
export * from "./GetDomainCommand";
|
|
12
14
|
export * from "./GetIdentityResolutionJobCommand";
|
|
@@ -14,6 +16,8 @@ export * from "./GetIntegrationCommand";
|
|
|
14
16
|
export * from "./GetMatchesCommand";
|
|
15
17
|
export * from "./GetProfileObjectTypeCommand";
|
|
16
18
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
19
|
+
export * from "./GetWorkflowCommand";
|
|
20
|
+
export * from "./GetWorkflowStepsCommand";
|
|
17
21
|
export * from "./ListAccountIntegrationsCommand";
|
|
18
22
|
export * from "./ListDomainsCommand";
|
|
19
23
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
@@ -22,6 +26,7 @@ export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
|
22
26
|
export * from "./ListProfileObjectTypesCommand";
|
|
23
27
|
export * from "./ListProfileObjectsCommand";
|
|
24
28
|
export * from "./ListTagsForResourceCommand";
|
|
29
|
+
export * from "./ListWorkflowsCommand";
|
|
25
30
|
export * from "./MergeProfilesCommand";
|
|
26
31
|
export * from "./PutIntegrationCommand";
|
|
27
32
|
export * from "./PutProfileObjectCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var CustomerProfilesServiceException = (function (_super) {
|
|
4
|
+
__extends(CustomerProfilesServiceException, _super);
|
|
5
|
+
function CustomerProfilesServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CustomerProfilesServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CustomerProfilesServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CustomerProfilesServiceException };
|