@aws-sdk/client-ram 3.952.0 → 3.953.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-cjs/index.js +538 -387
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AcceptResourceShareInvitationCommand.js +2 -2
- package/dist-es/commands/AssociateResourceShareCommand.js +2 -2
- package/dist-es/commands/AssociateResourceSharePermissionCommand.js +2 -2
- package/dist-es/commands/CreatePermissionCommand.js +2 -2
- package/dist-es/commands/CreatePermissionVersionCommand.js +2 -2
- package/dist-es/commands/CreateResourceShareCommand.js +2 -2
- package/dist-es/commands/DeletePermissionCommand.js +2 -2
- package/dist-es/commands/DeletePermissionVersionCommand.js +2 -2
- package/dist-es/commands/DeleteResourceShareCommand.js +2 -2
- package/dist-es/commands/DisassociateResourceShareCommand.js +2 -2
- package/dist-es/commands/DisassociateResourceSharePermissionCommand.js +2 -2
- package/dist-es/commands/EnableSharingWithAwsOrganizationCommand.js +2 -2
- package/dist-es/commands/GetPermissionCommand.js +2 -2
- package/dist-es/commands/GetResourcePoliciesCommand.js +2 -2
- package/dist-es/commands/GetResourceShareAssociationsCommand.js +2 -2
- package/dist-es/commands/GetResourceShareInvitationsCommand.js +2 -2
- package/dist-es/commands/GetResourceSharesCommand.js +2 -2
- package/dist-es/commands/ListPendingInvitationResourcesCommand.js +2 -2
- package/dist-es/commands/ListPermissionAssociationsCommand.js +2 -2
- package/dist-es/commands/ListPermissionVersionsCommand.js +2 -2
- package/dist-es/commands/ListPermissionsCommand.js +2 -2
- package/dist-es/commands/ListPrincipalsCommand.js +2 -2
- package/dist-es/commands/ListReplacePermissionAssociationsWorkCommand.js +2 -2
- package/dist-es/commands/ListResourceSharePermissionsCommand.js +2 -2
- package/dist-es/commands/ListResourceTypesCommand.js +2 -2
- package/dist-es/commands/ListResourcesCommand.js +2 -2
- package/dist-es/commands/PromotePermissionCreatedFromPolicyCommand.js +2 -2
- package/dist-es/commands/PromoteResourceShareCreatedFromPolicyCommand.js +2 -2
- package/dist-es/commands/RejectResourceShareInvitationCommand.js +2 -2
- package/dist-es/commands/ReplacePermissionAssociationsCommand.js +2 -2
- package/dist-es/commands/SetDefaultPermissionVersionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateResourceShareCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +292 -284
- package/dist-types/RAMClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +144 -165
- package/dist-types/ts3.4/RAMClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +143 -165
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class RAMClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class RAMServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, RAMServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class IdempotentParameterMismatchException extends RAMServiceException {
|
|
121
121
|
name = "IdempotentParameterMismatchException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchEx
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class InvalidClientTokenException extends RAMServiceException {
|
|
133
133
|
name = "InvalidClientTokenException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let InvalidClientTokenException$1 = class InvalidClientTokenException extends RA
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class MalformedArnException extends RAMServiceException {
|
|
145
145
|
name = "MalformedArnException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let MalformedArnException$1 = class MalformedArnException extends RAMServiceExce
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, MalformedArnException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class OperationNotPermittedException extends RAMServiceException {
|
|
157
157
|
name = "OperationNotPermittedException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ let OperationNotPermittedException$1 = class OperationNotPermittedException exte
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class ResourceShareInvitationAlreadyAcceptedException extends RAMServiceException {
|
|
169
169
|
name = "ResourceShareInvitationAlreadyAcceptedException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,8 +176,8 @@ let ResourceShareInvitationAlreadyAcceptedException$1 = class ResourceShareInvit
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, ResourceShareInvitationAlreadyAcceptedException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
180
|
-
|
|
179
|
+
}
|
|
180
|
+
class ResourceShareInvitationAlreadyRejectedException extends RAMServiceException {
|
|
181
181
|
name = "ResourceShareInvitationAlreadyRejectedException";
|
|
182
182
|
$fault = "client";
|
|
183
183
|
constructor(opts) {
|
|
@@ -188,8 +188,8 @@ let ResourceShareInvitationAlreadyRejectedException$1 = class ResourceShareInvit
|
|
|
188
188
|
});
|
|
189
189
|
Object.setPrototypeOf(this, ResourceShareInvitationAlreadyRejectedException.prototype);
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class ResourceShareInvitationArnNotFoundException extends RAMServiceException {
|
|
193
193
|
name = "ResourceShareInvitationArnNotFoundException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
constructor(opts) {
|
|
@@ -200,8 +200,8 @@ let ResourceShareInvitationArnNotFoundException$1 = class ResourceShareInvitatio
|
|
|
200
200
|
});
|
|
201
201
|
Object.setPrototypeOf(this, ResourceShareInvitationArnNotFoundException.prototype);
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class ResourceShareInvitationExpiredException extends RAMServiceException {
|
|
205
205
|
name = "ResourceShareInvitationExpiredException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
constructor(opts) {
|
|
@@ -212,8 +212,8 @@ let ResourceShareInvitationExpiredException$1 = class ResourceShareInvitationExp
|
|
|
212
212
|
});
|
|
213
213
|
Object.setPrototypeOf(this, ResourceShareInvitationExpiredException.prototype);
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class ServerInternalException extends RAMServiceException {
|
|
217
217
|
name = "ServerInternalException";
|
|
218
218
|
$fault = "server";
|
|
219
219
|
constructor(opts) {
|
|
@@ -224,8 +224,8 @@ let ServerInternalException$1 = class ServerInternalException extends RAMService
|
|
|
224
224
|
});
|
|
225
225
|
Object.setPrototypeOf(this, ServerInternalException.prototype);
|
|
226
226
|
}
|
|
227
|
-
}
|
|
228
|
-
|
|
227
|
+
}
|
|
228
|
+
class ServiceUnavailableException extends RAMServiceException {
|
|
229
229
|
name = "ServiceUnavailableException";
|
|
230
230
|
$fault = "server";
|
|
231
231
|
constructor(opts) {
|
|
@@ -236,8 +236,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends RA
|
|
|
236
236
|
});
|
|
237
237
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class InvalidParameterException extends RAMServiceException {
|
|
241
241
|
name = "InvalidParameterException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
constructor(opts) {
|
|
@@ -248,8 +248,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends RAMSer
|
|
|
248
248
|
});
|
|
249
249
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
250
250
|
}
|
|
251
|
-
}
|
|
252
|
-
|
|
251
|
+
}
|
|
252
|
+
class InvalidStateTransitionException extends RAMServiceException {
|
|
253
253
|
name = "InvalidStateTransitionException";
|
|
254
254
|
$fault = "client";
|
|
255
255
|
constructor(opts) {
|
|
@@ -260,8 +260,8 @@ let InvalidStateTransitionException$1 = class InvalidStateTransitionException ex
|
|
|
260
260
|
});
|
|
261
261
|
Object.setPrototypeOf(this, InvalidStateTransitionException.prototype);
|
|
262
262
|
}
|
|
263
|
-
}
|
|
264
|
-
|
|
263
|
+
}
|
|
264
|
+
class ResourceShareLimitExceededException extends RAMServiceException {
|
|
265
265
|
name = "ResourceShareLimitExceededException";
|
|
266
266
|
$fault = "client";
|
|
267
267
|
constructor(opts) {
|
|
@@ -272,8 +272,8 @@ let ResourceShareLimitExceededException$1 = class ResourceShareLimitExceededExce
|
|
|
272
272
|
});
|
|
273
273
|
Object.setPrototypeOf(this, ResourceShareLimitExceededException.prototype);
|
|
274
274
|
}
|
|
275
|
-
}
|
|
276
|
-
|
|
275
|
+
}
|
|
276
|
+
class ThrottlingException extends RAMServiceException {
|
|
277
277
|
name = "ThrottlingException";
|
|
278
278
|
$fault = "client";
|
|
279
279
|
constructor(opts) {
|
|
@@ -284,8 +284,8 @@ let ThrottlingException$1 = class ThrottlingException extends RAMServiceExceptio
|
|
|
284
284
|
});
|
|
285
285
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
286
286
|
}
|
|
287
|
-
}
|
|
288
|
-
|
|
287
|
+
}
|
|
288
|
+
class UnknownResourceException extends RAMServiceException {
|
|
289
289
|
name = "UnknownResourceException";
|
|
290
290
|
$fault = "client";
|
|
291
291
|
constructor(opts) {
|
|
@@ -296,8 +296,8 @@ let UnknownResourceException$1 = class UnknownResourceException extends RAMServi
|
|
|
296
296
|
});
|
|
297
297
|
Object.setPrototypeOf(this, UnknownResourceException.prototype);
|
|
298
298
|
}
|
|
299
|
-
}
|
|
300
|
-
|
|
299
|
+
}
|
|
300
|
+
class InvalidPolicyException extends RAMServiceException {
|
|
301
301
|
name = "InvalidPolicyException";
|
|
302
302
|
$fault = "client";
|
|
303
303
|
constructor(opts) {
|
|
@@ -308,8 +308,8 @@ let InvalidPolicyException$1 = class InvalidPolicyException extends RAMServiceEx
|
|
|
308
308
|
});
|
|
309
309
|
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
310
310
|
}
|
|
311
|
-
}
|
|
312
|
-
|
|
311
|
+
}
|
|
312
|
+
class MalformedPolicyTemplateException extends RAMServiceException {
|
|
313
313
|
name = "MalformedPolicyTemplateException";
|
|
314
314
|
$fault = "client";
|
|
315
315
|
constructor(opts) {
|
|
@@ -320,8 +320,8 @@ let MalformedPolicyTemplateException$1 = class MalformedPolicyTemplateException
|
|
|
320
320
|
});
|
|
321
321
|
Object.setPrototypeOf(this, MalformedPolicyTemplateException.prototype);
|
|
322
322
|
}
|
|
323
|
-
}
|
|
324
|
-
|
|
323
|
+
}
|
|
324
|
+
class PermissionAlreadyExistsException extends RAMServiceException {
|
|
325
325
|
name = "PermissionAlreadyExistsException";
|
|
326
326
|
$fault = "client";
|
|
327
327
|
constructor(opts) {
|
|
@@ -332,8 +332,8 @@ let PermissionAlreadyExistsException$1 = class PermissionAlreadyExistsException
|
|
|
332
332
|
});
|
|
333
333
|
Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
|
|
334
334
|
}
|
|
335
|
-
}
|
|
336
|
-
|
|
335
|
+
}
|
|
336
|
+
class PermissionLimitExceededException extends RAMServiceException {
|
|
337
337
|
name = "PermissionLimitExceededException";
|
|
338
338
|
$fault = "client";
|
|
339
339
|
constructor(opts) {
|
|
@@ -344,8 +344,8 @@ let PermissionLimitExceededException$1 = class PermissionLimitExceededException
|
|
|
344
344
|
});
|
|
345
345
|
Object.setPrototypeOf(this, PermissionLimitExceededException.prototype);
|
|
346
346
|
}
|
|
347
|
-
}
|
|
348
|
-
|
|
347
|
+
}
|
|
348
|
+
class PermissionVersionsLimitExceededException extends RAMServiceException {
|
|
349
349
|
name = "PermissionVersionsLimitExceededException";
|
|
350
350
|
$fault = "client";
|
|
351
351
|
constructor(opts) {
|
|
@@ -356,8 +356,8 @@ let PermissionVersionsLimitExceededException$1 = class PermissionVersionsLimitEx
|
|
|
356
356
|
});
|
|
357
357
|
Object.setPrototypeOf(this, PermissionVersionsLimitExceededException.prototype);
|
|
358
358
|
}
|
|
359
|
-
}
|
|
360
|
-
|
|
359
|
+
}
|
|
360
|
+
class TagLimitExceededException extends RAMServiceException {
|
|
361
361
|
name = "TagLimitExceededException";
|
|
362
362
|
$fault = "client";
|
|
363
363
|
constructor(opts) {
|
|
@@ -368,8 +368,8 @@ let TagLimitExceededException$1 = class TagLimitExceededException extends RAMSer
|
|
|
368
368
|
});
|
|
369
369
|
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
370
370
|
}
|
|
371
|
-
}
|
|
372
|
-
|
|
371
|
+
}
|
|
372
|
+
class TagPolicyViolationException extends RAMServiceException {
|
|
373
373
|
name = "TagPolicyViolationException";
|
|
374
374
|
$fault = "client";
|
|
375
375
|
constructor(opts) {
|
|
@@ -380,8 +380,8 @@ let TagPolicyViolationException$1 = class TagPolicyViolationException extends RA
|
|
|
380
380
|
});
|
|
381
381
|
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
382
382
|
}
|
|
383
|
-
}
|
|
384
|
-
|
|
383
|
+
}
|
|
384
|
+
class InvalidNextTokenException extends RAMServiceException {
|
|
385
385
|
name = "InvalidNextTokenException";
|
|
386
386
|
$fault = "client";
|
|
387
387
|
constructor(opts) {
|
|
@@ -392,8 +392,8 @@ let InvalidNextTokenException$1 = class InvalidNextTokenException extends RAMSer
|
|
|
392
392
|
});
|
|
393
393
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
394
394
|
}
|
|
395
|
-
}
|
|
396
|
-
|
|
395
|
+
}
|
|
396
|
+
class ResourceArnNotFoundException extends RAMServiceException {
|
|
397
397
|
name = "ResourceArnNotFoundException";
|
|
398
398
|
$fault = "client";
|
|
399
399
|
constructor(opts) {
|
|
@@ -404,8 +404,8 @@ let ResourceArnNotFoundException$1 = class ResourceArnNotFoundException extends
|
|
|
404
404
|
});
|
|
405
405
|
Object.setPrototypeOf(this, ResourceArnNotFoundException.prototype);
|
|
406
406
|
}
|
|
407
|
-
}
|
|
408
|
-
|
|
407
|
+
}
|
|
408
|
+
class InvalidMaxResultsException extends RAMServiceException {
|
|
409
409
|
name = "InvalidMaxResultsException";
|
|
410
410
|
$fault = "client";
|
|
411
411
|
constructor(opts) {
|
|
@@ -416,8 +416,8 @@ let InvalidMaxResultsException$1 = class InvalidMaxResultsException extends RAMS
|
|
|
416
416
|
});
|
|
417
417
|
Object.setPrototypeOf(this, InvalidMaxResultsException.prototype);
|
|
418
418
|
}
|
|
419
|
-
}
|
|
420
|
-
|
|
419
|
+
}
|
|
420
|
+
class MissingRequiredParameterException extends RAMServiceException {
|
|
421
421
|
name = "MissingRequiredParameterException";
|
|
422
422
|
$fault = "client";
|
|
423
423
|
constructor(opts) {
|
|
@@ -428,8 +428,8 @@ let MissingRequiredParameterException$1 = class MissingRequiredParameterExceptio
|
|
|
428
428
|
});
|
|
429
429
|
Object.setPrototypeOf(this, MissingRequiredParameterException.prototype);
|
|
430
430
|
}
|
|
431
|
-
}
|
|
432
|
-
|
|
431
|
+
}
|
|
432
|
+
class InvalidResourceTypeException extends RAMServiceException {
|
|
433
433
|
name = "InvalidResourceTypeException";
|
|
434
434
|
$fault = "client";
|
|
435
435
|
constructor(opts) {
|
|
@@ -440,8 +440,8 @@ let InvalidResourceTypeException$1 = class InvalidResourceTypeException extends
|
|
|
440
440
|
});
|
|
441
441
|
Object.setPrototypeOf(this, InvalidResourceTypeException.prototype);
|
|
442
442
|
}
|
|
443
|
-
}
|
|
444
|
-
|
|
443
|
+
}
|
|
444
|
+
class UnmatchedPolicyPermissionException extends RAMServiceException {
|
|
445
445
|
name = "UnmatchedPolicyPermissionException";
|
|
446
446
|
$fault = "client";
|
|
447
447
|
constructor(opts) {
|
|
@@ -452,7 +452,7 @@ let UnmatchedPolicyPermissionException$1 = class UnmatchedPolicyPermissionExcept
|
|
|
452
452
|
});
|
|
453
453
|
Object.setPrototypeOf(this, UnmatchedPolicyPermissionException.prototype);
|
|
454
454
|
}
|
|
455
|
-
}
|
|
455
|
+
}
|
|
456
456
|
|
|
457
457
|
const _AP = "AssociatedPermission";
|
|
458
458
|
const _APL = "AssociatedPermissionList";
|
|
@@ -701,16 +701,16 @@ const _va = "value";
|
|
|
701
701
|
const _wI = "workIds";
|
|
702
702
|
const _xN = "xmlName";
|
|
703
703
|
const n0 = "com.amazonaws.ram";
|
|
704
|
-
var AcceptResourceShareInvitationRequest = [3, n0, _ARSIR, 0, [_rSIA, _cT], [0, 0]];
|
|
705
|
-
var AcceptResourceShareInvitationResponse = [
|
|
704
|
+
var AcceptResourceShareInvitationRequest$ = [3, n0, _ARSIR, 0, [_rSIA, _cT], [0, 0]];
|
|
705
|
+
var AcceptResourceShareInvitationResponse$ = [
|
|
706
706
|
3,
|
|
707
707
|
n0,
|
|
708
708
|
_ARSIRc,
|
|
709
709
|
0,
|
|
710
710
|
[_rSI, _cT],
|
|
711
|
-
[[() => ResourceShareInvitation
|
|
711
|
+
[[() => ResourceShareInvitation$, 0], 0],
|
|
712
712
|
];
|
|
713
|
-
var AssociatedPermission = [
|
|
713
|
+
var AssociatedPermission$ = [
|
|
714
714
|
3,
|
|
715
715
|
n0,
|
|
716
716
|
_AP,
|
|
@@ -718,7 +718,7 @@ var AssociatedPermission = [
|
|
|
718
718
|
[_a, _pV, _dV, _rT, _s, _fS, _lUT, _rSA],
|
|
719
719
|
[0, 0, 2, 0, 0, 0, 4, 0],
|
|
720
720
|
];
|
|
721
|
-
var AssociateResourceSharePermissionRequest = [
|
|
721
|
+
var AssociateResourceSharePermissionRequest$ = [
|
|
722
722
|
3,
|
|
723
723
|
n0,
|
|
724
724
|
_ARSPR,
|
|
@@ -726,8 +726,8 @@ var AssociateResourceSharePermissionRequest = [
|
|
|
726
726
|
[_rSA, _pA, _r, _cT, _pV],
|
|
727
727
|
[0, 0, 2, 0, 1],
|
|
728
728
|
];
|
|
729
|
-
var AssociateResourceSharePermissionResponse = [3, n0, _ARSPRs, 0, [_rV, _cT], [2, 0]];
|
|
730
|
-
var AssociateResourceShareRequest = [
|
|
729
|
+
var AssociateResourceSharePermissionResponse$ = [3, n0, _ARSPRs, 0, [_rV, _cT], [2, 0]];
|
|
730
|
+
var AssociateResourceShareRequest$ = [
|
|
731
731
|
3,
|
|
732
732
|
n0,
|
|
733
733
|
_ARSR,
|
|
@@ -735,7 +735,7 @@ var AssociateResourceShareRequest = [
|
|
|
735
735
|
[_rSA, _rA, _p, _cT, _so],
|
|
736
736
|
[0, [() => ResourceArnList, 0], [() => PrincipalArnOrIdList, 0], 0, [() => SourceArnOrAccountList, 0]],
|
|
737
737
|
];
|
|
738
|
-
var AssociateResourceShareResponse = [
|
|
738
|
+
var AssociateResourceShareResponse$ = [
|
|
739
739
|
3,
|
|
740
740
|
n0,
|
|
741
741
|
_ARSRs,
|
|
@@ -743,7 +743,7 @@ var AssociateResourceShareResponse = [
|
|
|
743
743
|
[_rSAe, _cT],
|
|
744
744
|
[[() => ResourceShareAssociationList, 0], 0],
|
|
745
745
|
];
|
|
746
|
-
var CreatePermissionRequest = [
|
|
746
|
+
var CreatePermissionRequest$ = [
|
|
747
747
|
3,
|
|
748
748
|
n0,
|
|
749
749
|
_CPR,
|
|
@@ -751,24 +751,24 @@ var CreatePermissionRequest = [
|
|
|
751
751
|
[_n, _rT, _pT, _cT, _t],
|
|
752
752
|
[0, 0, 0, 0, () => TagList],
|
|
753
753
|
];
|
|
754
|
-
var CreatePermissionResponse = [
|
|
754
|
+
var CreatePermissionResponse$ = [
|
|
755
755
|
3,
|
|
756
756
|
n0,
|
|
757
757
|
_CPRr,
|
|
758
758
|
0,
|
|
759
759
|
[_pe, _cT],
|
|
760
|
-
[() => ResourceSharePermissionSummary
|
|
760
|
+
[() => ResourceSharePermissionSummary$, 0],
|
|
761
761
|
];
|
|
762
|
-
var CreatePermissionVersionRequest = [3, n0, _CPVR, 0, [_pA, _pT, _cT], [0, 0, 0]];
|
|
763
|
-
var CreatePermissionVersionResponse = [
|
|
762
|
+
var CreatePermissionVersionRequest$ = [3, n0, _CPVR, 0, [_pA, _pT, _cT], [0, 0, 0]];
|
|
763
|
+
var CreatePermissionVersionResponse$ = [
|
|
764
764
|
3,
|
|
765
765
|
n0,
|
|
766
766
|
_CPVRr,
|
|
767
767
|
0,
|
|
768
768
|
[_pe, _cT],
|
|
769
|
-
[() => ResourceSharePermissionDetail
|
|
769
|
+
[() => ResourceSharePermissionDetail$, 0],
|
|
770
770
|
];
|
|
771
|
-
var CreateResourceShareRequest = [
|
|
771
|
+
var CreateResourceShareRequest$ = [
|
|
772
772
|
3,
|
|
773
773
|
n0,
|
|
774
774
|
_CRSR,
|
|
@@ -785,15 +785,15 @@ var CreateResourceShareRequest = [
|
|
|
785
785
|
[() => SourceArnOrAccountList, 0],
|
|
786
786
|
],
|
|
787
787
|
];
|
|
788
|
-
var CreateResourceShareResponse = [
|
|
788
|
+
var CreateResourceShareResponse$ = [
|
|
789
789
|
3,
|
|
790
790
|
n0,
|
|
791
791
|
_CRSRr,
|
|
792
792
|
0,
|
|
793
793
|
[_rS, _cT],
|
|
794
|
-
[() => ResourceShare
|
|
794
|
+
[() => ResourceShare$, 0],
|
|
795
795
|
];
|
|
796
|
-
var DeletePermissionRequest = [
|
|
796
|
+
var DeletePermissionRequest$ = [
|
|
797
797
|
3,
|
|
798
798
|
n0,
|
|
799
799
|
_DPR,
|
|
@@ -804,7 +804,7 @@ var DeletePermissionRequest = [
|
|
|
804
804
|
[0, { [_hQ]: _cT }],
|
|
805
805
|
],
|
|
806
806
|
];
|
|
807
|
-
var DeletePermissionResponse = [
|
|
807
|
+
var DeletePermissionResponse$ = [
|
|
808
808
|
3,
|
|
809
809
|
n0,
|
|
810
810
|
_DPRe,
|
|
@@ -812,7 +812,7 @@ var DeletePermissionResponse = [
|
|
|
812
812
|
[_rV, _cT, _pS],
|
|
813
813
|
[[2, { [_xN]: _re }], 0, 0],
|
|
814
814
|
];
|
|
815
|
-
var DeletePermissionVersionRequest = [
|
|
815
|
+
var DeletePermissionVersionRequest$ = [
|
|
816
816
|
3,
|
|
817
817
|
n0,
|
|
818
818
|
_DPVR,
|
|
@@ -824,7 +824,7 @@ var DeletePermissionVersionRequest = [
|
|
|
824
824
|
[0, { [_hQ]: _cT }],
|
|
825
825
|
],
|
|
826
826
|
];
|
|
827
|
-
var DeletePermissionVersionResponse = [
|
|
827
|
+
var DeletePermissionVersionResponse$ = [
|
|
828
828
|
3,
|
|
829
829
|
n0,
|
|
830
830
|
_DPVRe,
|
|
@@ -832,7 +832,7 @@ var DeletePermissionVersionResponse = [
|
|
|
832
832
|
[_rV, _cT, _pS],
|
|
833
833
|
[[2, { [_xN]: _re }], 0, 0],
|
|
834
834
|
];
|
|
835
|
-
var DeleteResourceShareRequest = [
|
|
835
|
+
var DeleteResourceShareRequest$ = [
|
|
836
836
|
3,
|
|
837
837
|
n0,
|
|
838
838
|
_DRSR,
|
|
@@ -843,7 +843,7 @@ var DeleteResourceShareRequest = [
|
|
|
843
843
|
[0, { [_hQ]: _cT }],
|
|
844
844
|
],
|
|
845
845
|
];
|
|
846
|
-
var DeleteResourceShareResponse = [
|
|
846
|
+
var DeleteResourceShareResponse$ = [
|
|
847
847
|
3,
|
|
848
848
|
n0,
|
|
849
849
|
_DRSRe,
|
|
@@ -851,7 +851,7 @@ var DeleteResourceShareResponse = [
|
|
|
851
851
|
[_rV, _cT],
|
|
852
852
|
[[2, { [_xN]: _re }], 0],
|
|
853
853
|
];
|
|
854
|
-
var DisassociateResourceSharePermissionRequest = [
|
|
854
|
+
var DisassociateResourceSharePermissionRequest$ = [
|
|
855
855
|
3,
|
|
856
856
|
n0,
|
|
857
857
|
_DRSPR,
|
|
@@ -859,8 +859,15 @@ var DisassociateResourceSharePermissionRequest = [
|
|
|
859
859
|
[_rSA, _pA, _cT],
|
|
860
860
|
[0, 0, 0],
|
|
861
861
|
];
|
|
862
|
-
var DisassociateResourceSharePermissionResponse = [
|
|
863
|
-
|
|
862
|
+
var DisassociateResourceSharePermissionResponse$ = [
|
|
863
|
+
3,
|
|
864
|
+
n0,
|
|
865
|
+
_DRSPRi,
|
|
866
|
+
0,
|
|
867
|
+
[_rV, _cT],
|
|
868
|
+
[2, 0],
|
|
869
|
+
];
|
|
870
|
+
var DisassociateResourceShareRequest$ = [
|
|
864
871
|
3,
|
|
865
872
|
n0,
|
|
866
873
|
_DRSRi,
|
|
@@ -868,7 +875,7 @@ var DisassociateResourceShareRequest = [
|
|
|
868
875
|
[_rSA, _rA, _p, _cT, _so],
|
|
869
876
|
[0, [() => ResourceArnList, 0], [() => PrincipalArnOrIdList, 0], 0, [() => SourceArnOrAccountList, 0]],
|
|
870
877
|
];
|
|
871
|
-
var DisassociateResourceShareResponse = [
|
|
878
|
+
var DisassociateResourceShareResponse$ = [
|
|
872
879
|
3,
|
|
873
880
|
n0,
|
|
874
881
|
_DRSRis,
|
|
@@ -876,8 +883,8 @@ var DisassociateResourceShareResponse = [
|
|
|
876
883
|
[_rSAe, _cT],
|
|
877
884
|
[[() => ResourceShareAssociationList, 0], 0],
|
|
878
885
|
];
|
|
879
|
-
var EnableSharingWithAwsOrganizationRequest = [3, n0, _ESWAOR, 0, [], []];
|
|
880
|
-
var EnableSharingWithAwsOrganizationResponse = [
|
|
886
|
+
var EnableSharingWithAwsOrganizationRequest$ = [3, n0, _ESWAOR, 0, [], []];
|
|
887
|
+
var EnableSharingWithAwsOrganizationResponse$ = [
|
|
881
888
|
3,
|
|
882
889
|
n0,
|
|
883
890
|
_ESWAORn,
|
|
@@ -885,16 +892,16 @@ var EnableSharingWithAwsOrganizationResponse = [
|
|
|
885
892
|
[_rV],
|
|
886
893
|
[[2, { [_xN]: _re }]],
|
|
887
894
|
];
|
|
888
|
-
var GetPermissionRequest = [3, n0, _GPR, 0, [_pA, _pV], [0, 1]];
|
|
889
|
-
var GetPermissionResponse = [
|
|
895
|
+
var GetPermissionRequest$ = [3, n0, _GPR, 0, [_pA, _pV], [0, 1]];
|
|
896
|
+
var GetPermissionResponse$ = [
|
|
890
897
|
3,
|
|
891
898
|
n0,
|
|
892
899
|
_GPRe,
|
|
893
900
|
0,
|
|
894
901
|
[_pe],
|
|
895
|
-
[() => ResourceSharePermissionDetail],
|
|
902
|
+
[() => ResourceSharePermissionDetail$],
|
|
896
903
|
];
|
|
897
|
-
var GetResourcePoliciesRequest = [
|
|
904
|
+
var GetResourcePoliciesRequest$ = [
|
|
898
905
|
3,
|
|
899
906
|
n0,
|
|
900
907
|
_GRPR,
|
|
@@ -902,7 +909,7 @@ var GetResourcePoliciesRequest = [
|
|
|
902
909
|
[_rA, _pr, _nT, _mR],
|
|
903
910
|
[[() => ResourceArnList, 0], 0, 0, 1],
|
|
904
911
|
];
|
|
905
|
-
var GetResourcePoliciesResponse = [
|
|
912
|
+
var GetResourcePoliciesResponse$ = [
|
|
906
913
|
3,
|
|
907
914
|
n0,
|
|
908
915
|
_GRPRe,
|
|
@@ -910,7 +917,7 @@ var GetResourcePoliciesResponse = [
|
|
|
910
917
|
[_po, _nT],
|
|
911
918
|
[[() => PolicyList, 0], 0],
|
|
912
919
|
];
|
|
913
|
-
var GetResourceShareAssociationsRequest = [
|
|
920
|
+
var GetResourceShareAssociationsRequest$ = [
|
|
914
921
|
3,
|
|
915
922
|
n0,
|
|
916
923
|
_GRSAR,
|
|
@@ -918,7 +925,7 @@ var GetResourceShareAssociationsRequest = [
|
|
|
918
925
|
[_aT, _rSAes, _rAe, _pr, _aS, _nT, _mR],
|
|
919
926
|
[0, [() => ResourceShareArnList, 0], 0, 0, 0, 0, 1],
|
|
920
927
|
];
|
|
921
|
-
var GetResourceShareAssociationsResponse = [
|
|
928
|
+
var GetResourceShareAssociationsResponse$ = [
|
|
922
929
|
3,
|
|
923
930
|
n0,
|
|
924
931
|
_GRSARe,
|
|
@@ -926,7 +933,7 @@ var GetResourceShareAssociationsResponse = [
|
|
|
926
933
|
[_rSAe, _nT],
|
|
927
934
|
[[() => ResourceShareAssociationList, 0], 0],
|
|
928
935
|
];
|
|
929
|
-
var GetResourceShareInvitationsRequest = [
|
|
936
|
+
var GetResourceShareInvitationsRequest$ = [
|
|
930
937
|
3,
|
|
931
938
|
n0,
|
|
932
939
|
_GRSIR,
|
|
@@ -934,7 +941,7 @@ var GetResourceShareInvitationsRequest = [
|
|
|
934
941
|
[_rSIAe, _rSAes, _nT, _mR],
|
|
935
942
|
[[() => ResourceShareInvitationArnList, 0], [() => ResourceShareArnList, 0], 0, 1],
|
|
936
943
|
];
|
|
937
|
-
var GetResourceShareInvitationsResponse = [
|
|
944
|
+
var GetResourceShareInvitationsResponse$ = [
|
|
938
945
|
3,
|
|
939
946
|
n0,
|
|
940
947
|
_GRSIRe,
|
|
@@ -942,7 +949,7 @@ var GetResourceShareInvitationsResponse = [
|
|
|
942
949
|
[_rSIe, _nT],
|
|
943
950
|
[[() => ResourceShareInvitationList, 0], 0],
|
|
944
951
|
];
|
|
945
|
-
var GetResourceSharesRequest = [
|
|
952
|
+
var GetResourceSharesRequest$ = [
|
|
946
953
|
3,
|
|
947
954
|
n0,
|
|
948
955
|
_GRSR,
|
|
@@ -950,7 +957,7 @@ var GetResourceSharesRequest = [
|
|
|
950
957
|
[_rSAes, _rSS, _rO, _n, _tF, _nT, _mR, _pA, _pV],
|
|
951
958
|
[[() => ResourceShareArnList, 0], 0, 0, 0, () => TagFilters, 0, 1, 0, 1],
|
|
952
959
|
];
|
|
953
|
-
var GetResourceSharesResponse = [
|
|
960
|
+
var GetResourceSharesResponse$ = [
|
|
954
961
|
3,
|
|
955
962
|
n0,
|
|
956
963
|
_GRSRe,
|
|
@@ -958,7 +965,7 @@ var GetResourceSharesResponse = [
|
|
|
958
965
|
[_rSe, _nT],
|
|
959
966
|
[[() => ResourceShareList, 0], 0],
|
|
960
967
|
];
|
|
961
|
-
var IdempotentParameterMismatchException = [
|
|
968
|
+
var IdempotentParameterMismatchException$ = [
|
|
962
969
|
-3,
|
|
963
970
|
n0,
|
|
964
971
|
_IPME,
|
|
@@ -966,8 +973,8 @@ var IdempotentParameterMismatchException = [
|
|
|
966
973
|
[_m],
|
|
967
974
|
[0],
|
|
968
975
|
];
|
|
969
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException
|
|
970
|
-
var InvalidClientTokenException = [
|
|
976
|
+
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
977
|
+
var InvalidClientTokenException$ = [
|
|
971
978
|
-3,
|
|
972
979
|
n0,
|
|
973
980
|
_ICTE,
|
|
@@ -975,8 +982,8 @@ var InvalidClientTokenException = [
|
|
|
975
982
|
[_m],
|
|
976
983
|
[0],
|
|
977
984
|
];
|
|
978
|
-
schema.TypeRegistry.for(n0).registerError(InvalidClientTokenException
|
|
979
|
-
var InvalidMaxResultsException = [
|
|
985
|
+
schema.TypeRegistry.for(n0).registerError(InvalidClientTokenException$, InvalidClientTokenException);
|
|
986
|
+
var InvalidMaxResultsException$ = [
|
|
980
987
|
-3,
|
|
981
988
|
n0,
|
|
982
989
|
_IMRE,
|
|
@@ -984,8 +991,8 @@ var InvalidMaxResultsException = [
|
|
|
984
991
|
[_m],
|
|
985
992
|
[0],
|
|
986
993
|
];
|
|
987
|
-
schema.TypeRegistry.for(n0).registerError(InvalidMaxResultsException
|
|
988
|
-
var InvalidNextTokenException = [
|
|
994
|
+
schema.TypeRegistry.for(n0).registerError(InvalidMaxResultsException$, InvalidMaxResultsException);
|
|
995
|
+
var InvalidNextTokenException$ = [
|
|
989
996
|
-3,
|
|
990
997
|
n0,
|
|
991
998
|
_INTE,
|
|
@@ -993,8 +1000,8 @@ var InvalidNextTokenException = [
|
|
|
993
1000
|
[_m],
|
|
994
1001
|
[0],
|
|
995
1002
|
];
|
|
996
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException
|
|
997
|
-
var InvalidParameterException = [
|
|
1003
|
+
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1004
|
+
var InvalidParameterException$ = [
|
|
998
1005
|
-3,
|
|
999
1006
|
n0,
|
|
1000
1007
|
_IPE,
|
|
@@ -1002,8 +1009,8 @@ var InvalidParameterException = [
|
|
|
1002
1009
|
[_m],
|
|
1003
1010
|
[0],
|
|
1004
1011
|
];
|
|
1005
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException
|
|
1006
|
-
var InvalidPolicyException = [
|
|
1012
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1013
|
+
var InvalidPolicyException$ = [
|
|
1007
1014
|
-3,
|
|
1008
1015
|
n0,
|
|
1009
1016
|
_IPEn,
|
|
@@ -1011,8 +1018,8 @@ var InvalidPolicyException = [
|
|
|
1011
1018
|
[_m],
|
|
1012
1019
|
[0],
|
|
1013
1020
|
];
|
|
1014
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPolicyException
|
|
1015
|
-
var InvalidResourceTypeException = [
|
|
1021
|
+
schema.TypeRegistry.for(n0).registerError(InvalidPolicyException$, InvalidPolicyException);
|
|
1022
|
+
var InvalidResourceTypeException$ = [
|
|
1016
1023
|
-3,
|
|
1017
1024
|
n0,
|
|
1018
1025
|
_IRTE,
|
|
@@ -1020,8 +1027,8 @@ var InvalidResourceTypeException = [
|
|
|
1020
1027
|
[_m],
|
|
1021
1028
|
[0],
|
|
1022
1029
|
];
|
|
1023
|
-
schema.TypeRegistry.for(n0).registerError(InvalidResourceTypeException
|
|
1024
|
-
var InvalidStateTransitionException = [
|
|
1030
|
+
schema.TypeRegistry.for(n0).registerError(InvalidResourceTypeException$, InvalidResourceTypeException);
|
|
1031
|
+
var InvalidStateTransitionException$ = [
|
|
1025
1032
|
-3,
|
|
1026
1033
|
n0,
|
|
1027
1034
|
_ISTE,
|
|
@@ -1029,8 +1036,8 @@ var InvalidStateTransitionException = [
|
|
|
1029
1036
|
[_m],
|
|
1030
1037
|
[0],
|
|
1031
1038
|
];
|
|
1032
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateTransitionException
|
|
1033
|
-
var ListPendingInvitationResourcesRequest = [
|
|
1039
|
+
schema.TypeRegistry.for(n0).registerError(InvalidStateTransitionException$, InvalidStateTransitionException);
|
|
1040
|
+
var ListPendingInvitationResourcesRequest$ = [
|
|
1034
1041
|
3,
|
|
1035
1042
|
n0,
|
|
1036
1043
|
_LPIRR,
|
|
@@ -1038,7 +1045,7 @@ var ListPendingInvitationResourcesRequest = [
|
|
|
1038
1045
|
[_rSIA, _nT, _mR, _rRS],
|
|
1039
1046
|
[0, 0, 1, 0],
|
|
1040
1047
|
];
|
|
1041
|
-
var ListPendingInvitationResourcesResponse = [
|
|
1048
|
+
var ListPendingInvitationResourcesResponse$ = [
|
|
1042
1049
|
3,
|
|
1043
1050
|
n0,
|
|
1044
1051
|
_LPIRRi,
|
|
@@ -1046,7 +1053,7 @@ var ListPendingInvitationResourcesResponse = [
|
|
|
1046
1053
|
[_res, _nT],
|
|
1047
1054
|
[[() => ResourceList, 0], 0],
|
|
1048
1055
|
];
|
|
1049
|
-
var ListPermissionAssociationsRequest = [
|
|
1056
|
+
var ListPermissionAssociationsRequest$ = [
|
|
1050
1057
|
3,
|
|
1051
1058
|
n0,
|
|
1052
1059
|
_LPAR,
|
|
@@ -1054,7 +1061,7 @@ var ListPermissionAssociationsRequest = [
|
|
|
1054
1061
|
[_pA, _pV, _aS, _rT, _fS, _dV, _nT, _mR],
|
|
1055
1062
|
[0, 1, 0, 0, 0, 2, 0, 1],
|
|
1056
1063
|
];
|
|
1057
|
-
var ListPermissionAssociationsResponse = [
|
|
1064
|
+
var ListPermissionAssociationsResponse$ = [
|
|
1058
1065
|
3,
|
|
1059
1066
|
n0,
|
|
1060
1067
|
_LPARi,
|
|
@@ -1062,8 +1069,8 @@ var ListPermissionAssociationsResponse = [
|
|
|
1062
1069
|
[_per, _nT],
|
|
1063
1070
|
[[() => AssociatedPermissionList, 0], 0],
|
|
1064
1071
|
];
|
|
1065
|
-
var ListPermissionsRequest = [3, n0, _LPR, 0, [_rT, _nT, _mR, _pTe], [0, 0, 1, 0]];
|
|
1066
|
-
var ListPermissionsResponse = [
|
|
1072
|
+
var ListPermissionsRequest$ = [3, n0, _LPR, 0, [_rT, _nT, _mR, _pTe], [0, 0, 1, 0]];
|
|
1073
|
+
var ListPermissionsResponse$ = [
|
|
1067
1074
|
3,
|
|
1068
1075
|
n0,
|
|
1069
1076
|
_LPRi,
|
|
@@ -1071,8 +1078,8 @@ var ListPermissionsResponse = [
|
|
|
1071
1078
|
[_per, _nT],
|
|
1072
1079
|
[[() => ResourceSharePermissionList, 0], 0],
|
|
1073
1080
|
];
|
|
1074
|
-
var ListPermissionVersionsRequest = [3, n0, _LPVR, 0, [_pA, _nT, _mR], [0, 0, 1]];
|
|
1075
|
-
var ListPermissionVersionsResponse = [
|
|
1081
|
+
var ListPermissionVersionsRequest$ = [3, n0, _LPVR, 0, [_pA, _nT, _mR], [0, 0, 1]];
|
|
1082
|
+
var ListPermissionVersionsResponse$ = [
|
|
1076
1083
|
3,
|
|
1077
1084
|
n0,
|
|
1078
1085
|
_LPVRi,
|
|
@@ -1080,7 +1087,7 @@ var ListPermissionVersionsResponse = [
|
|
|
1080
1087
|
[_per, _nT],
|
|
1081
1088
|
[[() => ResourceSharePermissionList, 0], 0],
|
|
1082
1089
|
];
|
|
1083
|
-
var ListPrincipalsRequest = [
|
|
1090
|
+
var ListPrincipalsRequest$ = [
|
|
1084
1091
|
3,
|
|
1085
1092
|
n0,
|
|
1086
1093
|
_LPRis,
|
|
@@ -1088,7 +1095,7 @@ var ListPrincipalsRequest = [
|
|
|
1088
1095
|
[_rO, _rAe, _p, _rT, _rSAes, _nT, _mR],
|
|
1089
1096
|
[0, 0, [() => PrincipalArnOrIdList, 0], 0, [() => ResourceShareArnList, 0], 0, 1],
|
|
1090
1097
|
];
|
|
1091
|
-
var ListPrincipalsResponse = [
|
|
1098
|
+
var ListPrincipalsResponse$ = [
|
|
1092
1099
|
3,
|
|
1093
1100
|
n0,
|
|
1094
1101
|
_LPRist,
|
|
@@ -1096,7 +1103,7 @@ var ListPrincipalsResponse = [
|
|
|
1096
1103
|
[_p, _nT],
|
|
1097
1104
|
[[() => PrincipalList, 0], 0],
|
|
1098
1105
|
];
|
|
1099
|
-
var ListReplacePermissionAssociationsWorkRequest = [
|
|
1106
|
+
var ListReplacePermissionAssociationsWorkRequest$ = [
|
|
1100
1107
|
3,
|
|
1101
1108
|
n0,
|
|
1102
1109
|
_LRPAWR,
|
|
@@ -1104,7 +1111,7 @@ var ListReplacePermissionAssociationsWorkRequest = [
|
|
|
1104
1111
|
[_wI, _s, _nT, _mR],
|
|
1105
1112
|
[[() => ReplacePermissionAssociationsWorkIdList, 0], 0, 0, 1],
|
|
1106
1113
|
];
|
|
1107
|
-
var ListReplacePermissionAssociationsWorkResponse = [
|
|
1114
|
+
var ListReplacePermissionAssociationsWorkResponse$ = [
|
|
1108
1115
|
3,
|
|
1109
1116
|
n0,
|
|
1110
1117
|
_LRPAWRi,
|
|
@@ -1112,8 +1119,15 @@ var ListReplacePermissionAssociationsWorkResponse = [
|
|
|
1112
1119
|
[_rPAW, _nT],
|
|
1113
1120
|
[[() => ReplacePermissionAssociationsWorkList, 0], 0],
|
|
1114
1121
|
];
|
|
1115
|
-
var ListResourceSharePermissionsRequest = [
|
|
1116
|
-
|
|
1122
|
+
var ListResourceSharePermissionsRequest$ = [
|
|
1123
|
+
3,
|
|
1124
|
+
n0,
|
|
1125
|
+
_LRSPR,
|
|
1126
|
+
0,
|
|
1127
|
+
[_rSA, _nT, _mR],
|
|
1128
|
+
[0, 0, 1],
|
|
1129
|
+
];
|
|
1130
|
+
var ListResourceSharePermissionsResponse$ = [
|
|
1117
1131
|
3,
|
|
1118
1132
|
n0,
|
|
1119
1133
|
_LRSPRi,
|
|
@@ -1121,7 +1135,7 @@ var ListResourceSharePermissionsResponse = [
|
|
|
1121
1135
|
[_per, _nT],
|
|
1122
1136
|
[[() => ResourceSharePermissionList, 0], 0],
|
|
1123
1137
|
];
|
|
1124
|
-
var ListResourcesRequest = [
|
|
1138
|
+
var ListResourcesRequest$ = [
|
|
1125
1139
|
3,
|
|
1126
1140
|
n0,
|
|
1127
1141
|
_LRR,
|
|
@@ -1129,9 +1143,9 @@ var ListResourcesRequest = [
|
|
|
1129
1143
|
[_rO, _pr, _rT, _rA, _rSAes, _nT, _mR, _rRS],
|
|
1130
1144
|
[0, 0, 0, [() => ResourceArnList, 0], [() => ResourceShareArnList, 0], 0, 1, 0],
|
|
1131
1145
|
];
|
|
1132
|
-
var ListResourcesResponse = [3, n0, _LRRi, 0, [_res, _nT], [[() => ResourceList, 0], 0]];
|
|
1133
|
-
var ListResourceTypesRequest = [3, n0, _LRTR, 0, [_nT, _mR, _rRS], [0, 1, 0]];
|
|
1134
|
-
var ListResourceTypesResponse = [
|
|
1146
|
+
var ListResourcesResponse$ = [3, n0, _LRRi, 0, [_res, _nT], [[() => ResourceList, 0], 0]];
|
|
1147
|
+
var ListResourceTypesRequest$ = [3, n0, _LRTR, 0, [_nT, _mR, _rRS], [0, 1, 0]];
|
|
1148
|
+
var ListResourceTypesResponse$ = [
|
|
1135
1149
|
3,
|
|
1136
1150
|
n0,
|
|
1137
1151
|
_LRTRi,
|
|
@@ -1139,7 +1153,7 @@ var ListResourceTypesResponse = [
|
|
|
1139
1153
|
[_rTe, _nT],
|
|
1140
1154
|
[[() => ServiceNameAndResourceTypeList, 0], 0],
|
|
1141
1155
|
];
|
|
1142
|
-
var MalformedArnException = [
|
|
1156
|
+
var MalformedArnException$ = [
|
|
1143
1157
|
-3,
|
|
1144
1158
|
n0,
|
|
1145
1159
|
_MAE,
|
|
@@ -1147,8 +1161,8 @@ var MalformedArnException = [
|
|
|
1147
1161
|
[_m],
|
|
1148
1162
|
[0],
|
|
1149
1163
|
];
|
|
1150
|
-
schema.TypeRegistry.for(n0).registerError(MalformedArnException
|
|
1151
|
-
var MalformedPolicyTemplateException = [
|
|
1164
|
+
schema.TypeRegistry.for(n0).registerError(MalformedArnException$, MalformedArnException);
|
|
1165
|
+
var MalformedPolicyTemplateException$ = [
|
|
1152
1166
|
-3,
|
|
1153
1167
|
n0,
|
|
1154
1168
|
_MPTE,
|
|
@@ -1156,8 +1170,8 @@ var MalformedPolicyTemplateException = [
|
|
|
1156
1170
|
[_m],
|
|
1157
1171
|
[0],
|
|
1158
1172
|
];
|
|
1159
|
-
schema.TypeRegistry.for(n0).registerError(MalformedPolicyTemplateException
|
|
1160
|
-
var MissingRequiredParameterException = [
|
|
1173
|
+
schema.TypeRegistry.for(n0).registerError(MalformedPolicyTemplateException$, MalformedPolicyTemplateException);
|
|
1174
|
+
var MissingRequiredParameterException$ = [
|
|
1161
1175
|
-3,
|
|
1162
1176
|
n0,
|
|
1163
1177
|
_MRPE,
|
|
@@ -1165,8 +1179,8 @@ var MissingRequiredParameterException = [
|
|
|
1165
1179
|
[_m],
|
|
1166
1180
|
[0],
|
|
1167
1181
|
];
|
|
1168
|
-
schema.TypeRegistry.for(n0).registerError(MissingRequiredParameterException
|
|
1169
|
-
var OperationNotPermittedException = [
|
|
1182
|
+
schema.TypeRegistry.for(n0).registerError(MissingRequiredParameterException$, MissingRequiredParameterException);
|
|
1183
|
+
var OperationNotPermittedException$ = [
|
|
1170
1184
|
-3,
|
|
1171
1185
|
n0,
|
|
1172
1186
|
_ONPE,
|
|
@@ -1174,8 +1188,8 @@ var OperationNotPermittedException = [
|
|
|
1174
1188
|
[_m],
|
|
1175
1189
|
[0],
|
|
1176
1190
|
];
|
|
1177
|
-
schema.TypeRegistry.for(n0).registerError(OperationNotPermittedException
|
|
1178
|
-
var PermissionAlreadyExistsException = [
|
|
1191
|
+
schema.TypeRegistry.for(n0).registerError(OperationNotPermittedException$, OperationNotPermittedException);
|
|
1192
|
+
var PermissionAlreadyExistsException$ = [
|
|
1179
1193
|
-3,
|
|
1180
1194
|
n0,
|
|
1181
1195
|
_PAEE,
|
|
@@ -1183,8 +1197,8 @@ var PermissionAlreadyExistsException = [
|
|
|
1183
1197
|
[_m],
|
|
1184
1198
|
[0],
|
|
1185
1199
|
];
|
|
1186
|
-
schema.TypeRegistry.for(n0).registerError(PermissionAlreadyExistsException
|
|
1187
|
-
var PermissionLimitExceededException = [
|
|
1200
|
+
schema.TypeRegistry.for(n0).registerError(PermissionAlreadyExistsException$, PermissionAlreadyExistsException);
|
|
1201
|
+
var PermissionLimitExceededException$ = [
|
|
1188
1202
|
-3,
|
|
1189
1203
|
n0,
|
|
1190
1204
|
_PLEE,
|
|
@@ -1192,8 +1206,8 @@ var PermissionLimitExceededException = [
|
|
|
1192
1206
|
[_m],
|
|
1193
1207
|
[0],
|
|
1194
1208
|
];
|
|
1195
|
-
schema.TypeRegistry.for(n0).registerError(PermissionLimitExceededException
|
|
1196
|
-
var PermissionVersionsLimitExceededException = [
|
|
1209
|
+
schema.TypeRegistry.for(n0).registerError(PermissionLimitExceededException$, PermissionLimitExceededException);
|
|
1210
|
+
var PermissionVersionsLimitExceededException$ = [
|
|
1197
1211
|
-3,
|
|
1198
1212
|
n0,
|
|
1199
1213
|
_PVLEE,
|
|
@@ -1201,9 +1215,9 @@ var PermissionVersionsLimitExceededException = [
|
|
|
1201
1215
|
[_m],
|
|
1202
1216
|
[0],
|
|
1203
1217
|
];
|
|
1204
|
-
schema.TypeRegistry.for(n0).registerError(PermissionVersionsLimitExceededException
|
|
1205
|
-
var Principal = [3, n0, _P, 0, [_i, _rSA, _cTr, _lUT, _ex], [0, 0, 4, 4, 2]];
|
|
1206
|
-
var PromotePermissionCreatedFromPolicyRequest = [
|
|
1218
|
+
schema.TypeRegistry.for(n0).registerError(PermissionVersionsLimitExceededException$, PermissionVersionsLimitExceededException);
|
|
1219
|
+
var Principal$ = [3, n0, _P, 0, [_i, _rSA, _cTr, _lUT, _ex], [0, 0, 4, 4, 2]];
|
|
1220
|
+
var PromotePermissionCreatedFromPolicyRequest$ = [
|
|
1207
1221
|
3,
|
|
1208
1222
|
n0,
|
|
1209
1223
|
_PPCFPR,
|
|
@@ -1211,15 +1225,15 @@ var PromotePermissionCreatedFromPolicyRequest = [
|
|
|
1211
1225
|
[_pA, _n, _cT],
|
|
1212
1226
|
[0, 0, 0],
|
|
1213
1227
|
];
|
|
1214
|
-
var PromotePermissionCreatedFromPolicyResponse = [
|
|
1228
|
+
var PromotePermissionCreatedFromPolicyResponse$ = [
|
|
1215
1229
|
3,
|
|
1216
1230
|
n0,
|
|
1217
1231
|
_PPCFPRr,
|
|
1218
1232
|
0,
|
|
1219
1233
|
[_pe, _cT],
|
|
1220
|
-
[() => ResourceSharePermissionSummary
|
|
1234
|
+
[() => ResourceSharePermissionSummary$, 0],
|
|
1221
1235
|
];
|
|
1222
|
-
var PromoteResourceShareCreatedFromPolicyRequest = [
|
|
1236
|
+
var PromoteResourceShareCreatedFromPolicyRequest$ = [
|
|
1223
1237
|
3,
|
|
1224
1238
|
n0,
|
|
1225
1239
|
_PRSCFPR,
|
|
@@ -1227,7 +1241,7 @@ var PromoteResourceShareCreatedFromPolicyRequest = [
|
|
|
1227
1241
|
[_rSA],
|
|
1228
1242
|
[[0, { [_hQ]: _rSA }]],
|
|
1229
1243
|
];
|
|
1230
|
-
var PromoteResourceShareCreatedFromPolicyResponse = [
|
|
1244
|
+
var PromoteResourceShareCreatedFromPolicyResponse$ = [
|
|
1231
1245
|
3,
|
|
1232
1246
|
n0,
|
|
1233
1247
|
_PRSCFPRr,
|
|
@@ -1235,16 +1249,16 @@ var PromoteResourceShareCreatedFromPolicyResponse = [
|
|
|
1235
1249
|
[_rV],
|
|
1236
1250
|
[[2, { [_xN]: _re }]],
|
|
1237
1251
|
];
|
|
1238
|
-
var RejectResourceShareInvitationRequest = [3, n0, _RRSIR, 0, [_rSIA, _cT], [0, 0]];
|
|
1239
|
-
var RejectResourceShareInvitationResponse = [
|
|
1252
|
+
var RejectResourceShareInvitationRequest$ = [3, n0, _RRSIR, 0, [_rSIA, _cT], [0, 0]];
|
|
1253
|
+
var RejectResourceShareInvitationResponse$ = [
|
|
1240
1254
|
3,
|
|
1241
1255
|
n0,
|
|
1242
1256
|
_RRSIRe,
|
|
1243
1257
|
0,
|
|
1244
1258
|
[_rSI, _cT],
|
|
1245
|
-
[[() => ResourceShareInvitation
|
|
1259
|
+
[[() => ResourceShareInvitation$, 0], 0],
|
|
1246
1260
|
];
|
|
1247
|
-
var ReplacePermissionAssociationsRequest = [
|
|
1261
|
+
var ReplacePermissionAssociationsRequest$ = [
|
|
1248
1262
|
3,
|
|
1249
1263
|
n0,
|
|
1250
1264
|
_RPAR,
|
|
@@ -1252,15 +1266,15 @@ var ReplacePermissionAssociationsRequest = [
|
|
|
1252
1266
|
[_fPA, _fPV, _tPA, _cT],
|
|
1253
1267
|
[0, 1, 0, 0],
|
|
1254
1268
|
];
|
|
1255
|
-
var ReplacePermissionAssociationsResponse = [
|
|
1269
|
+
var ReplacePermissionAssociationsResponse$ = [
|
|
1256
1270
|
3,
|
|
1257
1271
|
n0,
|
|
1258
1272
|
_RPARe,
|
|
1259
1273
|
0,
|
|
1260
1274
|
[_rPAWe, _cT],
|
|
1261
|
-
[() => ReplacePermissionAssociationsWork
|
|
1275
|
+
[() => ReplacePermissionAssociationsWork$, 0],
|
|
1262
1276
|
];
|
|
1263
|
-
var ReplacePermissionAssociationsWork = [
|
|
1277
|
+
var ReplacePermissionAssociationsWork$ = [
|
|
1264
1278
|
3,
|
|
1265
1279
|
n0,
|
|
1266
1280
|
_RPAW,
|
|
@@ -1268,7 +1282,7 @@ var ReplacePermissionAssociationsWork = [
|
|
|
1268
1282
|
[_i, _fPA, _fPV, _tPA, _tPV, _s, _sM, _cTr, _lUT],
|
|
1269
1283
|
[0, 0, 0, 0, 0, 0, 0, 4, 4],
|
|
1270
1284
|
];
|
|
1271
|
-
var Resource = [
|
|
1285
|
+
var Resource$ = [
|
|
1272
1286
|
3,
|
|
1273
1287
|
n0,
|
|
1274
1288
|
_R,
|
|
@@ -1276,7 +1290,7 @@ var Resource = [
|
|
|
1276
1290
|
[_a, _ty, _rSA, _rGA, _s, _sM, _cTr, _lUT, _rRS],
|
|
1277
1291
|
[0, 0, 0, 0, 0, 0, 4, 4, 0],
|
|
1278
1292
|
];
|
|
1279
|
-
var ResourceArnNotFoundException = [
|
|
1293
|
+
var ResourceArnNotFoundException$ = [
|
|
1280
1294
|
-3,
|
|
1281
1295
|
n0,
|
|
1282
1296
|
_RANFE,
|
|
@@ -1284,8 +1298,8 @@ var ResourceArnNotFoundException = [
|
|
|
1284
1298
|
[_m],
|
|
1285
1299
|
[0],
|
|
1286
1300
|
];
|
|
1287
|
-
schema.TypeRegistry.for(n0).registerError(ResourceArnNotFoundException
|
|
1288
|
-
var ResourceShare = [
|
|
1301
|
+
schema.TypeRegistry.for(n0).registerError(ResourceArnNotFoundException$, ResourceArnNotFoundException);
|
|
1302
|
+
var ResourceShare$ = [
|
|
1289
1303
|
3,
|
|
1290
1304
|
n0,
|
|
1291
1305
|
_RS,
|
|
@@ -1293,7 +1307,7 @@ var ResourceShare = [
|
|
|
1293
1307
|
[_rSA, _n, _oAI, _aEP, _s, _sM, _t, _cTr, _lUT, _fS],
|
|
1294
1308
|
[0, 0, 0, 2, 0, 0, () => TagList, 4, 4, 0],
|
|
1295
1309
|
];
|
|
1296
|
-
var ResourceShareAssociation = [
|
|
1310
|
+
var ResourceShareAssociation$ = [
|
|
1297
1311
|
3,
|
|
1298
1312
|
n0,
|
|
1299
1313
|
_RSA,
|
|
@@ -1301,7 +1315,7 @@ var ResourceShareAssociation = [
|
|
|
1301
1315
|
[_rSA, _rSN, _aE, _aT, _s, _sM, _cTr, _lUT, _ex],
|
|
1302
1316
|
[0, 0, 0, 0, 0, 0, 4, 4, 2],
|
|
1303
1317
|
];
|
|
1304
|
-
var ResourceShareInvitation = [
|
|
1318
|
+
var ResourceShareInvitation$ = [
|
|
1305
1319
|
3,
|
|
1306
1320
|
n0,
|
|
1307
1321
|
_RSI,
|
|
@@ -1309,7 +1323,7 @@ var ResourceShareInvitation = [
|
|
|
1309
1323
|
[_rSIA, _rSN, _rSA, _sAI, _rAI, _iT, _s, _rSAe, _rAec],
|
|
1310
1324
|
[0, 0, 0, 0, 0, 4, 0, [() => ResourceShareAssociationList, 0], 0],
|
|
1311
1325
|
];
|
|
1312
|
-
var ResourceShareInvitationAlreadyAcceptedException = [
|
|
1326
|
+
var ResourceShareInvitationAlreadyAcceptedException$ = [
|
|
1313
1327
|
-3,
|
|
1314
1328
|
n0,
|
|
1315
1329
|
_RSIAAE,
|
|
@@ -1317,8 +1331,8 @@ var ResourceShareInvitationAlreadyAcceptedException = [
|
|
|
1317
1331
|
[_m],
|
|
1318
1332
|
[0],
|
|
1319
1333
|
];
|
|
1320
|
-
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationAlreadyAcceptedException
|
|
1321
|
-
var ResourceShareInvitationAlreadyRejectedException = [
|
|
1334
|
+
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationAlreadyAcceptedException$, ResourceShareInvitationAlreadyAcceptedException);
|
|
1335
|
+
var ResourceShareInvitationAlreadyRejectedException$ = [
|
|
1322
1336
|
-3,
|
|
1323
1337
|
n0,
|
|
1324
1338
|
_RSIARE,
|
|
@@ -1326,8 +1340,8 @@ var ResourceShareInvitationAlreadyRejectedException = [
|
|
|
1326
1340
|
[_m],
|
|
1327
1341
|
[0],
|
|
1328
1342
|
];
|
|
1329
|
-
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationAlreadyRejectedException
|
|
1330
|
-
var ResourceShareInvitationArnNotFoundException = [
|
|
1343
|
+
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationAlreadyRejectedException$, ResourceShareInvitationAlreadyRejectedException);
|
|
1344
|
+
var ResourceShareInvitationArnNotFoundException$ = [
|
|
1331
1345
|
-3,
|
|
1332
1346
|
n0,
|
|
1333
1347
|
_RSIANFE,
|
|
@@ -1335,8 +1349,8 @@ var ResourceShareInvitationArnNotFoundException = [
|
|
|
1335
1349
|
[_m],
|
|
1336
1350
|
[0],
|
|
1337
1351
|
];
|
|
1338
|
-
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationArnNotFoundException
|
|
1339
|
-
var ResourceShareInvitationExpiredException = [
|
|
1352
|
+
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationArnNotFoundException$, ResourceShareInvitationArnNotFoundException);
|
|
1353
|
+
var ResourceShareInvitationExpiredException$ = [
|
|
1340
1354
|
-3,
|
|
1341
1355
|
n0,
|
|
1342
1356
|
_RSIEE,
|
|
@@ -1344,8 +1358,8 @@ var ResourceShareInvitationExpiredException = [
|
|
|
1344
1358
|
[_m],
|
|
1345
1359
|
[0],
|
|
1346
1360
|
];
|
|
1347
|
-
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationExpiredException
|
|
1348
|
-
var ResourceShareLimitExceededException = [
|
|
1361
|
+
schema.TypeRegistry.for(n0).registerError(ResourceShareInvitationExpiredException$, ResourceShareInvitationExpiredException);
|
|
1362
|
+
var ResourceShareLimitExceededException$ = [
|
|
1349
1363
|
-3,
|
|
1350
1364
|
n0,
|
|
1351
1365
|
_RSLEE,
|
|
@@ -1353,8 +1367,8 @@ var ResourceShareLimitExceededException = [
|
|
|
1353
1367
|
[_m],
|
|
1354
1368
|
[0],
|
|
1355
1369
|
];
|
|
1356
|
-
schema.TypeRegistry.for(n0).registerError(ResourceShareLimitExceededException
|
|
1357
|
-
var ResourceSharePermissionDetail = [
|
|
1370
|
+
schema.TypeRegistry.for(n0).registerError(ResourceShareLimitExceededException$, ResourceShareLimitExceededException);
|
|
1371
|
+
var ResourceSharePermissionDetail$ = [
|
|
1358
1372
|
3,
|
|
1359
1373
|
n0,
|
|
1360
1374
|
_RSPD,
|
|
@@ -1362,7 +1376,7 @@ var ResourceSharePermissionDetail = [
|
|
|
1362
1376
|
[_a, _v, _dV, _n, _rT, _pe, _cTr, _lUT, _iRTD, _pTe, _fS, _s, _t],
|
|
1363
1377
|
[0, 0, 2, 0, 0, 0, 4, 4, 2, 0, 0, 0, () => TagList],
|
|
1364
1378
|
];
|
|
1365
|
-
var ResourceSharePermissionSummary = [
|
|
1379
|
+
var ResourceSharePermissionSummary$ = [
|
|
1366
1380
|
3,
|
|
1367
1381
|
n0,
|
|
1368
1382
|
_RSPS,
|
|
@@ -1370,7 +1384,7 @@ var ResourceSharePermissionSummary = [
|
|
|
1370
1384
|
[_a, _v, _dV, _n, _rT, _s, _cTr, _lUT, _iRTD, _pTe, _fS, _t],
|
|
1371
1385
|
[0, 0, 2, 0, 0, 0, 4, 4, 2, 0, 0, () => TagList],
|
|
1372
1386
|
];
|
|
1373
|
-
var ServerInternalException = [
|
|
1387
|
+
var ServerInternalException$ = [
|
|
1374
1388
|
-3,
|
|
1375
1389
|
n0,
|
|
1376
1390
|
_SIE,
|
|
@@ -1378,9 +1392,9 @@ var ServerInternalException = [
|
|
|
1378
1392
|
[_m],
|
|
1379
1393
|
[0],
|
|
1380
1394
|
];
|
|
1381
|
-
schema.TypeRegistry.for(n0).registerError(ServerInternalException
|
|
1382
|
-
var ServiceNameAndResourceType = [3, n0, _SNART, 0, [_rT, _sN, _rRS], [0, 0, 0]];
|
|
1383
|
-
var ServiceUnavailableException = [
|
|
1395
|
+
schema.TypeRegistry.for(n0).registerError(ServerInternalException$, ServerInternalException);
|
|
1396
|
+
var ServiceNameAndResourceType$ = [3, n0, _SNART, 0, [_rT, _sN, _rRS], [0, 0, 0]];
|
|
1397
|
+
var ServiceUnavailableException$ = [
|
|
1384
1398
|
-3,
|
|
1385
1399
|
n0,
|
|
1386
1400
|
_SUE,
|
|
@@ -1388,9 +1402,9 @@ var ServiceUnavailableException = [
|
|
|
1388
1402
|
[_m],
|
|
1389
1403
|
[0],
|
|
1390
1404
|
];
|
|
1391
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException
|
|
1392
|
-
var SetDefaultPermissionVersionRequest = [3, n0, _SDPVR, 0, [_pA, _pV, _cT], [0, 1, 0]];
|
|
1393
|
-
var SetDefaultPermissionVersionResponse = [
|
|
1405
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1406
|
+
var SetDefaultPermissionVersionRequest$ = [3, n0, _SDPVR, 0, [_pA, _pV, _cT], [0, 1, 0]];
|
|
1407
|
+
var SetDefaultPermissionVersionResponse$ = [
|
|
1394
1408
|
3,
|
|
1395
1409
|
n0,
|
|
1396
1410
|
_SDPVRe,
|
|
@@ -1398,9 +1412,9 @@ var SetDefaultPermissionVersionResponse = [
|
|
|
1398
1412
|
[_rV, _cT],
|
|
1399
1413
|
[[2, { [_xN]: _re }], 0],
|
|
1400
1414
|
];
|
|
1401
|
-
var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
|
|
1402
|
-
var TagFilter = [3, n0, _TF, 0, [_tK, _tV], [0, 64 | 0]];
|
|
1403
|
-
var TagLimitExceededException = [
|
|
1415
|
+
var Tag$ = [3, n0, _T, 0, [_k, _va], [0, 0]];
|
|
1416
|
+
var TagFilter$ = [3, n0, _TF, 0, [_tK, _tV], [0, 64 | 0]];
|
|
1417
|
+
var TagLimitExceededException$ = [
|
|
1404
1418
|
-3,
|
|
1405
1419
|
n0,
|
|
1406
1420
|
_TLEE,
|
|
@@ -1408,8 +1422,8 @@ var TagLimitExceededException = [
|
|
|
1408
1422
|
[_m],
|
|
1409
1423
|
[0],
|
|
1410
1424
|
];
|
|
1411
|
-
schema.TypeRegistry.for(n0).registerError(TagLimitExceededException
|
|
1412
|
-
var TagPolicyViolationException = [
|
|
1425
|
+
schema.TypeRegistry.for(n0).registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
1426
|
+
var TagPolicyViolationException$ = [
|
|
1413
1427
|
-3,
|
|
1414
1428
|
n0,
|
|
1415
1429
|
_TPVE,
|
|
@@ -1417,10 +1431,10 @@ var TagPolicyViolationException = [
|
|
|
1417
1431
|
[_m],
|
|
1418
1432
|
[0],
|
|
1419
1433
|
];
|
|
1420
|
-
schema.TypeRegistry.for(n0).registerError(TagPolicyViolationException
|
|
1421
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rSA, _t, _rAe], [0, () => TagList, 0]];
|
|
1422
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1423
|
-
var ThrottlingException = [
|
|
1434
|
+
schema.TypeRegistry.for(n0).registerError(TagPolicyViolationException$, TagPolicyViolationException);
|
|
1435
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rSA, _t, _rAe], [0, () => TagList, 0]];
|
|
1436
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
1437
|
+
var ThrottlingException$ = [
|
|
1424
1438
|
-3,
|
|
1425
1439
|
n0,
|
|
1426
1440
|
_TE,
|
|
@@ -1428,8 +1442,8 @@ var ThrottlingException = [
|
|
|
1428
1442
|
[_m],
|
|
1429
1443
|
[0],
|
|
1430
1444
|
];
|
|
1431
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1432
|
-
var UnknownResourceException = [
|
|
1445
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1446
|
+
var UnknownResourceException$ = [
|
|
1433
1447
|
-3,
|
|
1434
1448
|
n0,
|
|
1435
1449
|
_URE,
|
|
@@ -1437,8 +1451,8 @@ var UnknownResourceException = [
|
|
|
1437
1451
|
[_m],
|
|
1438
1452
|
[0],
|
|
1439
1453
|
];
|
|
1440
|
-
schema.TypeRegistry.for(n0).registerError(UnknownResourceException
|
|
1441
|
-
var UnmatchedPolicyPermissionException = [
|
|
1454
|
+
schema.TypeRegistry.for(n0).registerError(UnknownResourceException$, UnknownResourceException);
|
|
1455
|
+
var UnmatchedPolicyPermissionException$ = [
|
|
1442
1456
|
-3,
|
|
1443
1457
|
n0,
|
|
1444
1458
|
_UPPE,
|
|
@@ -1446,340 +1460,334 @@ var UnmatchedPolicyPermissionException = [
|
|
|
1446
1460
|
[_m],
|
|
1447
1461
|
[0],
|
|
1448
1462
|
];
|
|
1449
|
-
schema.TypeRegistry.for(n0).registerError(UnmatchedPolicyPermissionException
|
|
1450
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_rSA, _tKa, _rAe], [0, 64 | 0, 0]];
|
|
1451
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1452
|
-
var UpdateResourceShareRequest = [3, n0, _URSR, 0, [_rSA, _n, _aEP, _cT], [0, 0, 2, 0]];
|
|
1453
|
-
var UpdateResourceShareResponse = [
|
|
1463
|
+
schema.TypeRegistry.for(n0).registerError(UnmatchedPolicyPermissionException$, UnmatchedPolicyPermissionException);
|
|
1464
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_rSA, _tKa, _rAe], [0, 64 | 0, 0]];
|
|
1465
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
1466
|
+
var UpdateResourceShareRequest$ = [3, n0, _URSR, 0, [_rSA, _n, _aEP, _cT], [0, 0, 2, 0]];
|
|
1467
|
+
var UpdateResourceShareResponse$ = [
|
|
1454
1468
|
3,
|
|
1455
1469
|
n0,
|
|
1456
1470
|
_URSRp,
|
|
1457
1471
|
0,
|
|
1458
1472
|
[_rS, _cT],
|
|
1459
|
-
[() => ResourceShare
|
|
1473
|
+
[() => ResourceShare$, 0],
|
|
1460
1474
|
];
|
|
1461
|
-
var RAMServiceException = [-3, _sm, "RAMServiceException", 0, [], []];
|
|
1462
|
-
schema.TypeRegistry.for(_sm).registerError(RAMServiceException
|
|
1463
|
-
var AssociatedPermissionList = [1, n0, _APL, 0, [() => AssociatedPermission
|
|
1475
|
+
var RAMServiceException$ = [-3, _sm, "RAMServiceException", 0, [], []];
|
|
1476
|
+
schema.TypeRegistry.for(_sm).registerError(RAMServiceException$, RAMServiceException);
|
|
1477
|
+
var AssociatedPermissionList = [1, n0, _APL, 0, [() => AssociatedPermission$, { [_xN]: _it }]];
|
|
1464
1478
|
var PermissionArnList = [1, n0, _PAL, 0, [0, { [_xN]: _it }]];
|
|
1465
1479
|
var PolicyList = [1, n0, _PL, 0, [0, { [_xN]: _it }]];
|
|
1466
1480
|
var PrincipalArnOrIdList = [1, n0, _PAOIL, 0, [0, { [_xN]: _it }]];
|
|
1467
|
-
var PrincipalList = [1, n0, _PLr, 0, [() => Principal
|
|
1481
|
+
var PrincipalList = [1, n0, _PLr, 0, [() => Principal$, { [_xN]: _it }]];
|
|
1468
1482
|
var ReplacePermissionAssociationsWorkIdList = [1, n0, _RPAWIL, 0, [0, { [_xN]: _it }]];
|
|
1469
1483
|
var ReplacePermissionAssociationsWorkList = [
|
|
1470
1484
|
1,
|
|
1471
1485
|
n0,
|
|
1472
1486
|
_RPAWL,
|
|
1473
1487
|
0,
|
|
1474
|
-
[() => ReplacePermissionAssociationsWork
|
|
1488
|
+
[() => ReplacePermissionAssociationsWork$, { [_xN]: _it }],
|
|
1475
1489
|
];
|
|
1476
1490
|
var ResourceArnList = [1, n0, _RAL, 0, [0, { [_xN]: _it }]];
|
|
1477
|
-
var ResourceList = [1, n0, _RL, 0, [() => Resource
|
|
1491
|
+
var ResourceList = [1, n0, _RL, 0, [() => Resource$, { [_xN]: _it }]];
|
|
1478
1492
|
var ResourceShareArnList = [1, n0, _RSAL, 0, [0, { [_xN]: _it }]];
|
|
1479
1493
|
var ResourceShareAssociationList = [
|
|
1480
1494
|
1,
|
|
1481
1495
|
n0,
|
|
1482
1496
|
_RSALe,
|
|
1483
1497
|
0,
|
|
1484
|
-
[() => ResourceShareAssociation
|
|
1498
|
+
[() => ResourceShareAssociation$, { [_xN]: _it }],
|
|
1485
1499
|
];
|
|
1486
1500
|
var ResourceShareInvitationArnList = [1, n0, _RSIAL, 0, [0, { [_xN]: _it }]];
|
|
1487
|
-
var ResourceShareInvitationList = [
|
|
1488
|
-
|
|
1489
|
-
n0,
|
|
1490
|
-
_RSIL,
|
|
1491
|
-
0,
|
|
1492
|
-
[() => ResourceShareInvitation, { [_xN]: _it }],
|
|
1493
|
-
];
|
|
1494
|
-
var ResourceShareList = [1, n0, _RSL, 0, [() => ResourceShare, { [_xN]: _it }]];
|
|
1501
|
+
var ResourceShareInvitationList = [1, n0, _RSIL, 0, [() => ResourceShareInvitation$, { [_xN]: _it }]];
|
|
1502
|
+
var ResourceShareList = [1, n0, _RSL, 0, [() => ResourceShare$, { [_xN]: _it }]];
|
|
1495
1503
|
var ResourceSharePermissionList = [
|
|
1496
1504
|
1,
|
|
1497
1505
|
n0,
|
|
1498
1506
|
_RSPL,
|
|
1499
1507
|
0,
|
|
1500
|
-
[() => ResourceSharePermissionSummary
|
|
1508
|
+
[() => ResourceSharePermissionSummary$, { [_xN]: _it }],
|
|
1501
1509
|
];
|
|
1502
1510
|
var ServiceNameAndResourceTypeList = [
|
|
1503
1511
|
1,
|
|
1504
1512
|
n0,
|
|
1505
1513
|
_SNARTL,
|
|
1506
1514
|
0,
|
|
1507
|
-
[() => ServiceNameAndResourceType
|
|
1515
|
+
[() => ServiceNameAndResourceType$, { [_xN]: _it }],
|
|
1508
1516
|
];
|
|
1509
1517
|
var SourceArnOrAccountList = [1, n0, _SAOAL, 0, [0, { [_xN]: _it }]];
|
|
1510
|
-
var TagFilters = [1, n0, _TFa, 0, () => TagFilter];
|
|
1511
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1512
|
-
var AcceptResourceShareInvitation = [
|
|
1518
|
+
var TagFilters = [1, n0, _TFa, 0, () => TagFilter$];
|
|
1519
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
1520
|
+
var AcceptResourceShareInvitation$ = [
|
|
1513
1521
|
9,
|
|
1514
1522
|
n0,
|
|
1515
1523
|
_ARSI,
|
|
1516
1524
|
{ [_h]: ["POST", "/acceptresourceshareinvitation", 200] },
|
|
1517
|
-
() => AcceptResourceShareInvitationRequest
|
|
1518
|
-
() => AcceptResourceShareInvitationResponse
|
|
1525
|
+
() => AcceptResourceShareInvitationRequest$,
|
|
1526
|
+
() => AcceptResourceShareInvitationResponse$,
|
|
1519
1527
|
];
|
|
1520
|
-
var AssociateResourceShare = [
|
|
1528
|
+
var AssociateResourceShare$ = [
|
|
1521
1529
|
9,
|
|
1522
1530
|
n0,
|
|
1523
1531
|
_ARS,
|
|
1524
1532
|
{ [_h]: ["POST", "/associateresourceshare", 200] },
|
|
1525
|
-
() => AssociateResourceShareRequest
|
|
1526
|
-
() => AssociateResourceShareResponse
|
|
1533
|
+
() => AssociateResourceShareRequest$,
|
|
1534
|
+
() => AssociateResourceShareResponse$,
|
|
1527
1535
|
];
|
|
1528
|
-
var AssociateResourceSharePermission = [
|
|
1536
|
+
var AssociateResourceSharePermission$ = [
|
|
1529
1537
|
9,
|
|
1530
1538
|
n0,
|
|
1531
1539
|
_ARSP,
|
|
1532
1540
|
{ [_h]: ["POST", "/associateresourcesharepermission", 200] },
|
|
1533
|
-
() => AssociateResourceSharePermissionRequest
|
|
1534
|
-
() => AssociateResourceSharePermissionResponse
|
|
1541
|
+
() => AssociateResourceSharePermissionRequest$,
|
|
1542
|
+
() => AssociateResourceSharePermissionResponse$,
|
|
1535
1543
|
];
|
|
1536
|
-
var CreatePermission = [
|
|
1544
|
+
var CreatePermission$ = [
|
|
1537
1545
|
9,
|
|
1538
1546
|
n0,
|
|
1539
1547
|
_CP,
|
|
1540
1548
|
{ [_h]: ["POST", "/createpermission", 200] },
|
|
1541
|
-
() => CreatePermissionRequest
|
|
1542
|
-
() => CreatePermissionResponse
|
|
1549
|
+
() => CreatePermissionRequest$,
|
|
1550
|
+
() => CreatePermissionResponse$,
|
|
1543
1551
|
];
|
|
1544
|
-
var CreatePermissionVersion = [
|
|
1552
|
+
var CreatePermissionVersion$ = [
|
|
1545
1553
|
9,
|
|
1546
1554
|
n0,
|
|
1547
1555
|
_CPV,
|
|
1548
1556
|
{ [_h]: ["POST", "/createpermissionversion", 200] },
|
|
1549
|
-
() => CreatePermissionVersionRequest
|
|
1550
|
-
() => CreatePermissionVersionResponse
|
|
1557
|
+
() => CreatePermissionVersionRequest$,
|
|
1558
|
+
() => CreatePermissionVersionResponse$,
|
|
1551
1559
|
];
|
|
1552
|
-
var CreateResourceShare = [
|
|
1560
|
+
var CreateResourceShare$ = [
|
|
1553
1561
|
9,
|
|
1554
1562
|
n0,
|
|
1555
1563
|
_CRS,
|
|
1556
1564
|
{ [_h]: ["POST", "/createresourceshare", 200] },
|
|
1557
|
-
() => CreateResourceShareRequest
|
|
1558
|
-
() => CreateResourceShareResponse
|
|
1565
|
+
() => CreateResourceShareRequest$,
|
|
1566
|
+
() => CreateResourceShareResponse$,
|
|
1559
1567
|
];
|
|
1560
|
-
var DeletePermission = [
|
|
1568
|
+
var DeletePermission$ = [
|
|
1561
1569
|
9,
|
|
1562
1570
|
n0,
|
|
1563
1571
|
_DP,
|
|
1564
1572
|
{ [_h]: ["DELETE", "/deletepermission", 200] },
|
|
1565
|
-
() => DeletePermissionRequest
|
|
1566
|
-
() => DeletePermissionResponse
|
|
1573
|
+
() => DeletePermissionRequest$,
|
|
1574
|
+
() => DeletePermissionResponse$,
|
|
1567
1575
|
];
|
|
1568
|
-
var DeletePermissionVersion = [
|
|
1576
|
+
var DeletePermissionVersion$ = [
|
|
1569
1577
|
9,
|
|
1570
1578
|
n0,
|
|
1571
1579
|
_DPV,
|
|
1572
1580
|
{ [_h]: ["DELETE", "/deletepermissionversion", 200] },
|
|
1573
|
-
() => DeletePermissionVersionRequest
|
|
1574
|
-
() => DeletePermissionVersionResponse
|
|
1581
|
+
() => DeletePermissionVersionRequest$,
|
|
1582
|
+
() => DeletePermissionVersionResponse$,
|
|
1575
1583
|
];
|
|
1576
|
-
var DeleteResourceShare = [
|
|
1584
|
+
var DeleteResourceShare$ = [
|
|
1577
1585
|
9,
|
|
1578
1586
|
n0,
|
|
1579
1587
|
_DRS,
|
|
1580
1588
|
{ [_h]: ["DELETE", "/deleteresourceshare", 200] },
|
|
1581
|
-
() => DeleteResourceShareRequest
|
|
1582
|
-
() => DeleteResourceShareResponse
|
|
1589
|
+
() => DeleteResourceShareRequest$,
|
|
1590
|
+
() => DeleteResourceShareResponse$,
|
|
1583
1591
|
];
|
|
1584
|
-
var DisassociateResourceShare = [
|
|
1592
|
+
var DisassociateResourceShare$ = [
|
|
1585
1593
|
9,
|
|
1586
1594
|
n0,
|
|
1587
1595
|
_DRSi,
|
|
1588
1596
|
{ [_h]: ["POST", "/disassociateresourceshare", 200] },
|
|
1589
|
-
() => DisassociateResourceShareRequest
|
|
1590
|
-
() => DisassociateResourceShareResponse
|
|
1597
|
+
() => DisassociateResourceShareRequest$,
|
|
1598
|
+
() => DisassociateResourceShareResponse$,
|
|
1591
1599
|
];
|
|
1592
|
-
var DisassociateResourceSharePermission = [
|
|
1600
|
+
var DisassociateResourceSharePermission$ = [
|
|
1593
1601
|
9,
|
|
1594
1602
|
n0,
|
|
1595
1603
|
_DRSP,
|
|
1596
1604
|
{ [_h]: ["POST", "/disassociateresourcesharepermission", 200] },
|
|
1597
|
-
() => DisassociateResourceSharePermissionRequest
|
|
1598
|
-
() => DisassociateResourceSharePermissionResponse
|
|
1605
|
+
() => DisassociateResourceSharePermissionRequest$,
|
|
1606
|
+
() => DisassociateResourceSharePermissionResponse$,
|
|
1599
1607
|
];
|
|
1600
|
-
var EnableSharingWithAwsOrganization = [
|
|
1608
|
+
var EnableSharingWithAwsOrganization$ = [
|
|
1601
1609
|
9,
|
|
1602
1610
|
n0,
|
|
1603
1611
|
_ESWAO,
|
|
1604
1612
|
{ [_h]: ["POST", "/enablesharingwithawsorganization", 200] },
|
|
1605
|
-
() => EnableSharingWithAwsOrganizationRequest
|
|
1606
|
-
() => EnableSharingWithAwsOrganizationResponse
|
|
1613
|
+
() => EnableSharingWithAwsOrganizationRequest$,
|
|
1614
|
+
() => EnableSharingWithAwsOrganizationResponse$,
|
|
1607
1615
|
];
|
|
1608
|
-
var GetPermission = [
|
|
1616
|
+
var GetPermission$ = [
|
|
1609
1617
|
9,
|
|
1610
1618
|
n0,
|
|
1611
1619
|
_GP,
|
|
1612
1620
|
{ [_h]: ["POST", "/getpermission", 200] },
|
|
1613
|
-
() => GetPermissionRequest
|
|
1614
|
-
() => GetPermissionResponse
|
|
1621
|
+
() => GetPermissionRequest$,
|
|
1622
|
+
() => GetPermissionResponse$,
|
|
1615
1623
|
];
|
|
1616
|
-
var GetResourcePolicies = [
|
|
1624
|
+
var GetResourcePolicies$ = [
|
|
1617
1625
|
9,
|
|
1618
1626
|
n0,
|
|
1619
1627
|
_GRP,
|
|
1620
1628
|
{ [_h]: ["POST", "/getresourcepolicies", 200] },
|
|
1621
|
-
() => GetResourcePoliciesRequest
|
|
1622
|
-
() => GetResourcePoliciesResponse
|
|
1629
|
+
() => GetResourcePoliciesRequest$,
|
|
1630
|
+
() => GetResourcePoliciesResponse$,
|
|
1623
1631
|
];
|
|
1624
|
-
var GetResourceShareAssociations = [
|
|
1632
|
+
var GetResourceShareAssociations$ = [
|
|
1625
1633
|
9,
|
|
1626
1634
|
n0,
|
|
1627
1635
|
_GRSA,
|
|
1628
1636
|
{ [_h]: ["POST", "/getresourceshareassociations", 200] },
|
|
1629
|
-
() => GetResourceShareAssociationsRequest
|
|
1630
|
-
() => GetResourceShareAssociationsResponse
|
|
1637
|
+
() => GetResourceShareAssociationsRequest$,
|
|
1638
|
+
() => GetResourceShareAssociationsResponse$,
|
|
1631
1639
|
];
|
|
1632
|
-
var GetResourceShareInvitations = [
|
|
1640
|
+
var GetResourceShareInvitations$ = [
|
|
1633
1641
|
9,
|
|
1634
1642
|
n0,
|
|
1635
1643
|
_GRSI,
|
|
1636
1644
|
{ [_h]: ["POST", "/getresourceshareinvitations", 200] },
|
|
1637
|
-
() => GetResourceShareInvitationsRequest
|
|
1638
|
-
() => GetResourceShareInvitationsResponse
|
|
1645
|
+
() => GetResourceShareInvitationsRequest$,
|
|
1646
|
+
() => GetResourceShareInvitationsResponse$,
|
|
1639
1647
|
];
|
|
1640
|
-
var GetResourceShares = [
|
|
1648
|
+
var GetResourceShares$ = [
|
|
1641
1649
|
9,
|
|
1642
1650
|
n0,
|
|
1643
1651
|
_GRS,
|
|
1644
1652
|
{ [_h]: ["POST", "/getresourceshares", 200] },
|
|
1645
|
-
() => GetResourceSharesRequest
|
|
1646
|
-
() => GetResourceSharesResponse
|
|
1653
|
+
() => GetResourceSharesRequest$,
|
|
1654
|
+
() => GetResourceSharesResponse$,
|
|
1647
1655
|
];
|
|
1648
|
-
var ListPendingInvitationResources = [
|
|
1656
|
+
var ListPendingInvitationResources$ = [
|
|
1649
1657
|
9,
|
|
1650
1658
|
n0,
|
|
1651
1659
|
_LPIR,
|
|
1652
1660
|
{ [_h]: ["POST", "/listpendinginvitationresources", 200] },
|
|
1653
|
-
() => ListPendingInvitationResourcesRequest
|
|
1654
|
-
() => ListPendingInvitationResourcesResponse
|
|
1661
|
+
() => ListPendingInvitationResourcesRequest$,
|
|
1662
|
+
() => ListPendingInvitationResourcesResponse$,
|
|
1655
1663
|
];
|
|
1656
|
-
var ListPermissionAssociations = [
|
|
1664
|
+
var ListPermissionAssociations$ = [
|
|
1657
1665
|
9,
|
|
1658
1666
|
n0,
|
|
1659
1667
|
_LPA,
|
|
1660
1668
|
{ [_h]: ["POST", "/listpermissionassociations", 200] },
|
|
1661
|
-
() => ListPermissionAssociationsRequest
|
|
1662
|
-
() => ListPermissionAssociationsResponse
|
|
1669
|
+
() => ListPermissionAssociationsRequest$,
|
|
1670
|
+
() => ListPermissionAssociationsResponse$,
|
|
1663
1671
|
];
|
|
1664
|
-
var ListPermissions = [
|
|
1672
|
+
var ListPermissions$ = [
|
|
1665
1673
|
9,
|
|
1666
1674
|
n0,
|
|
1667
1675
|
_LP,
|
|
1668
1676
|
{ [_h]: ["POST", "/listpermissions", 200] },
|
|
1669
|
-
() => ListPermissionsRequest
|
|
1670
|
-
() => ListPermissionsResponse
|
|
1677
|
+
() => ListPermissionsRequest$,
|
|
1678
|
+
() => ListPermissionsResponse$,
|
|
1671
1679
|
];
|
|
1672
|
-
var ListPermissionVersions = [
|
|
1680
|
+
var ListPermissionVersions$ = [
|
|
1673
1681
|
9,
|
|
1674
1682
|
n0,
|
|
1675
1683
|
_LPV,
|
|
1676
1684
|
{ [_h]: ["POST", "/listpermissionversions", 200] },
|
|
1677
|
-
() => ListPermissionVersionsRequest
|
|
1678
|
-
() => ListPermissionVersionsResponse
|
|
1685
|
+
() => ListPermissionVersionsRequest$,
|
|
1686
|
+
() => ListPermissionVersionsResponse$,
|
|
1679
1687
|
];
|
|
1680
|
-
var ListPrincipals = [
|
|
1688
|
+
var ListPrincipals$ = [
|
|
1681
1689
|
9,
|
|
1682
1690
|
n0,
|
|
1683
1691
|
_LPi,
|
|
1684
1692
|
{ [_h]: ["POST", "/listprincipals", 200] },
|
|
1685
|
-
() => ListPrincipalsRequest
|
|
1686
|
-
() => ListPrincipalsResponse
|
|
1693
|
+
() => ListPrincipalsRequest$,
|
|
1694
|
+
() => ListPrincipalsResponse$,
|
|
1687
1695
|
];
|
|
1688
|
-
var ListReplacePermissionAssociationsWork = [
|
|
1696
|
+
var ListReplacePermissionAssociationsWork$ = [
|
|
1689
1697
|
9,
|
|
1690
1698
|
n0,
|
|
1691
1699
|
_LRPAW,
|
|
1692
1700
|
{ [_h]: ["POST", "/listreplacepermissionassociationswork", 200] },
|
|
1693
|
-
() => ListReplacePermissionAssociationsWorkRequest
|
|
1694
|
-
() => ListReplacePermissionAssociationsWorkResponse
|
|
1701
|
+
() => ListReplacePermissionAssociationsWorkRequest$,
|
|
1702
|
+
() => ListReplacePermissionAssociationsWorkResponse$,
|
|
1695
1703
|
];
|
|
1696
|
-
var ListResources = [
|
|
1704
|
+
var ListResources$ = [
|
|
1697
1705
|
9,
|
|
1698
1706
|
n0,
|
|
1699
1707
|
_LR,
|
|
1700
1708
|
{ [_h]: ["POST", "/listresources", 200] },
|
|
1701
|
-
() => ListResourcesRequest
|
|
1702
|
-
() => ListResourcesResponse
|
|
1709
|
+
() => ListResourcesRequest$,
|
|
1710
|
+
() => ListResourcesResponse$,
|
|
1703
1711
|
];
|
|
1704
|
-
var ListResourceSharePermissions = [
|
|
1712
|
+
var ListResourceSharePermissions$ = [
|
|
1705
1713
|
9,
|
|
1706
1714
|
n0,
|
|
1707
1715
|
_LRSP,
|
|
1708
1716
|
{ [_h]: ["POST", "/listresourcesharepermissions", 200] },
|
|
1709
|
-
() => ListResourceSharePermissionsRequest
|
|
1710
|
-
() => ListResourceSharePermissionsResponse
|
|
1717
|
+
() => ListResourceSharePermissionsRequest$,
|
|
1718
|
+
() => ListResourceSharePermissionsResponse$,
|
|
1711
1719
|
];
|
|
1712
|
-
var ListResourceTypes = [
|
|
1720
|
+
var ListResourceTypes$ = [
|
|
1713
1721
|
9,
|
|
1714
1722
|
n0,
|
|
1715
1723
|
_LRT,
|
|
1716
1724
|
{ [_h]: ["POST", "/listresourcetypes", 200] },
|
|
1717
|
-
() => ListResourceTypesRequest
|
|
1718
|
-
() => ListResourceTypesResponse
|
|
1725
|
+
() => ListResourceTypesRequest$,
|
|
1726
|
+
() => ListResourceTypesResponse$,
|
|
1719
1727
|
];
|
|
1720
|
-
var PromotePermissionCreatedFromPolicy = [
|
|
1728
|
+
var PromotePermissionCreatedFromPolicy$ = [
|
|
1721
1729
|
9,
|
|
1722
1730
|
n0,
|
|
1723
1731
|
_PPCFP,
|
|
1724
1732
|
{ [_h]: ["POST", "/promotepermissioncreatedfrompolicy", 200] },
|
|
1725
|
-
() => PromotePermissionCreatedFromPolicyRequest
|
|
1726
|
-
() => PromotePermissionCreatedFromPolicyResponse
|
|
1733
|
+
() => PromotePermissionCreatedFromPolicyRequest$,
|
|
1734
|
+
() => PromotePermissionCreatedFromPolicyResponse$,
|
|
1727
1735
|
];
|
|
1728
|
-
var PromoteResourceShareCreatedFromPolicy = [
|
|
1736
|
+
var PromoteResourceShareCreatedFromPolicy$ = [
|
|
1729
1737
|
9,
|
|
1730
1738
|
n0,
|
|
1731
1739
|
_PRSCFP,
|
|
1732
1740
|
{ [_h]: ["POST", "/promoteresourcesharecreatedfrompolicy", 200] },
|
|
1733
|
-
() => PromoteResourceShareCreatedFromPolicyRequest
|
|
1734
|
-
() => PromoteResourceShareCreatedFromPolicyResponse
|
|
1741
|
+
() => PromoteResourceShareCreatedFromPolicyRequest$,
|
|
1742
|
+
() => PromoteResourceShareCreatedFromPolicyResponse$,
|
|
1735
1743
|
];
|
|
1736
|
-
var RejectResourceShareInvitation = [
|
|
1744
|
+
var RejectResourceShareInvitation$ = [
|
|
1737
1745
|
9,
|
|
1738
1746
|
n0,
|
|
1739
1747
|
_RRSI,
|
|
1740
1748
|
{ [_h]: ["POST", "/rejectresourceshareinvitation", 200] },
|
|
1741
|
-
() => RejectResourceShareInvitationRequest
|
|
1742
|
-
() => RejectResourceShareInvitationResponse
|
|
1749
|
+
() => RejectResourceShareInvitationRequest$,
|
|
1750
|
+
() => RejectResourceShareInvitationResponse$,
|
|
1743
1751
|
];
|
|
1744
|
-
var ReplacePermissionAssociations = [
|
|
1752
|
+
var ReplacePermissionAssociations$ = [
|
|
1745
1753
|
9,
|
|
1746
1754
|
n0,
|
|
1747
1755
|
_RPA,
|
|
1748
1756
|
{ [_h]: ["POST", "/replacepermissionassociations", 200] },
|
|
1749
|
-
() => ReplacePermissionAssociationsRequest
|
|
1750
|
-
() => ReplacePermissionAssociationsResponse
|
|
1757
|
+
() => ReplacePermissionAssociationsRequest$,
|
|
1758
|
+
() => ReplacePermissionAssociationsResponse$,
|
|
1751
1759
|
];
|
|
1752
|
-
var SetDefaultPermissionVersion = [
|
|
1760
|
+
var SetDefaultPermissionVersion$ = [
|
|
1753
1761
|
9,
|
|
1754
1762
|
n0,
|
|
1755
1763
|
_SDPV,
|
|
1756
1764
|
{ [_h]: ["POST", "/setdefaultpermissionversion", 200] },
|
|
1757
|
-
() => SetDefaultPermissionVersionRequest
|
|
1758
|
-
() => SetDefaultPermissionVersionResponse
|
|
1765
|
+
() => SetDefaultPermissionVersionRequest$,
|
|
1766
|
+
() => SetDefaultPermissionVersionResponse$,
|
|
1759
1767
|
];
|
|
1760
|
-
var TagResource = [
|
|
1768
|
+
var TagResource$ = [
|
|
1761
1769
|
9,
|
|
1762
1770
|
n0,
|
|
1763
1771
|
_TR,
|
|
1764
1772
|
{ [_h]: ["POST", "/tagresource", 200] },
|
|
1765
|
-
() => TagResourceRequest
|
|
1766
|
-
() => TagResourceResponse
|
|
1773
|
+
() => TagResourceRequest$,
|
|
1774
|
+
() => TagResourceResponse$,
|
|
1767
1775
|
];
|
|
1768
|
-
var UntagResource = [
|
|
1776
|
+
var UntagResource$ = [
|
|
1769
1777
|
9,
|
|
1770
1778
|
n0,
|
|
1771
1779
|
_UR,
|
|
1772
1780
|
{ [_h]: ["POST", "/untagresource", 200] },
|
|
1773
|
-
() => UntagResourceRequest
|
|
1774
|
-
() => UntagResourceResponse
|
|
1781
|
+
() => UntagResourceRequest$,
|
|
1782
|
+
() => UntagResourceResponse$,
|
|
1775
1783
|
];
|
|
1776
|
-
var UpdateResourceShare = [
|
|
1784
|
+
var UpdateResourceShare$ = [
|
|
1777
1785
|
9,
|
|
1778
1786
|
n0,
|
|
1779
1787
|
_URS,
|
|
1780
1788
|
{ [_h]: ["POST", "/updateresourceshare", 200] },
|
|
1781
|
-
() => UpdateResourceShareRequest
|
|
1782
|
-
() => UpdateResourceShareResponse
|
|
1789
|
+
() => UpdateResourceShareRequest$,
|
|
1790
|
+
() => UpdateResourceShareResponse$,
|
|
1783
1791
|
];
|
|
1784
1792
|
|
|
1785
1793
|
class AcceptResourceShareInvitationCommand extends smithyClient.Command
|
|
@@ -1790,7 +1798,7 @@ class AcceptResourceShareInvitationCommand extends smithyClient.Command
|
|
|
1790
1798
|
})
|
|
1791
1799
|
.s("AmazonResourceSharing", "AcceptResourceShareInvitation", {})
|
|
1792
1800
|
.n("RAMClient", "AcceptResourceShareInvitationCommand")
|
|
1793
|
-
.sc(AcceptResourceShareInvitation)
|
|
1801
|
+
.sc(AcceptResourceShareInvitation$)
|
|
1794
1802
|
.build() {
|
|
1795
1803
|
}
|
|
1796
1804
|
|
|
@@ -1802,7 +1810,7 @@ class AssociateResourceShareCommand extends smithyClient.Command
|
|
|
1802
1810
|
})
|
|
1803
1811
|
.s("AmazonResourceSharing", "AssociateResourceShare", {})
|
|
1804
1812
|
.n("RAMClient", "AssociateResourceShareCommand")
|
|
1805
|
-
.sc(AssociateResourceShare)
|
|
1813
|
+
.sc(AssociateResourceShare$)
|
|
1806
1814
|
.build() {
|
|
1807
1815
|
}
|
|
1808
1816
|
|
|
@@ -1814,7 +1822,7 @@ class AssociateResourceSharePermissionCommand extends smithyClient.Command
|
|
|
1814
1822
|
})
|
|
1815
1823
|
.s("AmazonResourceSharing", "AssociateResourceSharePermission", {})
|
|
1816
1824
|
.n("RAMClient", "AssociateResourceSharePermissionCommand")
|
|
1817
|
-
.sc(AssociateResourceSharePermission)
|
|
1825
|
+
.sc(AssociateResourceSharePermission$)
|
|
1818
1826
|
.build() {
|
|
1819
1827
|
}
|
|
1820
1828
|
|
|
@@ -1826,7 +1834,7 @@ class CreatePermissionCommand extends smithyClient.Command
|
|
|
1826
1834
|
})
|
|
1827
1835
|
.s("AmazonResourceSharing", "CreatePermission", {})
|
|
1828
1836
|
.n("RAMClient", "CreatePermissionCommand")
|
|
1829
|
-
.sc(CreatePermission)
|
|
1837
|
+
.sc(CreatePermission$)
|
|
1830
1838
|
.build() {
|
|
1831
1839
|
}
|
|
1832
1840
|
|
|
@@ -1838,7 +1846,7 @@ class CreatePermissionVersionCommand extends smithyClient.Command
|
|
|
1838
1846
|
})
|
|
1839
1847
|
.s("AmazonResourceSharing", "CreatePermissionVersion", {})
|
|
1840
1848
|
.n("RAMClient", "CreatePermissionVersionCommand")
|
|
1841
|
-
.sc(CreatePermissionVersion)
|
|
1849
|
+
.sc(CreatePermissionVersion$)
|
|
1842
1850
|
.build() {
|
|
1843
1851
|
}
|
|
1844
1852
|
|
|
@@ -1850,7 +1858,7 @@ class CreateResourceShareCommand extends smithyClient.Command
|
|
|
1850
1858
|
})
|
|
1851
1859
|
.s("AmazonResourceSharing", "CreateResourceShare", {})
|
|
1852
1860
|
.n("RAMClient", "CreateResourceShareCommand")
|
|
1853
|
-
.sc(CreateResourceShare)
|
|
1861
|
+
.sc(CreateResourceShare$)
|
|
1854
1862
|
.build() {
|
|
1855
1863
|
}
|
|
1856
1864
|
|
|
@@ -1862,7 +1870,7 @@ class DeletePermissionCommand extends smithyClient.Command
|
|
|
1862
1870
|
})
|
|
1863
1871
|
.s("AmazonResourceSharing", "DeletePermission", {})
|
|
1864
1872
|
.n("RAMClient", "DeletePermissionCommand")
|
|
1865
|
-
.sc(DeletePermission)
|
|
1873
|
+
.sc(DeletePermission$)
|
|
1866
1874
|
.build() {
|
|
1867
1875
|
}
|
|
1868
1876
|
|
|
@@ -1874,7 +1882,7 @@ class DeletePermissionVersionCommand extends smithyClient.Command
|
|
|
1874
1882
|
})
|
|
1875
1883
|
.s("AmazonResourceSharing", "DeletePermissionVersion", {})
|
|
1876
1884
|
.n("RAMClient", "DeletePermissionVersionCommand")
|
|
1877
|
-
.sc(DeletePermissionVersion)
|
|
1885
|
+
.sc(DeletePermissionVersion$)
|
|
1878
1886
|
.build() {
|
|
1879
1887
|
}
|
|
1880
1888
|
|
|
@@ -1886,7 +1894,7 @@ class DeleteResourceShareCommand extends smithyClient.Command
|
|
|
1886
1894
|
})
|
|
1887
1895
|
.s("AmazonResourceSharing", "DeleteResourceShare", {})
|
|
1888
1896
|
.n("RAMClient", "DeleteResourceShareCommand")
|
|
1889
|
-
.sc(DeleteResourceShare)
|
|
1897
|
+
.sc(DeleteResourceShare$)
|
|
1890
1898
|
.build() {
|
|
1891
1899
|
}
|
|
1892
1900
|
|
|
@@ -1898,7 +1906,7 @@ class DisassociateResourceShareCommand extends smithyClient.Command
|
|
|
1898
1906
|
})
|
|
1899
1907
|
.s("AmazonResourceSharing", "DisassociateResourceShare", {})
|
|
1900
1908
|
.n("RAMClient", "DisassociateResourceShareCommand")
|
|
1901
|
-
.sc(DisassociateResourceShare)
|
|
1909
|
+
.sc(DisassociateResourceShare$)
|
|
1902
1910
|
.build() {
|
|
1903
1911
|
}
|
|
1904
1912
|
|
|
@@ -1910,7 +1918,7 @@ class DisassociateResourceSharePermissionCommand extends smithyClient.Command
|
|
|
1910
1918
|
})
|
|
1911
1919
|
.s("AmazonResourceSharing", "DisassociateResourceSharePermission", {})
|
|
1912
1920
|
.n("RAMClient", "DisassociateResourceSharePermissionCommand")
|
|
1913
|
-
.sc(DisassociateResourceSharePermission)
|
|
1921
|
+
.sc(DisassociateResourceSharePermission$)
|
|
1914
1922
|
.build() {
|
|
1915
1923
|
}
|
|
1916
1924
|
|
|
@@ -1922,7 +1930,7 @@ class EnableSharingWithAwsOrganizationCommand extends smithyClient.Command
|
|
|
1922
1930
|
})
|
|
1923
1931
|
.s("AmazonResourceSharing", "EnableSharingWithAwsOrganization", {})
|
|
1924
1932
|
.n("RAMClient", "EnableSharingWithAwsOrganizationCommand")
|
|
1925
|
-
.sc(EnableSharingWithAwsOrganization)
|
|
1933
|
+
.sc(EnableSharingWithAwsOrganization$)
|
|
1926
1934
|
.build() {
|
|
1927
1935
|
}
|
|
1928
1936
|
|
|
@@ -1934,7 +1942,7 @@ class GetPermissionCommand extends smithyClient.Command
|
|
|
1934
1942
|
})
|
|
1935
1943
|
.s("AmazonResourceSharing", "GetPermission", {})
|
|
1936
1944
|
.n("RAMClient", "GetPermissionCommand")
|
|
1937
|
-
.sc(GetPermission)
|
|
1945
|
+
.sc(GetPermission$)
|
|
1938
1946
|
.build() {
|
|
1939
1947
|
}
|
|
1940
1948
|
|
|
@@ -1946,7 +1954,7 @@ class GetResourcePoliciesCommand extends smithyClient.Command
|
|
|
1946
1954
|
})
|
|
1947
1955
|
.s("AmazonResourceSharing", "GetResourcePolicies", {})
|
|
1948
1956
|
.n("RAMClient", "GetResourcePoliciesCommand")
|
|
1949
|
-
.sc(GetResourcePolicies)
|
|
1957
|
+
.sc(GetResourcePolicies$)
|
|
1950
1958
|
.build() {
|
|
1951
1959
|
}
|
|
1952
1960
|
|
|
@@ -1958,7 +1966,7 @@ class GetResourceShareAssociationsCommand extends smithyClient.Command
|
|
|
1958
1966
|
})
|
|
1959
1967
|
.s("AmazonResourceSharing", "GetResourceShareAssociations", {})
|
|
1960
1968
|
.n("RAMClient", "GetResourceShareAssociationsCommand")
|
|
1961
|
-
.sc(GetResourceShareAssociations)
|
|
1969
|
+
.sc(GetResourceShareAssociations$)
|
|
1962
1970
|
.build() {
|
|
1963
1971
|
}
|
|
1964
1972
|
|
|
@@ -1970,7 +1978,7 @@ class GetResourceShareInvitationsCommand extends smithyClient.Command
|
|
|
1970
1978
|
})
|
|
1971
1979
|
.s("AmazonResourceSharing", "GetResourceShareInvitations", {})
|
|
1972
1980
|
.n("RAMClient", "GetResourceShareInvitationsCommand")
|
|
1973
|
-
.sc(GetResourceShareInvitations)
|
|
1981
|
+
.sc(GetResourceShareInvitations$)
|
|
1974
1982
|
.build() {
|
|
1975
1983
|
}
|
|
1976
1984
|
|
|
@@ -1982,7 +1990,7 @@ class GetResourceSharesCommand extends smithyClient.Command
|
|
|
1982
1990
|
})
|
|
1983
1991
|
.s("AmazonResourceSharing", "GetResourceShares", {})
|
|
1984
1992
|
.n("RAMClient", "GetResourceSharesCommand")
|
|
1985
|
-
.sc(GetResourceShares)
|
|
1993
|
+
.sc(GetResourceShares$)
|
|
1986
1994
|
.build() {
|
|
1987
1995
|
}
|
|
1988
1996
|
|
|
@@ -1994,7 +2002,7 @@ class ListPendingInvitationResourcesCommand extends smithyClient.Command
|
|
|
1994
2002
|
})
|
|
1995
2003
|
.s("AmazonResourceSharing", "ListPendingInvitationResources", {})
|
|
1996
2004
|
.n("RAMClient", "ListPendingInvitationResourcesCommand")
|
|
1997
|
-
.sc(ListPendingInvitationResources)
|
|
2005
|
+
.sc(ListPendingInvitationResources$)
|
|
1998
2006
|
.build() {
|
|
1999
2007
|
}
|
|
2000
2008
|
|
|
@@ -2006,7 +2014,7 @@ class ListPermissionAssociationsCommand extends smithyClient.Command
|
|
|
2006
2014
|
})
|
|
2007
2015
|
.s("AmazonResourceSharing", "ListPermissionAssociations", {})
|
|
2008
2016
|
.n("RAMClient", "ListPermissionAssociationsCommand")
|
|
2009
|
-
.sc(ListPermissionAssociations)
|
|
2017
|
+
.sc(ListPermissionAssociations$)
|
|
2010
2018
|
.build() {
|
|
2011
2019
|
}
|
|
2012
2020
|
|
|
@@ -2018,7 +2026,7 @@ class ListPermissionsCommand extends smithyClient.Command
|
|
|
2018
2026
|
})
|
|
2019
2027
|
.s("AmazonResourceSharing", "ListPermissions", {})
|
|
2020
2028
|
.n("RAMClient", "ListPermissionsCommand")
|
|
2021
|
-
.sc(ListPermissions)
|
|
2029
|
+
.sc(ListPermissions$)
|
|
2022
2030
|
.build() {
|
|
2023
2031
|
}
|
|
2024
2032
|
|
|
@@ -2030,7 +2038,7 @@ class ListPermissionVersionsCommand extends smithyClient.Command
|
|
|
2030
2038
|
})
|
|
2031
2039
|
.s("AmazonResourceSharing", "ListPermissionVersions", {})
|
|
2032
2040
|
.n("RAMClient", "ListPermissionVersionsCommand")
|
|
2033
|
-
.sc(ListPermissionVersions)
|
|
2041
|
+
.sc(ListPermissionVersions$)
|
|
2034
2042
|
.build() {
|
|
2035
2043
|
}
|
|
2036
2044
|
|
|
@@ -2042,7 +2050,7 @@ class ListPrincipalsCommand extends smithyClient.Command
|
|
|
2042
2050
|
})
|
|
2043
2051
|
.s("AmazonResourceSharing", "ListPrincipals", {})
|
|
2044
2052
|
.n("RAMClient", "ListPrincipalsCommand")
|
|
2045
|
-
.sc(ListPrincipals)
|
|
2053
|
+
.sc(ListPrincipals$)
|
|
2046
2054
|
.build() {
|
|
2047
2055
|
}
|
|
2048
2056
|
|
|
@@ -2054,7 +2062,7 @@ class ListReplacePermissionAssociationsWorkCommand extends smithyClient.Command
|
|
|
2054
2062
|
})
|
|
2055
2063
|
.s("AmazonResourceSharing", "ListReplacePermissionAssociationsWork", {})
|
|
2056
2064
|
.n("RAMClient", "ListReplacePermissionAssociationsWorkCommand")
|
|
2057
|
-
.sc(ListReplacePermissionAssociationsWork)
|
|
2065
|
+
.sc(ListReplacePermissionAssociationsWork$)
|
|
2058
2066
|
.build() {
|
|
2059
2067
|
}
|
|
2060
2068
|
|
|
@@ -2066,7 +2074,7 @@ class ListResourcesCommand extends smithyClient.Command
|
|
|
2066
2074
|
})
|
|
2067
2075
|
.s("AmazonResourceSharing", "ListResources", {})
|
|
2068
2076
|
.n("RAMClient", "ListResourcesCommand")
|
|
2069
|
-
.sc(ListResources)
|
|
2077
|
+
.sc(ListResources$)
|
|
2070
2078
|
.build() {
|
|
2071
2079
|
}
|
|
2072
2080
|
|
|
@@ -2078,7 +2086,7 @@ class ListResourceSharePermissionsCommand extends smithyClient.Command
|
|
|
2078
2086
|
})
|
|
2079
2087
|
.s("AmazonResourceSharing", "ListResourceSharePermissions", {})
|
|
2080
2088
|
.n("RAMClient", "ListResourceSharePermissionsCommand")
|
|
2081
|
-
.sc(ListResourceSharePermissions)
|
|
2089
|
+
.sc(ListResourceSharePermissions$)
|
|
2082
2090
|
.build() {
|
|
2083
2091
|
}
|
|
2084
2092
|
|
|
@@ -2090,7 +2098,7 @@ class ListResourceTypesCommand extends smithyClient.Command
|
|
|
2090
2098
|
})
|
|
2091
2099
|
.s("AmazonResourceSharing", "ListResourceTypes", {})
|
|
2092
2100
|
.n("RAMClient", "ListResourceTypesCommand")
|
|
2093
|
-
.sc(ListResourceTypes)
|
|
2101
|
+
.sc(ListResourceTypes$)
|
|
2094
2102
|
.build() {
|
|
2095
2103
|
}
|
|
2096
2104
|
|
|
@@ -2102,7 +2110,7 @@ class PromotePermissionCreatedFromPolicyCommand extends smithyClient.Command
|
|
|
2102
2110
|
})
|
|
2103
2111
|
.s("AmazonResourceSharing", "PromotePermissionCreatedFromPolicy", {})
|
|
2104
2112
|
.n("RAMClient", "PromotePermissionCreatedFromPolicyCommand")
|
|
2105
|
-
.sc(PromotePermissionCreatedFromPolicy)
|
|
2113
|
+
.sc(PromotePermissionCreatedFromPolicy$)
|
|
2106
2114
|
.build() {
|
|
2107
2115
|
}
|
|
2108
2116
|
|
|
@@ -2114,7 +2122,7 @@ class PromoteResourceShareCreatedFromPolicyCommand extends smithyClient.Command
|
|
|
2114
2122
|
})
|
|
2115
2123
|
.s("AmazonResourceSharing", "PromoteResourceShareCreatedFromPolicy", {})
|
|
2116
2124
|
.n("RAMClient", "PromoteResourceShareCreatedFromPolicyCommand")
|
|
2117
|
-
.sc(PromoteResourceShareCreatedFromPolicy)
|
|
2125
|
+
.sc(PromoteResourceShareCreatedFromPolicy$)
|
|
2118
2126
|
.build() {
|
|
2119
2127
|
}
|
|
2120
2128
|
|
|
@@ -2126,7 +2134,7 @@ class RejectResourceShareInvitationCommand extends smithyClient.Command
|
|
|
2126
2134
|
})
|
|
2127
2135
|
.s("AmazonResourceSharing", "RejectResourceShareInvitation", {})
|
|
2128
2136
|
.n("RAMClient", "RejectResourceShareInvitationCommand")
|
|
2129
|
-
.sc(RejectResourceShareInvitation)
|
|
2137
|
+
.sc(RejectResourceShareInvitation$)
|
|
2130
2138
|
.build() {
|
|
2131
2139
|
}
|
|
2132
2140
|
|
|
@@ -2138,7 +2146,7 @@ class ReplacePermissionAssociationsCommand extends smithyClient.Command
|
|
|
2138
2146
|
})
|
|
2139
2147
|
.s("AmazonResourceSharing", "ReplacePermissionAssociations", {})
|
|
2140
2148
|
.n("RAMClient", "ReplacePermissionAssociationsCommand")
|
|
2141
|
-
.sc(ReplacePermissionAssociations)
|
|
2149
|
+
.sc(ReplacePermissionAssociations$)
|
|
2142
2150
|
.build() {
|
|
2143
2151
|
}
|
|
2144
2152
|
|
|
@@ -2150,7 +2158,7 @@ class SetDefaultPermissionVersionCommand extends smithyClient.Command
|
|
|
2150
2158
|
})
|
|
2151
2159
|
.s("AmazonResourceSharing", "SetDefaultPermissionVersion", {})
|
|
2152
2160
|
.n("RAMClient", "SetDefaultPermissionVersionCommand")
|
|
2153
|
-
.sc(SetDefaultPermissionVersion)
|
|
2161
|
+
.sc(SetDefaultPermissionVersion$)
|
|
2154
2162
|
.build() {
|
|
2155
2163
|
}
|
|
2156
2164
|
|
|
@@ -2162,7 +2170,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2162
2170
|
})
|
|
2163
2171
|
.s("AmazonResourceSharing", "TagResource", {})
|
|
2164
2172
|
.n("RAMClient", "TagResourceCommand")
|
|
2165
|
-
.sc(TagResource)
|
|
2173
|
+
.sc(TagResource$)
|
|
2166
2174
|
.build() {
|
|
2167
2175
|
}
|
|
2168
2176
|
|
|
@@ -2174,7 +2182,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2174
2182
|
})
|
|
2175
2183
|
.s("AmazonResourceSharing", "UntagResource", {})
|
|
2176
2184
|
.n("RAMClient", "UntagResourceCommand")
|
|
2177
|
-
.sc(UntagResource)
|
|
2185
|
+
.sc(UntagResource$)
|
|
2178
2186
|
.build() {
|
|
2179
2187
|
}
|
|
2180
2188
|
|
|
@@ -2186,7 +2194,7 @@ class UpdateResourceShareCommand extends smithyClient.Command
|
|
|
2186
2194
|
})
|
|
2187
2195
|
.s("AmazonResourceSharing", "UpdateResourceShare", {})
|
|
2188
2196
|
.n("RAMClient", "UpdateResourceShareCommand")
|
|
2189
|
-
.sc(UpdateResourceShare)
|
|
2197
|
+
.sc(UpdateResourceShare$)
|
|
2190
2198
|
.build() {
|
|
2191
2199
|
}
|
|
2192
2200
|
|
|
@@ -2339,85 +2347,228 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2339
2347
|
enumerable: true,
|
|
2340
2348
|
get: function () { return smithyClient.Client; }
|
|
2341
2349
|
});
|
|
2350
|
+
exports.AcceptResourceShareInvitation$ = AcceptResourceShareInvitation$;
|
|
2342
2351
|
exports.AcceptResourceShareInvitationCommand = AcceptResourceShareInvitationCommand;
|
|
2352
|
+
exports.AcceptResourceShareInvitationRequest$ = AcceptResourceShareInvitationRequest$;
|
|
2353
|
+
exports.AcceptResourceShareInvitationResponse$ = AcceptResourceShareInvitationResponse$;
|
|
2354
|
+
exports.AssociateResourceShare$ = AssociateResourceShare$;
|
|
2343
2355
|
exports.AssociateResourceShareCommand = AssociateResourceShareCommand;
|
|
2356
|
+
exports.AssociateResourceSharePermission$ = AssociateResourceSharePermission$;
|
|
2344
2357
|
exports.AssociateResourceSharePermissionCommand = AssociateResourceSharePermissionCommand;
|
|
2358
|
+
exports.AssociateResourceSharePermissionRequest$ = AssociateResourceSharePermissionRequest$;
|
|
2359
|
+
exports.AssociateResourceSharePermissionResponse$ = AssociateResourceSharePermissionResponse$;
|
|
2360
|
+
exports.AssociateResourceShareRequest$ = AssociateResourceShareRequest$;
|
|
2361
|
+
exports.AssociateResourceShareResponse$ = AssociateResourceShareResponse$;
|
|
2362
|
+
exports.AssociatedPermission$ = AssociatedPermission$;
|
|
2363
|
+
exports.CreatePermission$ = CreatePermission$;
|
|
2345
2364
|
exports.CreatePermissionCommand = CreatePermissionCommand;
|
|
2365
|
+
exports.CreatePermissionRequest$ = CreatePermissionRequest$;
|
|
2366
|
+
exports.CreatePermissionResponse$ = CreatePermissionResponse$;
|
|
2367
|
+
exports.CreatePermissionVersion$ = CreatePermissionVersion$;
|
|
2346
2368
|
exports.CreatePermissionVersionCommand = CreatePermissionVersionCommand;
|
|
2369
|
+
exports.CreatePermissionVersionRequest$ = CreatePermissionVersionRequest$;
|
|
2370
|
+
exports.CreatePermissionVersionResponse$ = CreatePermissionVersionResponse$;
|
|
2371
|
+
exports.CreateResourceShare$ = CreateResourceShare$;
|
|
2347
2372
|
exports.CreateResourceShareCommand = CreateResourceShareCommand;
|
|
2373
|
+
exports.CreateResourceShareRequest$ = CreateResourceShareRequest$;
|
|
2374
|
+
exports.CreateResourceShareResponse$ = CreateResourceShareResponse$;
|
|
2375
|
+
exports.DeletePermission$ = DeletePermission$;
|
|
2348
2376
|
exports.DeletePermissionCommand = DeletePermissionCommand;
|
|
2377
|
+
exports.DeletePermissionRequest$ = DeletePermissionRequest$;
|
|
2378
|
+
exports.DeletePermissionResponse$ = DeletePermissionResponse$;
|
|
2379
|
+
exports.DeletePermissionVersion$ = DeletePermissionVersion$;
|
|
2349
2380
|
exports.DeletePermissionVersionCommand = DeletePermissionVersionCommand;
|
|
2381
|
+
exports.DeletePermissionVersionRequest$ = DeletePermissionVersionRequest$;
|
|
2382
|
+
exports.DeletePermissionVersionResponse$ = DeletePermissionVersionResponse$;
|
|
2383
|
+
exports.DeleteResourceShare$ = DeleteResourceShare$;
|
|
2350
2384
|
exports.DeleteResourceShareCommand = DeleteResourceShareCommand;
|
|
2385
|
+
exports.DeleteResourceShareRequest$ = DeleteResourceShareRequest$;
|
|
2386
|
+
exports.DeleteResourceShareResponse$ = DeleteResourceShareResponse$;
|
|
2387
|
+
exports.DisassociateResourceShare$ = DisassociateResourceShare$;
|
|
2351
2388
|
exports.DisassociateResourceShareCommand = DisassociateResourceShareCommand;
|
|
2389
|
+
exports.DisassociateResourceSharePermission$ = DisassociateResourceSharePermission$;
|
|
2352
2390
|
exports.DisassociateResourceSharePermissionCommand = DisassociateResourceSharePermissionCommand;
|
|
2391
|
+
exports.DisassociateResourceSharePermissionRequest$ = DisassociateResourceSharePermissionRequest$;
|
|
2392
|
+
exports.DisassociateResourceSharePermissionResponse$ = DisassociateResourceSharePermissionResponse$;
|
|
2393
|
+
exports.DisassociateResourceShareRequest$ = DisassociateResourceShareRequest$;
|
|
2394
|
+
exports.DisassociateResourceShareResponse$ = DisassociateResourceShareResponse$;
|
|
2395
|
+
exports.EnableSharingWithAwsOrganization$ = EnableSharingWithAwsOrganization$;
|
|
2353
2396
|
exports.EnableSharingWithAwsOrganizationCommand = EnableSharingWithAwsOrganizationCommand;
|
|
2397
|
+
exports.EnableSharingWithAwsOrganizationRequest$ = EnableSharingWithAwsOrganizationRequest$;
|
|
2398
|
+
exports.EnableSharingWithAwsOrganizationResponse$ = EnableSharingWithAwsOrganizationResponse$;
|
|
2399
|
+
exports.GetPermission$ = GetPermission$;
|
|
2354
2400
|
exports.GetPermissionCommand = GetPermissionCommand;
|
|
2401
|
+
exports.GetPermissionRequest$ = GetPermissionRequest$;
|
|
2402
|
+
exports.GetPermissionResponse$ = GetPermissionResponse$;
|
|
2403
|
+
exports.GetResourcePolicies$ = GetResourcePolicies$;
|
|
2355
2404
|
exports.GetResourcePoliciesCommand = GetResourcePoliciesCommand;
|
|
2405
|
+
exports.GetResourcePoliciesRequest$ = GetResourcePoliciesRequest$;
|
|
2406
|
+
exports.GetResourcePoliciesResponse$ = GetResourcePoliciesResponse$;
|
|
2407
|
+
exports.GetResourceShareAssociations$ = GetResourceShareAssociations$;
|
|
2356
2408
|
exports.GetResourceShareAssociationsCommand = GetResourceShareAssociationsCommand;
|
|
2409
|
+
exports.GetResourceShareAssociationsRequest$ = GetResourceShareAssociationsRequest$;
|
|
2410
|
+
exports.GetResourceShareAssociationsResponse$ = GetResourceShareAssociationsResponse$;
|
|
2411
|
+
exports.GetResourceShareInvitations$ = GetResourceShareInvitations$;
|
|
2357
2412
|
exports.GetResourceShareInvitationsCommand = GetResourceShareInvitationsCommand;
|
|
2413
|
+
exports.GetResourceShareInvitationsRequest$ = GetResourceShareInvitationsRequest$;
|
|
2414
|
+
exports.GetResourceShareInvitationsResponse$ = GetResourceShareInvitationsResponse$;
|
|
2415
|
+
exports.GetResourceShares$ = GetResourceShares$;
|
|
2358
2416
|
exports.GetResourceSharesCommand = GetResourceSharesCommand;
|
|
2359
|
-
exports.
|
|
2360
|
-
exports.
|
|
2361
|
-
exports.
|
|
2362
|
-
exports.
|
|
2363
|
-
exports.
|
|
2364
|
-
exports.
|
|
2365
|
-
exports.
|
|
2366
|
-
exports.
|
|
2417
|
+
exports.GetResourceSharesRequest$ = GetResourceSharesRequest$;
|
|
2418
|
+
exports.GetResourceSharesResponse$ = GetResourceSharesResponse$;
|
|
2419
|
+
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
2420
|
+
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
2421
|
+
exports.InvalidClientTokenException = InvalidClientTokenException;
|
|
2422
|
+
exports.InvalidClientTokenException$ = InvalidClientTokenException$;
|
|
2423
|
+
exports.InvalidMaxResultsException = InvalidMaxResultsException;
|
|
2424
|
+
exports.InvalidMaxResultsException$ = InvalidMaxResultsException$;
|
|
2425
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
2426
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
2427
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2428
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2429
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
2430
|
+
exports.InvalidPolicyException$ = InvalidPolicyException$;
|
|
2431
|
+
exports.InvalidResourceTypeException = InvalidResourceTypeException;
|
|
2432
|
+
exports.InvalidResourceTypeException$ = InvalidResourceTypeException$;
|
|
2433
|
+
exports.InvalidStateTransitionException = InvalidStateTransitionException;
|
|
2434
|
+
exports.InvalidStateTransitionException$ = InvalidStateTransitionException$;
|
|
2435
|
+
exports.ListPendingInvitationResources$ = ListPendingInvitationResources$;
|
|
2367
2436
|
exports.ListPendingInvitationResourcesCommand = ListPendingInvitationResourcesCommand;
|
|
2437
|
+
exports.ListPendingInvitationResourcesRequest$ = ListPendingInvitationResourcesRequest$;
|
|
2438
|
+
exports.ListPendingInvitationResourcesResponse$ = ListPendingInvitationResourcesResponse$;
|
|
2439
|
+
exports.ListPermissionAssociations$ = ListPermissionAssociations$;
|
|
2368
2440
|
exports.ListPermissionAssociationsCommand = ListPermissionAssociationsCommand;
|
|
2441
|
+
exports.ListPermissionAssociationsRequest$ = ListPermissionAssociationsRequest$;
|
|
2442
|
+
exports.ListPermissionAssociationsResponse$ = ListPermissionAssociationsResponse$;
|
|
2443
|
+
exports.ListPermissionVersions$ = ListPermissionVersions$;
|
|
2369
2444
|
exports.ListPermissionVersionsCommand = ListPermissionVersionsCommand;
|
|
2445
|
+
exports.ListPermissionVersionsRequest$ = ListPermissionVersionsRequest$;
|
|
2446
|
+
exports.ListPermissionVersionsResponse$ = ListPermissionVersionsResponse$;
|
|
2447
|
+
exports.ListPermissions$ = ListPermissions$;
|
|
2370
2448
|
exports.ListPermissionsCommand = ListPermissionsCommand;
|
|
2449
|
+
exports.ListPermissionsRequest$ = ListPermissionsRequest$;
|
|
2450
|
+
exports.ListPermissionsResponse$ = ListPermissionsResponse$;
|
|
2451
|
+
exports.ListPrincipals$ = ListPrincipals$;
|
|
2371
2452
|
exports.ListPrincipalsCommand = ListPrincipalsCommand;
|
|
2453
|
+
exports.ListPrincipalsRequest$ = ListPrincipalsRequest$;
|
|
2454
|
+
exports.ListPrincipalsResponse$ = ListPrincipalsResponse$;
|
|
2455
|
+
exports.ListReplacePermissionAssociationsWork$ = ListReplacePermissionAssociationsWork$;
|
|
2372
2456
|
exports.ListReplacePermissionAssociationsWorkCommand = ListReplacePermissionAssociationsWorkCommand;
|
|
2457
|
+
exports.ListReplacePermissionAssociationsWorkRequest$ = ListReplacePermissionAssociationsWorkRequest$;
|
|
2458
|
+
exports.ListReplacePermissionAssociationsWorkResponse$ = ListReplacePermissionAssociationsWorkResponse$;
|
|
2459
|
+
exports.ListResourceSharePermissions$ = ListResourceSharePermissions$;
|
|
2373
2460
|
exports.ListResourceSharePermissionsCommand = ListResourceSharePermissionsCommand;
|
|
2461
|
+
exports.ListResourceSharePermissionsRequest$ = ListResourceSharePermissionsRequest$;
|
|
2462
|
+
exports.ListResourceSharePermissionsResponse$ = ListResourceSharePermissionsResponse$;
|
|
2463
|
+
exports.ListResourceTypes$ = ListResourceTypes$;
|
|
2374
2464
|
exports.ListResourceTypesCommand = ListResourceTypesCommand;
|
|
2465
|
+
exports.ListResourceTypesRequest$ = ListResourceTypesRequest$;
|
|
2466
|
+
exports.ListResourceTypesResponse$ = ListResourceTypesResponse$;
|
|
2467
|
+
exports.ListResources$ = ListResources$;
|
|
2375
2468
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
2376
|
-
exports.
|
|
2377
|
-
exports.
|
|
2378
|
-
exports.
|
|
2379
|
-
exports.
|
|
2380
|
-
exports.
|
|
2469
|
+
exports.ListResourcesRequest$ = ListResourcesRequest$;
|
|
2470
|
+
exports.ListResourcesResponse$ = ListResourcesResponse$;
|
|
2471
|
+
exports.MalformedArnException = MalformedArnException;
|
|
2472
|
+
exports.MalformedArnException$ = MalformedArnException$;
|
|
2473
|
+
exports.MalformedPolicyTemplateException = MalformedPolicyTemplateException;
|
|
2474
|
+
exports.MalformedPolicyTemplateException$ = MalformedPolicyTemplateException$;
|
|
2475
|
+
exports.MissingRequiredParameterException = MissingRequiredParameterException;
|
|
2476
|
+
exports.MissingRequiredParameterException$ = MissingRequiredParameterException$;
|
|
2477
|
+
exports.OperationNotPermittedException = OperationNotPermittedException;
|
|
2478
|
+
exports.OperationNotPermittedException$ = OperationNotPermittedException$;
|
|
2479
|
+
exports.PermissionAlreadyExistsException = PermissionAlreadyExistsException;
|
|
2480
|
+
exports.PermissionAlreadyExistsException$ = PermissionAlreadyExistsException$;
|
|
2381
2481
|
exports.PermissionFeatureSet = PermissionFeatureSet;
|
|
2382
|
-
exports.PermissionLimitExceededException = PermissionLimitExceededException
|
|
2482
|
+
exports.PermissionLimitExceededException = PermissionLimitExceededException;
|
|
2483
|
+
exports.PermissionLimitExceededException$ = PermissionLimitExceededException$;
|
|
2383
2484
|
exports.PermissionStatus = PermissionStatus;
|
|
2384
2485
|
exports.PermissionType = PermissionType;
|
|
2385
2486
|
exports.PermissionTypeFilter = PermissionTypeFilter;
|
|
2386
|
-
exports.PermissionVersionsLimitExceededException = PermissionVersionsLimitExceededException
|
|
2487
|
+
exports.PermissionVersionsLimitExceededException = PermissionVersionsLimitExceededException;
|
|
2488
|
+
exports.PermissionVersionsLimitExceededException$ = PermissionVersionsLimitExceededException$;
|
|
2489
|
+
exports.Principal$ = Principal$;
|
|
2490
|
+
exports.PromotePermissionCreatedFromPolicy$ = PromotePermissionCreatedFromPolicy$;
|
|
2387
2491
|
exports.PromotePermissionCreatedFromPolicyCommand = PromotePermissionCreatedFromPolicyCommand;
|
|
2492
|
+
exports.PromotePermissionCreatedFromPolicyRequest$ = PromotePermissionCreatedFromPolicyRequest$;
|
|
2493
|
+
exports.PromotePermissionCreatedFromPolicyResponse$ = PromotePermissionCreatedFromPolicyResponse$;
|
|
2494
|
+
exports.PromoteResourceShareCreatedFromPolicy$ = PromoteResourceShareCreatedFromPolicy$;
|
|
2388
2495
|
exports.PromoteResourceShareCreatedFromPolicyCommand = PromoteResourceShareCreatedFromPolicyCommand;
|
|
2496
|
+
exports.PromoteResourceShareCreatedFromPolicyRequest$ = PromoteResourceShareCreatedFromPolicyRequest$;
|
|
2497
|
+
exports.PromoteResourceShareCreatedFromPolicyResponse$ = PromoteResourceShareCreatedFromPolicyResponse$;
|
|
2389
2498
|
exports.RAM = RAM;
|
|
2390
2499
|
exports.RAMClient = RAMClient;
|
|
2391
|
-
exports.RAMServiceException = RAMServiceException
|
|
2500
|
+
exports.RAMServiceException = RAMServiceException;
|
|
2501
|
+
exports.RAMServiceException$ = RAMServiceException$;
|
|
2502
|
+
exports.RejectResourceShareInvitation$ = RejectResourceShareInvitation$;
|
|
2392
2503
|
exports.RejectResourceShareInvitationCommand = RejectResourceShareInvitationCommand;
|
|
2504
|
+
exports.RejectResourceShareInvitationRequest$ = RejectResourceShareInvitationRequest$;
|
|
2505
|
+
exports.RejectResourceShareInvitationResponse$ = RejectResourceShareInvitationResponse$;
|
|
2506
|
+
exports.ReplacePermissionAssociations$ = ReplacePermissionAssociations$;
|
|
2393
2507
|
exports.ReplacePermissionAssociationsCommand = ReplacePermissionAssociationsCommand;
|
|
2508
|
+
exports.ReplacePermissionAssociationsRequest$ = ReplacePermissionAssociationsRequest$;
|
|
2509
|
+
exports.ReplacePermissionAssociationsResponse$ = ReplacePermissionAssociationsResponse$;
|
|
2510
|
+
exports.ReplacePermissionAssociationsWork$ = ReplacePermissionAssociationsWork$;
|
|
2394
2511
|
exports.ReplacePermissionAssociationsWorkStatus = ReplacePermissionAssociationsWorkStatus;
|
|
2395
|
-
exports.
|
|
2512
|
+
exports.Resource$ = Resource$;
|
|
2513
|
+
exports.ResourceArnNotFoundException = ResourceArnNotFoundException;
|
|
2514
|
+
exports.ResourceArnNotFoundException$ = ResourceArnNotFoundException$;
|
|
2396
2515
|
exports.ResourceOwner = ResourceOwner;
|
|
2397
2516
|
exports.ResourceRegionScope = ResourceRegionScope;
|
|
2398
2517
|
exports.ResourceRegionScopeFilter = ResourceRegionScopeFilter;
|
|
2518
|
+
exports.ResourceShare$ = ResourceShare$;
|
|
2519
|
+
exports.ResourceShareAssociation$ = ResourceShareAssociation$;
|
|
2399
2520
|
exports.ResourceShareAssociationStatus = ResourceShareAssociationStatus;
|
|
2400
2521
|
exports.ResourceShareAssociationType = ResourceShareAssociationType;
|
|
2401
2522
|
exports.ResourceShareFeatureSet = ResourceShareFeatureSet;
|
|
2402
|
-
exports.
|
|
2403
|
-
exports.
|
|
2404
|
-
exports.
|
|
2405
|
-
exports.
|
|
2523
|
+
exports.ResourceShareInvitation$ = ResourceShareInvitation$;
|
|
2524
|
+
exports.ResourceShareInvitationAlreadyAcceptedException = ResourceShareInvitationAlreadyAcceptedException;
|
|
2525
|
+
exports.ResourceShareInvitationAlreadyAcceptedException$ = ResourceShareInvitationAlreadyAcceptedException$;
|
|
2526
|
+
exports.ResourceShareInvitationAlreadyRejectedException = ResourceShareInvitationAlreadyRejectedException;
|
|
2527
|
+
exports.ResourceShareInvitationAlreadyRejectedException$ = ResourceShareInvitationAlreadyRejectedException$;
|
|
2528
|
+
exports.ResourceShareInvitationArnNotFoundException = ResourceShareInvitationArnNotFoundException;
|
|
2529
|
+
exports.ResourceShareInvitationArnNotFoundException$ = ResourceShareInvitationArnNotFoundException$;
|
|
2530
|
+
exports.ResourceShareInvitationExpiredException = ResourceShareInvitationExpiredException;
|
|
2531
|
+
exports.ResourceShareInvitationExpiredException$ = ResourceShareInvitationExpiredException$;
|
|
2406
2532
|
exports.ResourceShareInvitationStatus = ResourceShareInvitationStatus;
|
|
2407
|
-
exports.ResourceShareLimitExceededException = ResourceShareLimitExceededException
|
|
2533
|
+
exports.ResourceShareLimitExceededException = ResourceShareLimitExceededException;
|
|
2534
|
+
exports.ResourceShareLimitExceededException$ = ResourceShareLimitExceededException$;
|
|
2535
|
+
exports.ResourceSharePermissionDetail$ = ResourceSharePermissionDetail$;
|
|
2536
|
+
exports.ResourceSharePermissionSummary$ = ResourceSharePermissionSummary$;
|
|
2408
2537
|
exports.ResourceShareStatus = ResourceShareStatus;
|
|
2409
2538
|
exports.ResourceStatus = ResourceStatus;
|
|
2410
|
-
exports.ServerInternalException = ServerInternalException
|
|
2411
|
-
exports.
|
|
2539
|
+
exports.ServerInternalException = ServerInternalException;
|
|
2540
|
+
exports.ServerInternalException$ = ServerInternalException$;
|
|
2541
|
+
exports.ServiceNameAndResourceType$ = ServiceNameAndResourceType$;
|
|
2542
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2543
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2544
|
+
exports.SetDefaultPermissionVersion$ = SetDefaultPermissionVersion$;
|
|
2412
2545
|
exports.SetDefaultPermissionVersionCommand = SetDefaultPermissionVersionCommand;
|
|
2413
|
-
exports.
|
|
2414
|
-
exports.
|
|
2546
|
+
exports.SetDefaultPermissionVersionRequest$ = SetDefaultPermissionVersionRequest$;
|
|
2547
|
+
exports.SetDefaultPermissionVersionResponse$ = SetDefaultPermissionVersionResponse$;
|
|
2548
|
+
exports.Tag$ = Tag$;
|
|
2549
|
+
exports.TagFilter$ = TagFilter$;
|
|
2550
|
+
exports.TagLimitExceededException = TagLimitExceededException;
|
|
2551
|
+
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
2552
|
+
exports.TagPolicyViolationException = TagPolicyViolationException;
|
|
2553
|
+
exports.TagPolicyViolationException$ = TagPolicyViolationException$;
|
|
2554
|
+
exports.TagResource$ = TagResource$;
|
|
2415
2555
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2416
|
-
exports.
|
|
2417
|
-
exports.
|
|
2418
|
-
exports.
|
|
2556
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2557
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2558
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2559
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2560
|
+
exports.UnknownResourceException = UnknownResourceException;
|
|
2561
|
+
exports.UnknownResourceException$ = UnknownResourceException$;
|
|
2562
|
+
exports.UnmatchedPolicyPermissionException = UnmatchedPolicyPermissionException;
|
|
2563
|
+
exports.UnmatchedPolicyPermissionException$ = UnmatchedPolicyPermissionException$;
|
|
2564
|
+
exports.UntagResource$ = UntagResource$;
|
|
2419
2565
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2566
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2567
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2568
|
+
exports.UpdateResourceShare$ = UpdateResourceShare$;
|
|
2420
2569
|
exports.UpdateResourceShareCommand = UpdateResourceShareCommand;
|
|
2570
|
+
exports.UpdateResourceShareRequest$ = UpdateResourceShareRequest$;
|
|
2571
|
+
exports.UpdateResourceShareResponse$ = UpdateResourceShareResponse$;
|
|
2421
2572
|
exports.paginateGetResourcePolicies = paginateGetResourcePolicies;
|
|
2422
2573
|
exports.paginateGetResourceShareAssociations = paginateGetResourceShareAssociations;
|
|
2423
2574
|
exports.paginateGetResourceShareInvitations = paginateGetResourceShareInvitations;
|