@aws-sdk/client-appintegrations 3.50.0 → 3.53.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 (41) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/AppIntegrationsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +100 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +184 -635
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/AppIntegrationsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +93 -1
  9. package/dist-es/protocols/Aws_restJson1.js +363 -703
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/AppIntegrationsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +51 -22
  13. package/dist-types/ts3.4/AppIntegrations.d.ts +80 -0
  14. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +88 -0
  15. package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +6 -0
  34. package/dist-types/ts3.4/models/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +482 -0
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +47 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  41. package/package.json +33 -33
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
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.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-appintegrations
20
+
21
+
22
+
23
+
24
+
25
+ # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-appintegrations
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-appintegrations
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppIntegrationsServiceException = void 0;
3
4
  const tslib_1 = require("tslib");
4
5
  tslib_1.__exportStar(require("./AppIntegrations"), exports);
5
6
  tslib_1.__exportStar(require("./AppIntegrationsClient"), exports);
6
7
  tslib_1.__exportStar(require("./commands"), exports);
7
8
  tslib_1.__exportStar(require("./models"), exports);
9
+ var AppIntegrationsServiceException_1 = require("./models/AppIntegrationsServiceException");
10
+ Object.defineProperty(exports, "AppIntegrationsServiceException", { enumerable: true, get: function () { return AppIntegrationsServiceException_1.AppIntegrationsServiceException; } });
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppIntegrationsServiceException = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
5
+ class AppIntegrationsServiceException extends smithy_client_1.ServiceException {
6
+ constructor(options) {
7
+ super(options);
8
+ Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
9
+ }
10
+ }
11
+ exports.AppIntegrationsServiceException = AppIntegrationsServiceException;
@@ -1,6 +1,21 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateEventIntegrationResponse = exports.UpdateEventIntegrationRequest = exports.UpdateDataIntegrationResponse = exports.UpdateDataIntegrationRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListEventIntegrationsResponse = exports.EventIntegration = exports.ListEventIntegrationsRequest = exports.ListEventIntegrationAssociationsResponse = exports.EventIntegrationAssociation = exports.ListEventIntegrationAssociationsRequest = exports.ListDataIntegrationsResponse = exports.DataIntegrationSummary = exports.ListDataIntegrationsRequest = exports.ListDataIntegrationAssociationsResponse = exports.DataIntegrationAssociationSummary = exports.ListDataIntegrationAssociationsRequest = exports.GetEventIntegrationResponse = exports.GetEventIntegrationRequest = exports.GetDataIntegrationResponse = exports.GetDataIntegrationRequest = exports.DeleteEventIntegrationResponse = exports.DeleteEventIntegrationRequest = exports.DeleteDataIntegrationResponse = exports.DeleteDataIntegrationRequest = exports.CreateEventIntegrationResponse = exports.CreateEventIntegrationRequest = exports.EventFilter = exports.CreateDataIntegrationResponse = exports.CreateDataIntegrationRequest = exports.ScheduleConfiguration = void 0;
3
+ exports.UpdateEventIntegrationResponse = exports.UpdateEventIntegrationRequest = exports.UpdateDataIntegrationResponse = exports.UpdateDataIntegrationRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListEventIntegrationsResponse = exports.EventIntegration = exports.ListEventIntegrationsRequest = exports.ListEventIntegrationAssociationsResponse = exports.EventIntegrationAssociation = exports.ListEventIntegrationAssociationsRequest = exports.ListDataIntegrationsResponse = exports.DataIntegrationSummary = exports.ListDataIntegrationsRequest = exports.ListDataIntegrationAssociationsResponse = exports.DataIntegrationAssociationSummary = exports.ListDataIntegrationAssociationsRequest = exports.GetEventIntegrationResponse = exports.GetEventIntegrationRequest = exports.GetDataIntegrationResponse = exports.GetDataIntegrationRequest = exports.DeleteEventIntegrationResponse = exports.DeleteEventIntegrationRequest = exports.ResourceNotFoundException = exports.DeleteDataIntegrationResponse = exports.DeleteDataIntegrationRequest = exports.CreateEventIntegrationResponse = exports.CreateEventIntegrationRequest = exports.EventFilter = exports.ThrottlingException = exports.ResourceQuotaExceededException = exports.InvalidRequestException = exports.InternalServiceError = exports.DuplicateResourceException = exports.CreateDataIntegrationResponse = exports.CreateDataIntegrationRequest = exports.ScheduleConfiguration = exports.AccessDeniedException = void 0;
4
+ const AppIntegrationsServiceException_1 = require("./AppIntegrationsServiceException");
5
+ class AccessDeniedException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ this.name = "AccessDeniedException";
13
+ this.$fault = "client";
14
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
+ this.Message = opts.Message;
16
+ }
17
+ }
18
+ exports.AccessDeniedException = AccessDeniedException;
4
19
  var ScheduleConfiguration;
5
20
  (function (ScheduleConfiguration) {
6
21
  ScheduleConfiguration.filterSensitiveLog = (obj) => ({
@@ -19,6 +34,76 @@ var CreateDataIntegrationResponse;
19
34
  ...obj,
20
35
  });
21
36
  })(CreateDataIntegrationResponse = exports.CreateDataIntegrationResponse || (exports.CreateDataIntegrationResponse = {}));
37
+ class DuplicateResourceException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
38
+ constructor(opts) {
39
+ super({
40
+ name: "DuplicateResourceException",
41
+ $fault: "client",
42
+ ...opts,
43
+ });
44
+ this.name = "DuplicateResourceException";
45
+ this.$fault = "client";
46
+ Object.setPrototypeOf(this, DuplicateResourceException.prototype);
47
+ this.Message = opts.Message;
48
+ }
49
+ }
50
+ exports.DuplicateResourceException = DuplicateResourceException;
51
+ class InternalServiceError extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
52
+ constructor(opts) {
53
+ super({
54
+ name: "InternalServiceError",
55
+ $fault: "server",
56
+ ...opts,
57
+ });
58
+ this.name = "InternalServiceError";
59
+ this.$fault = "server";
60
+ Object.setPrototypeOf(this, InternalServiceError.prototype);
61
+ this.Message = opts.Message;
62
+ }
63
+ }
64
+ exports.InternalServiceError = InternalServiceError;
65
+ class InvalidRequestException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
66
+ constructor(opts) {
67
+ super({
68
+ name: "InvalidRequestException",
69
+ $fault: "client",
70
+ ...opts,
71
+ });
72
+ this.name = "InvalidRequestException";
73
+ this.$fault = "client";
74
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
75
+ this.Message = opts.Message;
76
+ }
77
+ }
78
+ exports.InvalidRequestException = InvalidRequestException;
79
+ class ResourceQuotaExceededException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
80
+ constructor(opts) {
81
+ super({
82
+ name: "ResourceQuotaExceededException",
83
+ $fault: "client",
84
+ ...opts,
85
+ });
86
+ this.name = "ResourceQuotaExceededException";
87
+ this.$fault = "client";
88
+ Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
89
+ this.Message = opts.Message;
90
+ }
91
+ }
92
+ exports.ResourceQuotaExceededException = ResourceQuotaExceededException;
93
+ class ThrottlingException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
94
+ constructor(opts) {
95
+ super({
96
+ name: "ThrottlingException",
97
+ $fault: "client",
98
+ ...opts,
99
+ });
100
+ this.name = "ThrottlingException";
101
+ this.$fault = "client";
102
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
103
+ this.Message = opts.Message;
104
+ }
105
+ }
106
+ exports.ThrottlingException = ThrottlingException;
22
107
  var EventFilter;
23
108
  (function (EventFilter) {
24
109
  EventFilter.filterSensitiveLog = (obj) => ({
@@ -49,6 +134,20 @@ var DeleteDataIntegrationResponse;
49
134
  ...obj,
50
135
  });
51
136
  })(DeleteDataIntegrationResponse = exports.DeleteDataIntegrationResponse || (exports.DeleteDataIntegrationResponse = {}));
137
+ class ResourceNotFoundException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
138
+ constructor(opts) {
139
+ super({
140
+ name: "ResourceNotFoundException",
141
+ $fault: "client",
142
+ ...opts,
143
+ });
144
+ this.name = "ResourceNotFoundException";
145
+ this.$fault = "client";
146
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
147
+ this.Message = opts.Message;
148
+ }
149
+ }
150
+ exports.ResourceNotFoundException = ResourceNotFoundException;
52
151
  var DeleteEventIntegrationRequest;
53
152
  (function (DeleteEventIntegrationRequest) {
54
153
  DeleteEventIntegrationRequest.filterSensitiveLog = (obj) => ({