@aws-sdk/client-customer-profiles 3.183.0 → 3.185.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/CustomerProfiles.js +161 -154
  4. package/dist-es/CustomerProfilesClient.js +28 -22
  5. package/dist-es/commands/AddProfileKeyCommand.js +28 -21
  6. package/dist-es/commands/CreateDomainCommand.js +28 -21
  7. package/dist-es/commands/CreateIntegrationWorkflowCommand.js +28 -21
  8. package/dist-es/commands/CreateProfileCommand.js +28 -21
  9. package/dist-es/commands/DeleteDomainCommand.js +28 -21
  10. package/dist-es/commands/DeleteIntegrationCommand.js +28 -21
  11. package/dist-es/commands/DeleteProfileCommand.js +28 -21
  12. package/dist-es/commands/DeleteProfileKeyCommand.js +28 -21
  13. package/dist-es/commands/DeleteProfileObjectCommand.js +28 -21
  14. package/dist-es/commands/DeleteProfileObjectTypeCommand.js +28 -21
  15. package/dist-es/commands/DeleteWorkflowCommand.js +28 -21
  16. package/dist-es/commands/GetAutoMergingPreviewCommand.js +28 -21
  17. package/dist-es/commands/GetDomainCommand.js +28 -21
  18. package/dist-es/commands/GetIdentityResolutionJobCommand.js +28 -21
  19. package/dist-es/commands/GetIntegrationCommand.js +28 -21
  20. package/dist-es/commands/GetMatchesCommand.js +28 -21
  21. package/dist-es/commands/GetProfileObjectTypeCommand.js +28 -21
  22. package/dist-es/commands/GetProfileObjectTypeTemplateCommand.js +28 -21
  23. package/dist-es/commands/GetWorkflowCommand.js +28 -21
  24. package/dist-es/commands/GetWorkflowStepsCommand.js +28 -21
  25. package/dist-es/commands/ListAccountIntegrationsCommand.js +28 -21
  26. package/dist-es/commands/ListDomainsCommand.js +28 -21
  27. package/dist-es/commands/ListIdentityResolutionJobsCommand.js +28 -21
  28. package/dist-es/commands/ListIntegrationsCommand.js +28 -21
  29. package/dist-es/commands/ListProfileObjectTypeTemplatesCommand.js +28 -21
  30. package/dist-es/commands/ListProfileObjectTypesCommand.js +28 -21
  31. package/dist-es/commands/ListProfileObjectsCommand.js +28 -21
  32. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  33. package/dist-es/commands/ListWorkflowsCommand.js +28 -21
  34. package/dist-es/commands/MergeProfilesCommand.js +28 -21
  35. package/dist-es/commands/PutIntegrationCommand.js +28 -21
  36. package/dist-es/commands/PutProfileObjectCommand.js +28 -21
  37. package/dist-es/commands/PutProfileObjectTypeCommand.js +28 -21
  38. package/dist-es/commands/SearchProfilesCommand.js +28 -21
  39. package/dist-es/commands/TagResourceCommand.js +28 -21
  40. package/dist-es/commands/UntagResourceCommand.js +28 -21
  41. package/dist-es/commands/UpdateDomainCommand.js +28 -21
  42. package/dist-es/commands/UpdateProfileCommand.js +28 -21
  43. package/dist-es/endpoints.js +8 -8
  44. package/dist-es/models/CustomerProfilesServiceException.js +10 -5
  45. package/dist-es/models/models_0.js +187 -438
  46. package/dist-es/protocols/Aws_restJson1.js +4376 -3396
  47. package/dist-es/runtimeConfig.browser.js +12 -26
  48. package/dist-es/runtimeConfig.js +12 -30
  49. package/dist-es/runtimeConfig.native.js +5 -8
  50. package/dist-es/runtimeConfig.shared.js +11 -8
  51. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetWorkflowStepsRequestFilterSensitiveLog, GetWorkflowStepsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetWorkflowStepsCommand, serializeAws_restJson1GetWorkflowStepsCommand, } from "../protocols/Aws_restJson1";
5
- export class GetWorkflowStepsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
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;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetWorkflowStepsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "GetWorkflowStepsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
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,
20
23
  inputFilterSensitiveLog: GetWorkflowStepsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetWorkflowStepsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
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) {
27
32
  return serializeAws_restJson1GetWorkflowStepsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetWorkflowStepsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetWorkflowStepsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetWorkflowStepsCommand;
38
+ }($Command));
39
+ export { GetWorkflowStepsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListAccountIntegrationsRequestFilterSensitiveLog, ListAccountIntegrationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListAccountIntegrationsCommand, serializeAws_restJson1ListAccountIntegrationsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListAccountIntegrationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListAccountIntegrationsCommand = (function (_super) {
7
+ __extends(ListAccountIntegrationsCommand, _super);
8
+ function ListAccountIntegrationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListAccountIntegrationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListAccountIntegrationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListAccountIntegrationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListAccountIntegrationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListAccountIntegrationsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListAccountIntegrationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListAccountIntegrationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListAccountIntegrationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListAccountIntegrationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListAccountIntegrationsCommand;
38
+ }($Command));
39
+ export { ListAccountIntegrationsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListDomainsRequestFilterSensitiveLog, ListDomainsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDomainsCommand, serializeAws_restJson1ListDomainsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDomainsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDomainsCommand = (function (_super) {
7
+ __extends(ListDomainsCommand, _super);
8
+ function ListDomainsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDomainsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListDomainsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListDomainsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDomainsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDomainsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListDomainsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDomainsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDomainsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDomainsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDomainsCommand;
38
+ }($Command));
39
+ export { ListDomainsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListIdentityResolutionJobsRequestFilterSensitiveLog, ListIdentityResolutionJobsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListIdentityResolutionJobsCommand, serializeAws_restJson1ListIdentityResolutionJobsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListIdentityResolutionJobsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
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;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListIdentityResolutionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListIdentityResolutionJobsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
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,
20
23
  inputFilterSensitiveLog: ListIdentityResolutionJobsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListIdentityResolutionJobsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
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) {
27
32
  return serializeAws_restJson1ListIdentityResolutionJobsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListIdentityResolutionJobsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListIdentityResolutionJobsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListIdentityResolutionJobsCommand;
38
+ }($Command));
39
+ export { ListIdentityResolutionJobsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListIntegrationsRequestFilterSensitiveLog, ListIntegrationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListIntegrationsCommand, serializeAws_restJson1ListIntegrationsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListIntegrationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListIntegrationsCommand = (function (_super) {
7
+ __extends(ListIntegrationsCommand, _super);
8
+ function ListIntegrationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListIntegrationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListIntegrationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListIntegrationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListIntegrationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListIntegrationsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListIntegrationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListIntegrationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListIntegrationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListIntegrationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListIntegrationsCommand;
38
+ }($Command));
39
+ export { ListIntegrationsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListProfileObjectTypeTemplatesRequestFilterSensitiveLog, ListProfileObjectTypeTemplatesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListProfileObjectTypeTemplatesCommand, serializeAws_restJson1ListProfileObjectTypeTemplatesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListProfileObjectTypeTemplatesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListProfileObjectTypeTemplatesCommand = (function (_super) {
7
+ __extends(ListProfileObjectTypeTemplatesCommand, _super);
8
+ function ListProfileObjectTypeTemplatesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListProfileObjectTypeTemplatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListProfileObjectTypeTemplatesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListProfileObjectTypeTemplatesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListProfileObjectTypeTemplatesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListProfileObjectTypeTemplatesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListProfileObjectTypeTemplatesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListProfileObjectTypeTemplatesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListProfileObjectTypeTemplatesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListProfileObjectTypeTemplatesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListProfileObjectTypeTemplatesCommand;
38
+ }($Command));
39
+ export { ListProfileObjectTypeTemplatesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListProfileObjectTypesRequestFilterSensitiveLog, ListProfileObjectTypesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListProfileObjectTypesCommand, serializeAws_restJson1ListProfileObjectTypesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListProfileObjectTypesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListProfileObjectTypesCommand = (function (_super) {
7
+ __extends(ListProfileObjectTypesCommand, _super);
8
+ function ListProfileObjectTypesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListProfileObjectTypesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListProfileObjectTypesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListProfileObjectTypesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListProfileObjectTypesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListProfileObjectTypesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListProfileObjectTypesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListProfileObjectTypesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListProfileObjectTypesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListProfileObjectTypesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListProfileObjectTypesCommand;
38
+ }($Command));
39
+ export { ListProfileObjectTypesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListProfileObjectsRequestFilterSensitiveLog, ListProfileObjectsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListProfileObjectsCommand, serializeAws_restJson1ListProfileObjectsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListProfileObjectsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListProfileObjectsCommand = (function (_super) {
7
+ __extends(ListProfileObjectsCommand, _super);
8
+ function ListProfileObjectsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListProfileObjectsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListProfileObjectsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListProfileObjectsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListProfileObjectsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListProfileObjectsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListProfileObjectsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListProfileObjectsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListProfileObjectsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListProfileObjectsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListProfileObjectsCommand;
38
+ }($Command));
39
+ export { ListProfileObjectsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CustomerProfilesClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListWorkflowsRequestFilterSensitiveLog, ListWorkflowsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListWorkflowsCommand, serializeAws_restJson1ListWorkflowsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListWorkflowsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
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;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListWorkflowsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CustomerProfilesClient";
15
- const commandName = "ListWorkflowsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
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,
20
23
  inputFilterSensitiveLog: ListWorkflowsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListWorkflowsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
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) {
27
32
  return serializeAws_restJson1ListWorkflowsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListWorkflowsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListWorkflowsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListWorkflowsCommand;
38
+ }($Command));
39
+ export { ListWorkflowsCommand };