@aws-sdk/client-ram 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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RAMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +289 -2
- package/dist-cjs/protocols/Aws_restJson1.js +437 -1523
- package/dist-es/index.js +1 -0
- package/dist-es/models/RAMServiceException.js +12 -0
- package/dist-es/models/models_0.js +266 -1
- package/dist-es/protocols/Aws_restJson1.js +779 -1646
- package/dist-types/RAMClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RAMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +156 -89
- 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/RAMClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RAMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +112 -89
- 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 +27 -27
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 RAMServiceException = (function (_super) {
|
|
4
|
+
__extends(RAMServiceException, _super);
|
|
5
|
+
function RAMServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, RAMServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return RAMServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { RAMServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { RAMServiceException as __BaseException } from "./RAMServiceException";
|
|
2
3
|
export var AcceptResourceShareInvitationRequest;
|
|
3
4
|
(function (AcceptResourceShareInvitationRequest) {
|
|
4
5
|
AcceptResourceShareInvitationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -15,6 +16,126 @@ export var AcceptResourceShareInvitationResponse;
|
|
|
15
16
|
(function (AcceptResourceShareInvitationResponse) {
|
|
16
17
|
AcceptResourceShareInvitationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
18
|
})(AcceptResourceShareInvitationResponse || (AcceptResourceShareInvitationResponse = {}));
|
|
19
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
20
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
21
|
+
function IdempotentParameterMismatchException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
23
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
24
|
+
_this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return IdempotentParameterMismatchException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { IdempotentParameterMismatchException };
|
|
31
|
+
var InvalidClientTokenException = (function (_super) {
|
|
32
|
+
__extends(InvalidClientTokenException, _super);
|
|
33
|
+
function InvalidClientTokenException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "InvalidClientTokenException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "InvalidClientTokenException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, InvalidClientTokenException.prototype);
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return InvalidClientTokenException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { InvalidClientTokenException };
|
|
43
|
+
var MalformedArnException = (function (_super) {
|
|
44
|
+
__extends(MalformedArnException, _super);
|
|
45
|
+
function MalformedArnException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "MalformedArnException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "MalformedArnException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, MalformedArnException.prototype);
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return MalformedArnException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { MalformedArnException };
|
|
55
|
+
var OperationNotPermittedException = (function (_super) {
|
|
56
|
+
__extends(OperationNotPermittedException, _super);
|
|
57
|
+
function OperationNotPermittedException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "OperationNotPermittedException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return OperationNotPermittedException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { OperationNotPermittedException };
|
|
67
|
+
var ResourceShareInvitationAlreadyAcceptedException = (function (_super) {
|
|
68
|
+
__extends(ResourceShareInvitationAlreadyAcceptedException, _super);
|
|
69
|
+
function ResourceShareInvitationAlreadyAcceptedException(opts) {
|
|
70
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationAlreadyAcceptedException", $fault: "client" }, opts)) || this;
|
|
71
|
+
_this.name = "ResourceShareInvitationAlreadyAcceptedException";
|
|
72
|
+
_this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationAlreadyAcceptedException.prototype);
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
return ResourceShareInvitationAlreadyAcceptedException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { ResourceShareInvitationAlreadyAcceptedException };
|
|
79
|
+
var ResourceShareInvitationAlreadyRejectedException = (function (_super) {
|
|
80
|
+
__extends(ResourceShareInvitationAlreadyRejectedException, _super);
|
|
81
|
+
function ResourceShareInvitationAlreadyRejectedException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationAlreadyRejectedException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ResourceShareInvitationAlreadyRejectedException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationAlreadyRejectedException.prototype);
|
|
86
|
+
return _this;
|
|
87
|
+
}
|
|
88
|
+
return ResourceShareInvitationAlreadyRejectedException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { ResourceShareInvitationAlreadyRejectedException };
|
|
91
|
+
var ResourceShareInvitationArnNotFoundException = (function (_super) {
|
|
92
|
+
__extends(ResourceShareInvitationArnNotFoundException, _super);
|
|
93
|
+
function ResourceShareInvitationArnNotFoundException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationArnNotFoundException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ResourceShareInvitationArnNotFoundException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationArnNotFoundException.prototype);
|
|
98
|
+
return _this;
|
|
99
|
+
}
|
|
100
|
+
return ResourceShareInvitationArnNotFoundException;
|
|
101
|
+
}(__BaseException));
|
|
102
|
+
export { ResourceShareInvitationArnNotFoundException };
|
|
103
|
+
var ResourceShareInvitationExpiredException = (function (_super) {
|
|
104
|
+
__extends(ResourceShareInvitationExpiredException, _super);
|
|
105
|
+
function ResourceShareInvitationExpiredException(opts) {
|
|
106
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareInvitationExpiredException", $fault: "client" }, opts)) || this;
|
|
107
|
+
_this.name = "ResourceShareInvitationExpiredException";
|
|
108
|
+
_this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(_this, ResourceShareInvitationExpiredException.prototype);
|
|
110
|
+
return _this;
|
|
111
|
+
}
|
|
112
|
+
return ResourceShareInvitationExpiredException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { ResourceShareInvitationExpiredException };
|
|
115
|
+
var ServerInternalException = (function (_super) {
|
|
116
|
+
__extends(ServerInternalException, _super);
|
|
117
|
+
function ServerInternalException(opts) {
|
|
118
|
+
var _this = _super.call(this, __assign({ name: "ServerInternalException", $fault: "server" }, opts)) || this;
|
|
119
|
+
_this.name = "ServerInternalException";
|
|
120
|
+
_this.$fault = "server";
|
|
121
|
+
Object.setPrototypeOf(_this, ServerInternalException.prototype);
|
|
122
|
+
return _this;
|
|
123
|
+
}
|
|
124
|
+
return ServerInternalException;
|
|
125
|
+
}(__BaseException));
|
|
126
|
+
export { ServerInternalException };
|
|
127
|
+
var ServiceUnavailableException = (function (_super) {
|
|
128
|
+
__extends(ServiceUnavailableException, _super);
|
|
129
|
+
function ServiceUnavailableException(opts) {
|
|
130
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
131
|
+
_this.name = "ServiceUnavailableException";
|
|
132
|
+
_this.$fault = "server";
|
|
133
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return ServiceUnavailableException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ServiceUnavailableException };
|
|
18
139
|
export var AssociateResourceShareRequest;
|
|
19
140
|
(function (AssociateResourceShareRequest) {
|
|
20
141
|
AssociateResourceShareRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -23,6 +144,66 @@ export var AssociateResourceShareResponse;
|
|
|
23
144
|
(function (AssociateResourceShareResponse) {
|
|
24
145
|
AssociateResourceShareResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
25
146
|
})(AssociateResourceShareResponse || (AssociateResourceShareResponse = {}));
|
|
147
|
+
var InvalidParameterException = (function (_super) {
|
|
148
|
+
__extends(InvalidParameterException, _super);
|
|
149
|
+
function InvalidParameterException(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "InvalidParameterException";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
154
|
+
return _this;
|
|
155
|
+
}
|
|
156
|
+
return InvalidParameterException;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { InvalidParameterException };
|
|
159
|
+
var InvalidStateTransitionException = (function (_super) {
|
|
160
|
+
__extends(InvalidStateTransitionException, _super);
|
|
161
|
+
function InvalidStateTransitionException(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateTransitionException", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "InvalidStateTransitionException";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, InvalidStateTransitionException.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return InvalidStateTransitionException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { InvalidStateTransitionException };
|
|
171
|
+
var ResourceShareLimitExceededException = (function (_super) {
|
|
172
|
+
__extends(ResourceShareLimitExceededException, _super);
|
|
173
|
+
function ResourceShareLimitExceededException(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "ResourceShareLimitExceededException", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "ResourceShareLimitExceededException";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, ResourceShareLimitExceededException.prototype);
|
|
178
|
+
return _this;
|
|
179
|
+
}
|
|
180
|
+
return ResourceShareLimitExceededException;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { ResourceShareLimitExceededException };
|
|
183
|
+
var ThrottlingException = (function (_super) {
|
|
184
|
+
__extends(ThrottlingException, _super);
|
|
185
|
+
function ThrottlingException(opts) {
|
|
186
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
187
|
+
_this.name = "ThrottlingException";
|
|
188
|
+
_this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
190
|
+
return _this;
|
|
191
|
+
}
|
|
192
|
+
return ThrottlingException;
|
|
193
|
+
}(__BaseException));
|
|
194
|
+
export { ThrottlingException };
|
|
195
|
+
var UnknownResourceException = (function (_super) {
|
|
196
|
+
__extends(UnknownResourceException, _super);
|
|
197
|
+
function UnknownResourceException(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "UnknownResourceException", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "UnknownResourceException";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, UnknownResourceException.prototype);
|
|
202
|
+
return _this;
|
|
203
|
+
}
|
|
204
|
+
return UnknownResourceException;
|
|
205
|
+
}(__BaseException));
|
|
206
|
+
export { UnknownResourceException };
|
|
26
207
|
export var AssociateResourceSharePermissionRequest;
|
|
27
208
|
(function (AssociateResourceSharePermissionRequest) {
|
|
28
209
|
AssociateResourceSharePermissionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -47,6 +228,18 @@ export var CreateResourceShareResponse;
|
|
|
47
228
|
(function (CreateResourceShareResponse) {
|
|
48
229
|
CreateResourceShareResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
230
|
})(CreateResourceShareResponse || (CreateResourceShareResponse = {}));
|
|
231
|
+
var TagPolicyViolationException = (function (_super) {
|
|
232
|
+
__extends(TagPolicyViolationException, _super);
|
|
233
|
+
function TagPolicyViolationException(opts) {
|
|
234
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyViolationException", $fault: "client" }, opts)) || this;
|
|
235
|
+
_this.name = "TagPolicyViolationException";
|
|
236
|
+
_this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(_this, TagPolicyViolationException.prototype);
|
|
238
|
+
return _this;
|
|
239
|
+
}
|
|
240
|
+
return TagPolicyViolationException;
|
|
241
|
+
}(__BaseException));
|
|
242
|
+
export { TagPolicyViolationException };
|
|
50
243
|
export var DeleteResourceShareRequest;
|
|
51
244
|
(function (DeleteResourceShareRequest) {
|
|
52
245
|
DeleteResourceShareRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -99,6 +292,30 @@ export var GetResourcePoliciesResponse;
|
|
|
99
292
|
(function (GetResourcePoliciesResponse) {
|
|
100
293
|
GetResourcePoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
294
|
})(GetResourcePoliciesResponse || (GetResourcePoliciesResponse = {}));
|
|
295
|
+
var InvalidNextTokenException = (function (_super) {
|
|
296
|
+
__extends(InvalidNextTokenException, _super);
|
|
297
|
+
function InvalidNextTokenException(opts) {
|
|
298
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
299
|
+
_this.name = "InvalidNextTokenException";
|
|
300
|
+
_this.$fault = "client";
|
|
301
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
302
|
+
return _this;
|
|
303
|
+
}
|
|
304
|
+
return InvalidNextTokenException;
|
|
305
|
+
}(__BaseException));
|
|
306
|
+
export { InvalidNextTokenException };
|
|
307
|
+
var ResourceArnNotFoundException = (function (_super) {
|
|
308
|
+
__extends(ResourceArnNotFoundException, _super);
|
|
309
|
+
function ResourceArnNotFoundException(opts) {
|
|
310
|
+
var _this = _super.call(this, __assign({ name: "ResourceArnNotFoundException", $fault: "client" }, opts)) || this;
|
|
311
|
+
_this.name = "ResourceArnNotFoundException";
|
|
312
|
+
_this.$fault = "client";
|
|
313
|
+
Object.setPrototypeOf(_this, ResourceArnNotFoundException.prototype);
|
|
314
|
+
return _this;
|
|
315
|
+
}
|
|
316
|
+
return ResourceArnNotFoundException;
|
|
317
|
+
}(__BaseException));
|
|
318
|
+
export { ResourceArnNotFoundException };
|
|
102
319
|
export var GetResourceShareAssociationsRequest;
|
|
103
320
|
(function (GetResourceShareAssociationsRequest) {
|
|
104
321
|
GetResourceShareAssociationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -115,6 +332,18 @@ export var GetResourceShareInvitationsResponse;
|
|
|
115
332
|
(function (GetResourceShareInvitationsResponse) {
|
|
116
333
|
GetResourceShareInvitationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
334
|
})(GetResourceShareInvitationsResponse || (GetResourceShareInvitationsResponse = {}));
|
|
335
|
+
var InvalidMaxResultsException = (function (_super) {
|
|
336
|
+
__extends(InvalidMaxResultsException, _super);
|
|
337
|
+
function InvalidMaxResultsException(opts) {
|
|
338
|
+
var _this = _super.call(this, __assign({ name: "InvalidMaxResultsException", $fault: "client" }, opts)) || this;
|
|
339
|
+
_this.name = "InvalidMaxResultsException";
|
|
340
|
+
_this.$fault = "client";
|
|
341
|
+
Object.setPrototypeOf(_this, InvalidMaxResultsException.prototype);
|
|
342
|
+
return _this;
|
|
343
|
+
}
|
|
344
|
+
return InvalidMaxResultsException;
|
|
345
|
+
}(__BaseException));
|
|
346
|
+
export { InvalidMaxResultsException };
|
|
118
347
|
export var ResourceOwner;
|
|
119
348
|
(function (ResourceOwner) {
|
|
120
349
|
ResourceOwner["OTHER_ACCOUNTS"] = "OTHER-ACCOUNTS";
|
|
@@ -155,6 +384,18 @@ export var ListPendingInvitationResourcesResponse;
|
|
|
155
384
|
(function (ListPendingInvitationResourcesResponse) {
|
|
156
385
|
ListPendingInvitationResourcesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
386
|
})(ListPendingInvitationResourcesResponse || (ListPendingInvitationResourcesResponse = {}));
|
|
387
|
+
var MissingRequiredParameterException = (function (_super) {
|
|
388
|
+
__extends(MissingRequiredParameterException, _super);
|
|
389
|
+
function MissingRequiredParameterException(opts) {
|
|
390
|
+
var _this = _super.call(this, __assign({ name: "MissingRequiredParameterException", $fault: "client" }, opts)) || this;
|
|
391
|
+
_this.name = "MissingRequiredParameterException";
|
|
392
|
+
_this.$fault = "client";
|
|
393
|
+
Object.setPrototypeOf(_this, MissingRequiredParameterException.prototype);
|
|
394
|
+
return _this;
|
|
395
|
+
}
|
|
396
|
+
return MissingRequiredParameterException;
|
|
397
|
+
}(__BaseException));
|
|
398
|
+
export { MissingRequiredParameterException };
|
|
158
399
|
export var ListPermissionsRequest;
|
|
159
400
|
(function (ListPermissionsRequest) {
|
|
160
401
|
ListPermissionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -187,6 +428,18 @@ export var ListPrincipalsResponse;
|
|
|
187
428
|
(function (ListPrincipalsResponse) {
|
|
188
429
|
ListPrincipalsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
430
|
})(ListPrincipalsResponse || (ListPrincipalsResponse = {}));
|
|
431
|
+
var InvalidResourceTypeException = (function (_super) {
|
|
432
|
+
__extends(InvalidResourceTypeException, _super);
|
|
433
|
+
function InvalidResourceTypeException(opts) {
|
|
434
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceTypeException", $fault: "client" }, opts)) || this;
|
|
435
|
+
_this.name = "InvalidResourceTypeException";
|
|
436
|
+
_this.$fault = "client";
|
|
437
|
+
Object.setPrototypeOf(_this, InvalidResourceTypeException.prototype);
|
|
438
|
+
return _this;
|
|
439
|
+
}
|
|
440
|
+
return InvalidResourceTypeException;
|
|
441
|
+
}(__BaseException));
|
|
442
|
+
export { InvalidResourceTypeException };
|
|
190
443
|
export var ListResourcesRequest;
|
|
191
444
|
(function (ListResourcesRequest) {
|
|
192
445
|
ListResourcesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -231,6 +484,18 @@ export var RejectResourceShareInvitationResponse;
|
|
|
231
484
|
(function (RejectResourceShareInvitationResponse) {
|
|
232
485
|
RejectResourceShareInvitationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
486
|
})(RejectResourceShareInvitationResponse || (RejectResourceShareInvitationResponse = {}));
|
|
487
|
+
var TagLimitExceededException = (function (_super) {
|
|
488
|
+
__extends(TagLimitExceededException, _super);
|
|
489
|
+
function TagLimitExceededException(opts) {
|
|
490
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededException", $fault: "client" }, opts)) || this;
|
|
491
|
+
_this.name = "TagLimitExceededException";
|
|
492
|
+
_this.$fault = "client";
|
|
493
|
+
Object.setPrototypeOf(_this, TagLimitExceededException.prototype);
|
|
494
|
+
return _this;
|
|
495
|
+
}
|
|
496
|
+
return TagLimitExceededException;
|
|
497
|
+
}(__BaseException));
|
|
498
|
+
export { TagLimitExceededException };
|
|
234
499
|
export var TagResourceRequest;
|
|
235
500
|
(function (TagResourceRequest) {
|
|
236
501
|
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|