aws-sdk-managedblockchain 1.50.0 → 1.52.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f468a682bec866d3ac369cf2dcdfcb61a35a0886c11183f8de9e9e78832269a1
4
- data.tar.gz: 3a7e15a9e15ddb6521cd53bcd201166c2cccfb00e548098c2b14f884bd113175
3
+ metadata.gz: c6f957d124ab6ad0410503c0bb29186269f53041f1fbd8f75f0e2dfc92fa6199
4
+ data.tar.gz: d6905d597ef36239b4670053692274855254d445693bd5886ba700ea3836a500
5
5
  SHA512:
6
- metadata.gz: 00a247541bb9e3bea101cadd6c6017a34bc64b7a88562d59451e6c202a83a5b65b845589cd19962040ef3165b063dd8b5684a8d8d7c4a0456154a73f111a53df
7
- data.tar.gz: 2ae5d323c9f5078ad5b67fce04aca0e43b7d30d219e1abbb4f24b42617a0b9abb903bfd44509a84c7260851558decc147a3e043e515262c50a72db4440ff22ff
6
+ metadata.gz: 0c466f8112ce47bc9585fdb71e3d85444afb35c5e685be7f92082afa4b523561d47f62669b9afdb4852d4d752b15aeb7b48f5664bcfd013cd4aa91b9cf40ce2e
7
+ data.tar.gz: a7793f91d4ca021f05a619d6ed06ab9b144a1faf7d75f3ef0c2015d7fd02b9d009d2ffa397f4bddd90ed2e5bced2aeb67aa39f2549c1ec60154dea2448f5dce6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2024-05-24)
5
+ ------------------
6
+
7
+ * Feature - This is a minor documentation update to address the impact of the shut down of the Goerli and Polygon networks.
8
+
9
+ 1.51.0 (2024-05-13)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.50.0 (2024-04-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -301,8 +301,9 @@ module Aws::ManagedBlockchain
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -453,17 +454,21 @@ module Aws::ManagedBlockchain
453
454
  # @option params [String] :network_type
454
455
  # The blockchain network that the `Accessor` token is created for.
455
456
  #
456
- # <note markdown="1"> We recommend using the appropriate `networkType` value for the
457
- # blockchain network that you are creating the `Accessor` token for. You
458
- # cannnot use the value `ETHEREUM_MAINNET_AND_GOERLI` to specify a
459
- # `networkType` for your Accessor token.
457
+ # <note markdown="1"> * Use the actual `networkType` value for the blockchain network that
458
+ # you are creating the `Accessor` token for.
460
459
  #
461
- # The default value of `ETHEREUM_MAINNET_AND_GOERLI` is only applied:
460
+ # * With the shut down of the *Ethereum Goerli* and *Polygon Mumbai
461
+ # Testnet* networks the following `networkType` values are no longer
462
+ # available for selection and use.
462
463
  #
463
- # * when the `CreateAccessor` action does not set a `networkType`.
464
+ # * `ETHEREUM_MAINNET_AND_GOERLI`
464
465
  #
465
- # * to all existing `Accessor` tokens that were created before the
466
- # `networkType` property was introduced.
466
+ # * `ETHEREUM_GOERLI`
467
+ #
468
+ # * `POLYGON_MUMBAI`
469
+ #
470
+ # However, your existing `Accessor` tokens with these `networkType`
471
+ # values will remain unchanged.
467
472
  #
468
473
  # </note>
469
474
  #
@@ -713,7 +718,7 @@ module Aws::ManagedBlockchain
713
718
  #
714
719
  # * `n-ethereum-mainnet`
715
720
  #
716
- # * `n-ethereum-goerli`
721
+ # ^
717
722
  #
718
723
  # @option params [String] :member_id
719
724
  # The unique identifier of the member that owns this node.
@@ -957,7 +962,7 @@ module Aws::ManagedBlockchain
957
962
  #
958
963
  # * `n-ethereum-mainnet`
959
964
  #
960
- # * `n-ethereum-goerli`
965
+ # ^
961
966
  #
962
967
  # @option params [String] :member_id
963
968
  # The unique identifier of the member that owns this node.
@@ -1942,7 +1947,7 @@ module Aws::ManagedBlockchain
1942
1947
  params: params,
1943
1948
  config: config)
1944
1949
  context[:gem_name] = 'aws-sdk-managedblockchain'
1945
- context[:gem_version] = '1.50.0'
1950
+ context[:gem_version] = '1.52.0'
1946
1951
  Seahorse::Client::Request.new(handlers, context)
1947
1952
  end
1948
1953
 
@@ -680,6 +680,7 @@ module Aws::ManagedBlockchain
680
680
  "endpointPrefix" => "managedblockchain",
681
681
  "jsonVersion" => "1.1",
682
682
  "protocol" => "rest-json",
683
+ "protocols" => ["rest-json"],
683
684
  "serviceAbbreviation" => "ManagedBlockchain",
684
685
  "serviceFullName" => "Amazon Managed Blockchain",
685
686
  "serviceId" => "ManagedBlockchain",
@@ -226,17 +226,21 @@ module Aws::ManagedBlockchain
226
226
  # @!attribute [rw] network_type
227
227
  # The blockchain network that the `Accessor` token is created for.
228
228
  #
229
- # <note markdown="1"> We recommend using the appropriate `networkType` value for the
230
- # blockchain network that you are creating the `Accessor` token for.
231
- # You cannnot use the value `ETHEREUM_MAINNET_AND_GOERLI` to specify a
232
- # `networkType` for your Accessor token.
229
+ # <note markdown="1"> * Use the actual `networkType` value for the blockchain network that
230
+ # you are creating the `Accessor` token for.
233
231
  #
234
- # The default value of `ETHEREUM_MAINNET_AND_GOERLI` is only applied:
232
+ # * With the shut down of the *Ethereum Goerli* and *Polygon Mumbai
233
+ # Testnet* networks the following `networkType` values are no longer
234
+ # available for selection and use.
235
235
  #
236
- # * when the `CreateAccessor` action does not set a `networkType`.
236
+ # * `ETHEREUM_MAINNET_AND_GOERLI`
237
237
  #
238
- # * to all existing `Accessor` tokens that were created before the
239
- # `networkType` property was introduced.
238
+ # * `ETHEREUM_GOERLI`
239
+ #
240
+ # * `POLYGON_MUMBAI`
241
+ #
242
+ # However, your existing `Accessor` tokens with these `networkType`
243
+ # values will remain unchanged.
240
244
  #
241
245
  # </note>
242
246
  # @return [String]
@@ -434,7 +438,7 @@ module Aws::ManagedBlockchain
434
438
  #
435
439
  # * `n-ethereum-mainnet`
436
440
  #
437
- # * `n-ethereum-goerli`
441
+ # ^
438
442
  # @return [String]
439
443
  #
440
444
  # @!attribute [rw] member_id
@@ -611,7 +615,7 @@ module Aws::ManagedBlockchain
611
615
  #
612
616
  # * `n-ethereum-mainnet`
613
617
  #
614
- # * `n-ethereum-goerli`
618
+ # ^
615
619
  # @return [String]
616
620
  #
617
621
  # @!attribute [rw] member_id
@@ -1808,7 +1812,7 @@ module Aws::ManagedBlockchain
1808
1812
  #
1809
1813
  # * mainnet = `1`
1810
1814
  #
1811
- # * goerli = `5`
1815
+ # ^
1812
1816
  # @return [String]
1813
1817
  #
1814
1818
  # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/NetworkEthereumAttributes AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-managedblockchain/customizations'
52
52
  # @!group service
53
53
  module Aws::ManagedBlockchain
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end
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.50.0
4
+ version: 1.52.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: 2024-04-25 00:00:00.000000000 Z
11
+ date: 2024-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core