@aws-sdk/client-codestar-connections 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/CodeStarConnectionsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +72 -1
- package/dist-cjs/protocols/Aws_json1_0.js +94 -264
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeStarConnectionsServiceException.js +12 -0
- package/dist-es/models/models_0.js +67 -1
- package/dist-es/protocols/Aws_json1_0.js +202 -289
- package/dist-types/CodeStarConnectionsClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeStarConnectionsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -16
- 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/CodeStarConnectionsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -16
- 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,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
|
|
2
3
|
export var ProviderType;
|
|
3
4
|
(function (ProviderType) {
|
|
4
5
|
ProviderType["BITBUCKET"] = "Bitbucket";
|
|
@@ -17,6 +18,45 @@ export var CreateConnectionOutput;
|
|
|
17
18
|
(function (CreateConnectionOutput) {
|
|
18
19
|
CreateConnectionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
19
20
|
})(CreateConnectionOutput || (CreateConnectionOutput = {}));
|
|
21
|
+
var LimitExceededException = (function (_super) {
|
|
22
|
+
__extends(LimitExceededException, _super);
|
|
23
|
+
function LimitExceededException(opts) {
|
|
24
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
25
|
+
_this.name = "LimitExceededException";
|
|
26
|
+
_this.$fault = "client";
|
|
27
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
28
|
+
_this.Message = opts.Message;
|
|
29
|
+
return _this;
|
|
30
|
+
}
|
|
31
|
+
return LimitExceededException;
|
|
32
|
+
}(__BaseException));
|
|
33
|
+
export { LimitExceededException };
|
|
34
|
+
var ResourceNotFoundException = (function (_super) {
|
|
35
|
+
__extends(ResourceNotFoundException, _super);
|
|
36
|
+
function ResourceNotFoundException(opts) {
|
|
37
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
38
|
+
_this.name = "ResourceNotFoundException";
|
|
39
|
+
_this.$fault = "client";
|
|
40
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
41
|
+
_this.Message = opts.Message;
|
|
42
|
+
return _this;
|
|
43
|
+
}
|
|
44
|
+
return ResourceNotFoundException;
|
|
45
|
+
}(__BaseException));
|
|
46
|
+
export { ResourceNotFoundException };
|
|
47
|
+
var ResourceUnavailableException = (function (_super) {
|
|
48
|
+
__extends(ResourceUnavailableException, _super);
|
|
49
|
+
function ResourceUnavailableException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "ResourceUnavailableException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "ResourceUnavailableException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, ResourceUnavailableException.prototype);
|
|
54
|
+
_this.Message = opts.Message;
|
|
55
|
+
return _this;
|
|
56
|
+
}
|
|
57
|
+
return ResourceUnavailableException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { ResourceUnavailableException };
|
|
20
60
|
export var VpcConfiguration;
|
|
21
61
|
(function (VpcConfiguration) {
|
|
22
62
|
VpcConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -115,6 +155,32 @@ export var UntagResourceOutput;
|
|
|
115
155
|
(function (UntagResourceOutput) {
|
|
116
156
|
UntagResourceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
157
|
})(UntagResourceOutput || (UntagResourceOutput = {}));
|
|
158
|
+
var ConflictException = (function (_super) {
|
|
159
|
+
__extends(ConflictException, _super);
|
|
160
|
+
function ConflictException(opts) {
|
|
161
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
162
|
+
_this.name = "ConflictException";
|
|
163
|
+
_this.$fault = "client";
|
|
164
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
165
|
+
_this.Message = opts.Message;
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return ConflictException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { ConflictException };
|
|
171
|
+
var UnsupportedOperationException = (function (_super) {
|
|
172
|
+
__extends(UnsupportedOperationException, _super);
|
|
173
|
+
function UnsupportedOperationException(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "UnsupportedOperationException";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
178
|
+
_this.Message = opts.Message;
|
|
179
|
+
return _this;
|
|
180
|
+
}
|
|
181
|
+
return UnsupportedOperationException;
|
|
182
|
+
}(__BaseException));
|
|
183
|
+
export { UnsupportedOperationException };
|
|
118
184
|
export var UpdateHostInput;
|
|
119
185
|
(function (UpdateHostInput) {
|
|
120
186
|
UpdateHostInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|