aws-sdk-managedblockchain 1.48.0 → 1.49.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,676 @@
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::ManagedBlockchain
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class Accessor
17
+ attr_accessor id: ::String
18
+ attr_accessor type: ("BILLING_TOKEN")
19
+ attr_accessor billing_token: ::String
20
+ attr_accessor status: ("AVAILABLE" | "PENDING_DELETION" | "DELETED")
21
+ attr_accessor creation_date: ::Time
22
+ attr_accessor arn: ::String
23
+ attr_accessor tags: ::Hash[::String, ::String]
24
+ attr_accessor network_type: ("ETHEREUM_GOERLI" | "ETHEREUM_MAINNET" | "ETHEREUM_MAINNET_AND_GOERLI" | "POLYGON_MAINNET" | "POLYGON_MUMBAI")
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class AccessorSummary
29
+ attr_accessor id: ::String
30
+ attr_accessor type: ("BILLING_TOKEN")
31
+ attr_accessor status: ("AVAILABLE" | "PENDING_DELETION" | "DELETED")
32
+ attr_accessor creation_date: ::Time
33
+ attr_accessor arn: ::String
34
+ attr_accessor network_type: ("ETHEREUM_GOERLI" | "ETHEREUM_MAINNET" | "ETHEREUM_MAINNET_AND_GOERLI" | "POLYGON_MAINNET" | "POLYGON_MUMBAI")
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class ApprovalThresholdPolicy
39
+ attr_accessor threshold_percentage: ::Integer
40
+ attr_accessor proposal_duration_in_hours: ::Integer
41
+ attr_accessor threshold_comparator: ("GREATER_THAN" | "GREATER_THAN_OR_EQUAL_TO")
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class CreateAccessorInput
46
+ attr_accessor client_request_token: ::String
47
+ attr_accessor accessor_type: ("BILLING_TOKEN")
48
+ attr_accessor tags: ::Hash[::String, ::String]
49
+ attr_accessor network_type: ("ETHEREUM_GOERLI" | "ETHEREUM_MAINNET" | "ETHEREUM_MAINNET_AND_GOERLI" | "POLYGON_MAINNET" | "POLYGON_MUMBAI")
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class CreateAccessorOutput
54
+ attr_accessor accessor_id: ::String
55
+ attr_accessor billing_token: ::String
56
+ attr_accessor network_type: ("ETHEREUM_GOERLI" | "ETHEREUM_MAINNET" | "ETHEREUM_MAINNET_AND_GOERLI" | "POLYGON_MAINNET" | "POLYGON_MUMBAI")
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class CreateMemberInput
61
+ attr_accessor client_request_token: ::String
62
+ attr_accessor invitation_id: ::String
63
+ attr_accessor network_id: ::String
64
+ attr_accessor member_configuration: Types::MemberConfiguration
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class CreateMemberOutput
69
+ attr_accessor member_id: ::String
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class CreateNetworkInput
74
+ attr_accessor client_request_token: ::String
75
+ attr_accessor name: ::String
76
+ attr_accessor description: ::String
77
+ attr_accessor framework: ("HYPERLEDGER_FABRIC" | "ETHEREUM")
78
+ attr_accessor framework_version: ::String
79
+ attr_accessor framework_configuration: Types::NetworkFrameworkConfiguration
80
+ attr_accessor voting_policy: Types::VotingPolicy
81
+ attr_accessor member_configuration: Types::MemberConfiguration
82
+ attr_accessor tags: ::Hash[::String, ::String]
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class CreateNetworkOutput
87
+ attr_accessor network_id: ::String
88
+ attr_accessor member_id: ::String
89
+ SENSITIVE: []
90
+ end
91
+
92
+ class CreateNodeInput
93
+ attr_accessor client_request_token: ::String
94
+ attr_accessor network_id: ::String
95
+ attr_accessor member_id: ::String
96
+ attr_accessor node_configuration: Types::NodeConfiguration
97
+ attr_accessor tags: ::Hash[::String, ::String]
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class CreateNodeOutput
102
+ attr_accessor node_id: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class CreateProposalInput
107
+ attr_accessor client_request_token: ::String
108
+ attr_accessor network_id: ::String
109
+ attr_accessor member_id: ::String
110
+ attr_accessor actions: Types::ProposalActions
111
+ attr_accessor description: ::String
112
+ attr_accessor tags: ::Hash[::String, ::String]
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class CreateProposalOutput
117
+ attr_accessor proposal_id: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class DeleteAccessorInput
122
+ attr_accessor accessor_id: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class DeleteAccessorOutput < Aws::EmptyStructure
127
+ end
128
+
129
+ class DeleteMemberInput
130
+ attr_accessor network_id: ::String
131
+ attr_accessor member_id: ::String
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class DeleteMemberOutput < Aws::EmptyStructure
136
+ end
137
+
138
+ class DeleteNodeInput
139
+ attr_accessor network_id: ::String
140
+ attr_accessor member_id: ::String
141
+ attr_accessor node_id: ::String
142
+ SENSITIVE: []
143
+ end
144
+
145
+ class DeleteNodeOutput < Aws::EmptyStructure
146
+ end
147
+
148
+ class GetAccessorInput
149
+ attr_accessor accessor_id: ::String
150
+ SENSITIVE: []
151
+ end
152
+
153
+ class GetAccessorOutput
154
+ attr_accessor accessor: Types::Accessor
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class GetMemberInput
159
+ attr_accessor network_id: ::String
160
+ attr_accessor member_id: ::String
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class GetMemberOutput
165
+ attr_accessor member: Types::Member
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class GetNetworkInput
170
+ attr_accessor network_id: ::String
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class GetNetworkOutput
175
+ attr_accessor network: Types::Network
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class GetNodeInput
180
+ attr_accessor network_id: ::String
181
+ attr_accessor member_id: ::String
182
+ attr_accessor node_id: ::String
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class GetNodeOutput
187
+ attr_accessor node: Types::Node
188
+ SENSITIVE: []
189
+ end
190
+
191
+ class GetProposalInput
192
+ attr_accessor network_id: ::String
193
+ attr_accessor proposal_id: ::String
194
+ SENSITIVE: []
195
+ end
196
+
197
+ class GetProposalOutput
198
+ attr_accessor proposal: Types::Proposal
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class IllegalActionException
203
+ attr_accessor message: ::String
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class InternalServiceErrorException < Aws::EmptyStructure
208
+ end
209
+
210
+ class InvalidRequestException
211
+ attr_accessor message: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class Invitation
216
+ attr_accessor invitation_id: ::String
217
+ attr_accessor creation_date: ::Time
218
+ attr_accessor expiration_date: ::Time
219
+ attr_accessor status: ("PENDING" | "ACCEPTED" | "ACCEPTING" | "REJECTED" | "EXPIRED")
220
+ attr_accessor network_summary: Types::NetworkSummary
221
+ attr_accessor arn: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class InviteAction
226
+ attr_accessor principal: ::String
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class ListAccessorsInput
231
+ attr_accessor max_results: ::Integer
232
+ attr_accessor next_token: ::String
233
+ attr_accessor network_type: ("ETHEREUM_GOERLI" | "ETHEREUM_MAINNET" | "ETHEREUM_MAINNET_AND_GOERLI" | "POLYGON_MAINNET" | "POLYGON_MUMBAI")
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class ListAccessorsOutput
238
+ attr_accessor accessors: ::Array[Types::AccessorSummary]
239
+ attr_accessor next_token: ::String
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class ListInvitationsInput
244
+ attr_accessor max_results: ::Integer
245
+ attr_accessor next_token: ::String
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class ListInvitationsOutput
250
+ attr_accessor invitations: ::Array[Types::Invitation]
251
+ attr_accessor next_token: ::String
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class ListMembersInput
256
+ attr_accessor network_id: ::String
257
+ attr_accessor name: ::String
258
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "INACCESSIBLE_ENCRYPTION_KEY")
259
+ attr_accessor is_owned: bool
260
+ attr_accessor max_results: ::Integer
261
+ attr_accessor next_token: ::String
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class ListMembersOutput
266
+ attr_accessor members: ::Array[Types::MemberSummary]
267
+ attr_accessor next_token: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class ListNetworksInput
272
+ attr_accessor name: ::String
273
+ attr_accessor framework: ("HYPERLEDGER_FABRIC" | "ETHEREUM")
274
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "DELETING" | "DELETED")
275
+ attr_accessor max_results: ::Integer
276
+ attr_accessor next_token: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class ListNetworksOutput
281
+ attr_accessor networks: ::Array[Types::NetworkSummary]
282
+ attr_accessor next_token: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class ListNodesInput
287
+ attr_accessor network_id: ::String
288
+ attr_accessor member_id: ::String
289
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "UNHEALTHY" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "FAILED" | "INACCESSIBLE_ENCRYPTION_KEY")
290
+ attr_accessor max_results: ::Integer
291
+ attr_accessor next_token: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class ListNodesOutput
296
+ attr_accessor nodes: ::Array[Types::NodeSummary]
297
+ attr_accessor next_token: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class ListProposalVotesInput
302
+ attr_accessor network_id: ::String
303
+ attr_accessor proposal_id: ::String
304
+ attr_accessor max_results: ::Integer
305
+ attr_accessor next_token: ::String
306
+ SENSITIVE: []
307
+ end
308
+
309
+ class ListProposalVotesOutput
310
+ attr_accessor proposal_votes: ::Array[Types::VoteSummary]
311
+ attr_accessor next_token: ::String
312
+ SENSITIVE: []
313
+ end
314
+
315
+ class ListProposalsInput
316
+ attr_accessor network_id: ::String
317
+ attr_accessor max_results: ::Integer
318
+ attr_accessor next_token: ::String
319
+ SENSITIVE: []
320
+ end
321
+
322
+ class ListProposalsOutput
323
+ attr_accessor proposals: ::Array[Types::ProposalSummary]
324
+ attr_accessor next_token: ::String
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class ListTagsForResourceRequest
329
+ attr_accessor resource_arn: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class ListTagsForResourceResponse
334
+ attr_accessor tags: ::Hash[::String, ::String]
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class LogConfiguration
339
+ attr_accessor enabled: bool
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class LogConfigurations
344
+ attr_accessor cloudwatch: Types::LogConfiguration
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class Member
349
+ attr_accessor network_id: ::String
350
+ attr_accessor id: ::String
351
+ attr_accessor name: ::String
352
+ attr_accessor description: ::String
353
+ attr_accessor framework_attributes: Types::MemberFrameworkAttributes
354
+ attr_accessor log_publishing_configuration: Types::MemberLogPublishingConfiguration
355
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "INACCESSIBLE_ENCRYPTION_KEY")
356
+ attr_accessor creation_date: ::Time
357
+ attr_accessor tags: ::Hash[::String, ::String]
358
+ attr_accessor arn: ::String
359
+ attr_accessor kms_key_arn: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class MemberConfiguration
364
+ attr_accessor name: ::String
365
+ attr_accessor description: ::String
366
+ attr_accessor framework_configuration: Types::MemberFrameworkConfiguration
367
+ attr_accessor log_publishing_configuration: Types::MemberLogPublishingConfiguration
368
+ attr_accessor tags: ::Hash[::String, ::String]
369
+ attr_accessor kms_key_arn: ::String
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class MemberFabricAttributes
374
+ attr_accessor admin_username: ::String
375
+ attr_accessor ca_endpoint: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class MemberFabricConfiguration
380
+ attr_accessor admin_username: ::String
381
+ attr_accessor admin_password: ::String
382
+ SENSITIVE: [:admin_password]
383
+ end
384
+
385
+ class MemberFabricLogPublishingConfiguration
386
+ attr_accessor ca_logs: Types::LogConfigurations
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class MemberFrameworkAttributes
391
+ attr_accessor fabric: Types::MemberFabricAttributes
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class MemberFrameworkConfiguration
396
+ attr_accessor fabric: Types::MemberFabricConfiguration
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class MemberLogPublishingConfiguration
401
+ attr_accessor fabric: Types::MemberFabricLogPublishingConfiguration
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class MemberSummary
406
+ attr_accessor id: ::String
407
+ attr_accessor name: ::String
408
+ attr_accessor description: ::String
409
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "INACCESSIBLE_ENCRYPTION_KEY")
410
+ attr_accessor creation_date: ::Time
411
+ attr_accessor is_owned: bool
412
+ attr_accessor arn: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class Network
417
+ attr_accessor id: ::String
418
+ attr_accessor name: ::String
419
+ attr_accessor description: ::String
420
+ attr_accessor framework: ("HYPERLEDGER_FABRIC" | "ETHEREUM")
421
+ attr_accessor framework_version: ::String
422
+ attr_accessor framework_attributes: Types::NetworkFrameworkAttributes
423
+ attr_accessor vpc_endpoint_service_name: ::String
424
+ attr_accessor voting_policy: Types::VotingPolicy
425
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "DELETING" | "DELETED")
426
+ attr_accessor creation_date: ::Time
427
+ attr_accessor tags: ::Hash[::String, ::String]
428
+ attr_accessor arn: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class NetworkEthereumAttributes
433
+ attr_accessor chain_id: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class NetworkFabricAttributes
438
+ attr_accessor ordering_service_endpoint: ::String
439
+ attr_accessor edition: ("STARTER" | "STANDARD")
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class NetworkFabricConfiguration
444
+ attr_accessor edition: ("STARTER" | "STANDARD")
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class NetworkFrameworkAttributes
449
+ attr_accessor fabric: Types::NetworkFabricAttributes
450
+ attr_accessor ethereum: Types::NetworkEthereumAttributes
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class NetworkFrameworkConfiguration
455
+ attr_accessor fabric: Types::NetworkFabricConfiguration
456
+ SENSITIVE: []
457
+ end
458
+
459
+ class NetworkSummary
460
+ attr_accessor id: ::String
461
+ attr_accessor name: ::String
462
+ attr_accessor description: ::String
463
+ attr_accessor framework: ("HYPERLEDGER_FABRIC" | "ETHEREUM")
464
+ attr_accessor framework_version: ::String
465
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATE_FAILED" | "DELETING" | "DELETED")
466
+ attr_accessor creation_date: ::Time
467
+ attr_accessor arn: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class Node
472
+ attr_accessor network_id: ::String
473
+ attr_accessor member_id: ::String
474
+ attr_accessor id: ::String
475
+ attr_accessor instance_type: ::String
476
+ attr_accessor availability_zone: ::String
477
+ attr_accessor framework_attributes: Types::NodeFrameworkAttributes
478
+ attr_accessor log_publishing_configuration: Types::NodeLogPublishingConfiguration
479
+ attr_accessor state_db: ("LevelDB" | "CouchDB")
480
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "UNHEALTHY" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "FAILED" | "INACCESSIBLE_ENCRYPTION_KEY")
481
+ attr_accessor creation_date: ::Time
482
+ attr_accessor tags: ::Hash[::String, ::String]
483
+ attr_accessor arn: ::String
484
+ attr_accessor kms_key_arn: ::String
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class NodeConfiguration
489
+ attr_accessor instance_type: ::String
490
+ attr_accessor availability_zone: ::String
491
+ attr_accessor log_publishing_configuration: Types::NodeLogPublishingConfiguration
492
+ attr_accessor state_db: ("LevelDB" | "CouchDB")
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class NodeEthereumAttributes
497
+ attr_accessor http_endpoint: ::String
498
+ attr_accessor web_socket_endpoint: ::String
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class NodeFabricAttributes
503
+ attr_accessor peer_endpoint: ::String
504
+ attr_accessor peer_event_endpoint: ::String
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class NodeFabricLogPublishingConfiguration
509
+ attr_accessor chaincode_logs: Types::LogConfigurations
510
+ attr_accessor peer_logs: Types::LogConfigurations
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class NodeFrameworkAttributes
515
+ attr_accessor fabric: Types::NodeFabricAttributes
516
+ attr_accessor ethereum: Types::NodeEthereumAttributes
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class NodeLogPublishingConfiguration
521
+ attr_accessor fabric: Types::NodeFabricLogPublishingConfiguration
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class NodeSummary
526
+ attr_accessor id: ::String
527
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "UNHEALTHY" | "CREATE_FAILED" | "UPDATING" | "DELETING" | "DELETED" | "FAILED" | "INACCESSIBLE_ENCRYPTION_KEY")
528
+ attr_accessor creation_date: ::Time
529
+ attr_accessor availability_zone: ::String
530
+ attr_accessor instance_type: ::String
531
+ attr_accessor arn: ::String
532
+ SENSITIVE: []
533
+ end
534
+
535
+ class Proposal
536
+ attr_accessor proposal_id: ::String
537
+ attr_accessor network_id: ::String
538
+ attr_accessor description: ::String
539
+ attr_accessor actions: Types::ProposalActions
540
+ attr_accessor proposed_by_member_id: ::String
541
+ attr_accessor proposed_by_member_name: ::String
542
+ attr_accessor status: ("IN_PROGRESS" | "APPROVED" | "REJECTED" | "EXPIRED" | "ACTION_FAILED")
543
+ attr_accessor creation_date: ::Time
544
+ attr_accessor expiration_date: ::Time
545
+ attr_accessor yes_vote_count: ::Integer
546
+ attr_accessor no_vote_count: ::Integer
547
+ attr_accessor outstanding_vote_count: ::Integer
548
+ attr_accessor tags: ::Hash[::String, ::String]
549
+ attr_accessor arn: ::String
550
+ SENSITIVE: []
551
+ end
552
+
553
+ class ProposalActions
554
+ attr_accessor invitations: ::Array[Types::InviteAction]
555
+ attr_accessor removals: ::Array[Types::RemoveAction]
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class ProposalSummary
560
+ attr_accessor proposal_id: ::String
561
+ attr_accessor description: ::String
562
+ attr_accessor proposed_by_member_id: ::String
563
+ attr_accessor proposed_by_member_name: ::String
564
+ attr_accessor status: ("IN_PROGRESS" | "APPROVED" | "REJECTED" | "EXPIRED" | "ACTION_FAILED")
565
+ attr_accessor creation_date: ::Time
566
+ attr_accessor expiration_date: ::Time
567
+ attr_accessor arn: ::String
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class RejectInvitationInput
572
+ attr_accessor invitation_id: ::String
573
+ SENSITIVE: []
574
+ end
575
+
576
+ class RejectInvitationOutput < Aws::EmptyStructure
577
+ end
578
+
579
+ class RemoveAction
580
+ attr_accessor member_id: ::String
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class ResourceAlreadyExistsException
585
+ attr_accessor message: ::String
586
+ SENSITIVE: []
587
+ end
588
+
589
+ class ResourceLimitExceededException
590
+ attr_accessor message: ::String
591
+ SENSITIVE: []
592
+ end
593
+
594
+ class ResourceNotFoundException
595
+ attr_accessor message: ::String
596
+ attr_accessor resource_name: ::String
597
+ SENSITIVE: []
598
+ end
599
+
600
+ class ResourceNotReadyException
601
+ attr_accessor message: ::String
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class TagResourceRequest
606
+ attr_accessor resource_arn: ::String
607
+ attr_accessor tags: ::Hash[::String, ::String]
608
+ SENSITIVE: []
609
+ end
610
+
611
+ class TagResourceResponse < Aws::EmptyStructure
612
+ end
613
+
614
+ class ThrottlingException < Aws::EmptyStructure
615
+ end
616
+
617
+ class TooManyTagsException
618
+ attr_accessor message: ::String
619
+ attr_accessor resource_name: ::String
620
+ SENSITIVE: []
621
+ end
622
+
623
+ class UntagResourceRequest
624
+ attr_accessor resource_arn: ::String
625
+ attr_accessor tag_keys: ::Array[::String]
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class UntagResourceResponse < Aws::EmptyStructure
630
+ end
631
+
632
+ class UpdateMemberInput
633
+ attr_accessor network_id: ::String
634
+ attr_accessor member_id: ::String
635
+ attr_accessor log_publishing_configuration: Types::MemberLogPublishingConfiguration
636
+ SENSITIVE: []
637
+ end
638
+
639
+ class UpdateMemberOutput < Aws::EmptyStructure
640
+ end
641
+
642
+ class UpdateNodeInput
643
+ attr_accessor network_id: ::String
644
+ attr_accessor member_id: ::String
645
+ attr_accessor node_id: ::String
646
+ attr_accessor log_publishing_configuration: Types::NodeLogPublishingConfiguration
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class UpdateNodeOutput < Aws::EmptyStructure
651
+ end
652
+
653
+ class VoteOnProposalInput
654
+ attr_accessor network_id: ::String
655
+ attr_accessor proposal_id: ::String
656
+ attr_accessor voter_member_id: ::String
657
+ attr_accessor vote: ("YES" | "NO")
658
+ SENSITIVE: []
659
+ end
660
+
661
+ class VoteOnProposalOutput < Aws::EmptyStructure
662
+ end
663
+
664
+ class VoteSummary
665
+ attr_accessor vote: ("YES" | "NO")
666
+ attr_accessor member_name: ::String
667
+ attr_accessor member_id: ::String
668
+ SENSITIVE: []
669
+ end
670
+
671
+ class VotingPolicy
672
+ attr_accessor approval_threshold_policy: Types::ApprovalThresholdPolicy
673
+ SENSITIVE: []
674
+ end
675
+ end
676
+ 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 ManagedBlockchain
10
+ module Waiters
11
+ end
12
+ end
13
+ end