@aws-sdk/client-ram 3.934.0 → 3.936.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 +75 -74
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +337 -0
- package/dist-es/models/models_0.js +1 -411
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +186 -0
- package/dist-types/models/errors.d.ts +359 -0
- package/dist-types/models/models_0.d.ts +1 -545
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +237 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -338
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,24 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
PermissionFeatureSet,
|
|
3
|
+
PermissionStatus,
|
|
4
|
+
PermissionType,
|
|
5
|
+
PermissionTypeFilter,
|
|
6
|
+
ReplacePermissionAssociationsWorkStatus,
|
|
7
|
+
ResourceOwner,
|
|
8
|
+
ResourceRegionScope,
|
|
9
|
+
ResourceRegionScopeFilter,
|
|
10
|
+
ResourceShareAssociationStatus,
|
|
11
|
+
ResourceShareAssociationType,
|
|
12
|
+
ResourceShareFeatureSet,
|
|
13
|
+
ResourceShareInvitationStatus,
|
|
14
|
+
ResourceShareStatus,
|
|
15
|
+
ResourceStatus,
|
|
16
|
+
} from "./enums";
|
|
3
17
|
export interface AcceptResourceShareInvitationRequest {
|
|
4
18
|
resourceShareInvitationArn: string | undefined;
|
|
5
19
|
clientToken?: string | undefined;
|
|
6
20
|
}
|
|
7
|
-
export declare const ResourceShareAssociationType: {
|
|
8
|
-
readonly PRINCIPAL: "PRINCIPAL";
|
|
9
|
-
readonly RESOURCE: "RESOURCE";
|
|
10
|
-
};
|
|
11
|
-
export type ResourceShareAssociationType =
|
|
12
|
-
(typeof ResourceShareAssociationType)[keyof typeof ResourceShareAssociationType];
|
|
13
|
-
export declare const ResourceShareAssociationStatus: {
|
|
14
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
15
|
-
readonly ASSOCIATING: "ASSOCIATING";
|
|
16
|
-
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
17
|
-
readonly DISASSOCIATING: "DISASSOCIATING";
|
|
18
|
-
readonly FAILED: "FAILED";
|
|
19
|
-
};
|
|
20
|
-
export type ResourceShareAssociationStatus =
|
|
21
|
-
(typeof ResourceShareAssociationStatus)[keyof typeof ResourceShareAssociationStatus];
|
|
22
21
|
export interface ResourceShareAssociation {
|
|
23
22
|
resourceShareArn?: string | undefined;
|
|
24
23
|
resourceShareName?: string | undefined;
|
|
@@ -30,14 +29,6 @@ export interface ResourceShareAssociation {
|
|
|
30
29
|
lastUpdatedTime?: Date | undefined;
|
|
31
30
|
external?: boolean | undefined;
|
|
32
31
|
}
|
|
33
|
-
export declare const ResourceShareInvitationStatus: {
|
|
34
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
35
|
-
readonly EXPIRED: "EXPIRED";
|
|
36
|
-
readonly PENDING: "PENDING";
|
|
37
|
-
readonly REJECTED: "REJECTED";
|
|
38
|
-
};
|
|
39
|
-
export type ResourceShareInvitationStatus =
|
|
40
|
-
(typeof ResourceShareInvitationStatus)[keyof typeof ResourceShareInvitationStatus];
|
|
41
32
|
export interface ResourceShareInvitation {
|
|
42
33
|
resourceShareInvitationArn?: string | undefined;
|
|
43
34
|
resourceShareName?: string | undefined;
|
|
@@ -53,91 +44,6 @@ export interface AcceptResourceShareInvitationResponse {
|
|
|
53
44
|
resourceShareInvitation?: ResourceShareInvitation | undefined;
|
|
54
45
|
clientToken?: string | undefined;
|
|
55
46
|
}
|
|
56
|
-
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
57
|
-
readonly name: "IdempotentParameterMismatchException";
|
|
58
|
-
readonly $fault: "client";
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<
|
|
61
|
-
IdempotentParameterMismatchException,
|
|
62
|
-
__BaseException
|
|
63
|
-
>
|
|
64
|
-
);
|
|
65
|
-
}
|
|
66
|
-
export declare class InvalidClientTokenException extends __BaseException {
|
|
67
|
-
readonly name: "InvalidClientTokenException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
constructor(
|
|
70
|
-
opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
|
|
71
|
-
);
|
|
72
|
-
}
|
|
73
|
-
export declare class MalformedArnException extends __BaseException {
|
|
74
|
-
readonly name: "MalformedArnException";
|
|
75
|
-
readonly $fault: "client";
|
|
76
|
-
constructor(
|
|
77
|
-
opts: __ExceptionOptionType<MalformedArnException, __BaseException>
|
|
78
|
-
);
|
|
79
|
-
}
|
|
80
|
-
export declare class OperationNotPermittedException extends __BaseException {
|
|
81
|
-
readonly name: "OperationNotPermittedException";
|
|
82
|
-
readonly $fault: "client";
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
|
-
export declare class ResourceShareInvitationAlreadyAcceptedException extends __BaseException {
|
|
88
|
-
readonly name: "ResourceShareInvitationAlreadyAcceptedException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<
|
|
92
|
-
ResourceShareInvitationAlreadyAcceptedException,
|
|
93
|
-
__BaseException
|
|
94
|
-
>
|
|
95
|
-
);
|
|
96
|
-
}
|
|
97
|
-
export declare class ResourceShareInvitationAlreadyRejectedException extends __BaseException {
|
|
98
|
-
readonly name: "ResourceShareInvitationAlreadyRejectedException";
|
|
99
|
-
readonly $fault: "client";
|
|
100
|
-
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<
|
|
102
|
-
ResourceShareInvitationAlreadyRejectedException,
|
|
103
|
-
__BaseException
|
|
104
|
-
>
|
|
105
|
-
);
|
|
106
|
-
}
|
|
107
|
-
export declare class ResourceShareInvitationArnNotFoundException extends __BaseException {
|
|
108
|
-
readonly name: "ResourceShareInvitationArnNotFoundException";
|
|
109
|
-
readonly $fault: "client";
|
|
110
|
-
constructor(
|
|
111
|
-
opts: __ExceptionOptionType<
|
|
112
|
-
ResourceShareInvitationArnNotFoundException,
|
|
113
|
-
__BaseException
|
|
114
|
-
>
|
|
115
|
-
);
|
|
116
|
-
}
|
|
117
|
-
export declare class ResourceShareInvitationExpiredException extends __BaseException {
|
|
118
|
-
readonly name: "ResourceShareInvitationExpiredException";
|
|
119
|
-
readonly $fault: "client";
|
|
120
|
-
constructor(
|
|
121
|
-
opts: __ExceptionOptionType<
|
|
122
|
-
ResourceShareInvitationExpiredException,
|
|
123
|
-
__BaseException
|
|
124
|
-
>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
export declare class ServerInternalException extends __BaseException {
|
|
128
|
-
readonly name: "ServerInternalException";
|
|
129
|
-
readonly $fault: "server";
|
|
130
|
-
constructor(
|
|
131
|
-
opts: __ExceptionOptionType<ServerInternalException, __BaseException>
|
|
132
|
-
);
|
|
133
|
-
}
|
|
134
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
135
|
-
readonly name: "ServiceUnavailableException";
|
|
136
|
-
readonly $fault: "server";
|
|
137
|
-
constructor(
|
|
138
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
139
|
-
);
|
|
140
|
-
}
|
|
141
47
|
export interface AssociateResourceShareRequest {
|
|
142
48
|
resourceShareArn: string | undefined;
|
|
143
49
|
resourceArns?: string[] | undefined;
|
|
@@ -149,47 +55,6 @@ export interface AssociateResourceShareResponse {
|
|
|
149
55
|
resourceShareAssociations?: ResourceShareAssociation[] | undefined;
|
|
150
56
|
clientToken?: string | undefined;
|
|
151
57
|
}
|
|
152
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
153
|
-
readonly name: "InvalidParameterException";
|
|
154
|
-
readonly $fault: "client";
|
|
155
|
-
constructor(
|
|
156
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
157
|
-
);
|
|
158
|
-
}
|
|
159
|
-
export declare class InvalidStateTransitionException extends __BaseException {
|
|
160
|
-
readonly name: "InvalidStateTransitionException";
|
|
161
|
-
readonly $fault: "client";
|
|
162
|
-
constructor(
|
|
163
|
-
opts: __ExceptionOptionType<
|
|
164
|
-
InvalidStateTransitionException,
|
|
165
|
-
__BaseException
|
|
166
|
-
>
|
|
167
|
-
);
|
|
168
|
-
}
|
|
169
|
-
export declare class ResourceShareLimitExceededException extends __BaseException {
|
|
170
|
-
readonly name: "ResourceShareLimitExceededException";
|
|
171
|
-
readonly $fault: "client";
|
|
172
|
-
constructor(
|
|
173
|
-
opts: __ExceptionOptionType<
|
|
174
|
-
ResourceShareLimitExceededException,
|
|
175
|
-
__BaseException
|
|
176
|
-
>
|
|
177
|
-
);
|
|
178
|
-
}
|
|
179
|
-
export declare class ThrottlingException extends __BaseException {
|
|
180
|
-
readonly name: "ThrottlingException";
|
|
181
|
-
readonly $fault: "client";
|
|
182
|
-
constructor(
|
|
183
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
184
|
-
);
|
|
185
|
-
}
|
|
186
|
-
export declare class UnknownResourceException extends __BaseException {
|
|
187
|
-
readonly name: "UnknownResourceException";
|
|
188
|
-
readonly $fault: "client";
|
|
189
|
-
constructor(
|
|
190
|
-
opts: __ExceptionOptionType<UnknownResourceException, __BaseException>
|
|
191
|
-
);
|
|
192
|
-
}
|
|
193
58
|
export interface AssociateResourceSharePermissionRequest {
|
|
194
59
|
resourceShareArn: string | undefined;
|
|
195
60
|
permissionArn: string | undefined;
|
|
@@ -212,19 +77,6 @@ export interface CreatePermissionRequest {
|
|
|
212
77
|
clientToken?: string | undefined;
|
|
213
78
|
tags?: Tag[] | undefined;
|
|
214
79
|
}
|
|
215
|
-
export declare const PermissionFeatureSet: {
|
|
216
|
-
readonly CREATED_FROM_POLICY: "CREATED_FROM_POLICY";
|
|
217
|
-
readonly PROMOTING_TO_STANDARD: "PROMOTING_TO_STANDARD";
|
|
218
|
-
readonly STANDARD: "STANDARD";
|
|
219
|
-
};
|
|
220
|
-
export type PermissionFeatureSet =
|
|
221
|
-
(typeof PermissionFeatureSet)[keyof typeof PermissionFeatureSet];
|
|
222
|
-
export declare const PermissionType: {
|
|
223
|
-
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
224
|
-
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
225
|
-
};
|
|
226
|
-
export type PermissionType =
|
|
227
|
-
(typeof PermissionType)[keyof typeof PermissionType];
|
|
228
80
|
export interface ResourceSharePermissionSummary {
|
|
229
81
|
arn?: string | undefined;
|
|
230
82
|
version?: string | undefined;
|
|
@@ -243,56 +95,11 @@ export interface CreatePermissionResponse {
|
|
|
243
95
|
permission?: ResourceSharePermissionSummary | undefined;
|
|
244
96
|
clientToken?: string | undefined;
|
|
245
97
|
}
|
|
246
|
-
export declare class InvalidPolicyException extends __BaseException {
|
|
247
|
-
readonly name: "InvalidPolicyException";
|
|
248
|
-
readonly $fault: "client";
|
|
249
|
-
constructor(
|
|
250
|
-
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
251
|
-
);
|
|
252
|
-
}
|
|
253
|
-
export declare class MalformedPolicyTemplateException extends __BaseException {
|
|
254
|
-
readonly name: "MalformedPolicyTemplateException";
|
|
255
|
-
readonly $fault: "client";
|
|
256
|
-
constructor(
|
|
257
|
-
opts: __ExceptionOptionType<
|
|
258
|
-
MalformedPolicyTemplateException,
|
|
259
|
-
__BaseException
|
|
260
|
-
>
|
|
261
|
-
);
|
|
262
|
-
}
|
|
263
|
-
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
264
|
-
readonly name: "PermissionAlreadyExistsException";
|
|
265
|
-
readonly $fault: "client";
|
|
266
|
-
constructor(
|
|
267
|
-
opts: __ExceptionOptionType<
|
|
268
|
-
PermissionAlreadyExistsException,
|
|
269
|
-
__BaseException
|
|
270
|
-
>
|
|
271
|
-
);
|
|
272
|
-
}
|
|
273
|
-
export declare class PermissionLimitExceededException extends __BaseException {
|
|
274
|
-
readonly name: "PermissionLimitExceededException";
|
|
275
|
-
readonly $fault: "client";
|
|
276
|
-
constructor(
|
|
277
|
-
opts: __ExceptionOptionType<
|
|
278
|
-
PermissionLimitExceededException,
|
|
279
|
-
__BaseException
|
|
280
|
-
>
|
|
281
|
-
);
|
|
282
|
-
}
|
|
283
98
|
export interface CreatePermissionVersionRequest {
|
|
284
99
|
permissionArn: string | undefined;
|
|
285
100
|
policyTemplate: string | undefined;
|
|
286
101
|
clientToken?: string | undefined;
|
|
287
102
|
}
|
|
288
|
-
export declare const PermissionStatus: {
|
|
289
|
-
readonly ATTACHABLE: "ATTACHABLE";
|
|
290
|
-
readonly DELETED: "DELETED";
|
|
291
|
-
readonly DELETING: "DELETING";
|
|
292
|
-
readonly UNATTACHABLE: "UNATTACHABLE";
|
|
293
|
-
};
|
|
294
|
-
export type PermissionStatus =
|
|
295
|
-
(typeof PermissionStatus)[keyof typeof PermissionStatus];
|
|
296
103
|
export interface ResourceSharePermissionDetail {
|
|
297
104
|
arn?: string | undefined;
|
|
298
105
|
version?: string | undefined;
|
|
@@ -312,16 +119,6 @@ export interface CreatePermissionVersionResponse {
|
|
|
312
119
|
permission?: ResourceSharePermissionDetail | undefined;
|
|
313
120
|
clientToken?: string | undefined;
|
|
314
121
|
}
|
|
315
|
-
export declare class PermissionVersionsLimitExceededException extends __BaseException {
|
|
316
|
-
readonly name: "PermissionVersionsLimitExceededException";
|
|
317
|
-
readonly $fault: "client";
|
|
318
|
-
constructor(
|
|
319
|
-
opts: __ExceptionOptionType<
|
|
320
|
-
PermissionVersionsLimitExceededException,
|
|
321
|
-
__BaseException
|
|
322
|
-
>
|
|
323
|
-
);
|
|
324
|
-
}
|
|
325
122
|
export interface CreateResourceShareRequest {
|
|
326
123
|
name: string | undefined;
|
|
327
124
|
resourceArns?: string[] | undefined;
|
|
@@ -332,22 +129,6 @@ export interface CreateResourceShareRequest {
|
|
|
332
129
|
permissionArns?: string[] | undefined;
|
|
333
130
|
sources?: string[] | undefined;
|
|
334
131
|
}
|
|
335
|
-
export declare const ResourceShareFeatureSet: {
|
|
336
|
-
readonly CREATED_FROM_POLICY: "CREATED_FROM_POLICY";
|
|
337
|
-
readonly PROMOTING_TO_STANDARD: "PROMOTING_TO_STANDARD";
|
|
338
|
-
readonly STANDARD: "STANDARD";
|
|
339
|
-
};
|
|
340
|
-
export type ResourceShareFeatureSet =
|
|
341
|
-
(typeof ResourceShareFeatureSet)[keyof typeof ResourceShareFeatureSet];
|
|
342
|
-
export declare const ResourceShareStatus: {
|
|
343
|
-
readonly ACTIVE: "ACTIVE";
|
|
344
|
-
readonly DELETED: "DELETED";
|
|
345
|
-
readonly DELETING: "DELETING";
|
|
346
|
-
readonly FAILED: "FAILED";
|
|
347
|
-
readonly PENDING: "PENDING";
|
|
348
|
-
};
|
|
349
|
-
export type ResourceShareStatus =
|
|
350
|
-
(typeof ResourceShareStatus)[keyof typeof ResourceShareStatus];
|
|
351
132
|
export interface ResourceShare {
|
|
352
133
|
resourceShareArn?: string | undefined;
|
|
353
134
|
name?: string | undefined;
|
|
@@ -364,20 +145,6 @@ export interface CreateResourceShareResponse {
|
|
|
364
145
|
resourceShare?: ResourceShare | undefined;
|
|
365
146
|
clientToken?: string | undefined;
|
|
366
147
|
}
|
|
367
|
-
export declare class TagLimitExceededException extends __BaseException {
|
|
368
|
-
readonly name: "TagLimitExceededException";
|
|
369
|
-
readonly $fault: "client";
|
|
370
|
-
constructor(
|
|
371
|
-
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
372
|
-
);
|
|
373
|
-
}
|
|
374
|
-
export declare class TagPolicyViolationException extends __BaseException {
|
|
375
|
-
readonly name: "TagPolicyViolationException";
|
|
376
|
-
readonly $fault: "client";
|
|
377
|
-
constructor(
|
|
378
|
-
opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
|
|
379
|
-
);
|
|
380
|
-
}
|
|
381
148
|
export interface DeletePermissionRequest {
|
|
382
149
|
permissionArn: string | undefined;
|
|
383
150
|
clientToken?: string | undefined;
|
|
@@ -446,20 +213,6 @@ export interface GetResourcePoliciesResponse {
|
|
|
446
213
|
policies?: string[] | undefined;
|
|
447
214
|
nextToken?: string | undefined;
|
|
448
215
|
}
|
|
449
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
450
|
-
readonly name: "InvalidNextTokenException";
|
|
451
|
-
readonly $fault: "client";
|
|
452
|
-
constructor(
|
|
453
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
454
|
-
);
|
|
455
|
-
}
|
|
456
|
-
export declare class ResourceArnNotFoundException extends __BaseException {
|
|
457
|
-
readonly name: "ResourceArnNotFoundException";
|
|
458
|
-
readonly $fault: "client";
|
|
459
|
-
constructor(
|
|
460
|
-
opts: __ExceptionOptionType<ResourceArnNotFoundException, __BaseException>
|
|
461
|
-
);
|
|
462
|
-
}
|
|
463
216
|
export interface GetResourceShareAssociationsRequest {
|
|
464
217
|
associationType: ResourceShareAssociationType | undefined;
|
|
465
218
|
resourceShareArns?: string[] | undefined;
|
|
@@ -483,18 +236,6 @@ export interface GetResourceShareInvitationsResponse {
|
|
|
483
236
|
resourceShareInvitations?: ResourceShareInvitation[] | undefined;
|
|
484
237
|
nextToken?: string | undefined;
|
|
485
238
|
}
|
|
486
|
-
export declare class InvalidMaxResultsException extends __BaseException {
|
|
487
|
-
readonly name: "InvalidMaxResultsException";
|
|
488
|
-
readonly $fault: "client";
|
|
489
|
-
constructor(
|
|
490
|
-
opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>
|
|
491
|
-
);
|
|
492
|
-
}
|
|
493
|
-
export declare const ResourceOwner: {
|
|
494
|
-
readonly OTHER_ACCOUNTS: "OTHER-ACCOUNTS";
|
|
495
|
-
readonly SELF: "SELF";
|
|
496
|
-
};
|
|
497
|
-
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
498
239
|
export interface TagFilter {
|
|
499
240
|
tagKey?: string | undefined;
|
|
500
241
|
tagValues?: string[] | undefined;
|
|
@@ -514,34 +255,12 @@ export interface GetResourceSharesResponse {
|
|
|
514
255
|
resourceShares?: ResourceShare[] | undefined;
|
|
515
256
|
nextToken?: string | undefined;
|
|
516
257
|
}
|
|
517
|
-
export declare const ResourceRegionScopeFilter: {
|
|
518
|
-
readonly ALL: "ALL";
|
|
519
|
-
readonly GLOBAL: "GLOBAL";
|
|
520
|
-
readonly REGIONAL: "REGIONAL";
|
|
521
|
-
};
|
|
522
|
-
export type ResourceRegionScopeFilter =
|
|
523
|
-
(typeof ResourceRegionScopeFilter)[keyof typeof ResourceRegionScopeFilter];
|
|
524
258
|
export interface ListPendingInvitationResourcesRequest {
|
|
525
259
|
resourceShareInvitationArn: string | undefined;
|
|
526
260
|
nextToken?: string | undefined;
|
|
527
261
|
maxResults?: number | undefined;
|
|
528
262
|
resourceRegionScope?: ResourceRegionScopeFilter | undefined;
|
|
529
263
|
}
|
|
530
|
-
export declare const ResourceRegionScope: {
|
|
531
|
-
readonly GLOBAL: "GLOBAL";
|
|
532
|
-
readonly REGIONAL: "REGIONAL";
|
|
533
|
-
};
|
|
534
|
-
export type ResourceRegionScope =
|
|
535
|
-
(typeof ResourceRegionScope)[keyof typeof ResourceRegionScope];
|
|
536
|
-
export declare const ResourceStatus: {
|
|
537
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
538
|
-
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
539
|
-
readonly PENDING: "PENDING";
|
|
540
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
541
|
-
readonly ZONAL_RESOURCE_INACCESSIBLE: "ZONAL_RESOURCE_INACCESSIBLE";
|
|
542
|
-
};
|
|
543
|
-
export type ResourceStatus =
|
|
544
|
-
(typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
545
264
|
export interface Resource {
|
|
546
265
|
arn?: string | undefined;
|
|
547
266
|
type?: string | undefined;
|
|
@@ -557,16 +276,6 @@ export interface ListPendingInvitationResourcesResponse {
|
|
|
557
276
|
resources?: Resource[] | undefined;
|
|
558
277
|
nextToken?: string | undefined;
|
|
559
278
|
}
|
|
560
|
-
export declare class MissingRequiredParameterException extends __BaseException {
|
|
561
|
-
readonly name: "MissingRequiredParameterException";
|
|
562
|
-
readonly $fault: "client";
|
|
563
|
-
constructor(
|
|
564
|
-
opts: __ExceptionOptionType<
|
|
565
|
-
MissingRequiredParameterException,
|
|
566
|
-
__BaseException
|
|
567
|
-
>
|
|
568
|
-
);
|
|
569
|
-
}
|
|
570
279
|
export interface ListPermissionAssociationsRequest {
|
|
571
280
|
permissionArn?: string | undefined;
|
|
572
281
|
permissionVersion?: number | undefined;
|
|
@@ -591,13 +300,6 @@ export interface ListPermissionAssociationsResponse {
|
|
|
591
300
|
permissions?: AssociatedPermission[] | undefined;
|
|
592
301
|
nextToken?: string | undefined;
|
|
593
302
|
}
|
|
594
|
-
export declare const PermissionTypeFilter: {
|
|
595
|
-
readonly ALL: "ALL";
|
|
596
|
-
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
597
|
-
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
598
|
-
};
|
|
599
|
-
export type PermissionTypeFilter =
|
|
600
|
-
(typeof PermissionTypeFilter)[keyof typeof PermissionTypeFilter];
|
|
601
303
|
export interface ListPermissionsRequest {
|
|
602
304
|
resourceType?: string | undefined;
|
|
603
305
|
nextToken?: string | undefined;
|
|
@@ -637,13 +339,6 @@ export interface ListPrincipalsResponse {
|
|
|
637
339
|
principals?: Principal[] | undefined;
|
|
638
340
|
nextToken?: string | undefined;
|
|
639
341
|
}
|
|
640
|
-
export declare const ReplacePermissionAssociationsWorkStatus: {
|
|
641
|
-
readonly COMPLETED: "COMPLETED";
|
|
642
|
-
readonly FAILED: "FAILED";
|
|
643
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
644
|
-
};
|
|
645
|
-
export type ReplacePermissionAssociationsWorkStatus =
|
|
646
|
-
(typeof ReplacePermissionAssociationsWorkStatus)[keyof typeof ReplacePermissionAssociationsWorkStatus];
|
|
647
342
|
export interface ListReplacePermissionAssociationsWorkRequest {
|
|
648
343
|
workIds?: string[] | undefined;
|
|
649
344
|
status?: ReplacePermissionAssociationsWorkStatus | undefined;
|
|
@@ -667,13 +362,6 @@ export interface ListReplacePermissionAssociationsWorkResponse {
|
|
|
667
362
|
| undefined;
|
|
668
363
|
nextToken?: string | undefined;
|
|
669
364
|
}
|
|
670
|
-
export declare class InvalidResourceTypeException extends __BaseException {
|
|
671
|
-
readonly name: "InvalidResourceTypeException";
|
|
672
|
-
readonly $fault: "client";
|
|
673
|
-
constructor(
|
|
674
|
-
opts: __ExceptionOptionType<InvalidResourceTypeException, __BaseException>
|
|
675
|
-
);
|
|
676
|
-
}
|
|
677
365
|
export interface ListResourcesRequest {
|
|
678
366
|
resourceOwner: ResourceOwner | undefined;
|
|
679
367
|
principal?: string | undefined;
|
|
@@ -726,16 +414,6 @@ export interface PromoteResourceShareCreatedFromPolicyRequest {
|
|
|
726
414
|
export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
727
415
|
returnValue?: boolean | undefined;
|
|
728
416
|
}
|
|
729
|
-
export declare class UnmatchedPolicyPermissionException extends __BaseException {
|
|
730
|
-
readonly name: "UnmatchedPolicyPermissionException";
|
|
731
|
-
readonly $fault: "client";
|
|
732
|
-
constructor(
|
|
733
|
-
opts: __ExceptionOptionType<
|
|
734
|
-
UnmatchedPolicyPermissionException,
|
|
735
|
-
__BaseException
|
|
736
|
-
>
|
|
737
|
-
);
|
|
738
|
-
}
|
|
739
417
|
export interface RejectResourceShareInvitationRequest {
|
|
740
418
|
resourceShareInvitationArn: string | undefined;
|
|
741
419
|
clientToken?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ram",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ram",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|