aws-sdk-managedblockchain 1.35.0 → 1.36.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: 632ec972ea264300901a52c2e3067da88c629a07b54bf7f3b0b0b962ba4ce61c
4
- data.tar.gz: cbd557b5e978dbe8da70386aed1cfb1f11ea9efadc72ce1e9014b827e1e3220b
3
+ metadata.gz: d3db259a19b3d53c6cbac239a19f0187d15f0ac884445f23c7b86527fbafb9b3
4
+ data.tar.gz: 5869ae788e4a8588f975de6520d94223c0f7b72d0e3817fec43ab6d77ed70bad
5
5
  SHA512:
6
- metadata.gz: c8efb76bb4760488f9e6e6f9335b214b39a20d7383740766dac89c2ccf0aa63ff86edc4d429f5eda6ac29906a43eaf77d3d3985ebe617a3f9fb686bd13ac1da3
7
- data.tar.gz: 1ef7e93aff8587b71ed75ccb68fa54623c6f5f9e5953689eb842439051adbc33b198b3b72382bfd0709678509f60c291ca0dbf339b12bd285d831eb1645b50b6
6
+ metadata.gz: 5cb8ebc1c7f49cadafa052a2c38a2f08eacdb6fbf34eb15511a451ea6d2b2216b1dd38857f0f02602480f8273b4b668f3793de9071533c9182a654ea0c6c3758
7
+ data.tar.gz: 94d8a1491aabf8511288aa170203fe06ecd4a6ea522ba89fd00d153e10feec820263414726e17b341ffb93f169b07153ed78685e41a2ef72e72c8fcc5885e1c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.35.0 (2022-11-14)
5
12
  ------------------
6
13
 
@@ -185,4 +192,4 @@ Unreleased Changes
185
192
  1.0.0 (2019-04-30)
186
193
  ------------------
187
194
 
188
- * Feature - Initial release of `aws-sdk-managedblockchain`.
195
+ * Feature - Initial release of `aws-sdk-managedblockchain`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.36.0
@@ -1876,7 +1876,7 @@ module Aws::ManagedBlockchain
1876
1876
  params: params,
1877
1877
  config: config)
1878
1878
  context[:gem_name] = 'aws-sdk-managedblockchain'
1879
- context[:gem_version] = '1.35.0'
1879
+ context[:gem_version] = '1.36.0'
1880
1880
  Seahorse::Client::Request.new(handlers, context)
1881
1881
  end
1882
1882
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ManagedBlockchain
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://managedblockchain-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://managedblockchain-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://managedblockchain.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://managedblockchain.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL21hbmFnZWRibG9ja2NoYWluLWZpcHMue1Jl
77
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
78
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
79
- In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
80
- dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
81
- IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
82
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
83
- IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
84
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
85
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
86
- UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
87
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMi
88
- Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
89
- L21hbmFnZWRibG9ja2NoYWluLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
90
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
91
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
92
- cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
93
- IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
94
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
95
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
96
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
97
- W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
98
- b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
99
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
100
- cmwiOiJodHRwczovL21hbmFnZWRibG9ja2NoYWluLntSZWdpb259LntQYXJ0
101
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
102
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
103
- aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
104
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
105
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
106
- InVybCI6Imh0dHBzOi8vbWFuYWdlZGJsb2NrY2hhaW4ue1JlZ2lvbn0ue1Bh
107
- cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
108
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -137,15 +137,6 @@ module Aws::ManagedBlockchain
137
137
  #
138
138
  # Applies only to Hyperledger Fabric.
139
139
  #
140
- # @note When making an API call, you may pass ApprovalThresholdPolicy
141
- # data as a hash:
142
- #
143
- # {
144
- # threshold_percentage: 1,
145
- # proposal_duration_in_hours: 1,
146
- # threshold_comparator: "GREATER_THAN", # accepts GREATER_THAN, GREATER_THAN_OR_EQUAL_TO
147
- # }
148
- #
149
140
  # @!attribute [rw] threshold_percentage
150
141
  # The percentage of votes among all members that must be `YES` for a
151
142
  # proposal to be approved. For example, a `ThresholdPercentage` value
@@ -180,14 +171,6 @@ module Aws::ManagedBlockchain
180
171
  include Aws::Structure
181
172
  end
182
173
 
183
- # @note When making an API call, you may pass CreateAccessorInput
184
- # data as a hash:
185
- #
186
- # {
187
- # client_request_token: "ClientRequestTokenString", # required
188
- # accessor_type: "BILLING_TOKEN", # required, accepts BILLING_TOKEN
189
- # }
190
- #
191
174
  # @!attribute [rw] client_request_token
192
175
  # This is a unique, case-sensitive identifier that you provide to
193
176
  # ensure the idempotency of the operation. An idempotent operation
@@ -237,38 +220,6 @@ module Aws::ManagedBlockchain
237
220
  include Aws::Structure
238
221
  end
239
222
 
240
- # @note When making an API call, you may pass CreateMemberInput
241
- # data as a hash:
242
- #
243
- # {
244
- # client_request_token: "ClientRequestTokenString", # required
245
- # invitation_id: "ResourceIdString", # required
246
- # network_id: "ResourceIdString", # required
247
- # member_configuration: { # required
248
- # name: "NetworkMemberNameString", # required
249
- # description: "DescriptionString",
250
- # framework_configuration: { # required
251
- # fabric: {
252
- # admin_username: "UsernameString", # required
253
- # admin_password: "PasswordString", # required
254
- # },
255
- # },
256
- # log_publishing_configuration: {
257
- # fabric: {
258
- # ca_logs: {
259
- # cloudwatch: {
260
- # enabled: false,
261
- # },
262
- # },
263
- # },
264
- # },
265
- # tags: {
266
- # "TagKey" => "TagValue",
267
- # },
268
- # kms_key_arn: "ArnString",
269
- # },
270
- # }
271
- #
272
223
  # @!attribute [rw] client_request_token
273
224
  # A unique, case-sensitive identifier that you provide to ensure the
274
225
  # idempotency of the operation. An idempotent operation completes no
@@ -316,55 +267,6 @@ module Aws::ManagedBlockchain
316
267
  include Aws::Structure
317
268
  end
318
269
 
319
- # @note When making an API call, you may pass CreateNetworkInput
320
- # data as a hash:
321
- #
322
- # {
323
- # client_request_token: "ClientRequestTokenString", # required
324
- # name: "NameString", # required
325
- # description: "DescriptionString",
326
- # framework: "HYPERLEDGER_FABRIC", # required, accepts HYPERLEDGER_FABRIC, ETHEREUM
327
- # framework_version: "FrameworkVersionString", # required
328
- # framework_configuration: {
329
- # fabric: {
330
- # edition: "STARTER", # required, accepts STARTER, STANDARD
331
- # },
332
- # },
333
- # voting_policy: { # required
334
- # approval_threshold_policy: {
335
- # threshold_percentage: 1,
336
- # proposal_duration_in_hours: 1,
337
- # threshold_comparator: "GREATER_THAN", # accepts GREATER_THAN, GREATER_THAN_OR_EQUAL_TO
338
- # },
339
- # },
340
- # member_configuration: { # required
341
- # name: "NetworkMemberNameString", # required
342
- # description: "DescriptionString",
343
- # framework_configuration: { # required
344
- # fabric: {
345
- # admin_username: "UsernameString", # required
346
- # admin_password: "PasswordString", # required
347
- # },
348
- # },
349
- # log_publishing_configuration: {
350
- # fabric: {
351
- # ca_logs: {
352
- # cloudwatch: {
353
- # enabled: false,
354
- # },
355
- # },
356
- # },
357
- # },
358
- # tags: {
359
- # "TagKey" => "TagValue",
360
- # },
361
- # kms_key_arn: "ArnString",
362
- # },
363
- # tags: {
364
- # "TagKey" => "TagValue",
365
- # },
366
- # }
367
- #
368
270
  # @!attribute [rw] client_request_token
369
271
  # This is a unique, case-sensitive identifier that you provide to
370
272
  # ensure the idempotency of the operation. An idempotent operation
@@ -459,37 +361,6 @@ module Aws::ManagedBlockchain
459
361
  include Aws::Structure
460
362
  end
461
363
 
462
- # @note When making an API call, you may pass CreateNodeInput
463
- # data as a hash:
464
- #
465
- # {
466
- # client_request_token: "ClientRequestTokenString", # required
467
- # network_id: "ResourceIdString", # required
468
- # member_id: "ResourceIdString",
469
- # node_configuration: { # required
470
- # instance_type: "InstanceTypeString", # required
471
- # availability_zone: "AvailabilityZoneString",
472
- # log_publishing_configuration: {
473
- # fabric: {
474
- # chaincode_logs: {
475
- # cloudwatch: {
476
- # enabled: false,
477
- # },
478
- # },
479
- # peer_logs: {
480
- # cloudwatch: {
481
- # enabled: false,
482
- # },
483
- # },
484
- # },
485
- # },
486
- # state_db: "LevelDB", # accepts LevelDB, CouchDB
487
- # },
488
- # tags: {
489
- # "TagKey" => "TagValue",
490
- # },
491
- # }
492
- #
493
364
  # @!attribute [rw] client_request_token
494
365
  # A unique, case-sensitive identifier that you provide to ensure the
495
366
  # idempotency of the operation. An idempotent operation completes no
@@ -568,31 +439,6 @@ module Aws::ManagedBlockchain
568
439
  include Aws::Structure
569
440
  end
570
441
 
571
- # @note When making an API call, you may pass CreateProposalInput
572
- # data as a hash:
573
- #
574
- # {
575
- # client_request_token: "ClientRequestTokenString", # required
576
- # network_id: "ResourceIdString", # required
577
- # member_id: "ResourceIdString", # required
578
- # actions: { # required
579
- # invitations: [
580
- # {
581
- # principal: "PrincipalString", # required
582
- # },
583
- # ],
584
- # removals: [
585
- # {
586
- # member_id: "ResourceIdString", # required
587
- # },
588
- # ],
589
- # },
590
- # description: "DescriptionString",
591
- # tags: {
592
- # "TagKey" => "TagValue",
593
- # },
594
- # }
595
- #
596
442
  # @!attribute [rw] client_request_token
597
443
  # A unique, case-sensitive identifier that you provide to ensure the
598
444
  # idempotency of the operation. An idempotent operation completes no
@@ -672,13 +518,6 @@ module Aws::ManagedBlockchain
672
518
  include Aws::Structure
673
519
  end
674
520
 
675
- # @note When making an API call, you may pass DeleteAccessorInput
676
- # data as a hash:
677
- #
678
- # {
679
- # accessor_id: "ResourceIdString", # required
680
- # }
681
- #
682
521
  # @!attribute [rw] accessor_id
683
522
  # The unique identifier of the accessor.
684
523
  # @return [String]
@@ -695,14 +534,6 @@ module Aws::ManagedBlockchain
695
534
  #
696
535
  class DeleteAccessorOutput < Aws::EmptyStructure; end
697
536
 
698
- # @note When making an API call, you may pass DeleteMemberInput
699
- # data as a hash:
700
- #
701
- # {
702
- # network_id: "ResourceIdString", # required
703
- # member_id: "ResourceIdString", # required
704
- # }
705
- #
706
537
  # @!attribute [rw] network_id
707
538
  # The unique identifier of the network from which the member is
708
539
  # removed.
@@ -725,15 +556,6 @@ module Aws::ManagedBlockchain
725
556
  #
726
557
  class DeleteMemberOutput < Aws::EmptyStructure; end
727
558
 
728
- # @note When making an API call, you may pass DeleteNodeInput
729
- # data as a hash:
730
- #
731
- # {
732
- # network_id: "ResourceIdString", # required
733
- # member_id: "ResourceIdString",
734
- # node_id: "ResourceIdString", # required
735
- # }
736
- #
737
559
  # @!attribute [rw] network_id
738
560
  # The unique identifier of the network that the node is on.
739
561
  #
@@ -773,13 +595,6 @@ module Aws::ManagedBlockchain
773
595
  #
774
596
  class DeleteNodeOutput < Aws::EmptyStructure; end
775
597
 
776
- # @note When making an API call, you may pass GetAccessorInput
777
- # data as a hash:
778
- #
779
- # {
780
- # accessor_id: "ResourceIdString", # required
781
- # }
782
- #
783
598
  # @!attribute [rw] accessor_id
784
599
  # The unique identifier of the accessor.
785
600
  # @return [String]
@@ -804,14 +619,6 @@ module Aws::ManagedBlockchain
804
619
  include Aws::Structure
805
620
  end
806
621
 
807
- # @note When making an API call, you may pass GetMemberInput
808
- # data as a hash:
809
- #
810
- # {
811
- # network_id: "ResourceIdString", # required
812
- # member_id: "ResourceIdString", # required
813
- # }
814
- #
815
622
  # @!attribute [rw] network_id
816
623
  # The unique identifier of the network to which the member belongs.
817
624
  # @return [String]
@@ -841,13 +648,6 @@ module Aws::ManagedBlockchain
841
648
  include Aws::Structure
842
649
  end
843
650
 
844
- # @note When making an API call, you may pass GetNetworkInput
845
- # data as a hash:
846
- #
847
- # {
848
- # network_id: "ResourceIdString", # required
849
- # }
850
- #
851
651
  # @!attribute [rw] network_id
852
652
  # The unique identifier of the network to get information about.
853
653
  # @return [String]
@@ -872,15 +672,6 @@ module Aws::ManagedBlockchain
872
672
  include Aws::Structure
873
673
  end
874
674
 
875
- # @note When making an API call, you may pass GetNodeInput
876
- # data as a hash:
877
- #
878
- # {
879
- # network_id: "ResourceIdString", # required
880
- # member_id: "ResourceIdString",
881
- # node_id: "ResourceIdString", # required
882
- # }
883
- #
884
675
  # @!attribute [rw] network_id
885
676
  # The unique identifier of the network that the node is on.
886
677
  # @return [String]
@@ -918,14 +709,6 @@ module Aws::ManagedBlockchain
918
709
  include Aws::Structure
919
710
  end
920
711
 
921
- # @note When making an API call, you may pass GetProposalInput
922
- # data as a hash:
923
- #
924
- # {
925
- # network_id: "ResourceIdString", # required
926
- # proposal_id: "ResourceIdString", # required
927
- # }
928
- #
929
712
  # @!attribute [rw] network_id
930
713
  # The unique identifier of the network for which the proposal is made.
931
714
  # @return [String]
@@ -1059,13 +842,6 @@ module Aws::ManagedBlockchain
1059
842
  #
1060
843
  # Applies only to Hyperledger Fabric.
1061
844
  #
1062
- # @note When making an API call, you may pass InviteAction
1063
- # data as a hash:
1064
- #
1065
- # {
1066
- # principal: "PrincipalString", # required
1067
- # }
1068
- #
1069
845
  # @!attribute [rw] principal
1070
846
  # The Amazon Web Services account ID to invite.
1071
847
  # @return [String]
@@ -1078,14 +854,6 @@ module Aws::ManagedBlockchain
1078
854
  include Aws::Structure
1079
855
  end
1080
856
 
1081
- # @note When making an API call, you may pass ListAccessorsInput
1082
- # data as a hash:
1083
- #
1084
- # {
1085
- # max_results: 1,
1086
- # next_token: "PaginationToken",
1087
- # }
1088
- #
1089
857
  # @!attribute [rw] max_results
1090
858
  # The maximum number of accessors to list.
1091
859
  # @return [Integer]
@@ -1123,14 +891,6 @@ module Aws::ManagedBlockchain
1123
891
  include Aws::Structure
1124
892
  end
1125
893
 
1126
- # @note When making an API call, you may pass ListInvitationsInput
1127
- # data as a hash:
1128
- #
1129
- # {
1130
- # max_results: 1,
1131
- # next_token: "PaginationToken",
1132
- # }
1133
- #
1134
894
  # @!attribute [rw] max_results
1135
895
  # The maximum number of invitations to return.
1136
896
  # @return [Integer]
@@ -1167,18 +927,6 @@ module Aws::ManagedBlockchain
1167
927
  include Aws::Structure
1168
928
  end
1169
929
 
1170
- # @note When making an API call, you may pass ListMembersInput
1171
- # data as a hash:
1172
- #
1173
- # {
1174
- # network_id: "ResourceIdString", # required
1175
- # name: "String",
1176
- # status: "CREATING", # accepts CREATING, AVAILABLE, CREATE_FAILED, UPDATING, DELETING, DELETED, INACCESSIBLE_ENCRYPTION_KEY
1177
- # is_owned: false,
1178
- # max_results: 1,
1179
- # next_token: "PaginationToken",
1180
- # }
1181
- #
1182
930
  # @!attribute [rw] network_id
1183
931
  # The unique identifier of the network for which to list members.
1184
932
  # @return [String]
@@ -1240,17 +988,6 @@ module Aws::ManagedBlockchain
1240
988
  include Aws::Structure
1241
989
  end
1242
990
 
1243
- # @note When making an API call, you may pass ListNetworksInput
1244
- # data as a hash:
1245
- #
1246
- # {
1247
- # name: "String",
1248
- # framework: "HYPERLEDGER_FABRIC", # accepts HYPERLEDGER_FABRIC, ETHEREUM
1249
- # status: "CREATING", # accepts CREATING, AVAILABLE, CREATE_FAILED, DELETING, DELETED
1250
- # max_results: 1,
1251
- # next_token: "PaginationToken",
1252
- # }
1253
- #
1254
991
  # @!attribute [rw] name
1255
992
  # The name of the network.
1256
993
  # @return [String]
@@ -1307,17 +1044,6 @@ module Aws::ManagedBlockchain
1307
1044
  include Aws::Structure
1308
1045
  end
1309
1046
 
1310
- # @note When making an API call, you may pass ListNodesInput
1311
- # data as a hash:
1312
- #
1313
- # {
1314
- # network_id: "ResourceIdString", # required
1315
- # member_id: "ResourceIdString",
1316
- # status: "CREATING", # accepts CREATING, AVAILABLE, UNHEALTHY, CREATE_FAILED, UPDATING, DELETING, DELETED, FAILED, INACCESSIBLE_ENCRYPTION_KEY
1317
- # max_results: 1,
1318
- # next_token: "PaginationToken",
1319
- # }
1320
- #
1321
1047
  # @!attribute [rw] network_id
1322
1048
  # The unique identifier of the network for which to list nodes.
1323
1049
  # @return [String]
@@ -1374,16 +1100,6 @@ module Aws::ManagedBlockchain
1374
1100
  include Aws::Structure
1375
1101
  end
1376
1102
 
1377
- # @note When making an API call, you may pass ListProposalVotesInput
1378
- # data as a hash:
1379
- #
1380
- # {
1381
- # network_id: "ResourceIdString", # required
1382
- # proposal_id: "ResourceIdString", # required
1383
- # max_results: 1,
1384
- # next_token: "PaginationToken",
1385
- # }
1386
- #
1387
1103
  # @!attribute [rw] network_id
1388
1104
  # The unique identifier of the network.
1389
1105
  # @return [String]
@@ -1430,15 +1146,6 @@ module Aws::ManagedBlockchain
1430
1146
  include Aws::Structure
1431
1147
  end
1432
1148
 
1433
- # @note When making an API call, you may pass ListProposalsInput
1434
- # data as a hash:
1435
- #
1436
- # {
1437
- # network_id: "ResourceIdString", # required
1438
- # max_results: 1,
1439
- # next_token: "PaginationToken",
1440
- # }
1441
- #
1442
1149
  # @!attribute [rw] network_id
1443
1150
  # The unique identifier of the network.
1444
1151
  # @return [String]
@@ -1480,13 +1187,6 @@ module Aws::ManagedBlockchain
1480
1187
  include Aws::Structure
1481
1188
  end
1482
1189
 
1483
- # @note When making an API call, you may pass ListTagsForResourceRequest
1484
- # data as a hash:
1485
- #
1486
- # {
1487
- # resource_arn: "ArnString", # required
1488
- # }
1489
- #
1490
1190
  # @!attribute [rw] resource_arn
1491
1191
  # The Amazon Resource Name (ARN) of the resource. For more information
1492
1192
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -1519,13 +1219,6 @@ module Aws::ManagedBlockchain
1519
1219
 
1520
1220
  # A configuration for logging events.
1521
1221
  #
1522
- # @note When making an API call, you may pass LogConfiguration
1523
- # data as a hash:
1524
- #
1525
- # {
1526
- # enabled: false,
1527
- # }
1528
- #
1529
1222
  # @!attribute [rw] enabled
1530
1223
  # Indicates whether logging is enabled.
1531
1224
  # @return [Boolean]
@@ -1540,15 +1233,6 @@ module Aws::ManagedBlockchain
1540
1233
 
1541
1234
  # A collection of log configurations.
1542
1235
  #
1543
- # @note When making an API call, you may pass LogConfigurations
1544
- # data as a hash:
1545
- #
1546
- # {
1547
- # cloudwatch: {
1548
- # enabled: false,
1549
- # },
1550
- # }
1551
- #
1552
1236
  # @!attribute [rw] cloudwatch
1553
1237
  # Parameters for publishing logs to Amazon CloudWatch Logs.
1554
1238
  # @return [Types::LogConfiguration]
@@ -1690,33 +1374,6 @@ module Aws::ManagedBlockchain
1690
1374
  #
1691
1375
  # Applies only to Hyperledger Fabric.
1692
1376
  #
1693
- # @note When making an API call, you may pass MemberConfiguration
1694
- # data as a hash:
1695
- #
1696
- # {
1697
- # name: "NetworkMemberNameString", # required
1698
- # description: "DescriptionString",
1699
- # framework_configuration: { # required
1700
- # fabric: {
1701
- # admin_username: "UsernameString", # required
1702
- # admin_password: "PasswordString", # required
1703
- # },
1704
- # },
1705
- # log_publishing_configuration: {
1706
- # fabric: {
1707
- # ca_logs: {
1708
- # cloudwatch: {
1709
- # enabled: false,
1710
- # },
1711
- # },
1712
- # },
1713
- # },
1714
- # tags: {
1715
- # "TagKey" => "TagValue",
1716
- # },
1717
- # kms_key_arn: "ArnString",
1718
- # }
1719
- #
1720
1377
  # @!attribute [rw] name
1721
1378
  # The name of the member.
1722
1379
  # @return [String]
@@ -1814,14 +1471,6 @@ module Aws::ManagedBlockchain
1814
1471
  # Configuration properties for Hyperledger Fabric for a member in a
1815
1472
  # Managed Blockchain network using the Hyperledger Fabric framework.
1816
1473
  #
1817
- # @note When making an API call, you may pass MemberFabricConfiguration
1818
- # data as a hash:
1819
- #
1820
- # {
1821
- # admin_username: "UsernameString", # required
1822
- # admin_password: "PasswordString", # required
1823
- # }
1824
- #
1825
1474
  # @!attribute [rw] admin_username
1826
1475
  # The user name for the member's initial administrative user.
1827
1476
  # @return [String]
@@ -1848,17 +1497,6 @@ module Aws::ManagedBlockchain
1848
1497
  # of a Managed Blockchain network using the Hyperledger Fabric
1849
1498
  # framework.
1850
1499
  #
1851
- # @note When making an API call, you may pass MemberFabricLogPublishingConfiguration
1852
- # data as a hash:
1853
- #
1854
- # {
1855
- # ca_logs: {
1856
- # cloudwatch: {
1857
- # enabled: false,
1858
- # },
1859
- # },
1860
- # }
1861
- #
1862
1500
  # @!attribute [rw] ca_logs
1863
1501
  # Configuration properties for logging events associated with a
1864
1502
  # member's Certificate Authority (CA). CA logs help you determine
@@ -1893,16 +1531,6 @@ module Aws::ManagedBlockchain
1893
1531
  # Configuration properties relevant to a member for the blockchain
1894
1532
  # framework that the Managed Blockchain network uses.
1895
1533
  #
1896
- # @note When making an API call, you may pass MemberFrameworkConfiguration
1897
- # data as a hash:
1898
- #
1899
- # {
1900
- # fabric: {
1901
- # admin_username: "UsernameString", # required
1902
- # admin_password: "PasswordString", # required
1903
- # },
1904
- # }
1905
- #
1906
1534
  # @!attribute [rw] fabric
1907
1535
  # Attributes of Hyperledger Fabric for a member on a Managed
1908
1536
  # Blockchain network that uses Hyperledger Fabric.
@@ -1919,19 +1547,6 @@ module Aws::ManagedBlockchain
1919
1547
  # Configuration properties for logging events associated with a member
1920
1548
  # of a Managed Blockchain network.
1921
1549
  #
1922
- # @note When making an API call, you may pass MemberLogPublishingConfiguration
1923
- # data as a hash:
1924
- #
1925
- # {
1926
- # fabric: {
1927
- # ca_logs: {
1928
- # cloudwatch: {
1929
- # enabled: false,
1930
- # },
1931
- # },
1932
- # },
1933
- # }
1934
- #
1935
1550
  # @!attribute [rw] fabric
1936
1551
  # Configuration properties for logging events associated with a member
1937
1552
  # of a Managed Blockchain network using the Hyperledger Fabric
@@ -2171,13 +1786,6 @@ module Aws::ManagedBlockchain
2171
1786
 
2172
1787
  # Hyperledger Fabric configuration properties for the network.
2173
1788
  #
2174
- # @note When making an API call, you may pass NetworkFabricConfiguration
2175
- # data as a hash:
2176
- #
2177
- # {
2178
- # edition: "STARTER", # required, accepts STARTER, STANDARD
2179
- # }
2180
- #
2181
1789
  # @!attribute [rw] edition
2182
1790
  # The edition of Amazon Managed Blockchain that the network uses. For
2183
1791
  # more information, see [Amazon Managed Blockchain Pricing][1].
@@ -2220,15 +1828,6 @@ module Aws::ManagedBlockchain
2220
1828
  # Configuration properties relevant to the network for the blockchain
2221
1829
  # framework that the network uses.
2222
1830
  #
2223
- # @note When making an API call, you may pass NetworkFrameworkConfiguration
2224
- # data as a hash:
2225
- #
2226
- # {
2227
- # fabric: {
2228
- # edition: "STARTER", # required, accepts STARTER, STANDARD
2229
- # },
2230
- # }
2231
- #
2232
1831
  # @!attribute [rw] fabric
2233
1832
  # Hyperledger Fabric configuration properties for a Managed Blockchain
2234
1833
  # network that uses Hyperledger Fabric.
@@ -2444,29 +2043,6 @@ module Aws::ManagedBlockchain
2444
2043
 
2445
2044
  # Configuration properties of a node.
2446
2045
  #
2447
- # @note When making an API call, you may pass NodeConfiguration
2448
- # data as a hash:
2449
- #
2450
- # {
2451
- # instance_type: "InstanceTypeString", # required
2452
- # availability_zone: "AvailabilityZoneString",
2453
- # log_publishing_configuration: {
2454
- # fabric: {
2455
- # chaincode_logs: {
2456
- # cloudwatch: {
2457
- # enabled: false,
2458
- # },
2459
- # },
2460
- # peer_logs: {
2461
- # cloudwatch: {
2462
- # enabled: false,
2463
- # },
2464
- # },
2465
- # },
2466
- # },
2467
- # state_db: "LevelDB", # accepts LevelDB, CouchDB
2468
- # }
2469
- #
2470
2046
  # @!attribute [rw] instance_type
2471
2047
  # The Amazon Managed Blockchain instance type for the node.
2472
2048
  # @return [String]
@@ -2560,22 +2136,6 @@ module Aws::ManagedBlockchain
2560
2136
  # Configuration properties for logging events associated with a peer
2561
2137
  # node owned by a member in a Managed Blockchain network.
2562
2138
  #
2563
- # @note When making an API call, you may pass NodeFabricLogPublishingConfiguration
2564
- # data as a hash:
2565
- #
2566
- # {
2567
- # chaincode_logs: {
2568
- # cloudwatch: {
2569
- # enabled: false,
2570
- # },
2571
- # },
2572
- # peer_logs: {
2573
- # cloudwatch: {
2574
- # enabled: false,
2575
- # },
2576
- # },
2577
- # }
2578
- #
2579
2139
  # @!attribute [rw] chaincode_logs
2580
2140
  # Configuration properties for logging events associated with
2581
2141
  # chaincode execution on a peer node. Chaincode logs contain the
@@ -2626,24 +2186,6 @@ module Aws::ManagedBlockchain
2626
2186
  # Configuration properties for logging events associated with a peer
2627
2187
  # node on a Hyperledger Fabric network on Managed Blockchain.
2628
2188
  #
2629
- # @note When making an API call, you may pass NodeLogPublishingConfiguration
2630
- # data as a hash:
2631
- #
2632
- # {
2633
- # fabric: {
2634
- # chaincode_logs: {
2635
- # cloudwatch: {
2636
- # enabled: false,
2637
- # },
2638
- # },
2639
- # peer_logs: {
2640
- # cloudwatch: {
2641
- # enabled: false,
2642
- # },
2643
- # },
2644
- # },
2645
- # }
2646
- #
2647
2189
  # @!attribute [rw] fabric
2648
2190
  # Configuration properties for logging events associated with a node
2649
2191
  # that is owned by a member of a Managed Blockchain network using the
@@ -2832,22 +2374,6 @@ module Aws::ManagedBlockchain
2832
2374
  #
2833
2375
  # Applies only to Hyperledger Fabric.
2834
2376
  #
2835
- # @note When making an API call, you may pass ProposalActions
2836
- # data as a hash:
2837
- #
2838
- # {
2839
- # invitations: [
2840
- # {
2841
- # principal: "PrincipalString", # required
2842
- # },
2843
- # ],
2844
- # removals: [
2845
- # {
2846
- # member_id: "ResourceIdString", # required
2847
- # },
2848
- # ],
2849
- # }
2850
- #
2851
2377
  # @!attribute [rw] invitations
2852
2378
  # The actions to perform for an `APPROVED` proposal to invite an
2853
2379
  # Amazon Web Services account to create a member and join the network.
@@ -2949,13 +2475,6 @@ module Aws::ManagedBlockchain
2949
2475
  include Aws::Structure
2950
2476
  end
2951
2477
 
2952
- # @note When making an API call, you may pass RejectInvitationInput
2953
- # data as a hash:
2954
- #
2955
- # {
2956
- # invitation_id: "ResourceIdString", # required
2957
- # }
2958
- #
2959
2478
  # @!attribute [rw] invitation_id
2960
2479
  # The unique identifier of the invitation to reject.
2961
2480
  # @return [String]
@@ -2978,13 +2497,6 @@ module Aws::ManagedBlockchain
2978
2497
  #
2979
2498
  # Applies only to Hyperledger Fabric.
2980
2499
  #
2981
- # @note When making an API call, you may pass RemoveAction
2982
- # data as a hash:
2983
- #
2984
- # {
2985
- # member_id: "ResourceIdString", # required
2986
- # }
2987
- #
2988
2500
  # @!attribute [rw] member_id
2989
2501
  # The unique identifier of the member to remove.
2990
2502
  # @return [String]
@@ -3059,16 +2571,6 @@ module Aws::ManagedBlockchain
3059
2571
  include Aws::Structure
3060
2572
  end
3061
2573
 
3062
- # @note When making an API call, you may pass TagResourceRequest
3063
- # data as a hash:
3064
- #
3065
- # {
3066
- # resource_arn: "ArnString", # required
3067
- # tags: { # required
3068
- # "TagKey" => "TagValue",
3069
- # },
3070
- # }
3071
- #
3072
2574
  # @!attribute [rw] resource_arn
3073
2575
  # The Amazon Resource Name (ARN) of the resource. For more information
3074
2576
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -3123,14 +2625,6 @@ module Aws::ManagedBlockchain
3123
2625
  include Aws::Structure
3124
2626
  end
3125
2627
 
3126
- # @note When making an API call, you may pass UntagResourceRequest
3127
- # data as a hash:
3128
- #
3129
- # {
3130
- # resource_arn: "ArnString", # required
3131
- # tag_keys: ["TagKey"], # required
3132
- # }
3133
- #
3134
2628
  # @!attribute [rw] resource_arn
3135
2629
  # The Amazon Resource Name (ARN) of the resource. For more information
3136
2630
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -3158,23 +2652,6 @@ module Aws::ManagedBlockchain
3158
2652
  #
3159
2653
  class UntagResourceResponse < Aws::EmptyStructure; end
3160
2654
 
3161
- # @note When making an API call, you may pass UpdateMemberInput
3162
- # data as a hash:
3163
- #
3164
- # {
3165
- # network_id: "ResourceIdString", # required
3166
- # member_id: "ResourceIdString", # required
3167
- # log_publishing_configuration: {
3168
- # fabric: {
3169
- # ca_logs: {
3170
- # cloudwatch: {
3171
- # enabled: false,
3172
- # },
3173
- # },
3174
- # },
3175
- # },
3176
- # }
3177
- #
3178
2655
  # @!attribute [rw] network_id
3179
2656
  # The unique identifier of the Managed Blockchain network to which the
3180
2657
  # member belongs.
@@ -3202,29 +2679,6 @@ module Aws::ManagedBlockchain
3202
2679
  #
3203
2680
  class UpdateMemberOutput < Aws::EmptyStructure; end
3204
2681
 
3205
- # @note When making an API call, you may pass UpdateNodeInput
3206
- # data as a hash:
3207
- #
3208
- # {
3209
- # network_id: "ResourceIdString", # required
3210
- # member_id: "ResourceIdString",
3211
- # node_id: "ResourceIdString", # required
3212
- # log_publishing_configuration: {
3213
- # fabric: {
3214
- # chaincode_logs: {
3215
- # cloudwatch: {
3216
- # enabled: false,
3217
- # },
3218
- # },
3219
- # peer_logs: {
3220
- # cloudwatch: {
3221
- # enabled: false,
3222
- # },
3223
- # },
3224
- # },
3225
- # },
3226
- # }
3227
- #
3228
2682
  # @!attribute [rw] network_id
3229
2683
  # The unique identifier of the network that the node is on.
3230
2684
  # @return [String]
@@ -3258,16 +2712,6 @@ module Aws::ManagedBlockchain
3258
2712
  #
3259
2713
  class UpdateNodeOutput < Aws::EmptyStructure; end
3260
2714
 
3261
- # @note When making an API call, you may pass VoteOnProposalInput
3262
- # data as a hash:
3263
- #
3264
- # {
3265
- # network_id: "ResourceIdString", # required
3266
- # proposal_id: "ResourceIdString", # required
3267
- # voter_member_id: "ResourceIdString", # required
3268
- # vote: "YES", # required, accepts YES, NO
3269
- # }
3270
- #
3271
2715
  # @!attribute [rw] network_id
3272
2716
  # The unique identifier of the network.
3273
2717
  # @return [String]
@@ -3329,17 +2773,6 @@ module Aws::ManagedBlockchain
3329
2773
  #
3330
2774
  # Applies only to Hyperledger Fabric.
3331
2775
  #
3332
- # @note When making an API call, you may pass VotingPolicy
3333
- # data as a hash:
3334
- #
3335
- # {
3336
- # approval_threshold_policy: {
3337
- # threshold_percentage: 1,
3338
- # proposal_duration_in_hours: 1,
3339
- # threshold_comparator: "GREATER_THAN", # accepts GREATER_THAN, GREATER_THAN_OR_EQUAL_TO
3340
- # },
3341
- # }
3342
- #
3343
2776
  # @!attribute [rw] approval_threshold_policy
3344
2777
  # Defines the rules for the network for voting on proposals, such as
3345
2778
  # the percentage of `YES` votes required for the proposal to be
@@ -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.35.0'
55
+ GEM_VERSION = '1.36.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.35.0
4
+ version: 1.36.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: 2022-11-14 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core