aws-sdk-managedblockchain 1.11.0 → 1.17.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/lib/aws-sdk-managedblockchain.rb +5 -2
- data/lib/aws-sdk-managedblockchain/client.rb +31 -10
- data/lib/aws-sdk-managedblockchain/client_api.rb +5 -0
- data/lib/aws-sdk-managedblockchain/errors.rb +2 -0
- data/lib/aws-sdk-managedblockchain/resource.rb +2 -0
- data/lib/aws-sdk-managedblockchain/types.rb +97 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc02f9f19a6d3b11caf1ac0730539ed7575b7b80a0d11dcbc20390b8c8c2837e
|
|
4
|
+
data.tar.gz: 20bd3260ac3b2a035e2f4628814e2ca9a5a4ded2c0258e40b16d4698864702f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08c37c44e96f4a65c98ad57b3dca39f92bd84b536c3c0dc356ff47ea330629464aaa8f0e0ffa777dfd833ae1ac3debeea279efa5817cd3a1f212f2ea84eb2651'
|
|
7
|
+
data.tar.gz: 01cce865028eb0386dfbad84101d23507e89c22e369b0f29219353f7dc7fd2bcd98bffeafebb1d257ec76c72fc21e65b842b34f484364926ab6e94f607b2a560
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-managedblockchain/customizations'
|
|
|
42
45
|
#
|
|
43
46
|
# See {Errors} for more information.
|
|
44
47
|
#
|
|
45
|
-
#
|
|
48
|
+
# @!group service
|
|
46
49
|
module Aws::ManagedBlockchain
|
|
47
50
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.17.0'
|
|
49
52
|
|
|
50
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::ManagedBlockchain
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
74
78
|
|
|
@@ -81,13 +85,28 @@ module Aws::ManagedBlockchain
|
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
82
86
|
# credentials.
|
|
83
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
86
104
|
#
|
|
87
|
-
# * `Aws::
|
|
88
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
89
107
|
#
|
|
90
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
91
110
|
#
|
|
92
111
|
# When `:credentials` are not configured directly, the following
|
|
93
112
|
# locations will be searched for credentials:
|
|
@@ -97,10 +116,10 @@ module Aws::ManagedBlockchain
|
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
98
117
|
# * `~/.aws/credentials`
|
|
99
118
|
# * `~/.aws/config`
|
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
101
|
-
# very aggressive. Construct and pass an instance of
|
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
|
103
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
104
123
|
#
|
|
105
124
|
# @option options [required, String] :region
|
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -161,7 +180,7 @@ module Aws::ManagedBlockchain
|
|
|
161
180
|
# @option options [String] :endpoint
|
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
184
|
#
|
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -517,6 +536,7 @@ module Aws::ManagedBlockchain
|
|
|
517
536
|
# },
|
|
518
537
|
# },
|
|
519
538
|
# },
|
|
539
|
+
# state_db: "LevelDB", # accepts LevelDB, CouchDB
|
|
520
540
|
# },
|
|
521
541
|
# })
|
|
522
542
|
#
|
|
@@ -781,6 +801,7 @@ module Aws::ManagedBlockchain
|
|
|
781
801
|
# resp.node.framework_attributes.fabric.peer_event_endpoint #=> String
|
|
782
802
|
# resp.node.log_publishing_configuration.fabric.chaincode_logs.cloudwatch.enabled #=> Boolean
|
|
783
803
|
# resp.node.log_publishing_configuration.fabric.peer_logs.cloudwatch.enabled #=> Boolean
|
|
804
|
+
# resp.node.state_db #=> String, one of "LevelDB", "CouchDB"
|
|
784
805
|
# resp.node.status #=> String, one of "CREATING", "AVAILABLE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETED", "FAILED"
|
|
785
806
|
# resp.node.creation_date #=> Time
|
|
786
807
|
#
|
|
@@ -839,7 +860,7 @@ module Aws::ManagedBlockchain
|
|
|
839
860
|
req.send_request(options)
|
|
840
861
|
end
|
|
841
862
|
|
|
842
|
-
# Returns a listing of all invitations
|
|
863
|
+
# Returns a listing of all invitations for the current AWS account.
|
|
843
864
|
#
|
|
844
865
|
# @option params [Integer] :max_results
|
|
845
866
|
# The maximum number of invitations to return.
|
|
@@ -1322,7 +1343,7 @@ module Aws::ManagedBlockchain
|
|
|
1322
1343
|
params: params,
|
|
1323
1344
|
config: config)
|
|
1324
1345
|
context[:gem_name] = 'aws-sdk-managedblockchain'
|
|
1325
|
-
context[:gem_version] = '1.
|
|
1346
|
+
context[:gem_version] = '1.17.0'
|
|
1326
1347
|
Seahorse::Client::Request.new(handlers, context)
|
|
1327
1348
|
end
|
|
1328
1349
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -117,6 +119,7 @@ module Aws::ManagedBlockchain
|
|
|
117
119
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
|
118
120
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
119
121
|
ResourceNotReadyException = Shapes::StructureShape.new(name: 'ResourceNotReadyException')
|
|
122
|
+
StateDBType = Shapes::StringShape.new(name: 'StateDBType')
|
|
120
123
|
String = Shapes::StringShape.new(name: 'String')
|
|
121
124
|
ThresholdComparator = Shapes::StringShape.new(name: 'ThresholdComparator')
|
|
122
125
|
ThresholdPercentageInt = Shapes::IntegerShape.new(name: 'ThresholdPercentageInt')
|
|
@@ -402,6 +405,7 @@ module Aws::ManagedBlockchain
|
|
|
402
405
|
Node.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZoneString, location_name: "AvailabilityZone"))
|
|
403
406
|
Node.add_member(:framework_attributes, Shapes::ShapeRef.new(shape: NodeFrameworkAttributes, location_name: "FrameworkAttributes"))
|
|
404
407
|
Node.add_member(:log_publishing_configuration, Shapes::ShapeRef.new(shape: NodeLogPublishingConfiguration, location_name: "LogPublishingConfiguration"))
|
|
408
|
+
Node.add_member(:state_db, Shapes::ShapeRef.new(shape: StateDBType, location_name: "StateDB"))
|
|
405
409
|
Node.add_member(:status, Shapes::ShapeRef.new(shape: NodeStatus, location_name: "Status"))
|
|
406
410
|
Node.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationDate"))
|
|
407
411
|
Node.struct_class = Types::Node
|
|
@@ -409,6 +413,7 @@ module Aws::ManagedBlockchain
|
|
|
409
413
|
NodeConfiguration.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceTypeString, required: true, location_name: "InstanceType"))
|
|
410
414
|
NodeConfiguration.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZoneString, required: true, location_name: "AvailabilityZone"))
|
|
411
415
|
NodeConfiguration.add_member(:log_publishing_configuration, Shapes::ShapeRef.new(shape: NodeLogPublishingConfiguration, location_name: "LogPublishingConfiguration"))
|
|
416
|
+
NodeConfiguration.add_member(:state_db, Shapes::ShapeRef.new(shape: StateDBType, location_name: "StateDB"))
|
|
412
417
|
NodeConfiguration.struct_class = Types::NodeConfiguration
|
|
413
418
|
|
|
414
419
|
NodeFabricAttributes.add_member(:peer_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "PeerEndpoint"))
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -59,6 +61,7 @@ module Aws::ManagedBlockchain
|
|
|
59
61
|
:threshold_percentage,
|
|
60
62
|
:proposal_duration_in_hours,
|
|
61
63
|
:threshold_comparator)
|
|
64
|
+
SENSITIVE = []
|
|
62
65
|
include Aws::Structure
|
|
63
66
|
end
|
|
64
67
|
|
|
@@ -121,6 +124,7 @@ module Aws::ManagedBlockchain
|
|
|
121
124
|
:invitation_id,
|
|
122
125
|
:network_id,
|
|
123
126
|
:member_configuration)
|
|
127
|
+
SENSITIVE = []
|
|
124
128
|
include Aws::Structure
|
|
125
129
|
end
|
|
126
130
|
|
|
@@ -132,6 +136,7 @@ module Aws::ManagedBlockchain
|
|
|
132
136
|
#
|
|
133
137
|
class CreateMemberOutput < Struct.new(
|
|
134
138
|
:member_id)
|
|
139
|
+
SENSITIVE = []
|
|
135
140
|
include Aws::Structure
|
|
136
141
|
end
|
|
137
142
|
|
|
@@ -229,6 +234,7 @@ module Aws::ManagedBlockchain
|
|
|
229
234
|
:framework_configuration,
|
|
230
235
|
:voting_policy,
|
|
231
236
|
:member_configuration)
|
|
237
|
+
SENSITIVE = []
|
|
232
238
|
include Aws::Structure
|
|
233
239
|
end
|
|
234
240
|
|
|
@@ -245,6 +251,7 @@ module Aws::ManagedBlockchain
|
|
|
245
251
|
class CreateNetworkOutput < Struct.new(
|
|
246
252
|
:network_id,
|
|
247
253
|
:member_id)
|
|
254
|
+
SENSITIVE = []
|
|
248
255
|
include Aws::Structure
|
|
249
256
|
end
|
|
250
257
|
|
|
@@ -272,6 +279,7 @@ module Aws::ManagedBlockchain
|
|
|
272
279
|
# },
|
|
273
280
|
# },
|
|
274
281
|
# },
|
|
282
|
+
# state_db: "LevelDB", # accepts LevelDB, CouchDB
|
|
275
283
|
# },
|
|
276
284
|
# }
|
|
277
285
|
#
|
|
@@ -305,6 +313,7 @@ module Aws::ManagedBlockchain
|
|
|
305
313
|
:network_id,
|
|
306
314
|
:member_id,
|
|
307
315
|
:node_configuration)
|
|
316
|
+
SENSITIVE = []
|
|
308
317
|
include Aws::Structure
|
|
309
318
|
end
|
|
310
319
|
|
|
@@ -316,6 +325,7 @@ module Aws::ManagedBlockchain
|
|
|
316
325
|
#
|
|
317
326
|
class CreateNodeOutput < Struct.new(
|
|
318
327
|
:node_id)
|
|
328
|
+
SENSITIVE = []
|
|
319
329
|
include Aws::Structure
|
|
320
330
|
end
|
|
321
331
|
|
|
@@ -383,6 +393,7 @@ module Aws::ManagedBlockchain
|
|
|
383
393
|
:member_id,
|
|
384
394
|
:actions,
|
|
385
395
|
:description)
|
|
396
|
+
SENSITIVE = []
|
|
386
397
|
include Aws::Structure
|
|
387
398
|
end
|
|
388
399
|
|
|
@@ -394,6 +405,7 @@ module Aws::ManagedBlockchain
|
|
|
394
405
|
#
|
|
395
406
|
class CreateProposalOutput < Struct.new(
|
|
396
407
|
:proposal_id)
|
|
408
|
+
SENSITIVE = []
|
|
397
409
|
include Aws::Structure
|
|
398
410
|
end
|
|
399
411
|
|
|
@@ -419,6 +431,7 @@ module Aws::ManagedBlockchain
|
|
|
419
431
|
class DeleteMemberInput < Struct.new(
|
|
420
432
|
:network_id,
|
|
421
433
|
:member_id)
|
|
434
|
+
SENSITIVE = []
|
|
422
435
|
include Aws::Structure
|
|
423
436
|
end
|
|
424
437
|
|
|
@@ -453,6 +466,7 @@ module Aws::ManagedBlockchain
|
|
|
453
466
|
:network_id,
|
|
454
467
|
:member_id,
|
|
455
468
|
:node_id)
|
|
469
|
+
SENSITIVE = []
|
|
456
470
|
include Aws::Structure
|
|
457
471
|
end
|
|
458
472
|
|
|
@@ -481,6 +495,7 @@ module Aws::ManagedBlockchain
|
|
|
481
495
|
class GetMemberInput < Struct.new(
|
|
482
496
|
:network_id,
|
|
483
497
|
:member_id)
|
|
498
|
+
SENSITIVE = []
|
|
484
499
|
include Aws::Structure
|
|
485
500
|
end
|
|
486
501
|
|
|
@@ -492,6 +507,7 @@ module Aws::ManagedBlockchain
|
|
|
492
507
|
#
|
|
493
508
|
class GetMemberOutput < Struct.new(
|
|
494
509
|
:member)
|
|
510
|
+
SENSITIVE = []
|
|
495
511
|
include Aws::Structure
|
|
496
512
|
end
|
|
497
513
|
|
|
@@ -510,6 +526,7 @@ module Aws::ManagedBlockchain
|
|
|
510
526
|
#
|
|
511
527
|
class GetNetworkInput < Struct.new(
|
|
512
528
|
:network_id)
|
|
529
|
+
SENSITIVE = []
|
|
513
530
|
include Aws::Structure
|
|
514
531
|
end
|
|
515
532
|
|
|
@@ -521,6 +538,7 @@ module Aws::ManagedBlockchain
|
|
|
521
538
|
#
|
|
522
539
|
class GetNetworkOutput < Struct.new(
|
|
523
540
|
:network)
|
|
541
|
+
SENSITIVE = []
|
|
524
542
|
include Aws::Structure
|
|
525
543
|
end
|
|
526
544
|
|
|
@@ -551,6 +569,7 @@ module Aws::ManagedBlockchain
|
|
|
551
569
|
:network_id,
|
|
552
570
|
:member_id,
|
|
553
571
|
:node_id)
|
|
572
|
+
SENSITIVE = []
|
|
554
573
|
include Aws::Structure
|
|
555
574
|
end
|
|
556
575
|
|
|
@@ -562,6 +581,7 @@ module Aws::ManagedBlockchain
|
|
|
562
581
|
#
|
|
563
582
|
class GetNodeOutput < Struct.new(
|
|
564
583
|
:node)
|
|
584
|
+
SENSITIVE = []
|
|
565
585
|
include Aws::Structure
|
|
566
586
|
end
|
|
567
587
|
|
|
@@ -586,6 +606,7 @@ module Aws::ManagedBlockchain
|
|
|
586
606
|
class GetProposalInput < Struct.new(
|
|
587
607
|
:network_id,
|
|
588
608
|
:proposal_id)
|
|
609
|
+
SENSITIVE = []
|
|
589
610
|
include Aws::Structure
|
|
590
611
|
end
|
|
591
612
|
|
|
@@ -597,6 +618,7 @@ module Aws::ManagedBlockchain
|
|
|
597
618
|
#
|
|
598
619
|
class GetProposalOutput < Struct.new(
|
|
599
620
|
:proposal)
|
|
621
|
+
SENSITIVE = []
|
|
600
622
|
include Aws::Structure
|
|
601
623
|
end
|
|
602
624
|
|
|
@@ -607,6 +629,7 @@ module Aws::ManagedBlockchain
|
|
|
607
629
|
#
|
|
608
630
|
class IllegalActionException < Struct.new(
|
|
609
631
|
:message)
|
|
632
|
+
SENSITIVE = []
|
|
610
633
|
include Aws::Structure
|
|
611
634
|
end
|
|
612
635
|
|
|
@@ -627,6 +650,7 @@ module Aws::ManagedBlockchain
|
|
|
627
650
|
#
|
|
628
651
|
class InvalidRequestException < Struct.new(
|
|
629
652
|
:message)
|
|
653
|
+
SENSITIVE = []
|
|
630
654
|
include Aws::Structure
|
|
631
655
|
end
|
|
632
656
|
|
|
@@ -679,6 +703,7 @@ module Aws::ManagedBlockchain
|
|
|
679
703
|
:expiration_date,
|
|
680
704
|
:status,
|
|
681
705
|
:network_summary)
|
|
706
|
+
SENSITIVE = []
|
|
682
707
|
include Aws::Structure
|
|
683
708
|
end
|
|
684
709
|
|
|
@@ -701,6 +726,7 @@ module Aws::ManagedBlockchain
|
|
|
701
726
|
#
|
|
702
727
|
class InviteAction < Struct.new(
|
|
703
728
|
:principal)
|
|
729
|
+
SENSITIVE = []
|
|
704
730
|
include Aws::Structure
|
|
705
731
|
end
|
|
706
732
|
|
|
@@ -726,6 +752,7 @@ module Aws::ManagedBlockchain
|
|
|
726
752
|
class ListInvitationsInput < Struct.new(
|
|
727
753
|
:max_results,
|
|
728
754
|
:next_token)
|
|
755
|
+
SENSITIVE = []
|
|
729
756
|
include Aws::Structure
|
|
730
757
|
end
|
|
731
758
|
|
|
@@ -743,6 +770,7 @@ module Aws::ManagedBlockchain
|
|
|
743
770
|
class ListInvitationsOutput < Struct.new(
|
|
744
771
|
:invitations,
|
|
745
772
|
:next_token)
|
|
773
|
+
SENSITIVE = []
|
|
746
774
|
include Aws::Structure
|
|
747
775
|
end
|
|
748
776
|
|
|
@@ -796,6 +824,7 @@ module Aws::ManagedBlockchain
|
|
|
796
824
|
:is_owned,
|
|
797
825
|
:max_results,
|
|
798
826
|
:next_token)
|
|
827
|
+
SENSITIVE = []
|
|
799
828
|
include Aws::Structure
|
|
800
829
|
end
|
|
801
830
|
|
|
@@ -814,6 +843,7 @@ module Aws::ManagedBlockchain
|
|
|
814
843
|
class ListMembersOutput < Struct.new(
|
|
815
844
|
:members,
|
|
816
845
|
:next_token)
|
|
846
|
+
SENSITIVE = []
|
|
817
847
|
include Aws::Structure
|
|
818
848
|
end
|
|
819
849
|
|
|
@@ -859,6 +889,7 @@ module Aws::ManagedBlockchain
|
|
|
859
889
|
:status,
|
|
860
890
|
:max_results,
|
|
861
891
|
:next_token)
|
|
892
|
+
SENSITIVE = []
|
|
862
893
|
include Aws::Structure
|
|
863
894
|
end
|
|
864
895
|
|
|
@@ -877,6 +908,7 @@ module Aws::ManagedBlockchain
|
|
|
877
908
|
class ListNetworksOutput < Struct.new(
|
|
878
909
|
:networks,
|
|
879
910
|
:next_token)
|
|
911
|
+
SENSITIVE = []
|
|
880
912
|
include Aws::Structure
|
|
881
913
|
end
|
|
882
914
|
|
|
@@ -921,6 +953,7 @@ module Aws::ManagedBlockchain
|
|
|
921
953
|
:status,
|
|
922
954
|
:max_results,
|
|
923
955
|
:next_token)
|
|
956
|
+
SENSITIVE = []
|
|
924
957
|
include Aws::Structure
|
|
925
958
|
end
|
|
926
959
|
|
|
@@ -939,6 +972,7 @@ module Aws::ManagedBlockchain
|
|
|
939
972
|
class ListNodesOutput < Struct.new(
|
|
940
973
|
:nodes,
|
|
941
974
|
:next_token)
|
|
975
|
+
SENSITIVE = []
|
|
942
976
|
include Aws::Structure
|
|
943
977
|
end
|
|
944
978
|
|
|
@@ -976,6 +1010,7 @@ module Aws::ManagedBlockchain
|
|
|
976
1010
|
:proposal_id,
|
|
977
1011
|
:max_results,
|
|
978
1012
|
:next_token)
|
|
1013
|
+
SENSITIVE = []
|
|
979
1014
|
include Aws::Structure
|
|
980
1015
|
end
|
|
981
1016
|
|
|
@@ -993,6 +1028,7 @@ module Aws::ManagedBlockchain
|
|
|
993
1028
|
class ListProposalVotesOutput < Struct.new(
|
|
994
1029
|
:proposal_votes,
|
|
995
1030
|
:next_token)
|
|
1031
|
+
SENSITIVE = []
|
|
996
1032
|
include Aws::Structure
|
|
997
1033
|
end
|
|
998
1034
|
|
|
@@ -1024,6 +1060,7 @@ module Aws::ManagedBlockchain
|
|
|
1024
1060
|
:network_id,
|
|
1025
1061
|
:max_results,
|
|
1026
1062
|
:next_token)
|
|
1063
|
+
SENSITIVE = []
|
|
1027
1064
|
include Aws::Structure
|
|
1028
1065
|
end
|
|
1029
1066
|
|
|
@@ -1041,6 +1078,7 @@ module Aws::ManagedBlockchain
|
|
|
1041
1078
|
class ListProposalsOutput < Struct.new(
|
|
1042
1079
|
:proposals,
|
|
1043
1080
|
:next_token)
|
|
1081
|
+
SENSITIVE = []
|
|
1044
1082
|
include Aws::Structure
|
|
1045
1083
|
end
|
|
1046
1084
|
|
|
@@ -1061,6 +1099,7 @@ module Aws::ManagedBlockchain
|
|
|
1061
1099
|
#
|
|
1062
1100
|
class LogConfiguration < Struct.new(
|
|
1063
1101
|
:enabled)
|
|
1102
|
+
SENSITIVE = []
|
|
1064
1103
|
include Aws::Structure
|
|
1065
1104
|
end
|
|
1066
1105
|
|
|
@@ -1083,6 +1122,7 @@ module Aws::ManagedBlockchain
|
|
|
1083
1122
|
#
|
|
1084
1123
|
class LogConfigurations < Struct.new(
|
|
1085
1124
|
:cloudwatch)
|
|
1125
|
+
SENSITIVE = []
|
|
1086
1126
|
include Aws::Structure
|
|
1087
1127
|
end
|
|
1088
1128
|
|
|
@@ -1152,6 +1192,7 @@ module Aws::ManagedBlockchain
|
|
|
1152
1192
|
:log_publishing_configuration,
|
|
1153
1193
|
:status,
|
|
1154
1194
|
:creation_date)
|
|
1195
|
+
SENSITIVE = []
|
|
1155
1196
|
include Aws::Structure
|
|
1156
1197
|
end
|
|
1157
1198
|
|
|
@@ -1194,6 +1235,8 @@ module Aws::ManagedBlockchain
|
|
|
1194
1235
|
# @return [Types::MemberFrameworkConfiguration]
|
|
1195
1236
|
#
|
|
1196
1237
|
# @!attribute [rw] log_publishing_configuration
|
|
1238
|
+
# Configuration properties for logging events associated with a member
|
|
1239
|
+
# of a Managed Blockchain network.
|
|
1197
1240
|
# @return [Types::MemberLogPublishingConfiguration]
|
|
1198
1241
|
#
|
|
1199
1242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberConfiguration AWS API Documentation
|
|
@@ -1203,6 +1246,7 @@ module Aws::ManagedBlockchain
|
|
|
1203
1246
|
:description,
|
|
1204
1247
|
:framework_configuration,
|
|
1205
1248
|
:log_publishing_configuration)
|
|
1249
|
+
SENSITIVE = []
|
|
1206
1250
|
include Aws::Structure
|
|
1207
1251
|
end
|
|
1208
1252
|
|
|
@@ -1222,6 +1266,7 @@ module Aws::ManagedBlockchain
|
|
|
1222
1266
|
class MemberFabricAttributes < Struct.new(
|
|
1223
1267
|
:admin_username,
|
|
1224
1268
|
:ca_endpoint)
|
|
1269
|
+
SENSITIVE = []
|
|
1225
1270
|
include Aws::Structure
|
|
1226
1271
|
end
|
|
1227
1272
|
|
|
@@ -1254,6 +1299,7 @@ module Aws::ManagedBlockchain
|
|
|
1254
1299
|
class MemberFabricConfiguration < Struct.new(
|
|
1255
1300
|
:admin_username,
|
|
1256
1301
|
:admin_password)
|
|
1302
|
+
SENSITIVE = [:admin_password]
|
|
1257
1303
|
include Aws::Structure
|
|
1258
1304
|
end
|
|
1259
1305
|
|
|
@@ -1283,6 +1329,7 @@ module Aws::ManagedBlockchain
|
|
|
1283
1329
|
#
|
|
1284
1330
|
class MemberFabricLogPublishingConfiguration < Struct.new(
|
|
1285
1331
|
:ca_logs)
|
|
1332
|
+
SENSITIVE = []
|
|
1286
1333
|
include Aws::Structure
|
|
1287
1334
|
end
|
|
1288
1335
|
|
|
@@ -1298,6 +1345,7 @@ module Aws::ManagedBlockchain
|
|
|
1298
1345
|
#
|
|
1299
1346
|
class MemberFrameworkAttributes < Struct.new(
|
|
1300
1347
|
:fabric)
|
|
1348
|
+
SENSITIVE = []
|
|
1301
1349
|
include Aws::Structure
|
|
1302
1350
|
end
|
|
1303
1351
|
|
|
@@ -1323,6 +1371,7 @@ module Aws::ManagedBlockchain
|
|
|
1323
1371
|
#
|
|
1324
1372
|
class MemberFrameworkConfiguration < Struct.new(
|
|
1325
1373
|
:fabric)
|
|
1374
|
+
SENSITIVE = []
|
|
1326
1375
|
include Aws::Structure
|
|
1327
1376
|
end
|
|
1328
1377
|
|
|
@@ -1352,6 +1401,7 @@ module Aws::ManagedBlockchain
|
|
|
1352
1401
|
#
|
|
1353
1402
|
class MemberLogPublishingConfiguration < Struct.new(
|
|
1354
1403
|
:fabric)
|
|
1404
|
+
SENSITIVE = []
|
|
1355
1405
|
include Aws::Structure
|
|
1356
1406
|
end
|
|
1357
1407
|
|
|
@@ -1410,6 +1460,7 @@ module Aws::ManagedBlockchain
|
|
|
1410
1460
|
:status,
|
|
1411
1461
|
:creation_date,
|
|
1412
1462
|
:is_owned)
|
|
1463
|
+
SENSITIVE = []
|
|
1413
1464
|
include Aws::Structure
|
|
1414
1465
|
end
|
|
1415
1466
|
|
|
@@ -1471,6 +1522,7 @@ module Aws::ManagedBlockchain
|
|
|
1471
1522
|
:voting_policy,
|
|
1472
1523
|
:status,
|
|
1473
1524
|
:creation_date)
|
|
1525
|
+
SENSITIVE = []
|
|
1474
1526
|
include Aws::Structure
|
|
1475
1527
|
end
|
|
1476
1528
|
|
|
@@ -1495,6 +1547,7 @@ module Aws::ManagedBlockchain
|
|
|
1495
1547
|
class NetworkFabricAttributes < Struct.new(
|
|
1496
1548
|
:ordering_service_endpoint,
|
|
1497
1549
|
:edition)
|
|
1550
|
+
SENSITIVE = []
|
|
1498
1551
|
include Aws::Structure
|
|
1499
1552
|
end
|
|
1500
1553
|
|
|
@@ -1520,6 +1573,7 @@ module Aws::ManagedBlockchain
|
|
|
1520
1573
|
#
|
|
1521
1574
|
class NetworkFabricConfiguration < Struct.new(
|
|
1522
1575
|
:edition)
|
|
1576
|
+
SENSITIVE = []
|
|
1523
1577
|
include Aws::Structure
|
|
1524
1578
|
end
|
|
1525
1579
|
|
|
@@ -1535,6 +1589,7 @@ module Aws::ManagedBlockchain
|
|
|
1535
1589
|
#
|
|
1536
1590
|
class NetworkFrameworkAttributes < Struct.new(
|
|
1537
1591
|
:fabric)
|
|
1592
|
+
SENSITIVE = []
|
|
1538
1593
|
include Aws::Structure
|
|
1539
1594
|
end
|
|
1540
1595
|
|
|
@@ -1559,6 +1614,7 @@ module Aws::ManagedBlockchain
|
|
|
1559
1614
|
#
|
|
1560
1615
|
class NetworkFrameworkConfiguration < Struct.new(
|
|
1561
1616
|
:fabric)
|
|
1617
|
+
SENSITIVE = []
|
|
1562
1618
|
include Aws::Structure
|
|
1563
1619
|
end
|
|
1564
1620
|
|
|
@@ -1602,6 +1658,7 @@ module Aws::ManagedBlockchain
|
|
|
1602
1658
|
:framework_version,
|
|
1603
1659
|
:status,
|
|
1604
1660
|
:creation_date)
|
|
1661
|
+
SENSITIVE = []
|
|
1605
1662
|
include Aws::Structure
|
|
1606
1663
|
end
|
|
1607
1664
|
|
|
@@ -1632,8 +1689,15 @@ module Aws::ManagedBlockchain
|
|
|
1632
1689
|
# @return [Types::NodeFrameworkAttributes]
|
|
1633
1690
|
#
|
|
1634
1691
|
# @!attribute [rw] log_publishing_configuration
|
|
1692
|
+
# Configuration properties for logging events associated with a peer
|
|
1693
|
+
# node owned by a member in a Managed Blockchain network.
|
|
1635
1694
|
# @return [Types::NodeLogPublishingConfiguration]
|
|
1636
1695
|
#
|
|
1696
|
+
# @!attribute [rw] state_db
|
|
1697
|
+
# The state database that the node uses. Values are `LevelDB` or
|
|
1698
|
+
# `CouchDB`.
|
|
1699
|
+
# @return [String]
|
|
1700
|
+
#
|
|
1637
1701
|
# @!attribute [rw] status
|
|
1638
1702
|
# The status of the node.
|
|
1639
1703
|
# @return [String]
|
|
@@ -1652,8 +1716,10 @@ module Aws::ManagedBlockchain
|
|
|
1652
1716
|
:availability_zone,
|
|
1653
1717
|
:framework_attributes,
|
|
1654
1718
|
:log_publishing_configuration,
|
|
1719
|
+
:state_db,
|
|
1655
1720
|
:status,
|
|
1656
1721
|
:creation_date)
|
|
1722
|
+
SENSITIVE = []
|
|
1657
1723
|
include Aws::Structure
|
|
1658
1724
|
end
|
|
1659
1725
|
|
|
@@ -1679,6 +1745,7 @@ module Aws::ManagedBlockchain
|
|
|
1679
1745
|
# },
|
|
1680
1746
|
# },
|
|
1681
1747
|
# },
|
|
1748
|
+
# state_db: "LevelDB", # accepts LevelDB, CouchDB
|
|
1682
1749
|
# }
|
|
1683
1750
|
#
|
|
1684
1751
|
# @!attribute [rw] instance_type
|
|
@@ -1690,14 +1757,24 @@ module Aws::ManagedBlockchain
|
|
|
1690
1757
|
# @return [String]
|
|
1691
1758
|
#
|
|
1692
1759
|
# @!attribute [rw] log_publishing_configuration
|
|
1760
|
+
# Configuration properties for logging events associated with a peer
|
|
1761
|
+
# node owned by a member in a Managed Blockchain network.
|
|
1693
1762
|
# @return [Types::NodeLogPublishingConfiguration]
|
|
1694
1763
|
#
|
|
1764
|
+
# @!attribute [rw] state_db
|
|
1765
|
+
# The state database that the node uses. Values are `LevelDB` or
|
|
1766
|
+
# `CouchDB`. When using an Amazon Managed Blockchain network with
|
|
1767
|
+
# Hyperledger Fabric version 1.4 or later, the default is `CouchDB`.
|
|
1768
|
+
# @return [String]
|
|
1769
|
+
#
|
|
1695
1770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NodeConfiguration AWS API Documentation
|
|
1696
1771
|
#
|
|
1697
1772
|
class NodeConfiguration < Struct.new(
|
|
1698
1773
|
:instance_type,
|
|
1699
1774
|
:availability_zone,
|
|
1700
|
-
:log_publishing_configuration
|
|
1775
|
+
:log_publishing_configuration,
|
|
1776
|
+
:state_db)
|
|
1777
|
+
SENSITIVE = []
|
|
1701
1778
|
include Aws::Structure
|
|
1702
1779
|
end
|
|
1703
1780
|
|
|
@@ -1719,6 +1796,7 @@ module Aws::ManagedBlockchain
|
|
|
1719
1796
|
class NodeFabricAttributes < Struct.new(
|
|
1720
1797
|
:peer_endpoint,
|
|
1721
1798
|
:peer_event_endpoint)
|
|
1799
|
+
SENSITIVE = []
|
|
1722
1800
|
include Aws::Structure
|
|
1723
1801
|
end
|
|
1724
1802
|
|
|
@@ -1762,6 +1840,7 @@ module Aws::ManagedBlockchain
|
|
|
1762
1840
|
class NodeFabricLogPublishingConfiguration < Struct.new(
|
|
1763
1841
|
:chaincode_logs,
|
|
1764
1842
|
:peer_logs)
|
|
1843
|
+
SENSITIVE = []
|
|
1765
1844
|
include Aws::Structure
|
|
1766
1845
|
end
|
|
1767
1846
|
|
|
@@ -1777,6 +1856,7 @@ module Aws::ManagedBlockchain
|
|
|
1777
1856
|
#
|
|
1778
1857
|
class NodeFrameworkAttributes < Struct.new(
|
|
1779
1858
|
:fabric)
|
|
1859
|
+
SENSITIVE = []
|
|
1780
1860
|
include Aws::Structure
|
|
1781
1861
|
end
|
|
1782
1862
|
|
|
@@ -1811,6 +1891,7 @@ module Aws::ManagedBlockchain
|
|
|
1811
1891
|
#
|
|
1812
1892
|
class NodeLogPublishingConfiguration < Struct.new(
|
|
1813
1893
|
:fabric)
|
|
1894
|
+
SENSITIVE = []
|
|
1814
1895
|
include Aws::Structure
|
|
1815
1896
|
end
|
|
1816
1897
|
|
|
@@ -1844,6 +1925,7 @@ module Aws::ManagedBlockchain
|
|
|
1844
1925
|
:creation_date,
|
|
1845
1926
|
:availability_zone,
|
|
1846
1927
|
:instance_type)
|
|
1928
|
+
SENSITIVE = []
|
|
1847
1929
|
include Aws::Structure
|
|
1848
1930
|
end
|
|
1849
1931
|
|
|
@@ -1939,6 +2021,7 @@ module Aws::ManagedBlockchain
|
|
|
1939
2021
|
:yes_vote_count,
|
|
1940
2022
|
:no_vote_count,
|
|
1941
2023
|
:outstanding_vote_count)
|
|
2024
|
+
SENSITIVE = []
|
|
1942
2025
|
include Aws::Structure
|
|
1943
2026
|
end
|
|
1944
2027
|
|
|
@@ -1976,6 +2059,7 @@ module Aws::ManagedBlockchain
|
|
|
1976
2059
|
class ProposalActions < Struct.new(
|
|
1977
2060
|
:invitations,
|
|
1978
2061
|
:removals)
|
|
2062
|
+
SENSITIVE = []
|
|
1979
2063
|
include Aws::Structure
|
|
1980
2064
|
end
|
|
1981
2065
|
|
|
@@ -2043,6 +2127,7 @@ module Aws::ManagedBlockchain
|
|
|
2043
2127
|
:status,
|
|
2044
2128
|
:creation_date,
|
|
2045
2129
|
:expiration_date)
|
|
2130
|
+
SENSITIVE = []
|
|
2046
2131
|
include Aws::Structure
|
|
2047
2132
|
end
|
|
2048
2133
|
|
|
@@ -2061,6 +2146,7 @@ module Aws::ManagedBlockchain
|
|
|
2061
2146
|
#
|
|
2062
2147
|
class RejectInvitationInput < Struct.new(
|
|
2063
2148
|
:invitation_id)
|
|
2149
|
+
SENSITIVE = []
|
|
2064
2150
|
include Aws::Structure
|
|
2065
2151
|
end
|
|
2066
2152
|
|
|
@@ -2087,6 +2173,7 @@ module Aws::ManagedBlockchain
|
|
|
2087
2173
|
#
|
|
2088
2174
|
class RemoveAction < Struct.new(
|
|
2089
2175
|
:member_id)
|
|
2176
|
+
SENSITIVE = []
|
|
2090
2177
|
include Aws::Structure
|
|
2091
2178
|
end
|
|
2092
2179
|
|
|
@@ -2099,6 +2186,7 @@ module Aws::ManagedBlockchain
|
|
|
2099
2186
|
#
|
|
2100
2187
|
class ResourceAlreadyExistsException < Struct.new(
|
|
2101
2188
|
:message)
|
|
2189
|
+
SENSITIVE = []
|
|
2102
2190
|
include Aws::Structure
|
|
2103
2191
|
end
|
|
2104
2192
|
|
|
@@ -2113,6 +2201,7 @@ module Aws::ManagedBlockchain
|
|
|
2113
2201
|
#
|
|
2114
2202
|
class ResourceLimitExceededException < Struct.new(
|
|
2115
2203
|
:message)
|
|
2204
|
+
SENSITIVE = []
|
|
2116
2205
|
include Aws::Structure
|
|
2117
2206
|
end
|
|
2118
2207
|
|
|
@@ -2126,6 +2215,7 @@ module Aws::ManagedBlockchain
|
|
|
2126
2215
|
#
|
|
2127
2216
|
class ResourceNotFoundException < Struct.new(
|
|
2128
2217
|
:message)
|
|
2218
|
+
SENSITIVE = []
|
|
2129
2219
|
include Aws::Structure
|
|
2130
2220
|
end
|
|
2131
2221
|
|
|
@@ -2139,6 +2229,7 @@ module Aws::ManagedBlockchain
|
|
|
2139
2229
|
#
|
|
2140
2230
|
class ResourceNotReadyException < Struct.new(
|
|
2141
2231
|
:message)
|
|
2232
|
+
SENSITIVE = []
|
|
2142
2233
|
include Aws::Structure
|
|
2143
2234
|
end
|
|
2144
2235
|
|
|
@@ -2188,6 +2279,7 @@ module Aws::ManagedBlockchain
|
|
|
2188
2279
|
:network_id,
|
|
2189
2280
|
:member_id,
|
|
2190
2281
|
:log_publishing_configuration)
|
|
2282
|
+
SENSITIVE = []
|
|
2191
2283
|
include Aws::Structure
|
|
2192
2284
|
end
|
|
2193
2285
|
|
|
@@ -2242,6 +2334,7 @@ module Aws::ManagedBlockchain
|
|
|
2242
2334
|
:member_id,
|
|
2243
2335
|
:node_id,
|
|
2244
2336
|
:log_publishing_configuration)
|
|
2337
|
+
SENSITIVE = []
|
|
2245
2338
|
include Aws::Structure
|
|
2246
2339
|
end
|
|
2247
2340
|
|
|
@@ -2282,6 +2375,7 @@ module Aws::ManagedBlockchain
|
|
|
2282
2375
|
:proposal_id,
|
|
2283
2376
|
:voter_member_id,
|
|
2284
2377
|
:vote)
|
|
2378
|
+
SENSITIVE = []
|
|
2285
2379
|
include Aws::Structure
|
|
2286
2380
|
end
|
|
2287
2381
|
|
|
@@ -2309,6 +2403,7 @@ module Aws::ManagedBlockchain
|
|
|
2309
2403
|
:vote,
|
|
2310
2404
|
:member_name,
|
|
2311
2405
|
:member_id)
|
|
2406
|
+
SENSITIVE = []
|
|
2312
2407
|
include Aws::Structure
|
|
2313
2408
|
end
|
|
2314
2409
|
|
|
@@ -2336,6 +2431,7 @@ module Aws::ManagedBlockchain
|
|
|
2336
2431
|
#
|
|
2337
2432
|
class VotingPolicy < Struct.new(
|
|
2338
2433
|
:approval_threshold_policy)
|
|
2434
|
+
SENSITIVE = []
|
|
2339
2435
|
include Aws::Structure
|
|
2340
2436
|
end
|
|
2341
2437
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-managedblockchain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|