aws-sdk-managedblockchain 1.18.0 → 1.19.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.
@@ -36,6 +36,7 @@ module Aws::ManagedBlockchain
|
|
36
36
|
# * {ResourceNotFoundException}
|
37
37
|
# * {ResourceNotReadyException}
|
38
38
|
# * {ThrottlingException}
|
39
|
+
# * {TooManyTagsException}
|
39
40
|
#
|
40
41
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
41
42
|
# if they are not defined above.
|
@@ -141,6 +142,11 @@ module Aws::ManagedBlockchain
|
|
141
142
|
def message
|
142
143
|
@message || @data[:message]
|
143
144
|
end
|
145
|
+
|
146
|
+
# @return [String]
|
147
|
+
def resource_name
|
148
|
+
@data[:resource_name]
|
149
|
+
end
|
144
150
|
end
|
145
151
|
|
146
152
|
class ResourceNotReadyException < ServiceError
|
@@ -168,5 +174,25 @@ module Aws::ManagedBlockchain
|
|
168
174
|
end
|
169
175
|
end
|
170
176
|
|
177
|
+
class TooManyTagsException < ServiceError
|
178
|
+
|
179
|
+
# @param [Seahorse::Client::RequestContext] context
|
180
|
+
# @param [String] message
|
181
|
+
# @param [Aws::ManagedBlockchain::Types::TooManyTagsException] data
|
182
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
183
|
+
super(context, message, data)
|
184
|
+
end
|
185
|
+
|
186
|
+
# @return [String]
|
187
|
+
def message
|
188
|
+
@message || @data[:message]
|
189
|
+
end
|
190
|
+
|
191
|
+
# @return [String]
|
192
|
+
def resource_name
|
193
|
+
@data[:resource_name]
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
171
197
|
end
|
172
198
|
end
|
@@ -99,6 +99,9 @@ module Aws::ManagedBlockchain
|
|
99
99
|
# },
|
100
100
|
# },
|
101
101
|
# },
|
102
|
+
# tags: {
|
103
|
+
# "TagKey" => "TagValue",
|
104
|
+
# },
|
102
105
|
# },
|
103
106
|
# }
|
104
107
|
#
|
@@ -188,6 +191,12 @@ module Aws::ManagedBlockchain
|
|
188
191
|
# },
|
189
192
|
# },
|
190
193
|
# },
|
194
|
+
# tags: {
|
195
|
+
# "TagKey" => "TagValue",
|
196
|
+
# },
|
197
|
+
# },
|
198
|
+
# tags: {
|
199
|
+
# "TagKey" => "TagValue",
|
191
200
|
# },
|
192
201
|
# }
|
193
202
|
#
|
@@ -232,6 +241,25 @@ module Aws::ManagedBlockchain
|
|
232
241
|
# Configuration properties for the first member within the network.
|
233
242
|
# @return [Types::MemberConfiguration]
|
234
243
|
#
|
244
|
+
# @!attribute [rw] tags
|
245
|
+
# Tags to assign to the network. Each tag consists of a key and
|
246
|
+
# optional value.
|
247
|
+
#
|
248
|
+
# When specifying tags during creation, you can specify multiple
|
249
|
+
# key-value pairs in a single request, with an overall maximum of 50
|
250
|
+
# added to each resource.
|
251
|
+
#
|
252
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
253
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
254
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
255
|
+
# Developer Guide*.
|
256
|
+
#
|
257
|
+
#
|
258
|
+
#
|
259
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
260
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
261
|
+
# @return [Hash<String,String>]
|
262
|
+
#
|
235
263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/CreateNetworkInput AWS API Documentation
|
236
264
|
#
|
237
265
|
class CreateNetworkInput < Struct.new(
|
@@ -242,7 +270,8 @@ module Aws::ManagedBlockchain
|
|
242
270
|
:framework_version,
|
243
271
|
:framework_configuration,
|
244
272
|
:voting_policy,
|
245
|
-
:member_configuration
|
273
|
+
:member_configuration,
|
274
|
+
:tags)
|
246
275
|
SENSITIVE = []
|
247
276
|
include Aws::Structure
|
248
277
|
end
|
@@ -290,6 +319,9 @@ module Aws::ManagedBlockchain
|
|
290
319
|
# },
|
291
320
|
# state_db: "LevelDB", # accepts LevelDB, CouchDB
|
292
321
|
# },
|
322
|
+
# tags: {
|
323
|
+
# "TagKey" => "TagValue",
|
324
|
+
# },
|
293
325
|
# }
|
294
326
|
#
|
295
327
|
# @!attribute [rw] client_request_token
|
@@ -325,13 +357,33 @@ module Aws::ManagedBlockchain
|
|
325
357
|
# The properties of a node configuration.
|
326
358
|
# @return [Types::NodeConfiguration]
|
327
359
|
#
|
360
|
+
# @!attribute [rw] tags
|
361
|
+
# Tags to assign to the node. Each tag consists of a key and optional
|
362
|
+
# value.
|
363
|
+
#
|
364
|
+
# When specifying tags during creation, you can specify multiple
|
365
|
+
# key-value pairs in a single request, with an overall maximum of 50
|
366
|
+
# added to each resource.
|
367
|
+
#
|
368
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
369
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
370
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
371
|
+
# Developer Guide*.
|
372
|
+
#
|
373
|
+
#
|
374
|
+
#
|
375
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
376
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
377
|
+
# @return [Hash<String,String>]
|
378
|
+
#
|
328
379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/CreateNodeInput AWS API Documentation
|
329
380
|
#
|
330
381
|
class CreateNodeInput < Struct.new(
|
331
382
|
:client_request_token,
|
332
383
|
:network_id,
|
333
384
|
:member_id,
|
334
|
-
:node_configuration
|
385
|
+
:node_configuration,
|
386
|
+
:tags)
|
335
387
|
SENSITIVE = []
|
336
388
|
include Aws::Structure
|
337
389
|
end
|
@@ -368,6 +420,9 @@ module Aws::ManagedBlockchain
|
|
368
420
|
# ],
|
369
421
|
# },
|
370
422
|
# description: "DescriptionString",
|
423
|
+
# tags: {
|
424
|
+
# "TagKey" => "TagValue",
|
425
|
+
# },
|
371
426
|
# }
|
372
427
|
#
|
373
428
|
# @!attribute [rw] client_request_token
|
@@ -404,6 +459,26 @@ module Aws::ManagedBlockchain
|
|
404
459
|
# for example, "Proposal to add Example Corp. as member."
|
405
460
|
# @return [String]
|
406
461
|
#
|
462
|
+
# @!attribute [rw] tags
|
463
|
+
# Tags to assign to the proposal. Each tag consists of a key and
|
464
|
+
# optional value.
|
465
|
+
#
|
466
|
+
# When specifying tags during creation, you can specify multiple
|
467
|
+
# key-value pairs in a single request, with an overall maximum of 50
|
468
|
+
# added to each resource. If the proposal is for a network invitation,
|
469
|
+
# the invitation inherits the tags added to the proposal.
|
470
|
+
#
|
471
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
472
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
473
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
474
|
+
# Developer Guide*.
|
475
|
+
#
|
476
|
+
#
|
477
|
+
#
|
478
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
479
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
480
|
+
# @return [Hash<String,String>]
|
481
|
+
#
|
407
482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/CreateProposalInput AWS API Documentation
|
408
483
|
#
|
409
484
|
class CreateProposalInput < Struct.new(
|
@@ -411,7 +486,8 @@ module Aws::ManagedBlockchain
|
|
411
486
|
:network_id,
|
412
487
|
:member_id,
|
413
488
|
:actions,
|
414
|
-
:description
|
489
|
+
:description,
|
490
|
+
:tags)
|
415
491
|
SENSITIVE = []
|
416
492
|
include Aws::Structure
|
417
493
|
end
|
@@ -730,6 +806,16 @@ module Aws::ManagedBlockchain
|
|
730
806
|
# A summary of network configuration properties.
|
731
807
|
# @return [Types::NetworkSummary]
|
732
808
|
#
|
809
|
+
# @!attribute [rw] arn
|
810
|
+
# The Amazon Resource Name (ARN) of the invitation. For more
|
811
|
+
# information about ARNs and their format, see [Amazon Resource Names
|
812
|
+
# (ARNs)][1] in the *AWS General Reference*.
|
813
|
+
#
|
814
|
+
#
|
815
|
+
#
|
816
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
817
|
+
# @return [String]
|
818
|
+
#
|
733
819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Invitation AWS API Documentation
|
734
820
|
#
|
735
821
|
class Invitation < Struct.new(
|
@@ -737,7 +823,8 @@ module Aws::ManagedBlockchain
|
|
737
823
|
:creation_date,
|
738
824
|
:expiration_date,
|
739
825
|
:status,
|
740
|
-
:network_summary
|
826
|
+
:network_summary,
|
827
|
+
:arn)
|
741
828
|
SENSITIVE = []
|
742
829
|
include Aws::Structure
|
743
830
|
end
|
@@ -1124,6 +1211,43 @@ module Aws::ManagedBlockchain
|
|
1124
1211
|
include Aws::Structure
|
1125
1212
|
end
|
1126
1213
|
|
1214
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1215
|
+
# data as a hash:
|
1216
|
+
#
|
1217
|
+
# {
|
1218
|
+
# resource_arn: "ArnString", # required
|
1219
|
+
# }
|
1220
|
+
#
|
1221
|
+
# @!attribute [rw] resource_arn
|
1222
|
+
# The Amazon Resource Name (ARN) of the resource. For more information
|
1223
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
1224
|
+
# in the *AWS General Reference*.
|
1225
|
+
#
|
1226
|
+
#
|
1227
|
+
#
|
1228
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1229
|
+
# @return [String]
|
1230
|
+
#
|
1231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ListTagsForResourceRequest AWS API Documentation
|
1232
|
+
#
|
1233
|
+
class ListTagsForResourceRequest < Struct.new(
|
1234
|
+
:resource_arn)
|
1235
|
+
SENSITIVE = []
|
1236
|
+
include Aws::Structure
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
# @!attribute [rw] tags
|
1240
|
+
# The tags assigned to the resource.
|
1241
|
+
# @return [Hash<String,String>]
|
1242
|
+
#
|
1243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ListTagsForResourceResponse AWS API Documentation
|
1244
|
+
#
|
1245
|
+
class ListTagsForResourceResponse < Struct.new(
|
1246
|
+
:tags)
|
1247
|
+
SENSITIVE = []
|
1248
|
+
include Aws::Structure
|
1249
|
+
end
|
1250
|
+
|
1127
1251
|
# A configuration for logging events.
|
1128
1252
|
#
|
1129
1253
|
# @note When making an API call, you may pass LogConfiguration
|
@@ -1225,6 +1349,27 @@ module Aws::ManagedBlockchain
|
|
1225
1349
|
# The date and time that the member was created.
|
1226
1350
|
# @return [Time]
|
1227
1351
|
#
|
1352
|
+
# @!attribute [rw] tags
|
1353
|
+
# Tags assigned to the member. Tags consist of a key and optional
|
1354
|
+
# value. For more information about tags, see [Tagging Resources][1]
|
1355
|
+
# in the *Amazon Managed Blockchain Hyperledger Fabric Developer
|
1356
|
+
# Guide*.
|
1357
|
+
#
|
1358
|
+
#
|
1359
|
+
#
|
1360
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
1361
|
+
# @return [Hash<String,String>]
|
1362
|
+
#
|
1363
|
+
# @!attribute [rw] arn
|
1364
|
+
# The Amazon Resource Name (ARN) of the member. For more information
|
1365
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
1366
|
+
# in the *AWS General Reference*.
|
1367
|
+
#
|
1368
|
+
#
|
1369
|
+
#
|
1370
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1371
|
+
# @return [String]
|
1372
|
+
#
|
1228
1373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Member AWS API Documentation
|
1229
1374
|
#
|
1230
1375
|
class Member < Struct.new(
|
@@ -1235,7 +1380,9 @@ module Aws::ManagedBlockchain
|
|
1235
1380
|
:framework_attributes,
|
1236
1381
|
:log_publishing_configuration,
|
1237
1382
|
:status,
|
1238
|
-
:creation_date
|
1383
|
+
:creation_date,
|
1384
|
+
:tags,
|
1385
|
+
:arn)
|
1239
1386
|
SENSITIVE = []
|
1240
1387
|
include Aws::Structure
|
1241
1388
|
end
|
@@ -1265,6 +1412,9 @@ module Aws::ManagedBlockchain
|
|
1265
1412
|
# },
|
1266
1413
|
# },
|
1267
1414
|
# },
|
1415
|
+
# tags: {
|
1416
|
+
# "TagKey" => "TagValue",
|
1417
|
+
# },
|
1268
1418
|
# }
|
1269
1419
|
#
|
1270
1420
|
# @!attribute [rw] name
|
@@ -1285,13 +1435,29 @@ module Aws::ManagedBlockchain
|
|
1285
1435
|
# of a Managed Blockchain network.
|
1286
1436
|
# @return [Types::MemberLogPublishingConfiguration]
|
1287
1437
|
#
|
1438
|
+
# @!attribute [rw] tags
|
1439
|
+
# Tags assigned to the member. Tags consist of a key and optional
|
1440
|
+
# value. For more information about tags, see [Tagging Resources][1]
|
1441
|
+
# in the *Amazon Managed Blockchain Hyperledger Fabric Developer
|
1442
|
+
# Guide*.
|
1443
|
+
#
|
1444
|
+
# When specifying tags during creation, you can specify multiple
|
1445
|
+
# key-value pairs in a single request, with an overall maximum of 50
|
1446
|
+
# added to each resource.
|
1447
|
+
#
|
1448
|
+
#
|
1449
|
+
#
|
1450
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
1451
|
+
# @return [Hash<String,String>]
|
1452
|
+
#
|
1288
1453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberConfiguration AWS API Documentation
|
1289
1454
|
#
|
1290
1455
|
class MemberConfiguration < Struct.new(
|
1291
1456
|
:name,
|
1292
1457
|
:description,
|
1293
1458
|
:framework_configuration,
|
1294
|
-
:log_publishing_configuration
|
1459
|
+
:log_publishing_configuration,
|
1460
|
+
:tags)
|
1295
1461
|
SENSITIVE = []
|
1296
1462
|
include Aws::Structure
|
1297
1463
|
end
|
@@ -1499,6 +1665,16 @@ module Aws::ManagedBlockchain
|
|
1499
1665
|
# different AWS account.
|
1500
1666
|
# @return [Boolean]
|
1501
1667
|
#
|
1668
|
+
# @!attribute [rw] arn
|
1669
|
+
# The Amazon Resource Name (ARN) of the member. For more information
|
1670
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
1671
|
+
# in the *AWS General Reference*.
|
1672
|
+
#
|
1673
|
+
#
|
1674
|
+
#
|
1675
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1676
|
+
# @return [String]
|
1677
|
+
#
|
1502
1678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberSummary AWS API Documentation
|
1503
1679
|
#
|
1504
1680
|
class MemberSummary < Struct.new(
|
@@ -1507,7 +1683,8 @@ module Aws::ManagedBlockchain
|
|
1507
1683
|
:description,
|
1508
1684
|
:status,
|
1509
1685
|
:creation_date,
|
1510
|
-
:is_owned
|
1686
|
+
:is_owned,
|
1687
|
+
:arn)
|
1511
1688
|
SENSITIVE = []
|
1512
1689
|
include Aws::Structure
|
1513
1690
|
end
|
@@ -1557,6 +1734,31 @@ module Aws::ManagedBlockchain
|
|
1557
1734
|
# The date and time that the network was created.
|
1558
1735
|
# @return [Time]
|
1559
1736
|
#
|
1737
|
+
# @!attribute [rw] tags
|
1738
|
+
# Tags assigned to the network. Each tag consists of a key and
|
1739
|
+
# optional value.
|
1740
|
+
#
|
1741
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
1742
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
1743
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
1744
|
+
# Developer Guide*.
|
1745
|
+
#
|
1746
|
+
#
|
1747
|
+
#
|
1748
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
1749
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
1750
|
+
# @return [Hash<String,String>]
|
1751
|
+
#
|
1752
|
+
# @!attribute [rw] arn
|
1753
|
+
# The Amazon Resource Name (ARN) of the network. For more information
|
1754
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
1755
|
+
# in the *AWS General Reference*.
|
1756
|
+
#
|
1757
|
+
#
|
1758
|
+
#
|
1759
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1760
|
+
# @return [String]
|
1761
|
+
#
|
1560
1762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Network AWS API Documentation
|
1561
1763
|
#
|
1562
1764
|
class Network < Struct.new(
|
@@ -1569,12 +1771,15 @@ module Aws::ManagedBlockchain
|
|
1569
1771
|
:vpc_endpoint_service_name,
|
1570
1772
|
:voting_policy,
|
1571
1773
|
:status,
|
1572
|
-
:creation_date
|
1774
|
+
:creation_date,
|
1775
|
+
:tags,
|
1776
|
+
:arn)
|
1573
1777
|
SENSITIVE = []
|
1574
1778
|
include Aws::Structure
|
1575
1779
|
end
|
1576
1780
|
|
1577
|
-
# Attributes of Ethereum for a network.
|
1781
|
+
# Attributes of Ethereum for a network. Ethereum on Managed Blockchain
|
1782
|
+
# is in preview release and is subject to change.
|
1578
1783
|
#
|
1579
1784
|
# @!attribute [rw] chain_id
|
1580
1785
|
# The Ethereum `CHAIN_ID` associated with the Ethereum network. Chain
|
@@ -1656,7 +1861,8 @@ module Aws::ManagedBlockchain
|
|
1656
1861
|
#
|
1657
1862
|
# @!attribute [rw] ethereum
|
1658
1863
|
# Attributes of an Ethereum network for Managed Blockchain resources
|
1659
|
-
# participating in an Ethereum network.
|
1864
|
+
# participating in an Ethereum network. Ethereum on Managed Blockchain
|
1865
|
+
# is in preview release and is subject to change.
|
1660
1866
|
# @return [Types::NetworkEthereumAttributes]
|
1661
1867
|
#
|
1662
1868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NetworkFrameworkAttributes AWS API Documentation
|
@@ -1723,6 +1929,16 @@ module Aws::ManagedBlockchain
|
|
1723
1929
|
# The date and time that the network was created.
|
1724
1930
|
# @return [Time]
|
1725
1931
|
#
|
1932
|
+
# @!attribute [rw] arn
|
1933
|
+
# The Amazon Resource Name (ARN) of the network. For more information
|
1934
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
1935
|
+
# in the *AWS General Reference*.
|
1936
|
+
#
|
1937
|
+
#
|
1938
|
+
#
|
1939
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1940
|
+
# @return [String]
|
1941
|
+
#
|
1726
1942
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NetworkSummary AWS API Documentation
|
1727
1943
|
#
|
1728
1944
|
class NetworkSummary < Struct.new(
|
@@ -1732,7 +1948,8 @@ module Aws::ManagedBlockchain
|
|
1732
1948
|
:framework,
|
1733
1949
|
:framework_version,
|
1734
1950
|
:status,
|
1735
|
-
:creation_date
|
1951
|
+
:creation_date,
|
1952
|
+
:arn)
|
1736
1953
|
SENSITIVE = []
|
1737
1954
|
include Aws::Structure
|
1738
1955
|
end
|
@@ -1758,7 +1975,9 @@ module Aws::ManagedBlockchain
|
|
1758
1975
|
# @return [String]
|
1759
1976
|
#
|
1760
1977
|
# @!attribute [rw] availability_zone
|
1761
|
-
# The Availability Zone in which the node exists.
|
1978
|
+
# The Availability Zone in which the node exists. Required for
|
1979
|
+
# Ethereum nodes. Ethereum on Managed Blockchain is in preview release
|
1980
|
+
# and is subject to change.
|
1762
1981
|
# @return [String]
|
1763
1982
|
#
|
1764
1983
|
# @!attribute [rw] framework_attributes
|
@@ -1785,6 +2004,31 @@ module Aws::ManagedBlockchain
|
|
1785
2004
|
# The date and time that the node was created.
|
1786
2005
|
# @return [Time]
|
1787
2006
|
#
|
2007
|
+
# @!attribute [rw] tags
|
2008
|
+
# Tags assigned to the node. Each tag consists of a key and optional
|
2009
|
+
# value.
|
2010
|
+
#
|
2011
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
2012
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
2013
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
2014
|
+
# Developer Guide*.
|
2015
|
+
#
|
2016
|
+
#
|
2017
|
+
#
|
2018
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
2019
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
2020
|
+
# @return [Hash<String,String>]
|
2021
|
+
#
|
2022
|
+
# @!attribute [rw] arn
|
2023
|
+
# The Amazon Resource Name (ARN) of the node. For more information
|
2024
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2025
|
+
# in the *AWS General Reference*.
|
2026
|
+
#
|
2027
|
+
#
|
2028
|
+
#
|
2029
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2030
|
+
# @return [String]
|
2031
|
+
#
|
1788
2032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Node AWS API Documentation
|
1789
2033
|
#
|
1790
2034
|
class Node < Struct.new(
|
@@ -1797,7 +2041,9 @@ module Aws::ManagedBlockchain
|
|
1797
2041
|
:log_publishing_configuration,
|
1798
2042
|
:state_db,
|
1799
2043
|
:status,
|
1800
|
-
:creation_date
|
2044
|
+
:creation_date,
|
2045
|
+
:tags,
|
2046
|
+
:arn)
|
1801
2047
|
SENSITIVE = []
|
1802
2048
|
include Aws::Structure
|
1803
2049
|
end
|
@@ -1832,7 +2078,9 @@ module Aws::ManagedBlockchain
|
|
1832
2078
|
# @return [String]
|
1833
2079
|
#
|
1834
2080
|
# @!attribute [rw] availability_zone
|
1835
|
-
# The Availability Zone in which the node exists.
|
2081
|
+
# The Availability Zone in which the node exists. Required for
|
2082
|
+
# Ethereum nodes. Ethereum on Managed Blockchain is in preview release
|
2083
|
+
# and is subject to change.
|
1836
2084
|
# @return [String]
|
1837
2085
|
#
|
1838
2086
|
# @!attribute [rw] log_publishing_configuration
|
@@ -1859,7 +2107,8 @@ module Aws::ManagedBlockchain
|
|
1859
2107
|
include Aws::Structure
|
1860
2108
|
end
|
1861
2109
|
|
1862
|
-
# Attributes of an Ethereum node.
|
2110
|
+
# Attributes of an Ethereum node. Ethereum on Managed Blockchain is in
|
2111
|
+
# preview release and is subject to change.
|
1863
2112
|
#
|
1864
2113
|
# @!attribute [rw] http_endpoint
|
1865
2114
|
# The endpoint on which the Ethereum node listens to run Ethereum
|
@@ -1970,7 +2219,8 @@ module Aws::ManagedBlockchain
|
|
1970
2219
|
#
|
1971
2220
|
# @!attribute [rw] ethereum
|
1972
2221
|
# Attributes of Ethereum for a node on a Managed Blockchain network
|
1973
|
-
# that uses Ethereum.
|
2222
|
+
# that uses Ethereum. Ethereum on Managed Blockchain is in preview
|
2223
|
+
# release and is subject to change.
|
1974
2224
|
# @return [Types::NodeEthereumAttributes]
|
1975
2225
|
#
|
1976
2226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NodeFrameworkAttributes AWS API Documentation
|
@@ -2039,6 +2289,16 @@ module Aws::ManagedBlockchain
|
|
2039
2289
|
# The EC2 instance type for the node.
|
2040
2290
|
# @return [String]
|
2041
2291
|
#
|
2292
|
+
# @!attribute [rw] arn
|
2293
|
+
# The Amazon Resource Name (ARN) of the node. For more information
|
2294
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2295
|
+
# in the *AWS General Reference*.
|
2296
|
+
#
|
2297
|
+
#
|
2298
|
+
#
|
2299
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2300
|
+
# @return [String]
|
2301
|
+
#
|
2042
2302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NodeSummary AWS API Documentation
|
2043
2303
|
#
|
2044
2304
|
class NodeSummary < Struct.new(
|
@@ -2046,7 +2306,8 @@ module Aws::ManagedBlockchain
|
|
2046
2306
|
:status,
|
2047
2307
|
:creation_date,
|
2048
2308
|
:availability_zone,
|
2049
|
-
:instance_type
|
2309
|
+
:instance_type,
|
2310
|
+
:arn)
|
2050
2311
|
SENSITIVE = []
|
2051
2312
|
include Aws::Structure
|
2052
2313
|
end
|
@@ -2130,6 +2391,31 @@ module Aws::ManagedBlockchain
|
|
2130
2391
|
# and `NO` votes.
|
2131
2392
|
# @return [Integer]
|
2132
2393
|
#
|
2394
|
+
# @!attribute [rw] tags
|
2395
|
+
# Tags assigned to the proposal. Each tag consists of a key and
|
2396
|
+
# optional value.
|
2397
|
+
#
|
2398
|
+
# For more information about tags, see [Tagging Resources][1] in the
|
2399
|
+
# *Amazon Managed Blockchain Ethereum Developer Guide*, or [Tagging
|
2400
|
+
# Resources][2] in the *Amazon Managed Blockchain Hyperledger Fabric
|
2401
|
+
# Developer Guide*.
|
2402
|
+
#
|
2403
|
+
#
|
2404
|
+
#
|
2405
|
+
# [1]: https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html
|
2406
|
+
# [2]: https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html
|
2407
|
+
# @return [Hash<String,String>]
|
2408
|
+
#
|
2409
|
+
# @!attribute [rw] arn
|
2410
|
+
# The Amazon Resource Name (ARN) of the proposal. For more information
|
2411
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2412
|
+
# in the *AWS General Reference*.
|
2413
|
+
#
|
2414
|
+
#
|
2415
|
+
#
|
2416
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2417
|
+
# @return [String]
|
2418
|
+
#
|
2133
2419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/Proposal AWS API Documentation
|
2134
2420
|
#
|
2135
2421
|
class Proposal < Struct.new(
|
@@ -2144,7 +2430,9 @@ module Aws::ManagedBlockchain
|
|
2144
2430
|
:expiration_date,
|
2145
2431
|
:yes_vote_count,
|
2146
2432
|
:no_vote_count,
|
2147
|
-
:outstanding_vote_count
|
2433
|
+
:outstanding_vote_count,
|
2434
|
+
:tags,
|
2435
|
+
:arn)
|
2148
2436
|
SENSITIVE = []
|
2149
2437
|
include Aws::Structure
|
2150
2438
|
end
|
@@ -2245,6 +2533,16 @@ module Aws::ManagedBlockchain
|
|
2245
2533
|
# `Actions` are not carried out.
|
2246
2534
|
# @return [Time]
|
2247
2535
|
#
|
2536
|
+
# @!attribute [rw] arn
|
2537
|
+
# The Amazon Resource Name (ARN) of the proposal. For more information
|
2538
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2539
|
+
# in the *AWS General Reference*.
|
2540
|
+
#
|
2541
|
+
#
|
2542
|
+
#
|
2543
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2544
|
+
# @return [String]
|
2545
|
+
#
|
2248
2546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ProposalSummary AWS API Documentation
|
2249
2547
|
#
|
2250
2548
|
class ProposalSummary < Struct.new(
|
@@ -2254,7 +2552,8 @@ module Aws::ManagedBlockchain
|
|
2254
2552
|
:proposed_by_member_name,
|
2255
2553
|
:status,
|
2256
2554
|
:creation_date,
|
2257
|
-
:expiration_date
|
2555
|
+
:expiration_date,
|
2556
|
+
:arn)
|
2258
2557
|
SENSITIVE = []
|
2259
2558
|
include Aws::Structure
|
2260
2559
|
end
|
@@ -2335,16 +2634,22 @@ module Aws::ManagedBlockchain
|
|
2335
2634
|
include Aws::Structure
|
2336
2635
|
end
|
2337
2636
|
|
2338
|
-
# A requested resource does not exist
|
2339
|
-
#
|
2637
|
+
# A requested resource does not exist. It may have been deleted or
|
2638
|
+
# referenced inaccurately.
|
2340
2639
|
#
|
2341
2640
|
# @!attribute [rw] message
|
2342
2641
|
# @return [String]
|
2343
2642
|
#
|
2643
|
+
# @!attribute [rw] resource_name
|
2644
|
+
# A requested resource does not exist. It may have been deleted or
|
2645
|
+
# referenced inaccurately.
|
2646
|
+
# @return [String]
|
2647
|
+
#
|
2344
2648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ResourceNotFoundException AWS API Documentation
|
2345
2649
|
#
|
2346
2650
|
class ResourceNotFoundException < Struct.new(
|
2347
|
-
:message
|
2651
|
+
:message,
|
2652
|
+
:resource_name)
|
2348
2653
|
SENSITIVE = []
|
2349
2654
|
include Aws::Structure
|
2350
2655
|
end
|
@@ -2363,6 +2668,46 @@ module Aws::ManagedBlockchain
|
|
2363
2668
|
include Aws::Structure
|
2364
2669
|
end
|
2365
2670
|
|
2671
|
+
# @note When making an API call, you may pass TagResourceRequest
|
2672
|
+
# data as a hash:
|
2673
|
+
#
|
2674
|
+
# {
|
2675
|
+
# resource_arn: "ArnString", # required
|
2676
|
+
# tags: { # required
|
2677
|
+
# "TagKey" => "TagValue",
|
2678
|
+
# },
|
2679
|
+
# }
|
2680
|
+
#
|
2681
|
+
# @!attribute [rw] resource_arn
|
2682
|
+
# The Amazon Resource Name (ARN) of the resource. For more information
|
2683
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2684
|
+
# in the *AWS General Reference*.
|
2685
|
+
#
|
2686
|
+
#
|
2687
|
+
#
|
2688
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2689
|
+
# @return [String]
|
2690
|
+
#
|
2691
|
+
# @!attribute [rw] tags
|
2692
|
+
# The tags to assign to the specified resource. Tag values can be
|
2693
|
+
# empty, for example, `"MyTagKey" : ""`. You can specify multiple
|
2694
|
+
# key-value pairs in a single request, with an overall maximum of 50
|
2695
|
+
# added to each resource.
|
2696
|
+
# @return [Hash<String,String>]
|
2697
|
+
#
|
2698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/TagResourceRequest AWS API Documentation
|
2699
|
+
#
|
2700
|
+
class TagResourceRequest < Struct.new(
|
2701
|
+
:resource_arn,
|
2702
|
+
:tags)
|
2703
|
+
SENSITIVE = []
|
2704
|
+
include Aws::Structure
|
2705
|
+
end
|
2706
|
+
|
2707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/TagResourceResponse AWS API Documentation
|
2708
|
+
#
|
2709
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
2710
|
+
|
2366
2711
|
# The request or operation could not be performed because a service is
|
2367
2712
|
# throttling requests. The most common source of throttling errors is
|
2368
2713
|
# launching EC2 instances such that your service limit for EC2 instances
|
@@ -2373,6 +2718,56 @@ module Aws::ManagedBlockchain
|
|
2373
2718
|
#
|
2374
2719
|
class ThrottlingException < Aws::EmptyStructure; end
|
2375
2720
|
|
2721
|
+
# @!attribute [rw] message
|
2722
|
+
# @return [String]
|
2723
|
+
#
|
2724
|
+
# @!attribute [rw] resource_name
|
2725
|
+
# @return [String]
|
2726
|
+
#
|
2727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/TooManyTagsException AWS API Documentation
|
2728
|
+
#
|
2729
|
+
class TooManyTagsException < Struct.new(
|
2730
|
+
:message,
|
2731
|
+
:resource_name)
|
2732
|
+
SENSITIVE = []
|
2733
|
+
include Aws::Structure
|
2734
|
+
end
|
2735
|
+
|
2736
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
2737
|
+
# data as a hash:
|
2738
|
+
#
|
2739
|
+
# {
|
2740
|
+
# resource_arn: "ArnString", # required
|
2741
|
+
# tag_keys: ["TagKey"], # required
|
2742
|
+
# }
|
2743
|
+
#
|
2744
|
+
# @!attribute [rw] resource_arn
|
2745
|
+
# The Amazon Resource Name (ARN) of the resource. For more information
|
2746
|
+
# about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
|
2747
|
+
# in the *AWS General Reference*.
|
2748
|
+
#
|
2749
|
+
#
|
2750
|
+
#
|
2751
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2752
|
+
# @return [String]
|
2753
|
+
#
|
2754
|
+
# @!attribute [rw] tag_keys
|
2755
|
+
# The tag keys.
|
2756
|
+
# @return [Array<String>]
|
2757
|
+
#
|
2758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/UntagResourceRequest AWS API Documentation
|
2759
|
+
#
|
2760
|
+
class UntagResourceRequest < Struct.new(
|
2761
|
+
:resource_arn,
|
2762
|
+
:tag_keys)
|
2763
|
+
SENSITIVE = []
|
2764
|
+
include Aws::Structure
|
2765
|
+
end
|
2766
|
+
|
2767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/UntagResourceResponse AWS API Documentation
|
2768
|
+
#
|
2769
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
2770
|
+
|
2376
2771
|
# @note When making an API call, you may pass UpdateMemberInput
|
2377
2772
|
# data as a hash:
|
2378
2773
|
#
|