aws-sdk-mpa 1.0.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,549 @@
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::MPA
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ApprovalStrategy
17
+ attr_accessor mof_n: Types::MofNApprovalStrategy
18
+ attr_accessor unknown: untyped
19
+ SENSITIVE: []
20
+
21
+ class MofN < ApprovalStrategy
22
+ end
23
+ class Unknown < ApprovalStrategy
24
+ end
25
+ end
26
+
27
+ class ApprovalStrategyResponse
28
+ attr_accessor mof_n: Types::MofNApprovalStrategy
29
+ attr_accessor unknown: untyped
30
+ SENSITIVE: []
31
+
32
+ class MofN < ApprovalStrategyResponse
33
+ end
34
+ class Unknown < ApprovalStrategyResponse
35
+ end
36
+ end
37
+
38
+ class ApprovalTeamRequestApprover
39
+ attr_accessor primary_identity_id: ::String
40
+ attr_accessor primary_identity_source_arn: ::String
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class CancelSessionRequest
45
+ attr_accessor session_arn: ::String
46
+ SENSITIVE: []
47
+ end
48
+
49
+ class CancelSessionResponse < Aws::EmptyStructure
50
+ end
51
+
52
+ class ConflictException
53
+ attr_accessor message: ::String
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class CreateApprovalTeamRequest
58
+ attr_accessor client_token: ::String
59
+ attr_accessor approval_strategy: Types::ApprovalStrategy
60
+ attr_accessor approvers: ::Array[Types::ApprovalTeamRequestApprover]
61
+ attr_accessor description: ::String
62
+ attr_accessor policies: ::Array[Types::PolicyReference]
63
+ attr_accessor name: ::String
64
+ attr_accessor tags: ::Hash[::String, ::String]
65
+ SENSITIVE: [:description, :tags]
66
+ end
67
+
68
+ class CreateApprovalTeamResponse
69
+ attr_accessor creation_time: ::Time
70
+ attr_accessor arn: ::String
71
+ attr_accessor name: ::String
72
+ attr_accessor version_id: ::String
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CreateIdentitySourceRequest
77
+ attr_accessor identity_source_parameters: Types::IdentitySourceParameters
78
+ attr_accessor client_token: ::String
79
+ attr_accessor tags: ::Hash[::String, ::String]
80
+ SENSITIVE: [:tags]
81
+ end
82
+
83
+ class CreateIdentitySourceResponse
84
+ attr_accessor identity_source_type: ("IAM_IDENTITY_CENTER")
85
+ attr_accessor identity_source_arn: ::String
86
+ attr_accessor creation_time: ::Time
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class DeleteIdentitySourceRequest
91
+ attr_accessor identity_source_arn: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class DeleteInactiveApprovalTeamVersionRequest
96
+ attr_accessor arn: ::String
97
+ attr_accessor version_id: ::String
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DeleteInactiveApprovalTeamVersionResponse < Aws::EmptyStructure
102
+ end
103
+
104
+ class Filter
105
+ attr_accessor field_name: ("ActionName" | "ApprovalTeamName" | "VotingTime" | "Vote" | "SessionStatus" | "InitiationTime")
106
+ attr_accessor operator: ("EQ" | "NE" | "GT" | "LT" | "GTE" | "LTE" | "CONTAINS" | "NOT_CONTAINS" | "BETWEEN")
107
+ attr_accessor value: ::String
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class GetApprovalTeamRequest
112
+ attr_accessor arn: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class GetApprovalTeamResponse
117
+ attr_accessor creation_time: ::Time
118
+ attr_accessor approval_strategy: Types::ApprovalStrategyResponse
119
+ attr_accessor number_of_approvers: ::Integer
120
+ attr_accessor approvers: ::Array[Types::GetApprovalTeamResponseApprover]
121
+ attr_accessor arn: ::String
122
+ attr_accessor description: ::String
123
+ attr_accessor name: ::String
124
+ attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING" | "PENDING")
125
+ attr_accessor status_code: ("VALIDATING" | "PENDING_ACTIVATION" | "FAILED_VALIDATION" | "FAILED_ACTIVATION" | "UPDATE_PENDING_APPROVAL" | "UPDATE_PENDING_ACTIVATION" | "UPDATE_FAILED_APPROVAL" | "UPDATE_FAILED_ACTIVATION" | "UPDATE_FAILED_VALIDATION" | "DELETE_PENDING_APPROVAL" | "DELETE_FAILED_APPROVAL" | "DELETE_FAILED_VALIDATION")
126
+ attr_accessor status_message: ::String
127
+ attr_accessor update_session_arn: ::String
128
+ attr_accessor version_id: ::String
129
+ attr_accessor policies: ::Array[Types::PolicyReference]
130
+ attr_accessor last_update_time: ::Time
131
+ attr_accessor pending_update: Types::PendingUpdate
132
+ SENSITIVE: [:description]
133
+ end
134
+
135
+ class GetApprovalTeamResponseApprover
136
+ attr_accessor approver_id: ::String
137
+ attr_accessor response_time: ::Time
138
+ attr_accessor primary_identity_id: ::String
139
+ attr_accessor primary_identity_source_arn: ::String
140
+ attr_accessor primary_identity_status: ("PENDING" | "ACCEPTED" | "REJECTED" | "INVALID")
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class GetIdentitySourceRequest
145
+ attr_accessor identity_source_arn: ::String
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class GetIdentitySourceResponse
150
+ attr_accessor identity_source_type: ("IAM_IDENTITY_CENTER")
151
+ attr_accessor identity_source_parameters: Types::IdentitySourceParametersForGet
152
+ attr_accessor identity_source_arn: ::String
153
+ attr_accessor creation_time: ::Time
154
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "ERROR")
155
+ attr_accessor status_code: ("ACCESS_DENIED" | "DELETION_FAILED" | "IDC_INSTANCE_NOT_FOUND" | "IDC_INSTANCE_NOT_VALID")
156
+ attr_accessor status_message: ::String
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class GetPolicyVersionRequest
161
+ attr_accessor policy_version_arn: ::String
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class GetPolicyVersionResponse
166
+ attr_accessor policy_version: Types::PolicyVersion
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class GetResourcePolicyRequest
171
+ attr_accessor resource_arn: ::String
172
+ attr_accessor policy_name: ::String
173
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class GetResourcePolicyResponse
178
+ attr_accessor resource_arn: ::String
179
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
180
+ attr_accessor policy_version_arn: ::String
181
+ attr_accessor policy_name: ::String
182
+ attr_accessor policy_document: ::String
183
+ SENSITIVE: [:policy_document]
184
+ end
185
+
186
+ class GetSessionRequest
187
+ attr_accessor session_arn: ::String
188
+ SENSITIVE: []
189
+ end
190
+
191
+ class GetSessionResponse
192
+ attr_accessor session_arn: ::String
193
+ attr_accessor approval_team_arn: ::String
194
+ attr_accessor approval_team_name: ::String
195
+ attr_accessor protected_resource_arn: ::String
196
+ attr_accessor approval_strategy: Types::ApprovalStrategyResponse
197
+ attr_accessor number_of_approvers: ::Integer
198
+ attr_accessor initiation_time: ::Time
199
+ attr_accessor expiration_time: ::Time
200
+ attr_accessor completion_time: ::Time
201
+ attr_accessor description: ::String
202
+ attr_accessor metadata: ::Hash[::String, ::String]
203
+ attr_accessor status: ("PENDING" | "CANCELLED" | "APPROVED" | "FAILED" | "CREATING")
204
+ attr_accessor status_code: ("REJECTED" | "EXPIRED" | "CONFIGURATION_CHANGED")
205
+ attr_accessor status_message: ::String
206
+ attr_accessor execution_status: ("EXECUTED" | "FAILED" | "PENDING")
207
+ attr_accessor action_name: ::String
208
+ attr_accessor requester_service_principal: ::String
209
+ attr_accessor requester_principal_arn: ::String
210
+ attr_accessor requester_account_id: ::String
211
+ attr_accessor requester_region: ::String
212
+ attr_accessor requester_comment: ::String
213
+ attr_accessor action_completion_strategy: ("AUTO_COMPLETION_UPON_APPROVAL")
214
+ attr_accessor approver_responses: ::Array[Types::GetSessionResponseApproverResponse]
215
+ SENSITIVE: [:description, :metadata, :requester_comment]
216
+ end
217
+
218
+ class GetSessionResponseApproverResponse
219
+ attr_accessor approver_id: ::String
220
+ attr_accessor identity_source_arn: ::String
221
+ attr_accessor identity_id: ::String
222
+ attr_accessor response: ("APPROVED" | "REJECTED" | "NO_RESPONSE")
223
+ attr_accessor response_time: ::Time
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class IamIdentityCenter
228
+ attr_accessor instance_arn: ::String
229
+ attr_accessor region: ::String
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class IamIdentityCenterForGet
234
+ attr_accessor instance_arn: ::String
235
+ attr_accessor approval_portal_url: ::String
236
+ attr_accessor region: ::String
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class IamIdentityCenterForList
241
+ attr_accessor instance_arn: ::String
242
+ attr_accessor approval_portal_url: ::String
243
+ attr_accessor region: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class IdentitySourceForList
248
+ attr_accessor identity_source_type: ("IAM_IDENTITY_CENTER")
249
+ attr_accessor identity_source_parameters: Types::IdentitySourceParametersForList
250
+ attr_accessor identity_source_arn: ::String
251
+ attr_accessor creation_time: ::Time
252
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "ERROR")
253
+ attr_accessor status_code: ("ACCESS_DENIED" | "DELETION_FAILED" | "IDC_INSTANCE_NOT_FOUND" | "IDC_INSTANCE_NOT_VALID")
254
+ attr_accessor status_message: ::String
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class IdentitySourceParameters
259
+ attr_accessor iam_identity_center: Types::IamIdentityCenter
260
+ SENSITIVE: []
261
+ end
262
+
263
+ class IdentitySourceParametersForGet
264
+ attr_accessor iam_identity_center: Types::IamIdentityCenterForGet
265
+ attr_accessor unknown: untyped
266
+ SENSITIVE: []
267
+
268
+ class IamIdentityCenter < IdentitySourceParametersForGet
269
+ end
270
+ class Unknown < IdentitySourceParametersForGet
271
+ end
272
+ end
273
+
274
+ class IdentitySourceParametersForList
275
+ attr_accessor iam_identity_center: Types::IamIdentityCenterForList
276
+ attr_accessor unknown: untyped
277
+ SENSITIVE: []
278
+
279
+ class IamIdentityCenter < IdentitySourceParametersForList
280
+ end
281
+ class Unknown < IdentitySourceParametersForList
282
+ end
283
+ end
284
+
285
+ class InternalServerException
286
+ attr_accessor message: ::String
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class InvalidParameterException
291
+ attr_accessor message: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class ListApprovalTeamsRequest
296
+ attr_accessor max_results: ::Integer
297
+ attr_accessor next_token: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class ListApprovalTeamsResponse
302
+ attr_accessor next_token: ::String
303
+ attr_accessor approval_teams: ::Array[Types::ListApprovalTeamsResponseApprovalTeam]
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class ListApprovalTeamsResponseApprovalTeam
308
+ attr_accessor creation_time: ::Time
309
+ attr_accessor approval_strategy: Types::ApprovalStrategyResponse
310
+ attr_accessor number_of_approvers: ::Integer
311
+ attr_accessor arn: ::String
312
+ attr_accessor name: ::String
313
+ attr_accessor description: ::String
314
+ attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING" | "PENDING")
315
+ attr_accessor status_code: ("VALIDATING" | "PENDING_ACTIVATION" | "FAILED_VALIDATION" | "FAILED_ACTIVATION" | "UPDATE_PENDING_APPROVAL" | "UPDATE_PENDING_ACTIVATION" | "UPDATE_FAILED_APPROVAL" | "UPDATE_FAILED_ACTIVATION" | "UPDATE_FAILED_VALIDATION" | "DELETE_PENDING_APPROVAL" | "DELETE_FAILED_APPROVAL" | "DELETE_FAILED_VALIDATION")
316
+ attr_accessor status_message: ::String
317
+ SENSITIVE: [:description]
318
+ end
319
+
320
+ class ListIdentitySourcesRequest
321
+ attr_accessor max_results: ::Integer
322
+ attr_accessor next_token: ::String
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class ListIdentitySourcesResponse
327
+ attr_accessor next_token: ::String
328
+ attr_accessor identity_sources: ::Array[Types::IdentitySourceForList]
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ListPoliciesRequest
333
+ attr_accessor max_results: ::Integer
334
+ attr_accessor next_token: ::String
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class ListPoliciesResponse
339
+ attr_accessor next_token: ::String
340
+ attr_accessor policies: ::Array[Types::Policy]
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class ListPolicyVersionsRequest
345
+ attr_accessor max_results: ::Integer
346
+ attr_accessor next_token: ::String
347
+ attr_accessor policy_arn: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class ListPolicyVersionsResponse
352
+ attr_accessor next_token: ::String
353
+ attr_accessor policy_versions: ::Array[Types::PolicyVersionSummary]
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ListResourcePoliciesRequest
358
+ attr_accessor resource_arn: ::String
359
+ attr_accessor max_results: ::Integer
360
+ attr_accessor next_token: ::String
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class ListResourcePoliciesResponse
365
+ attr_accessor next_token: ::String
366
+ attr_accessor resource_policies: ::Array[Types::ListResourcePoliciesResponseResourcePolicy]
367
+ SENSITIVE: []
368
+ end
369
+
370
+ class ListResourcePoliciesResponseResourcePolicy
371
+ attr_accessor policy_arn: ::String
372
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
373
+ attr_accessor policy_name: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class ListSessionsRequest
378
+ attr_accessor approval_team_arn: ::String
379
+ attr_accessor max_results: ::Integer
380
+ attr_accessor next_token: ::String
381
+ attr_accessor filters: ::Array[Types::Filter]
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class ListSessionsResponse
386
+ attr_accessor next_token: ::String
387
+ attr_accessor sessions: ::Array[Types::ListSessionsResponseSession]
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class ListSessionsResponseSession
392
+ attr_accessor session_arn: ::String
393
+ attr_accessor approval_team_name: ::String
394
+ attr_accessor approval_team_arn: ::String
395
+ attr_accessor initiation_time: ::Time
396
+ attr_accessor expiration_time: ::Time
397
+ attr_accessor completion_time: ::Time
398
+ attr_accessor description: ::String
399
+ attr_accessor action_name: ::String
400
+ attr_accessor protected_resource_arn: ::String
401
+ attr_accessor requester_service_principal: ::String
402
+ attr_accessor requester_principal_arn: ::String
403
+ attr_accessor requester_region: ::String
404
+ attr_accessor requester_account_id: ::String
405
+ attr_accessor status: ("PENDING" | "CANCELLED" | "APPROVED" | "FAILED" | "CREATING")
406
+ attr_accessor status_code: ("REJECTED" | "EXPIRED" | "CONFIGURATION_CHANGED")
407
+ attr_accessor status_message: ::String
408
+ attr_accessor action_completion_strategy: ("AUTO_COMPLETION_UPON_APPROVAL")
409
+ SENSITIVE: [:description]
410
+ end
411
+
412
+ class ListTagsForResourceRequest
413
+ attr_accessor resource_arn: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class ListTagsForResourceResponse
418
+ attr_accessor tags: ::Hash[::String, ::String]
419
+ SENSITIVE: [:tags]
420
+ end
421
+
422
+ class MofNApprovalStrategy
423
+ attr_accessor min_approvals_required: ::Integer
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class PendingUpdate
428
+ attr_accessor version_id: ::String
429
+ attr_accessor description: ::String
430
+ attr_accessor approval_strategy: Types::ApprovalStrategyResponse
431
+ attr_accessor number_of_approvers: ::Integer
432
+ attr_accessor status: ("ACTIVE" | "INACTIVE" | "DELETING" | "PENDING")
433
+ attr_accessor status_code: ("VALIDATING" | "PENDING_ACTIVATION" | "FAILED_VALIDATION" | "FAILED_ACTIVATION" | "UPDATE_PENDING_APPROVAL" | "UPDATE_PENDING_ACTIVATION" | "UPDATE_FAILED_APPROVAL" | "UPDATE_FAILED_ACTIVATION" | "UPDATE_FAILED_VALIDATION" | "DELETE_PENDING_APPROVAL" | "DELETE_FAILED_APPROVAL" | "DELETE_FAILED_VALIDATION")
434
+ attr_accessor status_message: ::String
435
+ attr_accessor approvers: ::Array[Types::GetApprovalTeamResponseApprover]
436
+ attr_accessor update_initiation_time: ::Time
437
+ SENSITIVE: []
438
+ end
439
+
440
+ class Policy
441
+ attr_accessor arn: ::String
442
+ attr_accessor default_version: ::Integer
443
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
444
+ attr_accessor name: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class PolicyReference
449
+ attr_accessor policy_arn: ::String
450
+ SENSITIVE: []
451
+ end
452
+
453
+ class PolicyVersion
454
+ attr_accessor arn: ::String
455
+ attr_accessor policy_arn: ::String
456
+ attr_accessor version_id: ::Integer
457
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
458
+ attr_accessor is_default: bool
459
+ attr_accessor name: ::String
460
+ attr_accessor status: ("ATTACHABLE" | "DEPRECATED")
461
+ attr_accessor creation_time: ::Time
462
+ attr_accessor last_updated_time: ::Time
463
+ attr_accessor document: ::String
464
+ SENSITIVE: [:document]
465
+ end
466
+
467
+ class PolicyVersionSummary
468
+ attr_accessor arn: ::String
469
+ attr_accessor policy_arn: ::String
470
+ attr_accessor version_id: ::Integer
471
+ attr_accessor policy_type: ("AWS_MANAGED" | "AWS_RAM")
472
+ attr_accessor is_default: bool
473
+ attr_accessor name: ::String
474
+ attr_accessor status: ("ATTACHABLE" | "DEPRECATED")
475
+ attr_accessor creation_time: ::Time
476
+ attr_accessor last_updated_time: ::Time
477
+ SENSITIVE: []
478
+ end
479
+
480
+ class ResourceNotFoundException
481
+ attr_accessor message: ::String
482
+ SENSITIVE: []
483
+ end
484
+
485
+ class ServiceQuotaExceededException
486
+ attr_accessor message: ::String
487
+ SENSITIVE: []
488
+ end
489
+
490
+ class StartActiveApprovalTeamDeletionRequest
491
+ attr_accessor pending_window_days: ::Integer
492
+ attr_accessor arn: ::String
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class StartActiveApprovalTeamDeletionResponse
497
+ attr_accessor deletion_completion_time: ::Time
498
+ attr_accessor deletion_start_time: ::Time
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class TagResourceRequest
503
+ attr_accessor resource_arn: ::String
504
+ attr_accessor tags: ::Hash[::String, ::String]
505
+ SENSITIVE: [:tags]
506
+ end
507
+
508
+ class TagResourceResponse < Aws::EmptyStructure
509
+ end
510
+
511
+ class ThrottlingException
512
+ attr_accessor message: ::String
513
+ SENSITIVE: []
514
+ end
515
+
516
+ class TooManyTagsException
517
+ attr_accessor message: ::String
518
+ attr_accessor resource_name: ::String
519
+ SENSITIVE: []
520
+ end
521
+
522
+ class UntagResourceRequest
523
+ attr_accessor resource_arn: ::String
524
+ attr_accessor tag_keys: ::Array[::String]
525
+ SENSITIVE: [:tag_keys]
526
+ end
527
+
528
+ class UntagResourceResponse < Aws::EmptyStructure
529
+ end
530
+
531
+ class UpdateApprovalTeamRequest
532
+ attr_accessor approval_strategy: Types::ApprovalStrategy
533
+ attr_accessor approvers: ::Array[Types::ApprovalTeamRequestApprover]
534
+ attr_accessor description: ::String
535
+ attr_accessor arn: ::String
536
+ SENSITIVE: [:description]
537
+ end
538
+
539
+ class UpdateApprovalTeamResponse
540
+ attr_accessor version_id: ::String
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class ValidationException
545
+ attr_accessor message: ::String
546
+ SENSITIVE: []
547
+ end
548
+ end
549
+ 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 MPA
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-mpa
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: aws-sdk-core
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '3'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 3.225.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '3'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 3.225.0
32
+ - !ruby/object:Gem::Dependency
33
+ name: aws-sigv4
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '1.5'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '1.5'
46
+ description: Official AWS Ruby gem for AWS Multi-party Approval. This gem is part
47
+ of the AWS SDK for Ruby.
48
+ email:
49
+ - aws-dr-rubygems@amazon.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - CHANGELOG.md
55
+ - LICENSE.txt
56
+ - VERSION
57
+ - lib/aws-sdk-mpa.rb
58
+ - lib/aws-sdk-mpa/client.rb
59
+ - lib/aws-sdk-mpa/client_api.rb
60
+ - lib/aws-sdk-mpa/customizations.rb
61
+ - lib/aws-sdk-mpa/endpoint_parameters.rb
62
+ - lib/aws-sdk-mpa/endpoint_provider.rb
63
+ - lib/aws-sdk-mpa/endpoints.rb
64
+ - lib/aws-sdk-mpa/errors.rb
65
+ - lib/aws-sdk-mpa/plugins/endpoints.rb
66
+ - lib/aws-sdk-mpa/resource.rb
67
+ - lib/aws-sdk-mpa/types.rb
68
+ - lib/aws-sdk-mpa/waiters.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
74
+ homepage: https://github.com/aws/aws-sdk-ruby
75
+ licenses:
76
+ - Apache-2.0
77
+ metadata:
78
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mpa
79
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mpa/CHANGELOG.md
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '2.7'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.6.7
95
+ specification_version: 4
96
+ summary: AWS SDK for Ruby - AWS Multi-party Approval
97
+ test_files: []