@aws-sdk/client-app-mesh 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/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./AppMeshClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppMeshServiceException } from "./models/AppMeshServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var AppMeshServiceException = (function (_super) {
4
+ __extends(AppMeshServiceException, _super);
5
+ function AppMeshServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, AppMeshServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return AppMeshServiceException;
11
+ }(__ServiceException));
12
+ export { AppMeshServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException";
2
3
  export var FileAccessLog;
3
4
  (function (FileAccessLog) {
4
5
  FileAccessLog.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -18,6 +19,43 @@ export var AccessLog;
18
19
  return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
19
20
  };
20
21
  })(AccessLog || (AccessLog = {}));
22
+ var BadRequestException = (function (_super) {
23
+ __extends(BadRequestException, _super);
24
+ function BadRequestException(opts) {
25
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
26
+ _this.name = "BadRequestException";
27
+ _this.$fault = "client";
28
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
29
+ return _this;
30
+ }
31
+ return BadRequestException;
32
+ }(__BaseException));
33
+ export { BadRequestException };
34
+ var ForbiddenException = (function (_super) {
35
+ __extends(ForbiddenException, _super);
36
+ function ForbiddenException(opts) {
37
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
38
+ _this.name = "ForbiddenException";
39
+ _this.$fault = "client";
40
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
41
+ return _this;
42
+ }
43
+ return ForbiddenException;
44
+ }(__BaseException));
45
+ export { ForbiddenException };
46
+ var InternalServerErrorException = (function (_super) {
47
+ __extends(InternalServerErrorException, _super);
48
+ function InternalServerErrorException(opts) {
49
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
50
+ _this.name = "InternalServerErrorException";
51
+ _this.$fault = "server";
52
+ _this.$retryable = {};
53
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
54
+ return _this;
55
+ }
56
+ return InternalServerErrorException;
57
+ }(__BaseException));
58
+ export { InternalServerErrorException };
21
59
  export var ListTagsForResourceInput;
22
60
  (function (ListTagsForResourceInput) {
23
61
  ListTagsForResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -30,6 +68,58 @@ export var ListTagsForResourceOutput;
30
68
  (function (ListTagsForResourceOutput) {
31
69
  ListTagsForResourceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
32
70
  })(ListTagsForResourceOutput || (ListTagsForResourceOutput = {}));
71
+ var NotFoundException = (function (_super) {
72
+ __extends(NotFoundException, _super);
73
+ function NotFoundException(opts) {
74
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
75
+ _this.name = "NotFoundException";
76
+ _this.$fault = "client";
77
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
78
+ return _this;
79
+ }
80
+ return NotFoundException;
81
+ }(__BaseException));
82
+ export { NotFoundException };
83
+ var ServiceUnavailableException = (function (_super) {
84
+ __extends(ServiceUnavailableException, _super);
85
+ function ServiceUnavailableException(opts) {
86
+ var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
87
+ _this.name = "ServiceUnavailableException";
88
+ _this.$fault = "server";
89
+ _this.$retryable = {};
90
+ Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
91
+ return _this;
92
+ }
93
+ return ServiceUnavailableException;
94
+ }(__BaseException));
95
+ export { ServiceUnavailableException };
96
+ var TooManyRequestsException = (function (_super) {
97
+ __extends(TooManyRequestsException, _super);
98
+ function TooManyRequestsException(opts) {
99
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
100
+ _this.name = "TooManyRequestsException";
101
+ _this.$fault = "client";
102
+ _this.$retryable = {
103
+ throttling: true,
104
+ };
105
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
106
+ return _this;
107
+ }
108
+ return TooManyRequestsException;
109
+ }(__BaseException));
110
+ export { TooManyRequestsException };
111
+ var ConflictException = (function (_super) {
112
+ __extends(ConflictException, _super);
113
+ function ConflictException(opts) {
114
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
115
+ _this.name = "ConflictException";
116
+ _this.$fault = "client";
117
+ Object.setPrototypeOf(_this, ConflictException.prototype);
118
+ return _this;
119
+ }
120
+ return ConflictException;
121
+ }(__BaseException));
122
+ export { ConflictException };
33
123
  export var EgressFilterType;
34
124
  (function (EgressFilterType) {
35
125
  EgressFilterType["ALLOW_ALL"] = "ALLOW_ALL";
@@ -69,6 +159,18 @@ export var CreateMeshOutput;
69
159
  (function (CreateMeshOutput) {
70
160
  CreateMeshOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
71
161
  })(CreateMeshOutput || (CreateMeshOutput = {}));
162
+ var LimitExceededException = (function (_super) {
163
+ __extends(LimitExceededException, _super);
164
+ function LimitExceededException(opts) {
165
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
166
+ _this.name = "LimitExceededException";
167
+ _this.$fault = "client";
168
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
169
+ return _this;
170
+ }
171
+ return LimitExceededException;
172
+ }(__BaseException));
173
+ export { LimitExceededException };
72
174
  export var DeleteMeshInput;
73
175
  (function (DeleteMeshInput) {
74
176
  DeleteMeshInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -77,6 +179,18 @@ export var DeleteMeshOutput;
77
179
  (function (DeleteMeshOutput) {
78
180
  DeleteMeshOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
79
181
  })(DeleteMeshOutput || (DeleteMeshOutput = {}));
182
+ var ResourceInUseException = (function (_super) {
183
+ __extends(ResourceInUseException, _super);
184
+ function ResourceInUseException(opts) {
185
+ var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
186
+ _this.name = "ResourceInUseException";
187
+ _this.$fault = "client";
188
+ Object.setPrototypeOf(_this, ResourceInUseException.prototype);
189
+ return _this;
190
+ }
191
+ return ResourceInUseException;
192
+ }(__BaseException));
193
+ export { ResourceInUseException };
80
194
  export var DescribeMeshInput;
81
195
  (function (DescribeMeshInput) {
82
196
  DescribeMeshInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1312,6 +1426,18 @@ export var TagResourceOutput;
1312
1426
  (function (TagResourceOutput) {
1313
1427
  TagResourceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1314
1428
  })(TagResourceOutput || (TagResourceOutput = {}));
1429
+ var TooManyTagsException = (function (_super) {
1430
+ __extends(TooManyTagsException, _super);
1431
+ function TooManyTagsException(opts) {
1432
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
1433
+ _this.name = "TooManyTagsException";
1434
+ _this.$fault = "client";
1435
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
1436
+ return _this;
1437
+ }
1438
+ return TooManyTagsException;
1439
+ }(__BaseException));
1440
+ export { TooManyTagsException };
1315
1441
  export var UntagResourceInput;
1316
1442
  (function (UntagResourceInput) {
1317
1443
  UntagResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };