@aws-sdk/client-appintegrations 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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppIntegrationsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +100 -1
- package/dist-cjs/protocols/Aws_restJson1.js +184 -635
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppIntegrationsServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_restJson1.js +363 -703
- package/dist-types/AppIntegrationsClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppIntegrationsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- 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/AppIntegrationsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- 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
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 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;
|
|
9
|
+
}
|
|
10
|
+
return AppIntegrationsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { AppIntegrationsServiceException };
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
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;
|
|
12
|
+
}
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
2
16
|
export var ScheduleConfiguration;
|
|
3
17
|
(function (ScheduleConfiguration) {
|
|
4
18
|
ScheduleConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -11,6 +25,71 @@ export var CreateDataIntegrationResponse;
|
|
|
11
25
|
(function (CreateDataIntegrationResponse) {
|
|
12
26
|
CreateDataIntegrationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
27
|
})(CreateDataIntegrationResponse || (CreateDataIntegrationResponse = {}));
|
|
28
|
+
var DuplicateResourceException = (function (_super) {
|
|
29
|
+
__extends(DuplicateResourceException, _super);
|
|
30
|
+
function DuplicateResourceException(opts) {
|
|
31
|
+
var _this = _super.call(this, __assign({ name: "DuplicateResourceException", $fault: "client" }, opts)) || this;
|
|
32
|
+
_this.name = "DuplicateResourceException";
|
|
33
|
+
_this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(_this, DuplicateResourceException.prototype);
|
|
35
|
+
_this.Message = opts.Message;
|
|
36
|
+
return _this;
|
|
37
|
+
}
|
|
38
|
+
return DuplicateResourceException;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { DuplicateResourceException };
|
|
41
|
+
var InternalServiceError = (function (_super) {
|
|
42
|
+
__extends(InternalServiceError, _super);
|
|
43
|
+
function InternalServiceError(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceError", $fault: "server" }, opts)) || this;
|
|
45
|
+
_this.name = "InternalServiceError";
|
|
46
|
+
_this.$fault = "server";
|
|
47
|
+
Object.setPrototypeOf(_this, InternalServiceError.prototype);
|
|
48
|
+
_this.Message = opts.Message;
|
|
49
|
+
return _this;
|
|
50
|
+
}
|
|
51
|
+
return InternalServiceError;
|
|
52
|
+
}(__BaseException));
|
|
53
|
+
export { InternalServiceError };
|
|
54
|
+
var InvalidRequestException = (function (_super) {
|
|
55
|
+
__extends(InvalidRequestException, _super);
|
|
56
|
+
function InvalidRequestException(opts) {
|
|
57
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
58
|
+
_this.name = "InvalidRequestException";
|
|
59
|
+
_this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
61
|
+
_this.Message = opts.Message;
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return InvalidRequestException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { InvalidRequestException };
|
|
67
|
+
var ResourceQuotaExceededException = (function (_super) {
|
|
68
|
+
__extends(ResourceQuotaExceededException, _super);
|
|
69
|
+
function ResourceQuotaExceededException(opts) {
|
|
70
|
+
var _this = _super.call(this, __assign({ name: "ResourceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
71
|
+
_this.name = "ResourceQuotaExceededException";
|
|
72
|
+
_this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(_this, ResourceQuotaExceededException.prototype);
|
|
74
|
+
_this.Message = opts.Message;
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
return ResourceQuotaExceededException;
|
|
78
|
+
}(__BaseException));
|
|
79
|
+
export { ResourceQuotaExceededException };
|
|
80
|
+
var ThrottlingException = (function (_super) {
|
|
81
|
+
__extends(ThrottlingException, _super);
|
|
82
|
+
function ThrottlingException(opts) {
|
|
83
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
84
|
+
_this.name = "ThrottlingException";
|
|
85
|
+
_this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
87
|
+
_this.Message = opts.Message;
|
|
88
|
+
return _this;
|
|
89
|
+
}
|
|
90
|
+
return ThrottlingException;
|
|
91
|
+
}(__BaseException));
|
|
92
|
+
export { ThrottlingException };
|
|
14
93
|
export var EventFilter;
|
|
15
94
|
(function (EventFilter) {
|
|
16
95
|
EventFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -31,6 +110,19 @@ export var DeleteDataIntegrationResponse;
|
|
|
31
110
|
(function (DeleteDataIntegrationResponse) {
|
|
32
111
|
DeleteDataIntegrationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
112
|
})(DeleteDataIntegrationResponse || (DeleteDataIntegrationResponse = {}));
|
|
113
|
+
var ResourceNotFoundException = (function (_super) {
|
|
114
|
+
__extends(ResourceNotFoundException, _super);
|
|
115
|
+
function ResourceNotFoundException(opts) {
|
|
116
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
117
|
+
_this.name = "ResourceNotFoundException";
|
|
118
|
+
_this.$fault = "client";
|
|
119
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
120
|
+
_this.Message = opts.Message;
|
|
121
|
+
return _this;
|
|
122
|
+
}
|
|
123
|
+
return ResourceNotFoundException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { ResourceNotFoundException };
|
|
34
126
|
export var DeleteEventIntegrationRequest;
|
|
35
127
|
(function (DeleteEventIntegrationRequest) {
|
|
36
128
|
DeleteEventIntegrationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|