aws-sdk-managedblockchain 1.84.0 → 1.86.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eac4e9b39477e3eb8f53fd6a2dab0a245d9a1afcedffaa0baeda393356dbd611
4
- data.tar.gz: ce57d185fd75b35750f0cb01aed7444689eb4792c0066b19dbe5c6b21d2b24c4
3
+ metadata.gz: 27644e1167d5239496198f04eed46849622c1a5fd62ca4bacb8141f609fd582c
4
+ data.tar.gz: 231896365d5a7572d6f2d1ce1f834b18e5fae27daf10a0de1399061f8b6dfb57
5
5
  SHA512:
6
- metadata.gz: 142dbc9665dac150dac4fc17fec9d69bc18c2fbdfec78fe03e93a65ae667f4a7626f16c184368acd9a3fc0b3ead04a82b9305539f387a589376c836b5569ee0b
7
- data.tar.gz: 390b8a78bd52a3faf3eabcffac92d3ead5a1dd3ff901c017566908bd5b2a12ad118cea9764f470433de8d11eeffd2d87dba7bd0652e599a436e638af536e6f0e
6
+ metadata.gz: 33b5640600f87e1945e2814206e1170c754a707e9478daa0d93face2fdb78f809b70f838ec6d9f132f45e4420cb2513ad02cda901362cb293074eca2b1d724fa
7
+ data.tar.gz: 7f88aa019d2f663149b4d898247ec685c18df522a1318595b62f158c727cf9d87ba95c4d6e6727f99281168e7144f3c6dc428fa1551774d0d57290b718940361
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.85.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.84.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.86.0
@@ -199,7 +199,7 @@ module Aws::ManagedBlockchain
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::ManagedBlockchain
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -2014,7 +2012,7 @@ module Aws::ManagedBlockchain
2014
2012
  tracer: tracer
2015
2013
  )
2016
2014
  context[:gem_name] = 'aws-sdk-managedblockchain'
2017
- context[:gem_version] = '1.84.0'
2015
+ context[:gem_version] = '1.86.0'
2018
2016
  Seahorse::Client::Request.new(handlers, context)
2019
2017
  end
2020
2018
 
@@ -54,7 +54,7 @@ module Aws::ManagedBlockchain
54
54
  autoload :EndpointProvider, 'aws-sdk-managedblockchain/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-managedblockchain/endpoints'
56
56
 
57
- GEM_VERSION = '1.84.0'
57
+ GEM_VERSION = '1.86.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -102,27 +102,7 @@ module Aws
102
102
  client_request_token: ::String,
103
103
  invitation_id: ::String,
104
104
  network_id: ::String,
105
- member_configuration: {
106
- name: ::String,
107
- description: ::String?,
108
- framework_configuration: {
109
- fabric: {
110
- admin_username: ::String,
111
- admin_password: ::String
112
- }?
113
- },
114
- log_publishing_configuration: {
115
- fabric: {
116
- ca_logs: {
117
- cloudwatch: {
118
- enabled: bool?
119
- }?
120
- }?
121
- }?
122
- }?,
123
- tags: Hash[::String, ::String]?,
124
- kms_key_arn: ::String?
125
- }
105
+ member_configuration: Params::member_configuration
126
106
  ) -> _CreateMemberResponseSuccess
127
107
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemberResponseSuccess
128
108
 
@@ -150,27 +130,7 @@ module Aws
150
130
  threshold_comparator: ("GREATER_THAN" | "GREATER_THAN_OR_EQUAL_TO")?
151
131
  }?
152
132
  },
153
- member_configuration: {
154
- name: ::String,
155
- description: ::String?,
156
- framework_configuration: {
157
- fabric: {
158
- admin_username: ::String,
159
- admin_password: ::String
160
- }?
161
- },
162
- log_publishing_configuration: {
163
- fabric: {
164
- ca_logs: {
165
- cloudwatch: {
166
- enabled: bool?
167
- }?
168
- }?
169
- }?
170
- }?,
171
- tags: Hash[::String, ::String]?,
172
- kms_key_arn: ::String?
173
- },
133
+ member_configuration: Params::member_configuration,
174
134
  ?tags: Hash[::String, ::String]
175
135
  ) -> _CreateNetworkResponseSuccess
176
136
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkResponseSuccess
@@ -187,20 +147,7 @@ module Aws
187
147
  node_configuration: {
188
148
  instance_type: ::String,
189
149
  availability_zone: ::String?,
190
- log_publishing_configuration: {
191
- fabric: {
192
- chaincode_logs: {
193
- cloudwatch: {
194
- enabled: bool?
195
- }?
196
- }?,
197
- peer_logs: {
198
- cloudwatch: {
199
- enabled: bool?
200
- }?
201
- }?
202
- }?
203
- }?,
150
+ log_publishing_configuration: Params::node_log_publishing_configuration?,
204
151
  state_db: ("LevelDB" | "CouchDB")?
205
152
  },
206
153
  ?tags: Hash[::String, ::String]
@@ -220,12 +167,12 @@ module Aws
220
167
  invitations: Array[
221
168
  {
222
169
  principal: ::String
223
- },
170
+ }
224
171
  ]?,
225
172
  removals: Array[
226
173
  {
227
174
  member_id: ::String
228
- },
175
+ }
229
176
  ]?
230
177
  },
231
178
  ?description: ::String,
@@ -461,15 +408,7 @@ module Aws
461
408
  def update_member: (
462
409
  network_id: ::String,
463
410
  member_id: ::String,
464
- ?log_publishing_configuration: {
465
- fabric: {
466
- ca_logs: {
467
- cloudwatch: {
468
- enabled: bool?
469
- }?
470
- }?
471
- }?
472
- }
411
+ ?log_publishing_configuration: Params::member_log_publishing_configuration
473
412
  ) -> _UpdateMemberResponseSuccess
474
413
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemberResponseSuccess
475
414
 
@@ -481,20 +420,7 @@ module Aws
481
420
  network_id: ::String,
482
421
  ?member_id: ::String,
483
422
  node_id: ::String,
484
- ?log_publishing_configuration: {
485
- fabric: {
486
- chaincode_logs: {
487
- cloudwatch: {
488
- enabled: bool?
489
- }?
490
- }?,
491
- peer_logs: {
492
- cloudwatch: {
493
- enabled: bool?
494
- }?
495
- }?
496
- }?
497
- }
423
+ ?log_publishing_configuration: Params::node_log_publishing_configuration
498
424
  ) -> _UpdateNodeResponseSuccess
499
425
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodeResponseSuccess
500
426
 
data/sig/params.rbs ADDED
@@ -0,0 +1,54 @@
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 Params
11
+ type member_log_publishing_configuration = {
12
+ fabric: {
13
+ ca_logs: {
14
+ cloudwatch: {
15
+ enabled: bool?
16
+ }?
17
+ }?
18
+ }?
19
+ }
20
+
21
+ type member_configuration = {
22
+ name: ::String,
23
+ description: ::String?,
24
+ framework_configuration: {
25
+ fabric: {
26
+ admin_username: ::String,
27
+ admin_password: ::String
28
+ }?
29
+ },
30
+ log_publishing_configuration: Params::member_log_publishing_configuration?,
31
+ tags: Hash[::String, ::String]?,
32
+ kms_key_arn: ::String?
33
+ }
34
+
35
+ type node_fabric_log_publishing_configuration = {
36
+ chaincode_logs: {
37
+ cloudwatch: {
38
+ enabled: bool?
39
+ }?
40
+ }?,
41
+ peer_logs: {
42
+ cloudwatch: {
43
+ enabled: bool?
44
+ }?
45
+ }?
46
+ }
47
+
48
+ type node_log_publishing_configuration = {
49
+ fabric: Params::node_fabric_log_publishing_configuration?
50
+ }
51
+
52
+ end
53
+ end
54
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-managedblockchain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.84.0
4
+ version: 1.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-managedblockchain/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs