@aws-sdk/client-cloudcontrol 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
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { CloudControlServiceException } from "./models/CloudControlServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var CloudControlServiceException = (function (_super) {
4
+ __extends(CloudControlServiceException, _super);
5
+ function CloudControlServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, CloudControlServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return CloudControlServiceException;
11
+ }(__ServiceException));
12
+ export { CloudControlServiceException };
@@ -1,5 +1,19 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
4
+ var AlreadyExistsException = (function (_super) {
5
+ __extends(AlreadyExistsException, _super);
6
+ function AlreadyExistsException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
8
+ _this.name = "AlreadyExistsException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
11
+ _this.Message = opts.Message;
12
+ return _this;
13
+ }
14
+ return AlreadyExistsException;
15
+ }(__BaseException));
16
+ export { AlreadyExistsException };
3
17
  export var CancelResourceRequestInput;
4
18
  (function (CancelResourceRequestInput) {
5
19
  CancelResourceRequestInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -45,6 +59,58 @@ export var CancelResourceRequestOutput;
45
59
  (function (CancelResourceRequestOutput) {
46
60
  CancelResourceRequestOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEvent.filterSensitiveLog(obj.ProgressEvent) }))); };
47
61
  })(CancelResourceRequestOutput || (CancelResourceRequestOutput = {}));
62
+ var ConcurrentModificationException = (function (_super) {
63
+ __extends(ConcurrentModificationException, _super);
64
+ function ConcurrentModificationException(opts) {
65
+ var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "server" }, opts)) || this;
66
+ _this.name = "ConcurrentModificationException";
67
+ _this.$fault = "server";
68
+ Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
69
+ _this.Message = opts.Message;
70
+ return _this;
71
+ }
72
+ return ConcurrentModificationException;
73
+ }(__BaseException));
74
+ export { ConcurrentModificationException };
75
+ var RequestTokenNotFoundException = (function (_super) {
76
+ __extends(RequestTokenNotFoundException, _super);
77
+ function RequestTokenNotFoundException(opts) {
78
+ var _this = _super.call(this, __assign({ name: "RequestTokenNotFoundException", $fault: "client" }, opts)) || this;
79
+ _this.name = "RequestTokenNotFoundException";
80
+ _this.$fault = "client";
81
+ Object.setPrototypeOf(_this, RequestTokenNotFoundException.prototype);
82
+ _this.Message = opts.Message;
83
+ return _this;
84
+ }
85
+ return RequestTokenNotFoundException;
86
+ }(__BaseException));
87
+ export { RequestTokenNotFoundException };
88
+ var ClientTokenConflictException = (function (_super) {
89
+ __extends(ClientTokenConflictException, _super);
90
+ function ClientTokenConflictException(opts) {
91
+ var _this = _super.call(this, __assign({ name: "ClientTokenConflictException", $fault: "client" }, opts)) || this;
92
+ _this.name = "ClientTokenConflictException";
93
+ _this.$fault = "client";
94
+ Object.setPrototypeOf(_this, ClientTokenConflictException.prototype);
95
+ _this.Message = opts.Message;
96
+ return _this;
97
+ }
98
+ return ClientTokenConflictException;
99
+ }(__BaseException));
100
+ export { ClientTokenConflictException };
101
+ var ConcurrentOperationException = (function (_super) {
102
+ __extends(ConcurrentOperationException, _super);
103
+ function ConcurrentOperationException(opts) {
104
+ var _this = _super.call(this, __assign({ name: "ConcurrentOperationException", $fault: "client" }, opts)) || this;
105
+ _this.name = "ConcurrentOperationException";
106
+ _this.$fault = "client";
107
+ Object.setPrototypeOf(_this, ConcurrentOperationException.prototype);
108
+ _this.Message = opts.Message;
109
+ return _this;
110
+ }
111
+ return ConcurrentOperationException;
112
+ }(__BaseException));
113
+ export { ConcurrentOperationException };
48
114
  export var CreateResourceInput;
49
115
  (function (CreateResourceInput) {
50
116
  CreateResourceInput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DesiredState && { DesiredState: SENSITIVE_STRING }))); };
@@ -53,6 +119,214 @@ export var CreateResourceOutput;
53
119
  (function (CreateResourceOutput) {
54
120
  CreateResourceOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEvent.filterSensitiveLog(obj.ProgressEvent) }))); };
55
121
  })(CreateResourceOutput || (CreateResourceOutput = {}));
122
+ var GeneralServiceException = (function (_super) {
123
+ __extends(GeneralServiceException, _super);
124
+ function GeneralServiceException(opts) {
125
+ var _this = _super.call(this, __assign({ name: "GeneralServiceException", $fault: "client" }, opts)) || this;
126
+ _this.name = "GeneralServiceException";
127
+ _this.$fault = "client";
128
+ Object.setPrototypeOf(_this, GeneralServiceException.prototype);
129
+ _this.Message = opts.Message;
130
+ return _this;
131
+ }
132
+ return GeneralServiceException;
133
+ }(__BaseException));
134
+ export { GeneralServiceException };
135
+ var HandlerFailureException = (function (_super) {
136
+ __extends(HandlerFailureException, _super);
137
+ function HandlerFailureException(opts) {
138
+ var _this = _super.call(this, __assign({ name: "HandlerFailureException", $fault: "server" }, opts)) || this;
139
+ _this.name = "HandlerFailureException";
140
+ _this.$fault = "server";
141
+ Object.setPrototypeOf(_this, HandlerFailureException.prototype);
142
+ _this.Message = opts.Message;
143
+ return _this;
144
+ }
145
+ return HandlerFailureException;
146
+ }(__BaseException));
147
+ export { HandlerFailureException };
148
+ var HandlerInternalFailureException = (function (_super) {
149
+ __extends(HandlerInternalFailureException, _super);
150
+ function HandlerInternalFailureException(opts) {
151
+ var _this = _super.call(this, __assign({ name: "HandlerInternalFailureException", $fault: "server" }, opts)) || this;
152
+ _this.name = "HandlerInternalFailureException";
153
+ _this.$fault = "server";
154
+ Object.setPrototypeOf(_this, HandlerInternalFailureException.prototype);
155
+ _this.Message = opts.Message;
156
+ return _this;
157
+ }
158
+ return HandlerInternalFailureException;
159
+ }(__BaseException));
160
+ export { HandlerInternalFailureException };
161
+ var InvalidCredentialsException = (function (_super) {
162
+ __extends(InvalidCredentialsException, _super);
163
+ function InvalidCredentialsException(opts) {
164
+ var _this = _super.call(this, __assign({ name: "InvalidCredentialsException", $fault: "client" }, opts)) || this;
165
+ _this.name = "InvalidCredentialsException";
166
+ _this.$fault = "client";
167
+ Object.setPrototypeOf(_this, InvalidCredentialsException.prototype);
168
+ _this.Message = opts.Message;
169
+ return _this;
170
+ }
171
+ return InvalidCredentialsException;
172
+ }(__BaseException));
173
+ export { InvalidCredentialsException };
174
+ var InvalidRequestException = (function (_super) {
175
+ __extends(InvalidRequestException, _super);
176
+ function InvalidRequestException(opts) {
177
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
178
+ _this.name = "InvalidRequestException";
179
+ _this.$fault = "client";
180
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
181
+ _this.Message = opts.Message;
182
+ return _this;
183
+ }
184
+ return InvalidRequestException;
185
+ }(__BaseException));
186
+ export { InvalidRequestException };
187
+ var NetworkFailureException = (function (_super) {
188
+ __extends(NetworkFailureException, _super);
189
+ function NetworkFailureException(opts) {
190
+ var _this = _super.call(this, __assign({ name: "NetworkFailureException", $fault: "server" }, opts)) || this;
191
+ _this.name = "NetworkFailureException";
192
+ _this.$fault = "server";
193
+ Object.setPrototypeOf(_this, NetworkFailureException.prototype);
194
+ _this.Message = opts.Message;
195
+ return _this;
196
+ }
197
+ return NetworkFailureException;
198
+ }(__BaseException));
199
+ export { NetworkFailureException };
200
+ var NotStabilizedException = (function (_super) {
201
+ __extends(NotStabilizedException, _super);
202
+ function NotStabilizedException(opts) {
203
+ var _this = _super.call(this, __assign({ name: "NotStabilizedException", $fault: "client" }, opts)) || this;
204
+ _this.name = "NotStabilizedException";
205
+ _this.$fault = "client";
206
+ Object.setPrototypeOf(_this, NotStabilizedException.prototype);
207
+ _this.Message = opts.Message;
208
+ return _this;
209
+ }
210
+ return NotStabilizedException;
211
+ }(__BaseException));
212
+ export { NotStabilizedException };
213
+ var NotUpdatableException = (function (_super) {
214
+ __extends(NotUpdatableException, _super);
215
+ function NotUpdatableException(opts) {
216
+ var _this = _super.call(this, __assign({ name: "NotUpdatableException", $fault: "client" }, opts)) || this;
217
+ _this.name = "NotUpdatableException";
218
+ _this.$fault = "client";
219
+ Object.setPrototypeOf(_this, NotUpdatableException.prototype);
220
+ _this.Message = opts.Message;
221
+ return _this;
222
+ }
223
+ return NotUpdatableException;
224
+ }(__BaseException));
225
+ export { NotUpdatableException };
226
+ var PrivateTypeException = (function (_super) {
227
+ __extends(PrivateTypeException, _super);
228
+ function PrivateTypeException(opts) {
229
+ var _this = _super.call(this, __assign({ name: "PrivateTypeException", $fault: "client" }, opts)) || this;
230
+ _this.name = "PrivateTypeException";
231
+ _this.$fault = "client";
232
+ Object.setPrototypeOf(_this, PrivateTypeException.prototype);
233
+ _this.Message = opts.Message;
234
+ return _this;
235
+ }
236
+ return PrivateTypeException;
237
+ }(__BaseException));
238
+ export { PrivateTypeException };
239
+ var ResourceConflictException = (function (_super) {
240
+ __extends(ResourceConflictException, _super);
241
+ function ResourceConflictException(opts) {
242
+ var _this = _super.call(this, __assign({ name: "ResourceConflictException", $fault: "client" }, opts)) || this;
243
+ _this.name = "ResourceConflictException";
244
+ _this.$fault = "client";
245
+ Object.setPrototypeOf(_this, ResourceConflictException.prototype);
246
+ _this.Message = opts.Message;
247
+ return _this;
248
+ }
249
+ return ResourceConflictException;
250
+ }(__BaseException));
251
+ export { ResourceConflictException };
252
+ var ResourceNotFoundException = (function (_super) {
253
+ __extends(ResourceNotFoundException, _super);
254
+ function ResourceNotFoundException(opts) {
255
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
256
+ _this.name = "ResourceNotFoundException";
257
+ _this.$fault = "client";
258
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
259
+ _this.Message = opts.Message;
260
+ return _this;
261
+ }
262
+ return ResourceNotFoundException;
263
+ }(__BaseException));
264
+ export { ResourceNotFoundException };
265
+ var ServiceInternalErrorException = (function (_super) {
266
+ __extends(ServiceInternalErrorException, _super);
267
+ function ServiceInternalErrorException(opts) {
268
+ var _this = _super.call(this, __assign({ name: "ServiceInternalErrorException", $fault: "server" }, opts)) || this;
269
+ _this.name = "ServiceInternalErrorException";
270
+ _this.$fault = "server";
271
+ Object.setPrototypeOf(_this, ServiceInternalErrorException.prototype);
272
+ _this.Message = opts.Message;
273
+ return _this;
274
+ }
275
+ return ServiceInternalErrorException;
276
+ }(__BaseException));
277
+ export { ServiceInternalErrorException };
278
+ var ServiceLimitExceededException = (function (_super) {
279
+ __extends(ServiceLimitExceededException, _super);
280
+ function ServiceLimitExceededException(opts) {
281
+ var _this = _super.call(this, __assign({ name: "ServiceLimitExceededException", $fault: "client" }, opts)) || this;
282
+ _this.name = "ServiceLimitExceededException";
283
+ _this.$fault = "client";
284
+ Object.setPrototypeOf(_this, ServiceLimitExceededException.prototype);
285
+ _this.Message = opts.Message;
286
+ return _this;
287
+ }
288
+ return ServiceLimitExceededException;
289
+ }(__BaseException));
290
+ export { ServiceLimitExceededException };
291
+ var ThrottlingException = (function (_super) {
292
+ __extends(ThrottlingException, _super);
293
+ function ThrottlingException(opts) {
294
+ var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
295
+ _this.name = "ThrottlingException";
296
+ _this.$fault = "client";
297
+ Object.setPrototypeOf(_this, ThrottlingException.prototype);
298
+ _this.Message = opts.Message;
299
+ return _this;
300
+ }
301
+ return ThrottlingException;
302
+ }(__BaseException));
303
+ export { ThrottlingException };
304
+ var TypeNotFoundException = (function (_super) {
305
+ __extends(TypeNotFoundException, _super);
306
+ function TypeNotFoundException(opts) {
307
+ var _this = _super.call(this, __assign({ name: "TypeNotFoundException", $fault: "client" }, opts)) || this;
308
+ _this.name = "TypeNotFoundException";
309
+ _this.$fault = "client";
310
+ Object.setPrototypeOf(_this, TypeNotFoundException.prototype);
311
+ _this.Message = opts.Message;
312
+ return _this;
313
+ }
314
+ return TypeNotFoundException;
315
+ }(__BaseException));
316
+ export { TypeNotFoundException };
317
+ var UnsupportedActionException = (function (_super) {
318
+ __extends(UnsupportedActionException, _super);
319
+ function UnsupportedActionException(opts) {
320
+ var _this = _super.call(this, __assign({ name: "UnsupportedActionException", $fault: "client" }, opts)) || this;
321
+ _this.name = "UnsupportedActionException";
322
+ _this.$fault = "client";
323
+ Object.setPrototypeOf(_this, UnsupportedActionException.prototype);
324
+ _this.Message = opts.Message;
325
+ return _this;
326
+ }
327
+ return UnsupportedActionException;
328
+ }(__BaseException));
329
+ export { UnsupportedActionException };
56
330
  export var DeleteResourceInput;
57
331
  (function (DeleteResourceInput) {
58
332
  DeleteResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };