@aws-sdk/client-codestar-connections 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 (42) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/CodeStarConnectionsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +72 -1
  5. package/dist-cjs/protocols/Aws_json1_0.js +94 -264
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/CodeStarConnectionsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +67 -1
  9. package/dist-es/protocols/Aws_json1_0.js +202 -289
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/CodeStarConnectionsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +37 -16
  13. package/dist-types/ts3.4/CodeStarConnections.d.ts +65 -0
  14. package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +85 -0
  15. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  29. package/dist-types/ts3.4/index.d.ts +6 -0
  30. package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +6 -0
  31. package/dist-types/ts3.4/models/index.d.ts +1 -0
  32. package/dist-types/ts3.4/models/models_0.d.ts +344 -0
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  34. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +4 -0
  35. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  37. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  42. package/package.json +33 -33
@@ -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)); };