@aws-sdk/client-appintegrations 3.186.0 → 3.190.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/AppIntegrations.js +62 -69
  3. package/dist-es/AppIntegrationsClient.js +22 -28
  4. package/dist-es/commands/CreateDataIntegrationCommand.js +21 -28
  5. package/dist-es/commands/CreateEventIntegrationCommand.js +21 -28
  6. package/dist-es/commands/DeleteDataIntegrationCommand.js +21 -28
  7. package/dist-es/commands/DeleteEventIntegrationCommand.js +21 -28
  8. package/dist-es/commands/GetDataIntegrationCommand.js +21 -28
  9. package/dist-es/commands/GetEventIntegrationCommand.js +21 -28
  10. package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +21 -28
  11. package/dist-es/commands/ListDataIntegrationsCommand.js +21 -28
  12. package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +21 -28
  13. package/dist-es/commands/ListEventIntegrationsCommand.js +21 -28
  14. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  15. package/dist-es/commands/TagResourceCommand.js +21 -28
  16. package/dist-es/commands/UntagResourceCommand.js +21 -28
  17. package/dist-es/commands/UpdateDataIntegrationCommand.js +21 -28
  18. package/dist-es/commands/UpdateEventIntegrationCommand.js +21 -28
  19. package/dist-es/endpoints.js +8 -8
  20. package/dist-es/models/AppIntegrationsServiceException.js +5 -10
  21. package/dist-es/models/models_0.js +192 -121
  22. package/dist-es/protocols/Aws_restJson1.js +1138 -1608
  23. package/dist-es/runtimeConfig.browser.js +26 -12
  24. package/dist-es/runtimeConfig.js +30 -12
  25. package/dist-es/runtimeConfig.native.js +8 -5
  26. package/dist-es/runtimeConfig.shared.js +8 -11
  27. package/package.json +33 -33
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { UpdateEventIntegrationRequestFilterSensitiveLog, UpdateEventIntegrationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UpdateEventIntegrationCommand, serializeAws_restJson1UpdateEventIntegrationCommand, } from "../protocols/Aws_restJson1";
6
- var UpdateEventIntegrationCommand = (function (_super) {
7
- __extends(UpdateEventIntegrationCommand, _super);
8
- function UpdateEventIntegrationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class UpdateEventIntegrationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- UpdateEventIntegrationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "AppIntegrationsClient";
18
- var commandName = "UpdateEventIntegrationCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "AppIntegrationsClient";
15
+ const commandName = "UpdateEventIntegrationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: UpdateEventIntegrationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: UpdateEventIntegrationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- UpdateEventIntegrationCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1UpdateEventIntegrationCommand(input, context);
33
- };
34
- UpdateEventIntegrationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1UpdateEventIntegrationCommand(output, context);
36
- };
37
- return UpdateEventIntegrationCommand;
38
- }($Command));
39
- export { UpdateEventIntegrationCommand };
31
+ }
32
+ }
@@ -1,7 +1,6 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {};
4
- var partitionHash = {
2
+ const regionHash = {};
3
+ const partitionHash = {
5
4
  aws: {
6
5
  regions: [
7
6
  "af-south-1",
@@ -121,8 +120,9 @@ var partitionHash = {
121
120
  ],
122
121
  },
123
122
  };
124
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
125
- return __generator(this, function (_a) {
126
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "app-integrations", regionHash: regionHash, partitionHash: partitionHash }))];
127
- });
128
- }); };
123
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
124
+ ...options,
125
+ signingService: "app-integrations",
126
+ regionHash,
127
+ partitionHash,
128
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var AppIntegrationsServiceException = (function (_super) {
4
- __extends(AppIntegrationsServiceException, _super);
5
- function AppIntegrationsServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, AppIntegrationsServiceException.prototype);
8
- return _this;
2
+ export class AppIntegrationsServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
9
6
  }
10
- return AppIntegrationsServiceException;
11
- }(__ServiceException));
12
- export { AppIntegrationsServiceException };
7
+ }
@@ -1,129 +1,200 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
3
- var AccessDeniedException = (function (_super) {
4
- __extends(AccessDeniedException, _super);
5
- function AccessDeniedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessDeniedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
- _this.Message = opts.Message;
11
- return _this;
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
13
- return AccessDeniedException;
14
- }(__BaseException));
15
- export { AccessDeniedException };
16
- var DuplicateResourceException = (function (_super) {
17
- __extends(DuplicateResourceException, _super);
18
- function DuplicateResourceException(opts) {
19
- var _this = _super.call(this, __assign({ name: "DuplicateResourceException", $fault: "client" }, opts)) || this;
20
- _this.name = "DuplicateResourceException";
21
- _this.$fault = "client";
22
- Object.setPrototypeOf(_this, DuplicateResourceException.prototype);
23
- _this.Message = opts.Message;
24
- return _this;
14
+ }
15
+ export class DuplicateResourceException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "DuplicateResourceException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "DuplicateResourceException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, DuplicateResourceException.prototype);
25
+ this.Message = opts.Message;
25
26
  }
26
- return DuplicateResourceException;
27
- }(__BaseException));
28
- export { DuplicateResourceException };
29
- var InternalServiceError = (function (_super) {
30
- __extends(InternalServiceError, _super);
31
- function InternalServiceError(opts) {
32
- var _this = _super.call(this, __assign({ name: "InternalServiceError", $fault: "server" }, opts)) || this;
33
- _this.name = "InternalServiceError";
34
- _this.$fault = "server";
35
- Object.setPrototypeOf(_this, InternalServiceError.prototype);
36
- _this.Message = opts.Message;
37
- return _this;
27
+ }
28
+ export class InternalServiceError extends __BaseException {
29
+ constructor(opts) {
30
+ super({
31
+ name: "InternalServiceError",
32
+ $fault: "server",
33
+ ...opts,
34
+ });
35
+ this.name = "InternalServiceError";
36
+ this.$fault = "server";
37
+ Object.setPrototypeOf(this, InternalServiceError.prototype);
38
+ this.Message = opts.Message;
38
39
  }
39
- return InternalServiceError;
40
- }(__BaseException));
41
- export { InternalServiceError };
42
- var InvalidRequestException = (function (_super) {
43
- __extends(InvalidRequestException, _super);
44
- function InvalidRequestException(opts) {
45
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
46
- _this.name = "InvalidRequestException";
47
- _this.$fault = "client";
48
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
49
- _this.Message = opts.Message;
50
- return _this;
40
+ }
41
+ export class InvalidRequestException extends __BaseException {
42
+ constructor(opts) {
43
+ super({
44
+ name: "InvalidRequestException",
45
+ $fault: "client",
46
+ ...opts,
47
+ });
48
+ this.name = "InvalidRequestException";
49
+ this.$fault = "client";
50
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
51
+ this.Message = opts.Message;
51
52
  }
52
- return InvalidRequestException;
53
- }(__BaseException));
54
- export { InvalidRequestException };
55
- var ResourceQuotaExceededException = (function (_super) {
56
- __extends(ResourceQuotaExceededException, _super);
57
- function ResourceQuotaExceededException(opts) {
58
- var _this = _super.call(this, __assign({ name: "ResourceQuotaExceededException", $fault: "client" }, opts)) || this;
59
- _this.name = "ResourceQuotaExceededException";
60
- _this.$fault = "client";
61
- Object.setPrototypeOf(_this, ResourceQuotaExceededException.prototype);
62
- _this.Message = opts.Message;
63
- return _this;
53
+ }
54
+ export class ResourceQuotaExceededException extends __BaseException {
55
+ constructor(opts) {
56
+ super({
57
+ name: "ResourceQuotaExceededException",
58
+ $fault: "client",
59
+ ...opts,
60
+ });
61
+ this.name = "ResourceQuotaExceededException";
62
+ this.$fault = "client";
63
+ Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
64
+ this.Message = opts.Message;
64
65
  }
65
- return ResourceQuotaExceededException;
66
- }(__BaseException));
67
- export { ResourceQuotaExceededException };
68
- var ThrottlingException = (function (_super) {
69
- __extends(ThrottlingException, _super);
70
- function ThrottlingException(opts) {
71
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
72
- _this.name = "ThrottlingException";
73
- _this.$fault = "client";
74
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
75
- _this.Message = opts.Message;
76
- return _this;
66
+ }
67
+ export class ThrottlingException extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "ThrottlingException",
71
+ $fault: "client",
72
+ ...opts,
73
+ });
74
+ this.name = "ThrottlingException";
75
+ this.$fault = "client";
76
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
77
+ this.Message = opts.Message;
77
78
  }
78
- return ThrottlingException;
79
- }(__BaseException));
80
- export { ThrottlingException };
81
- var ResourceNotFoundException = (function (_super) {
82
- __extends(ResourceNotFoundException, _super);
83
- function ResourceNotFoundException(opts) {
84
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
85
- _this.name = "ResourceNotFoundException";
86
- _this.$fault = "client";
87
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
88
- _this.Message = opts.Message;
89
- return _this;
79
+ }
80
+ export class ResourceNotFoundException extends __BaseException {
81
+ constructor(opts) {
82
+ super({
83
+ name: "ResourceNotFoundException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ this.name = "ResourceNotFoundException";
88
+ this.$fault = "client";
89
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
90
+ this.Message = opts.Message;
90
91
  }
91
- return ResourceNotFoundException;
92
- }(__BaseException));
93
- export { ResourceNotFoundException };
94
- export var ScheduleConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
95
- export var CreateDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
96
- export var CreateDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
97
- export var EventFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
98
- export var CreateEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
99
- export var CreateEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
100
- export var DeleteDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
101
- export var DeleteDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
102
- export var DeleteEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
103
- export var DeleteEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
104
- export var GetDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
105
- export var GetDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
106
- export var GetEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
107
- export var GetEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
108
- export var ListDataIntegrationAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
109
- export var DataIntegrationAssociationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
110
- export var ListDataIntegrationAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
111
- export var ListDataIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
112
- export var DataIntegrationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
113
- export var ListDataIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
114
- export var ListEventIntegrationAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
115
- export var EventIntegrationAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
116
- export var ListEventIntegrationAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
117
- export var ListEventIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
118
- export var EventIntegrationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
119
- export var ListEventIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
120
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
121
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
123
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
124
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
- export var UpdateDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
127
- export var UpdateDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
- export var UpdateEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
- export var UpdateEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
92
+ }
93
+ export const ScheduleConfigurationFilterSensitiveLog = (obj) => ({
94
+ ...obj,
95
+ });
96
+ export const CreateDataIntegrationRequestFilterSensitiveLog = (obj) => ({
97
+ ...obj,
98
+ });
99
+ export const CreateDataIntegrationResponseFilterSensitiveLog = (obj) => ({
100
+ ...obj,
101
+ });
102
+ export const EventFilterFilterSensitiveLog = (obj) => ({
103
+ ...obj,
104
+ });
105
+ export const CreateEventIntegrationRequestFilterSensitiveLog = (obj) => ({
106
+ ...obj,
107
+ });
108
+ export const CreateEventIntegrationResponseFilterSensitiveLog = (obj) => ({
109
+ ...obj,
110
+ });
111
+ export const DeleteDataIntegrationRequestFilterSensitiveLog = (obj) => ({
112
+ ...obj,
113
+ });
114
+ export const DeleteDataIntegrationResponseFilterSensitiveLog = (obj) => ({
115
+ ...obj,
116
+ });
117
+ export const DeleteEventIntegrationRequestFilterSensitiveLog = (obj) => ({
118
+ ...obj,
119
+ });
120
+ export const DeleteEventIntegrationResponseFilterSensitiveLog = (obj) => ({
121
+ ...obj,
122
+ });
123
+ export const GetDataIntegrationRequestFilterSensitiveLog = (obj) => ({
124
+ ...obj,
125
+ });
126
+ export const GetDataIntegrationResponseFilterSensitiveLog = (obj) => ({
127
+ ...obj,
128
+ });
129
+ export const GetEventIntegrationRequestFilterSensitiveLog = (obj) => ({
130
+ ...obj,
131
+ });
132
+ export const GetEventIntegrationResponseFilterSensitiveLog = (obj) => ({
133
+ ...obj,
134
+ });
135
+ export const ListDataIntegrationAssociationsRequestFilterSensitiveLog = (obj) => ({
136
+ ...obj,
137
+ });
138
+ export const DataIntegrationAssociationSummaryFilterSensitiveLog = (obj) => ({
139
+ ...obj,
140
+ });
141
+ export const ListDataIntegrationAssociationsResponseFilterSensitiveLog = (obj) => ({
142
+ ...obj,
143
+ });
144
+ export const ListDataIntegrationsRequestFilterSensitiveLog = (obj) => ({
145
+ ...obj,
146
+ });
147
+ export const DataIntegrationSummaryFilterSensitiveLog = (obj) => ({
148
+ ...obj,
149
+ });
150
+ export const ListDataIntegrationsResponseFilterSensitiveLog = (obj) => ({
151
+ ...obj,
152
+ });
153
+ export const ListEventIntegrationAssociationsRequestFilterSensitiveLog = (obj) => ({
154
+ ...obj,
155
+ });
156
+ export const EventIntegrationAssociationFilterSensitiveLog = (obj) => ({
157
+ ...obj,
158
+ });
159
+ export const ListEventIntegrationAssociationsResponseFilterSensitiveLog = (obj) => ({
160
+ ...obj,
161
+ });
162
+ export const ListEventIntegrationsRequestFilterSensitiveLog = (obj) => ({
163
+ ...obj,
164
+ });
165
+ export const EventIntegrationFilterSensitiveLog = (obj) => ({
166
+ ...obj,
167
+ });
168
+ export const ListEventIntegrationsResponseFilterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
172
+ ...obj,
173
+ });
174
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ });
177
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
181
+ ...obj,
182
+ });
183
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
184
+ ...obj,
185
+ });
186
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ export const UpdateDataIntegrationRequestFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const UpdateDataIntegrationResponseFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const UpdateEventIntegrationRequestFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const UpdateEventIntegrationResponseFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });