@aws-sdk/client-cloud9 3.51.0 → 3.54.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.
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./Cloud9Client";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { Cloud9ServiceException } from "./models/Cloud9ServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var Cloud9ServiceException = (function (_super) {
4
+ __extends(Cloud9ServiceException, _super);
5
+ function Cloud9ServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, Cloud9ServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return Cloud9ServiceException;
11
+ }(__ServiceException));
12
+ export { Cloud9ServiceException };
@@ -1,5 +1,34 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
4
+ var BadRequestException = (function (_super) {
5
+ __extends(BadRequestException, _super);
6
+ function BadRequestException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
8
+ _this.name = "BadRequestException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
11
+ _this.className = opts.className;
12
+ _this.code = opts.code;
13
+ return _this;
14
+ }
15
+ return BadRequestException;
16
+ }(__BaseException));
17
+ export { BadRequestException };
18
+ var ConflictException = (function (_super) {
19
+ __extends(ConflictException, _super);
20
+ function ConflictException(opts) {
21
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
22
+ _this.name = "ConflictException";
23
+ _this.$fault = "client";
24
+ Object.setPrototypeOf(_this, ConflictException.prototype);
25
+ _this.className = opts.className;
26
+ _this.code = opts.code;
27
+ return _this;
28
+ }
29
+ return ConflictException;
30
+ }(__BaseException));
31
+ export { ConflictException };
3
32
  export var ConnectionType;
4
33
  (function (ConnectionType) {
5
34
  ConnectionType["CONNECT_SSH"] = "CONNECT_SSH";
@@ -17,6 +46,76 @@ export var CreateEnvironmentEC2Result;
17
46
  (function (CreateEnvironmentEC2Result) {
18
47
  CreateEnvironmentEC2Result.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
19
48
  })(CreateEnvironmentEC2Result || (CreateEnvironmentEC2Result = {}));
49
+ var ForbiddenException = (function (_super) {
50
+ __extends(ForbiddenException, _super);
51
+ function ForbiddenException(opts) {
52
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
53
+ _this.name = "ForbiddenException";
54
+ _this.$fault = "client";
55
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
56
+ _this.className = opts.className;
57
+ _this.code = opts.code;
58
+ return _this;
59
+ }
60
+ return ForbiddenException;
61
+ }(__BaseException));
62
+ export { ForbiddenException };
63
+ var InternalServerErrorException = (function (_super) {
64
+ __extends(InternalServerErrorException, _super);
65
+ function InternalServerErrorException(opts) {
66
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
67
+ _this.name = "InternalServerErrorException";
68
+ _this.$fault = "server";
69
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
70
+ _this.className = opts.className;
71
+ _this.code = opts.code;
72
+ return _this;
73
+ }
74
+ return InternalServerErrorException;
75
+ }(__BaseException));
76
+ export { InternalServerErrorException };
77
+ var LimitExceededException = (function (_super) {
78
+ __extends(LimitExceededException, _super);
79
+ function LimitExceededException(opts) {
80
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
81
+ _this.name = "LimitExceededException";
82
+ _this.$fault = "client";
83
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
84
+ _this.className = opts.className;
85
+ _this.code = opts.code;
86
+ return _this;
87
+ }
88
+ return LimitExceededException;
89
+ }(__BaseException));
90
+ export { LimitExceededException };
91
+ var NotFoundException = (function (_super) {
92
+ __extends(NotFoundException, _super);
93
+ function NotFoundException(opts) {
94
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
95
+ _this.name = "NotFoundException";
96
+ _this.$fault = "client";
97
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
98
+ _this.className = opts.className;
99
+ _this.code = opts.code;
100
+ return _this;
101
+ }
102
+ return NotFoundException;
103
+ }(__BaseException));
104
+ export { NotFoundException };
105
+ var TooManyRequestsException = (function (_super) {
106
+ __extends(TooManyRequestsException, _super);
107
+ function TooManyRequestsException(opts) {
108
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
109
+ _this.name = "TooManyRequestsException";
110
+ _this.$fault = "client";
111
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
112
+ _this.className = opts.className;
113
+ _this.code = opts.code;
114
+ return _this;
115
+ }
116
+ return TooManyRequestsException;
117
+ }(__BaseException));
118
+ export { TooManyRequestsException };
20
119
  export var MemberPermissions;
21
120
  (function (MemberPermissions) {
22
121
  MemberPermissions["READ_ONLY"] = "read-only";
@@ -141,6 +240,20 @@ export var ListTagsForResourceResponse;
141
240
  (function (ListTagsForResourceResponse) {
142
241
  ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Tags && { Tags: SENSITIVE_STRING }))); };
143
242
  })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
243
+ var ConcurrentAccessException = (function (_super) {
244
+ __extends(ConcurrentAccessException, _super);
245
+ function ConcurrentAccessException(opts) {
246
+ var _this = _super.call(this, __assign({ name: "ConcurrentAccessException", $fault: "client" }, opts)) || this;
247
+ _this.name = "ConcurrentAccessException";
248
+ _this.$fault = "client";
249
+ Object.setPrototypeOf(_this, ConcurrentAccessException.prototype);
250
+ _this.className = opts.className;
251
+ _this.code = opts.code;
252
+ return _this;
253
+ }
254
+ return ConcurrentAccessException;
255
+ }(__BaseException));
256
+ export { ConcurrentAccessException };
144
257
  export var TagResourceRequest;
145
258
  (function (TagResourceRequest) {
146
259
  TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Tags && { Tags: SENSITIVE_STRING }))); };