@aws-sdk/client-app-mesh 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/AppMeshServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +141 -5
- package/dist-cjs/protocols/Aws_restJson1.js +529 -2068
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppMeshServiceException.js +12 -0
- package/dist-es/models/models_0.js +127 -1
- package/dist-es/protocols/Aws_restJson1.js +1078 -2232
- package/dist-types/AppMeshClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppMeshServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +73 -42
- 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/AppMeshClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppMeshServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -42
- 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 +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-app-mesh
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-app-mesh
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-app-mesh
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppMeshServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./AppMesh"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./AppMeshClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var AppMeshServiceException_1 = require("./models/AppMeshServiceException");
|
|
11
|
+
Object.defineProperty(exports, "AppMeshServiceException", { enumerable: true, get: function () { return AppMeshServiceException_1.AppMeshServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppMeshServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class AppMeshServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, AppMeshServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.AppMeshServiceException = AppMeshServiceException;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagResourceOutput = exports.TagResourceInput = exports.UpdateVirtualServiceOutput = exports.UpdateVirtualServiceInput = exports.ListVirtualServicesOutput = exports.VirtualServiceRef = exports.ListVirtualServicesInput = exports.DescribeVirtualServiceOutput = exports.DescribeVirtualServiceInput = exports.DeleteVirtualServiceOutput = exports.DeleteVirtualServiceInput = exports.CreateVirtualServiceOutput = exports.VirtualServiceData = exports.VirtualServiceStatus = exports.VirtualServiceStatusCode = exports.CreateVirtualServiceInput = exports.VirtualServiceSpec = exports.VirtualServiceProvider = exports.VirtualRouterServiceProvider = exports.VirtualNodeServiceProvider = exports.UpdateVirtualRouterOutput = exports.UpdateVirtualRouterInput = exports.UpdateRouteOutput = exports.UpdateRouteInput = exports.ListRoutesOutput = exports.RouteRef = exports.ListRoutesInput = exports.DescribeRouteOutput = exports.DescribeRouteInput = exports.DeleteRouteOutput = exports.DeleteRouteInput = void 0;
|
|
3
|
+
exports.VirtualGatewayPortProtocol = exports.VirtualGatewayConnectionPool = exports.VirtualGatewayHttp2ConnectionPool = exports.VirtualGatewayHttpConnectionPool = exports.VirtualGatewayGrpcConnectionPool = exports.VirtualGatewayBackendDefaults = exports.VirtualGatewayClientPolicy = exports.VirtualGatewayClientPolicyTls = exports.VirtualGatewayTlsValidationContext = exports.VirtualGatewayTlsValidationContextTrust = exports.VirtualGatewayTlsValidationContextSdsTrust = exports.VirtualGatewayTlsValidationContextFileTrust = exports.VirtualGatewayTlsValidationContextAcmTrust = exports.SubjectAlternativeNames = exports.SubjectAlternativeNameMatchers = exports.VirtualGatewayClientTlsCertificate = exports.VirtualGatewayListenerTlsSdsCertificate = exports.VirtualGatewayListenerTlsFileCertificate = exports.UpdateMeshOutput = exports.UpdateMeshInput = exports.ListMeshesOutput = exports.MeshRef = exports.ListMeshesInput = exports.DescribeMeshOutput = exports.DescribeMeshInput = exports.ResourceInUseException = exports.DeleteMeshOutput = exports.DeleteMeshInput = exports.LimitExceededException = exports.CreateMeshOutput = exports.MeshData = exports.MeshStatus = exports.MeshStatusCode = exports.ResourceMetadata = exports.CreateMeshInput = exports.MeshSpec = exports.EgressFilter = exports.EgressFilterType = exports.ConflictException = exports.TooManyRequestsException = exports.ServiceUnavailableException = exports.NotFoundException = exports.ListTagsForResourceOutput = exports.TagRef = exports.ListTagsForResourceInput = exports.InternalServerErrorException = exports.ForbiddenException = exports.BadRequestException = exports.AccessLog = exports.FileAccessLog = void 0;
|
|
4
|
+
exports.GatewayRouteStatus = exports.GatewayRouteStatusCode = exports.CreateGatewayRouteInput = exports.GatewayRouteSpec = exports.HttpGatewayRoute = exports.HttpGatewayRouteMatch = exports.HttpQueryParameter = exports.QueryParameterMatch = exports.HttpPathMatch = exports.HttpMethod = exports.HttpGatewayRouteHeader = exports.HeaderMatchMethod = exports.HttpGatewayRouteAction = exports.HttpGatewayRouteRewrite = exports.HttpGatewayRoutePrefixRewrite = exports.HttpGatewayRoutePathRewrite = exports.GrpcGatewayRoute = exports.GrpcGatewayRouteMatch = exports.GrpcGatewayRouteMetadata = exports.GrpcMetadataMatchMethod = exports.MatchRange = exports.GatewayRouteHostnameMatch = exports.GrpcGatewayRouteAction = exports.GatewayRouteTarget = exports.GatewayRouteVirtualService = exports.GrpcGatewayRouteRewrite = exports.GatewayRouteHostnameRewrite = exports.DefaultGatewayRouteRewrite = exports.DescribeVirtualGatewayOutput = exports.DescribeVirtualGatewayInput = exports.DeleteVirtualGatewayOutput = exports.DeleteVirtualGatewayInput = exports.CreateVirtualGatewayOutput = exports.VirtualGatewayData = exports.VirtualGatewayStatus = exports.VirtualGatewayStatusCode = exports.CreateVirtualGatewayInput = exports.VirtualGatewaySpec = exports.VirtualGatewayLogging = exports.VirtualGatewayAccessLog = exports.VirtualGatewayFileAccessLog = exports.VirtualGatewayListener = exports.VirtualGatewayListenerTls = exports.VirtualGatewayListenerTlsValidationContext = exports.VirtualGatewayListenerTlsValidationContextTrust = exports.VirtualGatewayListenerTlsMode = exports.VirtualGatewayListenerTlsCertificate = exports.VirtualGatewayListenerTlsAcmCertificate = exports.VirtualGatewayPortMapping = exports.VirtualGatewayHealthCheckPolicy = void 0;
|
|
5
|
+
exports.ListenerTls = exports.ListenerTlsValidationContext = exports.ListenerTlsValidationContextTrust = exports.ListenerTlsMode = exports.ListenerTlsCertificate = exports.ListenerTlsAcmCertificate = exports.ListenerTimeout = exports.TcpTimeout = exports.HttpTimeout = exports.GrpcTimeout = exports.PortMapping = exports.OutlierDetection = exports.Duration = exports.DurationUnit = exports.HealthCheckPolicy = exports.PortProtocol = exports.VirtualNodeConnectionPool = exports.VirtualNodeTcpConnectionPool = exports.VirtualNodeHttp2ConnectionPool = exports.VirtualNodeHttpConnectionPool = exports.VirtualNodeGrpcConnectionPool = exports.Backend = exports.VirtualServiceBackend = exports.BackendDefaults = exports.ClientPolicy = exports.ClientPolicyTls = exports.TlsValidationContext = exports.TlsValidationContextTrust = exports.TlsValidationContextSdsTrust = exports.TlsValidationContextFileTrust = exports.TlsValidationContextAcmTrust = exports.ClientTlsCertificate = exports.ListenerTlsSdsCertificate = exports.ListenerTlsFileCertificate = exports.UpdateVirtualGatewayOutput = exports.UpdateVirtualGatewayInput = exports.ListVirtualGatewaysOutput = exports.VirtualGatewayRef = exports.ListVirtualGatewaysInput = exports.UpdateGatewayRouteOutput = exports.UpdateGatewayRouteInput = exports.ListGatewayRoutesOutput = exports.GatewayRouteRef = exports.ListGatewayRoutesInput = exports.DescribeGatewayRouteOutput = exports.DescribeGatewayRouteInput = exports.DeleteGatewayRouteOutput = exports.DeleteGatewayRouteInput = exports.CreateGatewayRouteOutput = exports.GatewayRouteData = void 0;
|
|
6
|
+
exports.HttpRetryPolicy = exports.HttpRouteMatch = exports.HttpScheme = exports.HttpRouteHeader = exports.HttpRouteAction = exports.GrpcRoute = exports.GrpcRetryPolicy = exports.TcpRetryPolicyEvent = exports.GrpcRetryPolicyEvent = exports.GrpcRouteMatch = exports.GrpcRouteMetadata = exports.GrpcRouteMetadataMatchMethod = exports.GrpcRouteAction = exports.WeightedTarget = exports.ListVirtualRoutersOutput = exports.VirtualRouterRef = exports.ListVirtualRoutersInput = exports.DescribeVirtualRouterOutput = exports.DescribeVirtualRouterInput = exports.DeleteVirtualRouterOutput = exports.DeleteVirtualRouterInput = exports.CreateVirtualRouterOutput = exports.VirtualRouterData = exports.VirtualRouterStatus = exports.VirtualRouterStatusCode = exports.CreateVirtualRouterInput = exports.VirtualRouterSpec = exports.VirtualRouterListener = exports.UpdateVirtualNodeOutput = exports.UpdateVirtualNodeInput = exports.ListVirtualNodesOutput = exports.VirtualNodeRef = exports.ListVirtualNodesInput = exports.DescribeVirtualNodeOutput = exports.DescribeVirtualNodeInput = exports.DeleteVirtualNodeOutput = exports.DeleteVirtualNodeInput = exports.CreateVirtualNodeOutput = exports.VirtualNodeData = exports.VirtualNodeStatus = exports.VirtualNodeStatusCode = exports.CreateVirtualNodeInput = exports.VirtualNodeSpec = exports.ServiceDiscovery = exports.DnsServiceDiscovery = exports.DnsResponseType = exports.AwsCloudMapServiceDiscovery = exports.AwsCloudMapInstanceAttribute = exports.Logging = exports.Listener = void 0;
|
|
7
|
+
exports.UntagResourceOutput = exports.UntagResourceInput = exports.TooManyTagsException = exports.TagResourceOutput = exports.TagResourceInput = exports.UpdateVirtualServiceOutput = exports.UpdateVirtualServiceInput = exports.ListVirtualServicesOutput = exports.VirtualServiceRef = exports.ListVirtualServicesInput = exports.DescribeVirtualServiceOutput = exports.DescribeVirtualServiceInput = exports.DeleteVirtualServiceOutput = exports.DeleteVirtualServiceInput = exports.CreateVirtualServiceOutput = exports.VirtualServiceData = exports.VirtualServiceStatus = exports.VirtualServiceStatusCode = exports.CreateVirtualServiceInput = exports.VirtualServiceSpec = exports.VirtualServiceProvider = exports.VirtualRouterServiceProvider = exports.VirtualNodeServiceProvider = exports.UpdateVirtualRouterOutput = exports.UpdateVirtualRouterInput = exports.UpdateRouteOutput = exports.UpdateRouteInput = exports.ListRoutesOutput = exports.RouteRef = exports.ListRoutesInput = exports.DescribeRouteOutput = exports.DescribeRouteInput = exports.DeleteRouteOutput = exports.DeleteRouteInput = exports.CreateRouteOutput = exports.RouteData = exports.RouteStatus = exports.RouteStatusCode = exports.CreateRouteInput = exports.RouteSpec = exports.TcpRoute = exports.TcpRouteAction = exports.HttpRoute = void 0;
|
|
8
|
+
const AppMeshServiceException_1 = require("./AppMeshServiceException");
|
|
8
9
|
var FileAccessLog;
|
|
9
10
|
(function (FileAccessLog) {
|
|
10
11
|
FileAccessLog.filterSensitiveLog = (obj) => ({
|
|
@@ -25,6 +26,46 @@ var AccessLog;
|
|
|
25
26
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
26
27
|
};
|
|
27
28
|
})(AccessLog = exports.AccessLog || (exports.AccessLog = {}));
|
|
29
|
+
class BadRequestException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
30
|
+
constructor(opts) {
|
|
31
|
+
super({
|
|
32
|
+
name: "BadRequestException",
|
|
33
|
+
$fault: "client",
|
|
34
|
+
...opts,
|
|
35
|
+
});
|
|
36
|
+
this.name = "BadRequestException";
|
|
37
|
+
this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.BadRequestException = BadRequestException;
|
|
42
|
+
class ForbiddenException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
43
|
+
constructor(opts) {
|
|
44
|
+
super({
|
|
45
|
+
name: "ForbiddenException",
|
|
46
|
+
$fault: "client",
|
|
47
|
+
...opts,
|
|
48
|
+
});
|
|
49
|
+
this.name = "ForbiddenException";
|
|
50
|
+
this.$fault = "client";
|
|
51
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
exports.ForbiddenException = ForbiddenException;
|
|
55
|
+
class InternalServerErrorException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "InternalServerErrorException",
|
|
59
|
+
$fault: "server",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
this.name = "InternalServerErrorException";
|
|
63
|
+
this.$fault = "server";
|
|
64
|
+
this.$retryable = {};
|
|
65
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
28
69
|
var ListTagsForResourceInput;
|
|
29
70
|
(function (ListTagsForResourceInput) {
|
|
30
71
|
ListTagsForResourceInput.filterSensitiveLog = (obj) => ({
|
|
@@ -43,6 +84,62 @@ var ListTagsForResourceOutput;
|
|
|
43
84
|
...obj,
|
|
44
85
|
});
|
|
45
86
|
})(ListTagsForResourceOutput = exports.ListTagsForResourceOutput || (exports.ListTagsForResourceOutput = {}));
|
|
87
|
+
class NotFoundException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
88
|
+
constructor(opts) {
|
|
89
|
+
super({
|
|
90
|
+
name: "NotFoundException",
|
|
91
|
+
$fault: "client",
|
|
92
|
+
...opts,
|
|
93
|
+
});
|
|
94
|
+
this.name = "NotFoundException";
|
|
95
|
+
this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.NotFoundException = NotFoundException;
|
|
100
|
+
class ServiceUnavailableException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "ServiceUnavailableException",
|
|
104
|
+
$fault: "server",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
this.name = "ServiceUnavailableException";
|
|
108
|
+
this.$fault = "server";
|
|
109
|
+
this.$retryable = {};
|
|
110
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
114
|
+
class TooManyRequestsException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "TooManyRequestsException",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
this.name = "TooManyRequestsException";
|
|
122
|
+
this.$fault = "client";
|
|
123
|
+
this.$retryable = {
|
|
124
|
+
throttling: true,
|
|
125
|
+
};
|
|
126
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
130
|
+
class ConflictException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
131
|
+
constructor(opts) {
|
|
132
|
+
super({
|
|
133
|
+
name: "ConflictException",
|
|
134
|
+
$fault: "client",
|
|
135
|
+
...opts,
|
|
136
|
+
});
|
|
137
|
+
this.name = "ConflictException";
|
|
138
|
+
this.$fault = "client";
|
|
139
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
exports.ConflictException = ConflictException;
|
|
46
143
|
var EgressFilterType;
|
|
47
144
|
(function (EgressFilterType) {
|
|
48
145
|
EgressFilterType["ALLOW_ALL"] = "ALLOW_ALL";
|
|
@@ -96,6 +193,19 @@ var CreateMeshOutput;
|
|
|
96
193
|
...obj,
|
|
97
194
|
});
|
|
98
195
|
})(CreateMeshOutput = exports.CreateMeshOutput || (exports.CreateMeshOutput = {}));
|
|
196
|
+
class LimitExceededException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "LimitExceededException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
this.name = "LimitExceededException";
|
|
204
|
+
this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
exports.LimitExceededException = LimitExceededException;
|
|
99
209
|
var DeleteMeshInput;
|
|
100
210
|
(function (DeleteMeshInput) {
|
|
101
211
|
DeleteMeshInput.filterSensitiveLog = (obj) => ({
|
|
@@ -108,6 +218,19 @@ var DeleteMeshOutput;
|
|
|
108
218
|
...obj,
|
|
109
219
|
});
|
|
110
220
|
})(DeleteMeshOutput = exports.DeleteMeshOutput || (exports.DeleteMeshOutput = {}));
|
|
221
|
+
class ResourceInUseException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
222
|
+
constructor(opts) {
|
|
223
|
+
super({
|
|
224
|
+
name: "ResourceInUseException",
|
|
225
|
+
$fault: "client",
|
|
226
|
+
...opts,
|
|
227
|
+
});
|
|
228
|
+
this.name = "ResourceInUseException";
|
|
229
|
+
this.$fault = "client";
|
|
230
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
111
234
|
var DescribeMeshInput;
|
|
112
235
|
(function (DescribeMeshInput) {
|
|
113
236
|
DescribeMeshInput.filterSensitiveLog = (obj) => ({
|
|
@@ -1747,6 +1870,19 @@ var TagResourceOutput;
|
|
|
1747
1870
|
...obj,
|
|
1748
1871
|
});
|
|
1749
1872
|
})(TagResourceOutput = exports.TagResourceOutput || (exports.TagResourceOutput = {}));
|
|
1873
|
+
class TooManyTagsException extends AppMeshServiceException_1.AppMeshServiceException {
|
|
1874
|
+
constructor(opts) {
|
|
1875
|
+
super({
|
|
1876
|
+
name: "TooManyTagsException",
|
|
1877
|
+
$fault: "client",
|
|
1878
|
+
...opts,
|
|
1879
|
+
});
|
|
1880
|
+
this.name = "TooManyTagsException";
|
|
1881
|
+
this.$fault = "client";
|
|
1882
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1750
1886
|
var UntagResourceInput;
|
|
1751
1887
|
(function (UntagResourceInput) {
|
|
1752
1888
|
UntagResourceInput.filterSensitiveLog = (obj) => ({
|