@aws-sdk/client-elastic-beanstalk 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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ElasticBeanstalkServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +251 -3
- package/dist-cjs/protocols/Aws_query.js +312 -955
- package/dist-es/index.js +1 -0
- package/dist-es/models/ElasticBeanstalkServiceException.js +12 -0
- package/dist-es/models/models_0.js +230 -1
- package/dist-es/protocols/Aws_query.js +698 -1008
- package/dist-types/ElasticBeanstalkClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ElasticBeanstalkServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +97 -96
- 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/ElasticBeanstalkClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ElasticBeanstalkServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -77
- 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 +34 -34
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 ElasticBeanstalkServiceException = (function (_super) {
|
|
4
|
+
__extends(ElasticBeanstalkServiceException, _super);
|
|
5
|
+
function ElasticBeanstalkServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ElasticBeanstalkServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ElasticBeanstalkServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ElasticBeanstalkServiceException };
|
|
@@ -1,8 +1,21 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
|
|
2
3
|
export var AbortEnvironmentUpdateMessage;
|
|
3
4
|
(function (AbortEnvironmentUpdateMessage) {
|
|
4
5
|
AbortEnvironmentUpdateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
6
|
})(AbortEnvironmentUpdateMessage || (AbortEnvironmentUpdateMessage = {}));
|
|
7
|
+
var InsufficientPrivilegesException = (function (_super) {
|
|
8
|
+
__extends(InsufficientPrivilegesException, _super);
|
|
9
|
+
function InsufficientPrivilegesException(opts) {
|
|
10
|
+
var _this = _super.call(this, __assign({ name: "InsufficientPrivilegesException", $fault: "client" }, opts)) || this;
|
|
11
|
+
_this.name = "InsufficientPrivilegesException";
|
|
12
|
+
_this.$fault = "client";
|
|
13
|
+
Object.setPrototypeOf(_this, InsufficientPrivilegesException.prototype);
|
|
14
|
+
return _this;
|
|
15
|
+
}
|
|
16
|
+
return InsufficientPrivilegesException;
|
|
17
|
+
}(__BaseException));
|
|
18
|
+
export { InsufficientPrivilegesException };
|
|
6
19
|
export var MaxAgeRule;
|
|
7
20
|
(function (MaxAgeRule) {
|
|
8
21
|
MaxAgeRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -75,6 +88,30 @@ export var ApplyEnvironmentManagedActionResult;
|
|
|
75
88
|
(function (ApplyEnvironmentManagedActionResult) {
|
|
76
89
|
ApplyEnvironmentManagedActionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
77
90
|
})(ApplyEnvironmentManagedActionResult || (ApplyEnvironmentManagedActionResult = {}));
|
|
91
|
+
var ElasticBeanstalkServiceException = (function (_super) {
|
|
92
|
+
__extends(ElasticBeanstalkServiceException, _super);
|
|
93
|
+
function ElasticBeanstalkServiceException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ElasticBeanstalkServiceException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ElasticBeanstalkServiceException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ElasticBeanstalkServiceException.prototype);
|
|
98
|
+
return _this;
|
|
99
|
+
}
|
|
100
|
+
return ElasticBeanstalkServiceException;
|
|
101
|
+
}(__BaseException));
|
|
102
|
+
export { ElasticBeanstalkServiceException };
|
|
103
|
+
var ManagedActionInvalidStateException = (function (_super) {
|
|
104
|
+
__extends(ManagedActionInvalidStateException, _super);
|
|
105
|
+
function ManagedActionInvalidStateException(opts) {
|
|
106
|
+
var _this = _super.call(this, __assign({ name: "ManagedActionInvalidStateException", $fault: "client" }, opts)) || this;
|
|
107
|
+
_this.name = "ManagedActionInvalidStateException";
|
|
108
|
+
_this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(_this, ManagedActionInvalidStateException.prototype);
|
|
110
|
+
return _this;
|
|
111
|
+
}
|
|
112
|
+
return ManagedActionInvalidStateException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { ManagedActionInvalidStateException };
|
|
78
115
|
export var AssociateEnvironmentOperationsRoleMessage;
|
|
79
116
|
(function (AssociateEnvironmentOperationsRoleMessage) {
|
|
80
117
|
AssociateEnvironmentOperationsRoleMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -127,6 +164,18 @@ export var EnvironmentDescriptionsMessage;
|
|
|
127
164
|
(function (EnvironmentDescriptionsMessage) {
|
|
128
165
|
EnvironmentDescriptionsMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
166
|
})(EnvironmentDescriptionsMessage || (EnvironmentDescriptionsMessage = {}));
|
|
167
|
+
var TooManyEnvironmentsException = (function (_super) {
|
|
168
|
+
__extends(TooManyEnvironmentsException, _super);
|
|
169
|
+
function TooManyEnvironmentsException(opts) {
|
|
170
|
+
var _this = _super.call(this, __assign({ name: "TooManyEnvironmentsException", $fault: "client" }, opts)) || this;
|
|
171
|
+
_this.name = "TooManyEnvironmentsException";
|
|
172
|
+
_this.$fault = "client";
|
|
173
|
+
Object.setPrototypeOf(_this, TooManyEnvironmentsException.prototype);
|
|
174
|
+
return _this;
|
|
175
|
+
}
|
|
176
|
+
return TooManyEnvironmentsException;
|
|
177
|
+
}(__BaseException));
|
|
178
|
+
export { TooManyEnvironmentsException };
|
|
130
179
|
export var Tag;
|
|
131
180
|
(function (Tag) {
|
|
132
181
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -135,6 +184,30 @@ export var CreateApplicationMessage;
|
|
|
135
184
|
(function (CreateApplicationMessage) {
|
|
136
185
|
CreateApplicationMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
186
|
})(CreateApplicationMessage || (CreateApplicationMessage = {}));
|
|
187
|
+
var TooManyApplicationsException = (function (_super) {
|
|
188
|
+
__extends(TooManyApplicationsException, _super);
|
|
189
|
+
function TooManyApplicationsException(opts) {
|
|
190
|
+
var _this = _super.call(this, __assign({ name: "TooManyApplicationsException", $fault: "client" }, opts)) || this;
|
|
191
|
+
_this.name = "TooManyApplicationsException";
|
|
192
|
+
_this.$fault = "client";
|
|
193
|
+
Object.setPrototypeOf(_this, TooManyApplicationsException.prototype);
|
|
194
|
+
return _this;
|
|
195
|
+
}
|
|
196
|
+
return TooManyApplicationsException;
|
|
197
|
+
}(__BaseException));
|
|
198
|
+
export { TooManyApplicationsException };
|
|
199
|
+
var CodeBuildNotInServiceRegionException = (function (_super) {
|
|
200
|
+
__extends(CodeBuildNotInServiceRegionException, _super);
|
|
201
|
+
function CodeBuildNotInServiceRegionException(opts) {
|
|
202
|
+
var _this = _super.call(this, __assign({ name: "CodeBuildNotInServiceRegionException", $fault: "client" }, opts)) || this;
|
|
203
|
+
_this.name = "CodeBuildNotInServiceRegionException";
|
|
204
|
+
_this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(_this, CodeBuildNotInServiceRegionException.prototype);
|
|
206
|
+
return _this;
|
|
207
|
+
}
|
|
208
|
+
return CodeBuildNotInServiceRegionException;
|
|
209
|
+
}(__BaseException));
|
|
210
|
+
export { CodeBuildNotInServiceRegionException };
|
|
138
211
|
export var ComputeType;
|
|
139
212
|
(function (ComputeType) {
|
|
140
213
|
ComputeType["BUILD_GENERAL1_LARGE"] = "BUILD_GENERAL1_LARGE";
|
|
@@ -149,6 +222,30 @@ export var CreateApplicationVersionMessage;
|
|
|
149
222
|
(function (CreateApplicationVersionMessage) {
|
|
150
223
|
CreateApplicationVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
224
|
})(CreateApplicationVersionMessage || (CreateApplicationVersionMessage = {}));
|
|
225
|
+
var S3LocationNotInServiceRegionException = (function (_super) {
|
|
226
|
+
__extends(S3LocationNotInServiceRegionException, _super);
|
|
227
|
+
function S3LocationNotInServiceRegionException(opts) {
|
|
228
|
+
var _this = _super.call(this, __assign({ name: "S3LocationNotInServiceRegionException", $fault: "client" }, opts)) || this;
|
|
229
|
+
_this.name = "S3LocationNotInServiceRegionException";
|
|
230
|
+
_this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(_this, S3LocationNotInServiceRegionException.prototype);
|
|
232
|
+
return _this;
|
|
233
|
+
}
|
|
234
|
+
return S3LocationNotInServiceRegionException;
|
|
235
|
+
}(__BaseException));
|
|
236
|
+
export { S3LocationNotInServiceRegionException };
|
|
237
|
+
var TooManyApplicationVersionsException = (function (_super) {
|
|
238
|
+
__extends(TooManyApplicationVersionsException, _super);
|
|
239
|
+
function TooManyApplicationVersionsException(opts) {
|
|
240
|
+
var _this = _super.call(this, __assign({ name: "TooManyApplicationVersionsException", $fault: "client" }, opts)) || this;
|
|
241
|
+
_this.name = "TooManyApplicationVersionsException";
|
|
242
|
+
_this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(_this, TooManyApplicationVersionsException.prototype);
|
|
244
|
+
return _this;
|
|
245
|
+
}
|
|
246
|
+
return TooManyApplicationVersionsException;
|
|
247
|
+
}(__BaseException));
|
|
248
|
+
export { TooManyApplicationVersionsException };
|
|
152
249
|
export var ConfigurationOptionSetting;
|
|
153
250
|
(function (ConfigurationOptionSetting) {
|
|
154
251
|
ConfigurationOptionSetting.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -165,6 +262,30 @@ export var CreateConfigurationTemplateMessage;
|
|
|
165
262
|
(function (CreateConfigurationTemplateMessage) {
|
|
166
263
|
CreateConfigurationTemplateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
264
|
})(CreateConfigurationTemplateMessage || (CreateConfigurationTemplateMessage = {}));
|
|
265
|
+
var TooManyBucketsException = (function (_super) {
|
|
266
|
+
__extends(TooManyBucketsException, _super);
|
|
267
|
+
function TooManyBucketsException(opts) {
|
|
268
|
+
var _this = _super.call(this, __assign({ name: "TooManyBucketsException", $fault: "client" }, opts)) || this;
|
|
269
|
+
_this.name = "TooManyBucketsException";
|
|
270
|
+
_this.$fault = "client";
|
|
271
|
+
Object.setPrototypeOf(_this, TooManyBucketsException.prototype);
|
|
272
|
+
return _this;
|
|
273
|
+
}
|
|
274
|
+
return TooManyBucketsException;
|
|
275
|
+
}(__BaseException));
|
|
276
|
+
export { TooManyBucketsException };
|
|
277
|
+
var TooManyConfigurationTemplatesException = (function (_super) {
|
|
278
|
+
__extends(TooManyConfigurationTemplatesException, _super);
|
|
279
|
+
function TooManyConfigurationTemplatesException(opts) {
|
|
280
|
+
var _this = _super.call(this, __assign({ name: "TooManyConfigurationTemplatesException", $fault: "client" }, opts)) || this;
|
|
281
|
+
_this.name = "TooManyConfigurationTemplatesException";
|
|
282
|
+
_this.$fault = "client";
|
|
283
|
+
Object.setPrototypeOf(_this, TooManyConfigurationTemplatesException.prototype);
|
|
284
|
+
return _this;
|
|
285
|
+
}
|
|
286
|
+
return TooManyConfigurationTemplatesException;
|
|
287
|
+
}(__BaseException));
|
|
288
|
+
export { TooManyConfigurationTemplatesException };
|
|
168
289
|
export var OptionSpecification;
|
|
169
290
|
(function (OptionSpecification) {
|
|
170
291
|
OptionSpecification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -189,18 +310,66 @@ export var CreatePlatformVersionResult;
|
|
|
189
310
|
(function (CreatePlatformVersionResult) {
|
|
190
311
|
CreatePlatformVersionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
312
|
})(CreatePlatformVersionResult || (CreatePlatformVersionResult = {}));
|
|
313
|
+
var TooManyPlatformsException = (function (_super) {
|
|
314
|
+
__extends(TooManyPlatformsException, _super);
|
|
315
|
+
function TooManyPlatformsException(opts) {
|
|
316
|
+
var _this = _super.call(this, __assign({ name: "TooManyPlatformsException", $fault: "client" }, opts)) || this;
|
|
317
|
+
_this.name = "TooManyPlatformsException";
|
|
318
|
+
_this.$fault = "client";
|
|
319
|
+
Object.setPrototypeOf(_this, TooManyPlatformsException.prototype);
|
|
320
|
+
return _this;
|
|
321
|
+
}
|
|
322
|
+
return TooManyPlatformsException;
|
|
323
|
+
}(__BaseException));
|
|
324
|
+
export { TooManyPlatformsException };
|
|
192
325
|
export var CreateStorageLocationResultMessage;
|
|
193
326
|
(function (CreateStorageLocationResultMessage) {
|
|
194
327
|
CreateStorageLocationResultMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
328
|
})(CreateStorageLocationResultMessage || (CreateStorageLocationResultMessage = {}));
|
|
329
|
+
var S3SubscriptionRequiredException = (function (_super) {
|
|
330
|
+
__extends(S3SubscriptionRequiredException, _super);
|
|
331
|
+
function S3SubscriptionRequiredException(opts) {
|
|
332
|
+
var _this = _super.call(this, __assign({ name: "S3SubscriptionRequiredException", $fault: "client" }, opts)) || this;
|
|
333
|
+
_this.name = "S3SubscriptionRequiredException";
|
|
334
|
+
_this.$fault = "client";
|
|
335
|
+
Object.setPrototypeOf(_this, S3SubscriptionRequiredException.prototype);
|
|
336
|
+
return _this;
|
|
337
|
+
}
|
|
338
|
+
return S3SubscriptionRequiredException;
|
|
339
|
+
}(__BaseException));
|
|
340
|
+
export { S3SubscriptionRequiredException };
|
|
196
341
|
export var DeleteApplicationMessage;
|
|
197
342
|
(function (DeleteApplicationMessage) {
|
|
198
343
|
DeleteApplicationMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
344
|
})(DeleteApplicationMessage || (DeleteApplicationMessage = {}));
|
|
345
|
+
var OperationInProgressException = (function (_super) {
|
|
346
|
+
__extends(OperationInProgressException, _super);
|
|
347
|
+
function OperationInProgressException(opts) {
|
|
348
|
+
var _this = _super.call(this, __assign({ name: "OperationInProgressException", $fault: "client" }, opts)) || this;
|
|
349
|
+
_this.name = "OperationInProgressException";
|
|
350
|
+
_this.$fault = "client";
|
|
351
|
+
Object.setPrototypeOf(_this, OperationInProgressException.prototype);
|
|
352
|
+
return _this;
|
|
353
|
+
}
|
|
354
|
+
return OperationInProgressException;
|
|
355
|
+
}(__BaseException));
|
|
356
|
+
export { OperationInProgressException };
|
|
200
357
|
export var DeleteApplicationVersionMessage;
|
|
201
358
|
(function (DeleteApplicationVersionMessage) {
|
|
202
359
|
DeleteApplicationVersionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
360
|
})(DeleteApplicationVersionMessage || (DeleteApplicationVersionMessage = {}));
|
|
361
|
+
var SourceBundleDeletionException = (function (_super) {
|
|
362
|
+
__extends(SourceBundleDeletionException, _super);
|
|
363
|
+
function SourceBundleDeletionException(opts) {
|
|
364
|
+
var _this = _super.call(this, __assign({ name: "SourceBundleDeletionException", $fault: "client" }, opts)) || this;
|
|
365
|
+
_this.name = "SourceBundleDeletionException";
|
|
366
|
+
_this.$fault = "client";
|
|
367
|
+
Object.setPrototypeOf(_this, SourceBundleDeletionException.prototype);
|
|
368
|
+
return _this;
|
|
369
|
+
}
|
|
370
|
+
return SourceBundleDeletionException;
|
|
371
|
+
}(__BaseException));
|
|
372
|
+
export { SourceBundleDeletionException };
|
|
204
373
|
export var DeleteConfigurationTemplateMessage;
|
|
205
374
|
(function (DeleteConfigurationTemplateMessage) {
|
|
206
375
|
DeleteConfigurationTemplateMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -217,6 +386,18 @@ export var DeletePlatformVersionResult;
|
|
|
217
386
|
(function (DeletePlatformVersionResult) {
|
|
218
387
|
DeletePlatformVersionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
388
|
})(DeletePlatformVersionResult || (DeletePlatformVersionResult = {}));
|
|
389
|
+
var PlatformVersionStillReferencedException = (function (_super) {
|
|
390
|
+
__extends(PlatformVersionStillReferencedException, _super);
|
|
391
|
+
function PlatformVersionStillReferencedException(opts) {
|
|
392
|
+
var _this = _super.call(this, __assign({ name: "PlatformVersionStillReferencedException", $fault: "client" }, opts)) || this;
|
|
393
|
+
_this.name = "PlatformVersionStillReferencedException";
|
|
394
|
+
_this.$fault = "client";
|
|
395
|
+
Object.setPrototypeOf(_this, PlatformVersionStillReferencedException.prototype);
|
|
396
|
+
return _this;
|
|
397
|
+
}
|
|
398
|
+
return PlatformVersionStillReferencedException;
|
|
399
|
+
}(__BaseException));
|
|
400
|
+
export { PlatformVersionStillReferencedException };
|
|
220
401
|
export var ResourceQuota;
|
|
221
402
|
(function (ResourceQuota) {
|
|
222
403
|
ResourceQuota.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -284,6 +465,18 @@ export var DescribeEnvironmentHealthResult;
|
|
|
284
465
|
(function (DescribeEnvironmentHealthResult) {
|
|
285
466
|
DescribeEnvironmentHealthResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
467
|
})(DescribeEnvironmentHealthResult || (DescribeEnvironmentHealthResult = {}));
|
|
468
|
+
var InvalidRequestException = (function (_super) {
|
|
469
|
+
__extends(InvalidRequestException, _super);
|
|
470
|
+
function InvalidRequestException(opts) {
|
|
471
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
472
|
+
_this.name = "InvalidRequestException";
|
|
473
|
+
_this.$fault = "client";
|
|
474
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
475
|
+
return _this;
|
|
476
|
+
}
|
|
477
|
+
return InvalidRequestException;
|
|
478
|
+
}(__BaseException));
|
|
479
|
+
export { InvalidRequestException };
|
|
287
480
|
export var DescribeEnvironmentManagedActionHistoryRequest;
|
|
288
481
|
(function (DescribeEnvironmentManagedActionHistoryRequest) {
|
|
289
482
|
DescribeEnvironmentManagedActionHistoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -462,10 +655,34 @@ export var ListTagsForResourceMessage;
|
|
|
462
655
|
(function (ListTagsForResourceMessage) {
|
|
463
656
|
ListTagsForResourceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
464
657
|
})(ListTagsForResourceMessage || (ListTagsForResourceMessage = {}));
|
|
658
|
+
var ResourceNotFoundException = (function (_super) {
|
|
659
|
+
__extends(ResourceNotFoundException, _super);
|
|
660
|
+
function ResourceNotFoundException(opts) {
|
|
661
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
662
|
+
_this.name = "ResourceNotFoundException";
|
|
663
|
+
_this.$fault = "client";
|
|
664
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
665
|
+
return _this;
|
|
666
|
+
}
|
|
667
|
+
return ResourceNotFoundException;
|
|
668
|
+
}(__BaseException));
|
|
669
|
+
export { ResourceNotFoundException };
|
|
465
670
|
export var ResourceTagsDescriptionMessage;
|
|
466
671
|
(function (ResourceTagsDescriptionMessage) {
|
|
467
672
|
ResourceTagsDescriptionMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
468
673
|
})(ResourceTagsDescriptionMessage || (ResourceTagsDescriptionMessage = {}));
|
|
674
|
+
var ResourceTypeNotSupportedException = (function (_super) {
|
|
675
|
+
__extends(ResourceTypeNotSupportedException, _super);
|
|
676
|
+
function ResourceTypeNotSupportedException(opts) {
|
|
677
|
+
var _this = _super.call(this, __assign({ name: "ResourceTypeNotSupportedException", $fault: "client" }, opts)) || this;
|
|
678
|
+
_this.name = "ResourceTypeNotSupportedException";
|
|
679
|
+
_this.$fault = "client";
|
|
680
|
+
Object.setPrototypeOf(_this, ResourceTypeNotSupportedException.prototype);
|
|
681
|
+
return _this;
|
|
682
|
+
}
|
|
683
|
+
return ResourceTypeNotSupportedException;
|
|
684
|
+
}(__BaseException));
|
|
685
|
+
export { ResourceTypeNotSupportedException };
|
|
469
686
|
export var RebuildEnvironmentMessage;
|
|
470
687
|
(function (RebuildEnvironmentMessage) {
|
|
471
688
|
RebuildEnvironmentMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -518,6 +735,18 @@ export var UpdateEnvironmentMessage;
|
|
|
518
735
|
(function (UpdateEnvironmentMessage) {
|
|
519
736
|
UpdateEnvironmentMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
520
737
|
})(UpdateEnvironmentMessage || (UpdateEnvironmentMessage = {}));
|
|
738
|
+
var TooManyTagsException = (function (_super) {
|
|
739
|
+
__extends(TooManyTagsException, _super);
|
|
740
|
+
function TooManyTagsException(opts) {
|
|
741
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
742
|
+
_this.name = "TooManyTagsException";
|
|
743
|
+
_this.$fault = "client";
|
|
744
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
745
|
+
return _this;
|
|
746
|
+
}
|
|
747
|
+
return TooManyTagsException;
|
|
748
|
+
}(__BaseException));
|
|
749
|
+
export { TooManyTagsException };
|
|
521
750
|
export var UpdateTagsForResourceMessage;
|
|
522
751
|
(function (UpdateTagsForResourceMessage) {
|
|
523
752
|
UpdateTagsForResourceMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|