aws-sdk-ram 1.52.0 → 1.53.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ram/client.rb +1 -1
- data/lib/aws-sdk-ram/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-ram.rb +1 -1
- data/sig/client.rbs +568 -0
- data/sig/errors.rbs +100 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +758 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,758 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::RAM
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AcceptResourceShareInvitationRequest
|
12
|
+
attr_accessor resource_share_invitation_arn: ::String
|
13
|
+
attr_accessor client_token: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AcceptResourceShareInvitationResponse
|
18
|
+
attr_accessor resource_share_invitation: Types::ResourceShareInvitation
|
19
|
+
attr_accessor client_token: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AssociateResourceSharePermissionRequest
|
24
|
+
attr_accessor resource_share_arn: ::String
|
25
|
+
attr_accessor permission_arn: ::String
|
26
|
+
attr_accessor replace: bool
|
27
|
+
attr_accessor client_token: ::String
|
28
|
+
attr_accessor permission_version: ::Integer
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class AssociateResourceSharePermissionResponse
|
33
|
+
attr_accessor return_value: bool
|
34
|
+
attr_accessor client_token: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class AssociateResourceShareRequest
|
39
|
+
attr_accessor resource_share_arn: ::String
|
40
|
+
attr_accessor resource_arns: ::Array[::String]
|
41
|
+
attr_accessor principals: ::Array[::String]
|
42
|
+
attr_accessor client_token: ::String
|
43
|
+
attr_accessor sources: ::Array[::String]
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class AssociateResourceShareResponse
|
48
|
+
attr_accessor resource_share_associations: ::Array[Types::ResourceShareAssociation]
|
49
|
+
attr_accessor client_token: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class AssociatedPermission
|
54
|
+
attr_accessor arn: ::String
|
55
|
+
attr_accessor permission_version: ::String
|
56
|
+
attr_accessor default_version: bool
|
57
|
+
attr_accessor resource_type: ::String
|
58
|
+
attr_accessor status: ::String
|
59
|
+
attr_accessor feature_set: ("CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD")
|
60
|
+
attr_accessor last_updated_time: ::Time
|
61
|
+
attr_accessor resource_share_arn: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class CreatePermissionRequest
|
66
|
+
attr_accessor name: ::String
|
67
|
+
attr_accessor resource_type: ::String
|
68
|
+
attr_accessor policy_template: ::String
|
69
|
+
attr_accessor client_token: ::String
|
70
|
+
attr_accessor tags: ::Array[Types::Tag]
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class CreatePermissionResponse
|
75
|
+
attr_accessor permission: Types::ResourceSharePermissionSummary
|
76
|
+
attr_accessor client_token: ::String
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class CreatePermissionVersionRequest
|
81
|
+
attr_accessor permission_arn: ::String
|
82
|
+
attr_accessor policy_template: ::String
|
83
|
+
attr_accessor client_token: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class CreatePermissionVersionResponse
|
88
|
+
attr_accessor permission: Types::ResourceSharePermissionDetail
|
89
|
+
attr_accessor client_token: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class CreateResourceShareRequest
|
94
|
+
attr_accessor name: ::String
|
95
|
+
attr_accessor resource_arns: ::Array[::String]
|
96
|
+
attr_accessor principals: ::Array[::String]
|
97
|
+
attr_accessor tags: ::Array[Types::Tag]
|
98
|
+
attr_accessor allow_external_principals: bool
|
99
|
+
attr_accessor client_token: ::String
|
100
|
+
attr_accessor permission_arns: ::Array[::String]
|
101
|
+
attr_accessor sources: ::Array[::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class CreateResourceShareResponse
|
106
|
+
attr_accessor resource_share: Types::ResourceShare
|
107
|
+
attr_accessor client_token: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class DeletePermissionRequest
|
112
|
+
attr_accessor permission_arn: ::String
|
113
|
+
attr_accessor client_token: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class DeletePermissionResponse
|
118
|
+
attr_accessor return_value: bool
|
119
|
+
attr_accessor client_token: ::String
|
120
|
+
attr_accessor permission_status: ("ATTACHABLE" | "UNATTACHABLE" | "DELETING" | "DELETED")
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DeletePermissionVersionRequest
|
125
|
+
attr_accessor permission_arn: ::String
|
126
|
+
attr_accessor permission_version: ::Integer
|
127
|
+
attr_accessor client_token: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class DeletePermissionVersionResponse
|
132
|
+
attr_accessor return_value: bool
|
133
|
+
attr_accessor client_token: ::String
|
134
|
+
attr_accessor permission_status: ("ATTACHABLE" | "UNATTACHABLE" | "DELETING" | "DELETED")
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DeleteResourceShareRequest
|
139
|
+
attr_accessor resource_share_arn: ::String
|
140
|
+
attr_accessor client_token: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class DeleteResourceShareResponse
|
145
|
+
attr_accessor return_value: bool
|
146
|
+
attr_accessor client_token: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class DisassociateResourceSharePermissionRequest
|
151
|
+
attr_accessor resource_share_arn: ::String
|
152
|
+
attr_accessor permission_arn: ::String
|
153
|
+
attr_accessor client_token: ::String
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class DisassociateResourceSharePermissionResponse
|
158
|
+
attr_accessor return_value: bool
|
159
|
+
attr_accessor client_token: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class DisassociateResourceShareRequest
|
164
|
+
attr_accessor resource_share_arn: ::String
|
165
|
+
attr_accessor resource_arns: ::Array[::String]
|
166
|
+
attr_accessor principals: ::Array[::String]
|
167
|
+
attr_accessor client_token: ::String
|
168
|
+
attr_accessor sources: ::Array[::String]
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class DisassociateResourceShareResponse
|
173
|
+
attr_accessor resource_share_associations: ::Array[Types::ResourceShareAssociation]
|
174
|
+
attr_accessor client_token: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class EnableSharingWithAwsOrganizationRequest < Aws::EmptyStructure
|
179
|
+
end
|
180
|
+
|
181
|
+
class EnableSharingWithAwsOrganizationResponse
|
182
|
+
attr_accessor return_value: bool
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class GetPermissionRequest
|
187
|
+
attr_accessor permission_arn: ::String
|
188
|
+
attr_accessor permission_version: ::Integer
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class GetPermissionResponse
|
193
|
+
attr_accessor permission: Types::ResourceSharePermissionDetail
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class GetResourcePoliciesRequest
|
198
|
+
attr_accessor resource_arns: ::Array[::String]
|
199
|
+
attr_accessor principal: ::String
|
200
|
+
attr_accessor next_token: ::String
|
201
|
+
attr_accessor max_results: ::Integer
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class GetResourcePoliciesResponse
|
206
|
+
attr_accessor policies: ::Array[::String]
|
207
|
+
attr_accessor next_token: ::String
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class GetResourceShareAssociationsRequest
|
212
|
+
attr_accessor association_type: ("PRINCIPAL" | "RESOURCE")
|
213
|
+
attr_accessor resource_share_arns: ::Array[::String]
|
214
|
+
attr_accessor resource_arn: ::String
|
215
|
+
attr_accessor principal: ::String
|
216
|
+
attr_accessor association_status: ("ASSOCIATING" | "ASSOCIATED" | "FAILED" | "DISASSOCIATING" | "DISASSOCIATED")
|
217
|
+
attr_accessor next_token: ::String
|
218
|
+
attr_accessor max_results: ::Integer
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class GetResourceShareAssociationsResponse
|
223
|
+
attr_accessor resource_share_associations: ::Array[Types::ResourceShareAssociation]
|
224
|
+
attr_accessor next_token: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class GetResourceShareInvitationsRequest
|
229
|
+
attr_accessor resource_share_invitation_arns: ::Array[::String]
|
230
|
+
attr_accessor resource_share_arns: ::Array[::String]
|
231
|
+
attr_accessor next_token: ::String
|
232
|
+
attr_accessor max_results: ::Integer
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class GetResourceShareInvitationsResponse
|
237
|
+
attr_accessor resource_share_invitations: ::Array[Types::ResourceShareInvitation]
|
238
|
+
attr_accessor next_token: ::String
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class GetResourceSharesRequest
|
243
|
+
attr_accessor resource_share_arns: ::Array[::String]
|
244
|
+
attr_accessor resource_share_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING" | "DELETED")
|
245
|
+
attr_accessor resource_owner: ("SELF" | "OTHER-ACCOUNTS")
|
246
|
+
attr_accessor name: ::String
|
247
|
+
attr_accessor tag_filters: ::Array[Types::TagFilter]
|
248
|
+
attr_accessor next_token: ::String
|
249
|
+
attr_accessor max_results: ::Integer
|
250
|
+
attr_accessor permission_arn: ::String
|
251
|
+
attr_accessor permission_version: ::Integer
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class GetResourceSharesResponse
|
256
|
+
attr_accessor resource_shares: ::Array[Types::ResourceShare]
|
257
|
+
attr_accessor next_token: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class IdempotentParameterMismatchException
|
262
|
+
attr_accessor message: ::String
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class InvalidClientTokenException
|
267
|
+
attr_accessor message: ::String
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class InvalidMaxResultsException
|
272
|
+
attr_accessor message: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class InvalidNextTokenException
|
277
|
+
attr_accessor message: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class InvalidParameterException
|
282
|
+
attr_accessor message: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class InvalidPolicyException
|
287
|
+
attr_accessor message: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class InvalidResourceTypeException
|
292
|
+
attr_accessor message: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class InvalidStateTransitionException
|
297
|
+
attr_accessor message: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class ListPendingInvitationResourcesRequest
|
302
|
+
attr_accessor resource_share_invitation_arn: ::String
|
303
|
+
attr_accessor next_token: ::String
|
304
|
+
attr_accessor max_results: ::Integer
|
305
|
+
attr_accessor resource_region_scope: ("ALL" | "REGIONAL" | "GLOBAL")
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class ListPendingInvitationResourcesResponse
|
310
|
+
attr_accessor resources: ::Array[Types::Resource]
|
311
|
+
attr_accessor next_token: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class ListPermissionAssociationsRequest
|
316
|
+
attr_accessor permission_arn: ::String
|
317
|
+
attr_accessor permission_version: ::Integer
|
318
|
+
attr_accessor association_status: ("ASSOCIATING" | "ASSOCIATED" | "FAILED" | "DISASSOCIATING" | "DISASSOCIATED")
|
319
|
+
attr_accessor resource_type: ::String
|
320
|
+
attr_accessor feature_set: ("CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD")
|
321
|
+
attr_accessor default_version: bool
|
322
|
+
attr_accessor next_token: ::String
|
323
|
+
attr_accessor max_results: ::Integer
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class ListPermissionAssociationsResponse
|
328
|
+
attr_accessor permissions: ::Array[Types::AssociatedPermission]
|
329
|
+
attr_accessor next_token: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class ListPermissionVersionsRequest
|
334
|
+
attr_accessor permission_arn: ::String
|
335
|
+
attr_accessor next_token: ::String
|
336
|
+
attr_accessor max_results: ::Integer
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class ListPermissionVersionsResponse
|
341
|
+
attr_accessor permissions: ::Array[Types::ResourceSharePermissionSummary]
|
342
|
+
attr_accessor next_token: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class ListPermissionsRequest
|
347
|
+
attr_accessor resource_type: ::String
|
348
|
+
attr_accessor next_token: ::String
|
349
|
+
attr_accessor max_results: ::Integer
|
350
|
+
attr_accessor permission_type: ("ALL" | "AWS_MANAGED" | "CUSTOMER_MANAGED")
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class ListPermissionsResponse
|
355
|
+
attr_accessor permissions: ::Array[Types::ResourceSharePermissionSummary]
|
356
|
+
attr_accessor next_token: ::String
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class ListPrincipalsRequest
|
361
|
+
attr_accessor resource_owner: ("SELF" | "OTHER-ACCOUNTS")
|
362
|
+
attr_accessor resource_arn: ::String
|
363
|
+
attr_accessor principals: ::Array[::String]
|
364
|
+
attr_accessor resource_type: ::String
|
365
|
+
attr_accessor resource_share_arns: ::Array[::String]
|
366
|
+
attr_accessor next_token: ::String
|
367
|
+
attr_accessor max_results: ::Integer
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class ListPrincipalsResponse
|
372
|
+
attr_accessor principals: ::Array[Types::Principal]
|
373
|
+
attr_accessor next_token: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class ListReplacePermissionAssociationsWorkRequest
|
378
|
+
attr_accessor work_ids: ::Array[::String]
|
379
|
+
attr_accessor status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
380
|
+
attr_accessor next_token: ::String
|
381
|
+
attr_accessor max_results: ::Integer
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class ListReplacePermissionAssociationsWorkResponse
|
386
|
+
attr_accessor replace_permission_associations_works: ::Array[Types::ReplacePermissionAssociationsWork]
|
387
|
+
attr_accessor next_token: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class ListResourceSharePermissionsRequest
|
392
|
+
attr_accessor resource_share_arn: ::String
|
393
|
+
attr_accessor next_token: ::String
|
394
|
+
attr_accessor max_results: ::Integer
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class ListResourceSharePermissionsResponse
|
399
|
+
attr_accessor permissions: ::Array[Types::ResourceSharePermissionSummary]
|
400
|
+
attr_accessor next_token: ::String
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class ListResourceTypesRequest
|
405
|
+
attr_accessor next_token: ::String
|
406
|
+
attr_accessor max_results: ::Integer
|
407
|
+
attr_accessor resource_region_scope: ("ALL" | "REGIONAL" | "GLOBAL")
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class ListResourceTypesResponse
|
412
|
+
attr_accessor resource_types: ::Array[Types::ServiceNameAndResourceType]
|
413
|
+
attr_accessor next_token: ::String
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class ListResourcesRequest
|
418
|
+
attr_accessor resource_owner: ("SELF" | "OTHER-ACCOUNTS")
|
419
|
+
attr_accessor principal: ::String
|
420
|
+
attr_accessor resource_type: ::String
|
421
|
+
attr_accessor resource_arns: ::Array[::String]
|
422
|
+
attr_accessor resource_share_arns: ::Array[::String]
|
423
|
+
attr_accessor next_token: ::String
|
424
|
+
attr_accessor max_results: ::Integer
|
425
|
+
attr_accessor resource_region_scope: ("ALL" | "REGIONAL" | "GLOBAL")
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class ListResourcesResponse
|
430
|
+
attr_accessor resources: ::Array[Types::Resource]
|
431
|
+
attr_accessor next_token: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class MalformedArnException
|
436
|
+
attr_accessor message: ::String
|
437
|
+
SENSITIVE: []
|
438
|
+
end
|
439
|
+
|
440
|
+
class MalformedPolicyTemplateException
|
441
|
+
attr_accessor message: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class MissingRequiredParameterException
|
446
|
+
attr_accessor message: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class OperationNotPermittedException
|
451
|
+
attr_accessor message: ::String
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class PermissionAlreadyExistsException
|
456
|
+
attr_accessor message: ::String
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class PermissionLimitExceededException
|
461
|
+
attr_accessor message: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class PermissionVersionsLimitExceededException
|
466
|
+
attr_accessor message: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class Principal
|
471
|
+
attr_accessor id: ::String
|
472
|
+
attr_accessor resource_share_arn: ::String
|
473
|
+
attr_accessor creation_time: ::Time
|
474
|
+
attr_accessor last_updated_time: ::Time
|
475
|
+
attr_accessor external: bool
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class PromotePermissionCreatedFromPolicyRequest
|
480
|
+
attr_accessor permission_arn: ::String
|
481
|
+
attr_accessor name: ::String
|
482
|
+
attr_accessor client_token: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class PromotePermissionCreatedFromPolicyResponse
|
487
|
+
attr_accessor permission: Types::ResourceSharePermissionSummary
|
488
|
+
attr_accessor client_token: ::String
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class PromoteResourceShareCreatedFromPolicyRequest
|
493
|
+
attr_accessor resource_share_arn: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class PromoteResourceShareCreatedFromPolicyResponse
|
498
|
+
attr_accessor return_value: bool
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class RejectResourceShareInvitationRequest
|
503
|
+
attr_accessor resource_share_invitation_arn: ::String
|
504
|
+
attr_accessor client_token: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class RejectResourceShareInvitationResponse
|
509
|
+
attr_accessor resource_share_invitation: Types::ResourceShareInvitation
|
510
|
+
attr_accessor client_token: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class ReplacePermissionAssociationsRequest
|
515
|
+
attr_accessor from_permission_arn: ::String
|
516
|
+
attr_accessor from_permission_version: ::Integer
|
517
|
+
attr_accessor to_permission_arn: ::String
|
518
|
+
attr_accessor client_token: ::String
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class ReplacePermissionAssociationsResponse
|
523
|
+
attr_accessor replace_permission_associations_work: Types::ReplacePermissionAssociationsWork
|
524
|
+
attr_accessor client_token: ::String
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class ReplacePermissionAssociationsWork
|
529
|
+
attr_accessor id: ::String
|
530
|
+
attr_accessor from_permission_arn: ::String
|
531
|
+
attr_accessor from_permission_version: ::String
|
532
|
+
attr_accessor to_permission_arn: ::String
|
533
|
+
attr_accessor to_permission_version: ::String
|
534
|
+
attr_accessor status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
535
|
+
attr_accessor status_message: ::String
|
536
|
+
attr_accessor creation_time: ::Time
|
537
|
+
attr_accessor last_updated_time: ::Time
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class Resource
|
542
|
+
attr_accessor arn: ::String
|
543
|
+
attr_accessor type: ::String
|
544
|
+
attr_accessor resource_share_arn: ::String
|
545
|
+
attr_accessor resource_group_arn: ::String
|
546
|
+
attr_accessor status: ("AVAILABLE" | "ZONAL_RESOURCE_INACCESSIBLE" | "LIMIT_EXCEEDED" | "UNAVAILABLE" | "PENDING")
|
547
|
+
attr_accessor status_message: ::String
|
548
|
+
attr_accessor creation_time: ::Time
|
549
|
+
attr_accessor last_updated_time: ::Time
|
550
|
+
attr_accessor resource_region_scope: ("REGIONAL" | "GLOBAL")
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class ResourceArnNotFoundException
|
555
|
+
attr_accessor message: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class ResourceShare
|
560
|
+
attr_accessor resource_share_arn: ::String
|
561
|
+
attr_accessor name: ::String
|
562
|
+
attr_accessor owning_account_id: ::String
|
563
|
+
attr_accessor allow_external_principals: bool
|
564
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING" | "DELETED")
|
565
|
+
attr_accessor status_message: ::String
|
566
|
+
attr_accessor tags: ::Array[Types::Tag]
|
567
|
+
attr_accessor creation_time: ::Time
|
568
|
+
attr_accessor last_updated_time: ::Time
|
569
|
+
attr_accessor feature_set: ("CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD")
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class ResourceShareAssociation
|
574
|
+
attr_accessor resource_share_arn: ::String
|
575
|
+
attr_accessor resource_share_name: ::String
|
576
|
+
attr_accessor associated_entity: ::String
|
577
|
+
attr_accessor association_type: ("PRINCIPAL" | "RESOURCE")
|
578
|
+
attr_accessor status: ("ASSOCIATING" | "ASSOCIATED" | "FAILED" | "DISASSOCIATING" | "DISASSOCIATED")
|
579
|
+
attr_accessor status_message: ::String
|
580
|
+
attr_accessor creation_time: ::Time
|
581
|
+
attr_accessor last_updated_time: ::Time
|
582
|
+
attr_accessor external: bool
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ResourceShareInvitation
|
587
|
+
attr_accessor resource_share_invitation_arn: ::String
|
588
|
+
attr_accessor resource_share_name: ::String
|
589
|
+
attr_accessor resource_share_arn: ::String
|
590
|
+
attr_accessor sender_account_id: ::String
|
591
|
+
attr_accessor receiver_account_id: ::String
|
592
|
+
attr_accessor invitation_timestamp: ::Time
|
593
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "EXPIRED")
|
594
|
+
attr_accessor resource_share_associations: ::Array[Types::ResourceShareAssociation]
|
595
|
+
attr_accessor receiver_arn: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class ResourceShareInvitationAlreadyAcceptedException
|
600
|
+
attr_accessor message: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ResourceShareInvitationAlreadyRejectedException
|
605
|
+
attr_accessor message: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class ResourceShareInvitationArnNotFoundException
|
610
|
+
attr_accessor message: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class ResourceShareInvitationExpiredException
|
615
|
+
attr_accessor message: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class ResourceShareLimitExceededException
|
620
|
+
attr_accessor message: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class ResourceSharePermissionDetail
|
625
|
+
attr_accessor arn: ::String
|
626
|
+
attr_accessor version: ::String
|
627
|
+
attr_accessor default_version: bool
|
628
|
+
attr_accessor name: ::String
|
629
|
+
attr_accessor resource_type: ::String
|
630
|
+
attr_accessor permission: ::String
|
631
|
+
attr_accessor creation_time: ::Time
|
632
|
+
attr_accessor last_updated_time: ::Time
|
633
|
+
attr_accessor is_resource_type_default: bool
|
634
|
+
attr_accessor permission_type: ("CUSTOMER_MANAGED" | "AWS_MANAGED")
|
635
|
+
attr_accessor feature_set: ("CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD")
|
636
|
+
attr_accessor status: ("ATTACHABLE" | "UNATTACHABLE" | "DELETING" | "DELETED")
|
637
|
+
attr_accessor tags: ::Array[Types::Tag]
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class ResourceSharePermissionSummary
|
642
|
+
attr_accessor arn: ::String
|
643
|
+
attr_accessor version: ::String
|
644
|
+
attr_accessor default_version: bool
|
645
|
+
attr_accessor name: ::String
|
646
|
+
attr_accessor resource_type: ::String
|
647
|
+
attr_accessor status: ::String
|
648
|
+
attr_accessor creation_time: ::Time
|
649
|
+
attr_accessor last_updated_time: ::Time
|
650
|
+
attr_accessor is_resource_type_default: bool
|
651
|
+
attr_accessor permission_type: ("CUSTOMER_MANAGED" | "AWS_MANAGED")
|
652
|
+
attr_accessor feature_set: ("CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD")
|
653
|
+
attr_accessor tags: ::Array[Types::Tag]
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class ServerInternalException
|
658
|
+
attr_accessor message: ::String
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class ServiceNameAndResourceType
|
663
|
+
attr_accessor resource_type: ::String
|
664
|
+
attr_accessor service_name: ::String
|
665
|
+
attr_accessor resource_region_scope: ("REGIONAL" | "GLOBAL")
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class ServiceUnavailableException
|
670
|
+
attr_accessor message: ::String
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class SetDefaultPermissionVersionRequest
|
675
|
+
attr_accessor permission_arn: ::String
|
676
|
+
attr_accessor permission_version: ::Integer
|
677
|
+
attr_accessor client_token: ::String
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class SetDefaultPermissionVersionResponse
|
682
|
+
attr_accessor return_value: bool
|
683
|
+
attr_accessor client_token: ::String
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class Tag
|
688
|
+
attr_accessor key: ::String
|
689
|
+
attr_accessor value: ::String
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class TagFilter
|
694
|
+
attr_accessor tag_key: ::String
|
695
|
+
attr_accessor tag_values: ::Array[::String]
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class TagLimitExceededException
|
700
|
+
attr_accessor message: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class TagPolicyViolationException
|
705
|
+
attr_accessor message: ::String
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class TagResourceRequest
|
710
|
+
attr_accessor resource_share_arn: ::String
|
711
|
+
attr_accessor tags: ::Array[Types::Tag]
|
712
|
+
attr_accessor resource_arn: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class TagResourceResponse < Aws::EmptyStructure
|
717
|
+
end
|
718
|
+
|
719
|
+
class ThrottlingException
|
720
|
+
attr_accessor message: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class UnknownResourceException
|
725
|
+
attr_accessor message: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class UnmatchedPolicyPermissionException
|
730
|
+
attr_accessor message: ::String
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class UntagResourceRequest
|
735
|
+
attr_accessor resource_share_arn: ::String
|
736
|
+
attr_accessor tag_keys: ::Array[::String]
|
737
|
+
attr_accessor resource_arn: ::String
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
742
|
+
end
|
743
|
+
|
744
|
+
class UpdateResourceShareRequest
|
745
|
+
attr_accessor resource_share_arn: ::String
|
746
|
+
attr_accessor name: ::String
|
747
|
+
attr_accessor allow_external_principals: bool
|
748
|
+
attr_accessor client_token: ::String
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class UpdateResourceShareResponse
|
753
|
+
attr_accessor resource_share: Types::ResourceShare
|
754
|
+
attr_accessor client_token: ::String
|
755
|
+
SENSITIVE: []
|
756
|
+
end
|
757
|
+
end
|
758
|
+
end
|