aws-sdk-appfabric 1.7.0 → 1.9.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appfabric/client.rb +70 -46
- data/lib/aws-sdk-appfabric/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-appfabric.rb +1 -1
- data/sig/client.rbs +460 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +565 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,565 @@
|
|
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::AppFabric
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ApiKeyCredential
|
17
|
+
attr_accessor api_key: ::String
|
18
|
+
SENSITIVE: [:api_key]
|
19
|
+
end
|
20
|
+
|
21
|
+
class AppAuthorization
|
22
|
+
attr_accessor app_authorization_arn: ::String
|
23
|
+
attr_accessor app_bundle_arn: ::String
|
24
|
+
attr_accessor app: ::String
|
25
|
+
attr_accessor tenant: Types::Tenant
|
26
|
+
attr_accessor auth_type: ("oauth2" | "apiKey")
|
27
|
+
attr_accessor status: ("PendingConnect" | "Connected" | "ConnectionValidationFailed" | "TokenAutoRotationFailed")
|
28
|
+
attr_accessor created_at: ::Time
|
29
|
+
attr_accessor updated_at: ::Time
|
30
|
+
attr_accessor persona: ("admin" | "endUser")
|
31
|
+
attr_accessor auth_url: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class AppAuthorizationSummary
|
36
|
+
attr_accessor app_authorization_arn: ::String
|
37
|
+
attr_accessor app_bundle_arn: ::String
|
38
|
+
attr_accessor app: ::String
|
39
|
+
attr_accessor tenant: Types::Tenant
|
40
|
+
attr_accessor status: ("PendingConnect" | "Connected" | "ConnectionValidationFailed" | "TokenAutoRotationFailed")
|
41
|
+
attr_accessor updated_at: ::Time
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AppBundle
|
46
|
+
attr_accessor arn: ::String
|
47
|
+
attr_accessor customer_managed_key_arn: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class AppBundleSummary
|
52
|
+
attr_accessor arn: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class AuditLogDestinationConfiguration
|
57
|
+
attr_accessor destination: Types::Destination
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class AuditLogProcessingConfiguration
|
62
|
+
attr_accessor schema: ("ocsf" | "raw")
|
63
|
+
attr_accessor format: ("json" | "parquet")
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class AuthRequest
|
68
|
+
attr_accessor redirect_uri: ::String
|
69
|
+
attr_accessor code: ::String
|
70
|
+
SENSITIVE: [:code]
|
71
|
+
end
|
72
|
+
|
73
|
+
class BatchGetUserAccessTasksRequest
|
74
|
+
attr_accessor app_bundle_identifier: ::String
|
75
|
+
attr_accessor task_id_list: ::Array[::String]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class BatchGetUserAccessTasksResponse
|
80
|
+
attr_accessor user_access_results_list: ::Array[Types::UserAccessResultItem]
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class ConflictException
|
85
|
+
attr_accessor message: ::String
|
86
|
+
attr_accessor resource_id: ::String
|
87
|
+
attr_accessor resource_type: ::String
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class ConnectAppAuthorizationRequest
|
92
|
+
attr_accessor app_bundle_identifier: ::String
|
93
|
+
attr_accessor app_authorization_identifier: ::String
|
94
|
+
attr_accessor auth_request: Types::AuthRequest
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class ConnectAppAuthorizationResponse
|
99
|
+
attr_accessor app_authorization_summary: Types::AppAuthorizationSummary
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class CreateAppAuthorizationRequest
|
104
|
+
attr_accessor app_bundle_identifier: ::String
|
105
|
+
attr_accessor app: ::String
|
106
|
+
attr_accessor credential: Types::Credential
|
107
|
+
attr_accessor tenant: Types::Tenant
|
108
|
+
attr_accessor auth_type: ("oauth2" | "apiKey")
|
109
|
+
attr_accessor client_token: ::String
|
110
|
+
attr_accessor tags: ::Array[Types::Tag]
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CreateAppAuthorizationResponse
|
115
|
+
attr_accessor app_authorization: Types::AppAuthorization
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class CreateAppBundleRequest
|
120
|
+
attr_accessor client_token: ::String
|
121
|
+
attr_accessor customer_managed_key_identifier: ::String
|
122
|
+
attr_accessor tags: ::Array[Types::Tag]
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class CreateAppBundleResponse
|
127
|
+
attr_accessor app_bundle: Types::AppBundle
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateIngestionDestinationRequest
|
132
|
+
attr_accessor app_bundle_identifier: ::String
|
133
|
+
attr_accessor ingestion_identifier: ::String
|
134
|
+
attr_accessor processing_configuration: Types::ProcessingConfiguration
|
135
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
136
|
+
attr_accessor client_token: ::String
|
137
|
+
attr_accessor tags: ::Array[Types::Tag]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateIngestionDestinationResponse
|
142
|
+
attr_accessor ingestion_destination: Types::IngestionDestination
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class CreateIngestionRequest
|
147
|
+
attr_accessor app_bundle_identifier: ::String
|
148
|
+
attr_accessor app: ::String
|
149
|
+
attr_accessor tenant_id: ::String
|
150
|
+
attr_accessor ingestion_type: ("auditLog")
|
151
|
+
attr_accessor client_token: ::String
|
152
|
+
attr_accessor tags: ::Array[Types::Tag]
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class CreateIngestionResponse
|
157
|
+
attr_accessor ingestion: Types::Ingestion
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class Credential
|
162
|
+
attr_accessor oauth2_credential: Types::Oauth2Credential
|
163
|
+
attr_accessor api_key_credential: Types::ApiKeyCredential
|
164
|
+
attr_accessor unknown: untyped
|
165
|
+
SENSITIVE: []
|
166
|
+
|
167
|
+
class Oauth2Credential < Credential
|
168
|
+
end
|
169
|
+
class ApiKeyCredential < Credential
|
170
|
+
end
|
171
|
+
class Unknown < Credential
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
class DeleteAppAuthorizationRequest
|
176
|
+
attr_accessor app_bundle_identifier: ::String
|
177
|
+
attr_accessor app_authorization_identifier: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class DeleteAppAuthorizationResponse < Aws::EmptyStructure
|
182
|
+
end
|
183
|
+
|
184
|
+
class DeleteAppBundleRequest
|
185
|
+
attr_accessor app_bundle_identifier: ::String
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class DeleteAppBundleResponse < Aws::EmptyStructure
|
190
|
+
end
|
191
|
+
|
192
|
+
class DeleteIngestionDestinationRequest
|
193
|
+
attr_accessor app_bundle_identifier: ::String
|
194
|
+
attr_accessor ingestion_identifier: ::String
|
195
|
+
attr_accessor ingestion_destination_identifier: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class DeleteIngestionDestinationResponse < Aws::EmptyStructure
|
200
|
+
end
|
201
|
+
|
202
|
+
class DeleteIngestionRequest
|
203
|
+
attr_accessor app_bundle_identifier: ::String
|
204
|
+
attr_accessor ingestion_identifier: ::String
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class DeleteIngestionResponse < Aws::EmptyStructure
|
209
|
+
end
|
210
|
+
|
211
|
+
class Destination
|
212
|
+
attr_accessor s3_bucket: Types::S3Bucket
|
213
|
+
attr_accessor firehose_stream: Types::FirehoseStream
|
214
|
+
attr_accessor unknown: untyped
|
215
|
+
SENSITIVE: []
|
216
|
+
|
217
|
+
class S3Bucket < Destination
|
218
|
+
end
|
219
|
+
class FirehoseStream < Destination
|
220
|
+
end
|
221
|
+
class Unknown < Destination
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
class DestinationConfiguration
|
226
|
+
attr_accessor audit_log: Types::AuditLogDestinationConfiguration
|
227
|
+
attr_accessor unknown: untyped
|
228
|
+
SENSITIVE: []
|
229
|
+
|
230
|
+
class AuditLog < DestinationConfiguration
|
231
|
+
end
|
232
|
+
class Unknown < DestinationConfiguration
|
233
|
+
end
|
234
|
+
end
|
235
|
+
|
236
|
+
class FirehoseStream
|
237
|
+
attr_accessor stream_name: ::String
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class GetAppAuthorizationRequest
|
242
|
+
attr_accessor app_bundle_identifier: ::String
|
243
|
+
attr_accessor app_authorization_identifier: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class GetAppAuthorizationResponse
|
248
|
+
attr_accessor app_authorization: Types::AppAuthorization
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class GetAppBundleRequest
|
253
|
+
attr_accessor app_bundle_identifier: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class GetAppBundleResponse
|
258
|
+
attr_accessor app_bundle: Types::AppBundle
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class GetIngestionDestinationRequest
|
263
|
+
attr_accessor app_bundle_identifier: ::String
|
264
|
+
attr_accessor ingestion_identifier: ::String
|
265
|
+
attr_accessor ingestion_destination_identifier: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class GetIngestionDestinationResponse
|
270
|
+
attr_accessor ingestion_destination: Types::IngestionDestination
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class GetIngestionRequest
|
275
|
+
attr_accessor app_bundle_identifier: ::String
|
276
|
+
attr_accessor ingestion_identifier: ::String
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class GetIngestionResponse
|
281
|
+
attr_accessor ingestion: Types::Ingestion
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class Ingestion
|
286
|
+
attr_accessor arn: ::String
|
287
|
+
attr_accessor app_bundle_arn: ::String
|
288
|
+
attr_accessor app: ::String
|
289
|
+
attr_accessor tenant_id: ::String
|
290
|
+
attr_accessor created_at: ::Time
|
291
|
+
attr_accessor updated_at: ::Time
|
292
|
+
attr_accessor state: ("enabled" | "disabled")
|
293
|
+
attr_accessor ingestion_type: ("auditLog")
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class IngestionDestination
|
298
|
+
attr_accessor arn: ::String
|
299
|
+
attr_accessor ingestion_arn: ::String
|
300
|
+
attr_accessor processing_configuration: Types::ProcessingConfiguration
|
301
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
302
|
+
attr_accessor status: ("Active" | "Failed")
|
303
|
+
attr_accessor status_reason: ::String
|
304
|
+
attr_accessor created_at: ::Time
|
305
|
+
attr_accessor updated_at: ::Time
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class IngestionDestinationSummary
|
310
|
+
attr_accessor arn: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class IngestionSummary
|
315
|
+
attr_accessor arn: ::String
|
316
|
+
attr_accessor app: ::String
|
317
|
+
attr_accessor tenant_id: ::String
|
318
|
+
attr_accessor state: ("enabled" | "disabled")
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class InternalServerException
|
323
|
+
attr_accessor message: ::String
|
324
|
+
attr_accessor retry_after_seconds: ::Integer
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class ListAppAuthorizationsRequest
|
329
|
+
attr_accessor app_bundle_identifier: ::String
|
330
|
+
attr_accessor max_results: ::Integer
|
331
|
+
attr_accessor next_token: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class ListAppAuthorizationsResponse
|
336
|
+
attr_accessor app_authorization_summary_list: ::Array[Types::AppAuthorizationSummary]
|
337
|
+
attr_accessor next_token: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class ListAppBundlesRequest
|
342
|
+
attr_accessor max_results: ::Integer
|
343
|
+
attr_accessor next_token: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class ListAppBundlesResponse
|
348
|
+
attr_accessor app_bundle_summary_list: ::Array[Types::AppBundleSummary]
|
349
|
+
attr_accessor next_token: ::String
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class ListIngestionDestinationsRequest
|
354
|
+
attr_accessor app_bundle_identifier: ::String
|
355
|
+
attr_accessor ingestion_identifier: ::String
|
356
|
+
attr_accessor max_results: ::Integer
|
357
|
+
attr_accessor next_token: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class ListIngestionDestinationsResponse
|
362
|
+
attr_accessor ingestion_destinations: ::Array[Types::IngestionDestinationSummary]
|
363
|
+
attr_accessor next_token: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class ListIngestionsRequest
|
368
|
+
attr_accessor app_bundle_identifier: ::String
|
369
|
+
attr_accessor max_results: ::Integer
|
370
|
+
attr_accessor next_token: ::String
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class ListIngestionsResponse
|
375
|
+
attr_accessor ingestions: ::Array[Types::IngestionSummary]
|
376
|
+
attr_accessor next_token: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class ListTagsForResourceRequest
|
381
|
+
attr_accessor resource_arn: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class ListTagsForResourceResponse
|
386
|
+
attr_accessor tags: ::Array[Types::Tag]
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class Oauth2Credential
|
391
|
+
attr_accessor client_id: ::String
|
392
|
+
attr_accessor client_secret: ::String
|
393
|
+
SENSITIVE: [:client_secret]
|
394
|
+
end
|
395
|
+
|
396
|
+
class ProcessingConfiguration
|
397
|
+
attr_accessor audit_log: Types::AuditLogProcessingConfiguration
|
398
|
+
attr_accessor unknown: untyped
|
399
|
+
SENSITIVE: []
|
400
|
+
|
401
|
+
class AuditLog < ProcessingConfiguration
|
402
|
+
end
|
403
|
+
class Unknown < ProcessingConfiguration
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
class ResourceNotFoundException
|
408
|
+
attr_accessor message: ::String
|
409
|
+
attr_accessor resource_id: ::String
|
410
|
+
attr_accessor resource_type: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class S3Bucket
|
415
|
+
attr_accessor bucket_name: ::String
|
416
|
+
attr_accessor prefix: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class ServiceQuotaExceededException
|
421
|
+
attr_accessor message: ::String
|
422
|
+
attr_accessor resource_id: ::String
|
423
|
+
attr_accessor resource_type: ::String
|
424
|
+
attr_accessor service_code: ::String
|
425
|
+
attr_accessor quota_code: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class StartIngestionRequest
|
430
|
+
attr_accessor ingestion_identifier: ::String
|
431
|
+
attr_accessor app_bundle_identifier: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class StartIngestionResponse < Aws::EmptyStructure
|
436
|
+
end
|
437
|
+
|
438
|
+
class StartUserAccessTasksRequest
|
439
|
+
attr_accessor app_bundle_identifier: ::String
|
440
|
+
attr_accessor email: ::String
|
441
|
+
SENSITIVE: [:email]
|
442
|
+
end
|
443
|
+
|
444
|
+
class StartUserAccessTasksResponse
|
445
|
+
attr_accessor user_access_tasks_list: ::Array[Types::UserAccessTaskItem]
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class StopIngestionRequest
|
450
|
+
attr_accessor ingestion_identifier: ::String
|
451
|
+
attr_accessor app_bundle_identifier: ::String
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class StopIngestionResponse < Aws::EmptyStructure
|
456
|
+
end
|
457
|
+
|
458
|
+
class Tag
|
459
|
+
attr_accessor key: ::String
|
460
|
+
attr_accessor value: ::String
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class TagResourceRequest
|
465
|
+
attr_accessor resource_arn: ::String
|
466
|
+
attr_accessor tags: ::Array[Types::Tag]
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class TagResourceResponse < Aws::EmptyStructure
|
471
|
+
end
|
472
|
+
|
473
|
+
class TaskError
|
474
|
+
attr_accessor error_code: ::String
|
475
|
+
attr_accessor error_message: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class Tenant
|
480
|
+
attr_accessor tenant_identifier: ::String
|
481
|
+
attr_accessor tenant_display_name: ::String
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class ThrottlingException
|
486
|
+
attr_accessor message: ::String
|
487
|
+
attr_accessor service_code: ::String
|
488
|
+
attr_accessor quota_code: ::String
|
489
|
+
attr_accessor retry_after_seconds: ::Integer
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class UntagResourceRequest
|
494
|
+
attr_accessor resource_arn: ::String
|
495
|
+
attr_accessor tag_keys: ::Array[::String]
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
500
|
+
end
|
501
|
+
|
502
|
+
class UpdateAppAuthorizationRequest
|
503
|
+
attr_accessor app_bundle_identifier: ::String
|
504
|
+
attr_accessor app_authorization_identifier: ::String
|
505
|
+
attr_accessor credential: Types::Credential
|
506
|
+
attr_accessor tenant: Types::Tenant
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class UpdateAppAuthorizationResponse
|
511
|
+
attr_accessor app_authorization: Types::AppAuthorization
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class UpdateIngestionDestinationRequest
|
516
|
+
attr_accessor app_bundle_identifier: ::String
|
517
|
+
attr_accessor ingestion_identifier: ::String
|
518
|
+
attr_accessor ingestion_destination_identifier: ::String
|
519
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class UpdateIngestionDestinationResponse
|
524
|
+
attr_accessor ingestion_destination: Types::IngestionDestination
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class UserAccessResultItem
|
529
|
+
attr_accessor app: ::String
|
530
|
+
attr_accessor tenant_id: ::String
|
531
|
+
attr_accessor tenant_display_name: ::String
|
532
|
+
attr_accessor task_id: ::String
|
533
|
+
attr_accessor result_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED" | "EXPIRED")
|
534
|
+
attr_accessor email: ::String
|
535
|
+
attr_accessor user_id: ::String
|
536
|
+
attr_accessor user_full_name: ::String
|
537
|
+
attr_accessor user_first_name: ::String
|
538
|
+
attr_accessor user_last_name: ::String
|
539
|
+
attr_accessor user_status: ::String
|
540
|
+
attr_accessor task_error: Types::TaskError
|
541
|
+
SENSITIVE: [:email, :user_id, :user_full_name, :user_first_name, :user_last_name]
|
542
|
+
end
|
543
|
+
|
544
|
+
class UserAccessTaskItem
|
545
|
+
attr_accessor app: ::String
|
546
|
+
attr_accessor tenant_id: ::String
|
547
|
+
attr_accessor task_id: ::String
|
548
|
+
attr_accessor error: Types::TaskError
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class ValidationException
|
553
|
+
attr_accessor message: ::String
|
554
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
555
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class ValidationExceptionField
|
560
|
+
attr_accessor name: ::String
|
561
|
+
attr_accessor message: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
end
|
565
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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
|
9
|
+
module AppFabric
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appfabric
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-appfabric/resource.rb
|
68
68
|
- lib/aws-sdk-appfabric/types.rb
|
69
69
|
- lib/aws-sdk-appfabric/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appfabric
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appfabric/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - AppFabric
|
95
100
|
test_files: []
|