aws-sdk-managedblockchain 1.34.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: cb9271eea4f4ff1d3be7e26d391848d86a84f43107d9be367813a33c4ad8b97a
4
- data.tar.gz: 2f648615234374cc771eda2096141baafbdb67ef8f62991b5601d4ccc0f45cd0
3
+ metadata.gz: d3db259a19b3d53c6cbac239a19f0187d15f0ac884445f23c7b86527fbafb9b3
4
+ data.tar.gz: 5869ae788e4a8588f975de6520d94223c0f7b72d0e3817fec43ab6d77ed70bad
5
5
  SHA512:
6
- metadata.gz: 5ff7c91d11e6ebb97822994cfed19be132d568a1a669b70111a79f7b93ff7a64076f21757b21c3da5cba11d7f59b1623b38fb6ab7677ef792b5fea20b862f27d
7
- data.tar.gz: 77fabc25bfa73c97a9a3c845dd652374f545f76a2aecde8fe45a25b53be89922184a490954f3d45c6a432708a5cf701f2b186c29349c41c567bf620076459c1c
6
+ metadata.gz: 5cb8ebc1c7f49cadafa052a2c38a2f08eacdb6fbf34eb15511a451ea6d2b2216b1dd38857f0f02602480f8273b4b668f3793de9071533c9182a654ea0c6c3758
7
+ data.tar.gz: 94d8a1491aabf8511288aa170203fe06ecd4a6ea522ba89fd00d153e10feec820263414726e17b341ffb93f169b07153ed78685e41a2ef72e72c8fcc5885e1c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
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
+
11
+ 1.35.0 (2022-11-14)
12
+ ------------------
13
+
14
+ * Feature - Updating the API docs data type: NetworkEthereumAttributes, and the operations DeleteNode, and CreateNode to also include the supported Goerli network.
15
+
4
16
  1.34.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -180,4 +192,4 @@ Unreleased Changes
180
192
  1.0.0 (2019-04-30)
181
193
  ------------------
182
194
 
183
- * Feature - Initial release of `aws-sdk-managedblockchain`.
195
+ * Feature - Initial release of `aws-sdk-managedblockchain`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.36.0
@@ -635,6 +635,8 @@ module Aws::ManagedBlockchain
635
635
  #
636
636
  # * `n-ethereum-mainnet`
637
637
  #
638
+ # * `n-ethereum-goerli`
639
+ #
638
640
  # * `n-ethereum-rinkeby`
639
641
  #
640
642
  # * `n-ethereum-ropsten`
@@ -818,7 +820,7 @@ module Aws::ManagedBlockchain
818
820
  # `BILLING_TOKEN`. After an accessor is deleted, the status of the
819
821
  # accessor changes from `AVAILABLE` to `PENDING_DELETION`. An accessor
820
822
  # in the `PENDING_DELETION` state can’t be used for new WebSocket
821
- # requests or HTTP requests. However, WebSocket connections that are
823
+ # requests or HTTP requests. However, WebSocket connections that were
822
824
  # initiated while the accessor was in the `AVAILABLE` state remain open
823
825
  # until they expire (up to 2 hours).
824
826
  #
@@ -889,6 +891,8 @@ module Aws::ManagedBlockchain
889
891
  #
890
892
  # * `n-ethereum-mainnet`
891
893
  #
894
+ # * `n-ethereum-goerli`
895
+ #
892
896
  # * `n-ethereum-rinkeby`
893
897
  #
894
898
  # * `n-ethereum-ropsten`
@@ -1872,7 +1876,7 @@ module Aws::ManagedBlockchain
1872
1876
  params: params,
1873
1877
  config: config)
1874
1878
  context[:gem_name] = 'aws-sdk-managedblockchain'
1875
- context[:gem_version] = '1.34.0'
1879
+ context[:gem_version] = '1.36.0'
1876
1880
  Seahorse::Client::Request.new(handlers, context)
1877
1881
  end
1878
1882
 
@@ -50,9 +50,6 @@ module Aws::ManagedBlockchain
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -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
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vbWFuYWdlZGJsb2NrY2hhaW4tZmlwcy57UmVn
77
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
78
- cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
79
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
80
- YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
81
- c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
82
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
83
- OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
84
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
85
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
86
- ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
87
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
88
- W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
89
- bWFuYWdlZGJsb2NrY2hhaW4tZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVz
90
- dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
91
- LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
92
- b3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
93
- bm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
94
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
95
- c2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
96
- eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
97
- dHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlv
98
- blJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRy
99
- ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
100
- bCI6Imh0dHBzOi8vbWFuYWdlZGJsb2NrY2hhaW4ue1JlZ2lvbn0ue1BhcnRp
101
- dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
102
- e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
103
- dGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0
104
- aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5
105
- cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsi
106
- dXJsIjoiaHR0cHM6Ly9tYW5hZ2VkYmxvY2tjaGFpbi57UmVnaW9ufS57UGFy
107
- dGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVh
108
- ZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
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
@@ -508,6 +379,8 @@ module Aws::ManagedBlockchain
508
379
  #
509
380
  # * `n-ethereum-mainnet`
510
381
  #
382
+ # * `n-ethereum-goerli`
383
+ #
511
384
  # * `n-ethereum-rinkeby`
512
385
  #
513
386
  # * `n-ethereum-ropsten`
@@ -566,31 +439,6 @@ module Aws::ManagedBlockchain
566
439
  include Aws::Structure
567
440
  end
568
441
 
569
- # @note When making an API call, you may pass CreateProposalInput
570
- # data as a hash:
571
- #
572
- # {
573
- # client_request_token: "ClientRequestTokenString", # required
574
- # network_id: "ResourceIdString", # required
575
- # member_id: "ResourceIdString", # required
576
- # actions: { # required
577
- # invitations: [
578
- # {
579
- # principal: "PrincipalString", # required
580
- # },
581
- # ],
582
- # removals: [
583
- # {
584
- # member_id: "ResourceIdString", # required
585
- # },
586
- # ],
587
- # },
588
- # description: "DescriptionString",
589
- # tags: {
590
- # "TagKey" => "TagValue",
591
- # },
592
- # }
593
- #
594
442
  # @!attribute [rw] client_request_token
595
443
  # A unique, case-sensitive identifier that you provide to ensure the
596
444
  # idempotency of the operation. An idempotent operation completes no
@@ -670,13 +518,6 @@ module Aws::ManagedBlockchain
670
518
  include Aws::Structure
671
519
  end
672
520
 
673
- # @note When making an API call, you may pass DeleteAccessorInput
674
- # data as a hash:
675
- #
676
- # {
677
- # accessor_id: "ResourceIdString", # required
678
- # }
679
- #
680
521
  # @!attribute [rw] accessor_id
681
522
  # The unique identifier of the accessor.
682
523
  # @return [String]
@@ -693,14 +534,6 @@ module Aws::ManagedBlockchain
693
534
  #
694
535
  class DeleteAccessorOutput < Aws::EmptyStructure; end
695
536
 
696
- # @note When making an API call, you may pass DeleteMemberInput
697
- # data as a hash:
698
- #
699
- # {
700
- # network_id: "ResourceIdString", # required
701
- # member_id: "ResourceIdString", # required
702
- # }
703
- #
704
537
  # @!attribute [rw] network_id
705
538
  # The unique identifier of the network from which the member is
706
539
  # removed.
@@ -723,15 +556,6 @@ module Aws::ManagedBlockchain
723
556
  #
724
557
  class DeleteMemberOutput < Aws::EmptyStructure; end
725
558
 
726
- # @note When making an API call, you may pass DeleteNodeInput
727
- # data as a hash:
728
- #
729
- # {
730
- # network_id: "ResourceIdString", # required
731
- # member_id: "ResourceIdString",
732
- # node_id: "ResourceIdString", # required
733
- # }
734
- #
735
559
  # @!attribute [rw] network_id
736
560
  # The unique identifier of the network that the node is on.
737
561
  #
@@ -739,6 +563,8 @@ module Aws::ManagedBlockchain
739
563
  #
740
564
  # * `n-ethereum-mainnet`
741
565
  #
566
+ # * `n-ethereum-goerli`
567
+ #
742
568
  # * `n-ethereum-rinkeby`
743
569
  #
744
570
  # * `n-ethereum-ropsten`
@@ -769,13 +595,6 @@ module Aws::ManagedBlockchain
769
595
  #
770
596
  class DeleteNodeOutput < Aws::EmptyStructure; end
771
597
 
772
- # @note When making an API call, you may pass GetAccessorInput
773
- # data as a hash:
774
- #
775
- # {
776
- # accessor_id: "ResourceIdString", # required
777
- # }
778
- #
779
598
  # @!attribute [rw] accessor_id
780
599
  # The unique identifier of the accessor.
781
600
  # @return [String]
@@ -800,14 +619,6 @@ module Aws::ManagedBlockchain
800
619
  include Aws::Structure
801
620
  end
802
621
 
803
- # @note When making an API call, you may pass GetMemberInput
804
- # data as a hash:
805
- #
806
- # {
807
- # network_id: "ResourceIdString", # required
808
- # member_id: "ResourceIdString", # required
809
- # }
810
- #
811
622
  # @!attribute [rw] network_id
812
623
  # The unique identifier of the network to which the member belongs.
813
624
  # @return [String]
@@ -837,13 +648,6 @@ module Aws::ManagedBlockchain
837
648
  include Aws::Structure
838
649
  end
839
650
 
840
- # @note When making an API call, you may pass GetNetworkInput
841
- # data as a hash:
842
- #
843
- # {
844
- # network_id: "ResourceIdString", # required
845
- # }
846
- #
847
651
  # @!attribute [rw] network_id
848
652
  # The unique identifier of the network to get information about.
849
653
  # @return [String]
@@ -868,15 +672,6 @@ module Aws::ManagedBlockchain
868
672
  include Aws::Structure
869
673
  end
870
674
 
871
- # @note When making an API call, you may pass GetNodeInput
872
- # data as a hash:
873
- #
874
- # {
875
- # network_id: "ResourceIdString", # required
876
- # member_id: "ResourceIdString",
877
- # node_id: "ResourceIdString", # required
878
- # }
879
- #
880
675
  # @!attribute [rw] network_id
881
676
  # The unique identifier of the network that the node is on.
882
677
  # @return [String]
@@ -914,14 +709,6 @@ module Aws::ManagedBlockchain
914
709
  include Aws::Structure
915
710
  end
916
711
 
917
- # @note When making an API call, you may pass GetProposalInput
918
- # data as a hash:
919
- #
920
- # {
921
- # network_id: "ResourceIdString", # required
922
- # proposal_id: "ResourceIdString", # required
923
- # }
924
- #
925
712
  # @!attribute [rw] network_id
926
713
  # The unique identifier of the network for which the proposal is made.
927
714
  # @return [String]
@@ -1055,13 +842,6 @@ module Aws::ManagedBlockchain
1055
842
  #
1056
843
  # Applies only to Hyperledger Fabric.
1057
844
  #
1058
- # @note When making an API call, you may pass InviteAction
1059
- # data as a hash:
1060
- #
1061
- # {
1062
- # principal: "PrincipalString", # required
1063
- # }
1064
- #
1065
845
  # @!attribute [rw] principal
1066
846
  # The Amazon Web Services account ID to invite.
1067
847
  # @return [String]
@@ -1074,14 +854,6 @@ module Aws::ManagedBlockchain
1074
854
  include Aws::Structure
1075
855
  end
1076
856
 
1077
- # @note When making an API call, you may pass ListAccessorsInput
1078
- # data as a hash:
1079
- #
1080
- # {
1081
- # max_results: 1,
1082
- # next_token: "PaginationToken",
1083
- # }
1084
- #
1085
857
  # @!attribute [rw] max_results
1086
858
  # The maximum number of accessors to list.
1087
859
  # @return [Integer]
@@ -1119,14 +891,6 @@ module Aws::ManagedBlockchain
1119
891
  include Aws::Structure
1120
892
  end
1121
893
 
1122
- # @note When making an API call, you may pass ListInvitationsInput
1123
- # data as a hash:
1124
- #
1125
- # {
1126
- # max_results: 1,
1127
- # next_token: "PaginationToken",
1128
- # }
1129
- #
1130
894
  # @!attribute [rw] max_results
1131
895
  # The maximum number of invitations to return.
1132
896
  # @return [Integer]
@@ -1163,18 +927,6 @@ module Aws::ManagedBlockchain
1163
927
  include Aws::Structure
1164
928
  end
1165
929
 
1166
- # @note When making an API call, you may pass ListMembersInput
1167
- # data as a hash:
1168
- #
1169
- # {
1170
- # network_id: "ResourceIdString", # required
1171
- # name: "String",
1172
- # status: "CREATING", # accepts CREATING, AVAILABLE, CREATE_FAILED, UPDATING, DELETING, DELETED, INACCESSIBLE_ENCRYPTION_KEY
1173
- # is_owned: false,
1174
- # max_results: 1,
1175
- # next_token: "PaginationToken",
1176
- # }
1177
- #
1178
930
  # @!attribute [rw] network_id
1179
931
  # The unique identifier of the network for which to list members.
1180
932
  # @return [String]
@@ -1236,17 +988,6 @@ module Aws::ManagedBlockchain
1236
988
  include Aws::Structure
1237
989
  end
1238
990
 
1239
- # @note When making an API call, you may pass ListNetworksInput
1240
- # data as a hash:
1241
- #
1242
- # {
1243
- # name: "String",
1244
- # framework: "HYPERLEDGER_FABRIC", # accepts HYPERLEDGER_FABRIC, ETHEREUM
1245
- # status: "CREATING", # accepts CREATING, AVAILABLE, CREATE_FAILED, DELETING, DELETED
1246
- # max_results: 1,
1247
- # next_token: "PaginationToken",
1248
- # }
1249
- #
1250
991
  # @!attribute [rw] name
1251
992
  # The name of the network.
1252
993
  # @return [String]
@@ -1303,17 +1044,6 @@ module Aws::ManagedBlockchain
1303
1044
  include Aws::Structure
1304
1045
  end
1305
1046
 
1306
- # @note When making an API call, you may pass ListNodesInput
1307
- # data as a hash:
1308
- #
1309
- # {
1310
- # network_id: "ResourceIdString", # required
1311
- # member_id: "ResourceIdString",
1312
- # status: "CREATING", # accepts CREATING, AVAILABLE, UNHEALTHY, CREATE_FAILED, UPDATING, DELETING, DELETED, FAILED, INACCESSIBLE_ENCRYPTION_KEY
1313
- # max_results: 1,
1314
- # next_token: "PaginationToken",
1315
- # }
1316
- #
1317
1047
  # @!attribute [rw] network_id
1318
1048
  # The unique identifier of the network for which to list nodes.
1319
1049
  # @return [String]
@@ -1370,16 +1100,6 @@ module Aws::ManagedBlockchain
1370
1100
  include Aws::Structure
1371
1101
  end
1372
1102
 
1373
- # @note When making an API call, you may pass ListProposalVotesInput
1374
- # data as a hash:
1375
- #
1376
- # {
1377
- # network_id: "ResourceIdString", # required
1378
- # proposal_id: "ResourceIdString", # required
1379
- # max_results: 1,
1380
- # next_token: "PaginationToken",
1381
- # }
1382
- #
1383
1103
  # @!attribute [rw] network_id
1384
1104
  # The unique identifier of the network.
1385
1105
  # @return [String]
@@ -1426,15 +1146,6 @@ module Aws::ManagedBlockchain
1426
1146
  include Aws::Structure
1427
1147
  end
1428
1148
 
1429
- # @note When making an API call, you may pass ListProposalsInput
1430
- # data as a hash:
1431
- #
1432
- # {
1433
- # network_id: "ResourceIdString", # required
1434
- # max_results: 1,
1435
- # next_token: "PaginationToken",
1436
- # }
1437
- #
1438
1149
  # @!attribute [rw] network_id
1439
1150
  # The unique identifier of the network.
1440
1151
  # @return [String]
@@ -1476,13 +1187,6 @@ module Aws::ManagedBlockchain
1476
1187
  include Aws::Structure
1477
1188
  end
1478
1189
 
1479
- # @note When making an API call, you may pass ListTagsForResourceRequest
1480
- # data as a hash:
1481
- #
1482
- # {
1483
- # resource_arn: "ArnString", # required
1484
- # }
1485
- #
1486
1190
  # @!attribute [rw] resource_arn
1487
1191
  # The Amazon Resource Name (ARN) of the resource. For more information
1488
1192
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -1515,13 +1219,6 @@ module Aws::ManagedBlockchain
1515
1219
 
1516
1220
  # A configuration for logging events.
1517
1221
  #
1518
- # @note When making an API call, you may pass LogConfiguration
1519
- # data as a hash:
1520
- #
1521
- # {
1522
- # enabled: false,
1523
- # }
1524
- #
1525
1222
  # @!attribute [rw] enabled
1526
1223
  # Indicates whether logging is enabled.
1527
1224
  # @return [Boolean]
@@ -1536,15 +1233,6 @@ module Aws::ManagedBlockchain
1536
1233
 
1537
1234
  # A collection of log configurations.
1538
1235
  #
1539
- # @note When making an API call, you may pass LogConfigurations
1540
- # data as a hash:
1541
- #
1542
- # {
1543
- # cloudwatch: {
1544
- # enabled: false,
1545
- # },
1546
- # }
1547
- #
1548
1236
  # @!attribute [rw] cloudwatch
1549
1237
  # Parameters for publishing logs to Amazon CloudWatch Logs.
1550
1238
  # @return [Types::LogConfiguration]
@@ -1686,33 +1374,6 @@ module Aws::ManagedBlockchain
1686
1374
  #
1687
1375
  # Applies only to Hyperledger Fabric.
1688
1376
  #
1689
- # @note When making an API call, you may pass MemberConfiguration
1690
- # data as a hash:
1691
- #
1692
- # {
1693
- # name: "NetworkMemberNameString", # required
1694
- # description: "DescriptionString",
1695
- # framework_configuration: { # required
1696
- # fabric: {
1697
- # admin_username: "UsernameString", # required
1698
- # admin_password: "PasswordString", # required
1699
- # },
1700
- # },
1701
- # log_publishing_configuration: {
1702
- # fabric: {
1703
- # ca_logs: {
1704
- # cloudwatch: {
1705
- # enabled: false,
1706
- # },
1707
- # },
1708
- # },
1709
- # },
1710
- # tags: {
1711
- # "TagKey" => "TagValue",
1712
- # },
1713
- # kms_key_arn: "ArnString",
1714
- # }
1715
- #
1716
1377
  # @!attribute [rw] name
1717
1378
  # The name of the member.
1718
1379
  # @return [String]
@@ -1810,14 +1471,6 @@ module Aws::ManagedBlockchain
1810
1471
  # Configuration properties for Hyperledger Fabric for a member in a
1811
1472
  # Managed Blockchain network using the Hyperledger Fabric framework.
1812
1473
  #
1813
- # @note When making an API call, you may pass MemberFabricConfiguration
1814
- # data as a hash:
1815
- #
1816
- # {
1817
- # admin_username: "UsernameString", # required
1818
- # admin_password: "PasswordString", # required
1819
- # }
1820
- #
1821
1474
  # @!attribute [rw] admin_username
1822
1475
  # The user name for the member's initial administrative user.
1823
1476
  # @return [String]
@@ -1844,17 +1497,6 @@ module Aws::ManagedBlockchain
1844
1497
  # of a Managed Blockchain network using the Hyperledger Fabric
1845
1498
  # framework.
1846
1499
  #
1847
- # @note When making an API call, you may pass MemberFabricLogPublishingConfiguration
1848
- # data as a hash:
1849
- #
1850
- # {
1851
- # ca_logs: {
1852
- # cloudwatch: {
1853
- # enabled: false,
1854
- # },
1855
- # },
1856
- # }
1857
- #
1858
1500
  # @!attribute [rw] ca_logs
1859
1501
  # Configuration properties for logging events associated with a
1860
1502
  # member's Certificate Authority (CA). CA logs help you determine
@@ -1889,16 +1531,6 @@ module Aws::ManagedBlockchain
1889
1531
  # Configuration properties relevant to a member for the blockchain
1890
1532
  # framework that the Managed Blockchain network uses.
1891
1533
  #
1892
- # @note When making an API call, you may pass MemberFrameworkConfiguration
1893
- # data as a hash:
1894
- #
1895
- # {
1896
- # fabric: {
1897
- # admin_username: "UsernameString", # required
1898
- # admin_password: "PasswordString", # required
1899
- # },
1900
- # }
1901
- #
1902
1534
  # @!attribute [rw] fabric
1903
1535
  # Attributes of Hyperledger Fabric for a member on a Managed
1904
1536
  # Blockchain network that uses Hyperledger Fabric.
@@ -1915,19 +1547,6 @@ module Aws::ManagedBlockchain
1915
1547
  # Configuration properties for logging events associated with a member
1916
1548
  # of a Managed Blockchain network.
1917
1549
  #
1918
- # @note When making an API call, you may pass MemberLogPublishingConfiguration
1919
- # data as a hash:
1920
- #
1921
- # {
1922
- # fabric: {
1923
- # ca_logs: {
1924
- # cloudwatch: {
1925
- # enabled: false,
1926
- # },
1927
- # },
1928
- # },
1929
- # }
1930
- #
1931
1550
  # @!attribute [rw] fabric
1932
1551
  # Configuration properties for logging events associated with a member
1933
1552
  # of a Managed Blockchain network using the Hyperledger Fabric
@@ -2125,6 +1744,8 @@ module Aws::ManagedBlockchain
2125
1744
  #
2126
1745
  # * mainnet = `1`
2127
1746
  #
1747
+ # * goerli = `5`
1748
+ #
2128
1749
  # * rinkeby = `4`
2129
1750
  #
2130
1751
  # * ropsten = `3`
@@ -2165,13 +1786,6 @@ module Aws::ManagedBlockchain
2165
1786
 
2166
1787
  # Hyperledger Fabric configuration properties for the network.
2167
1788
  #
2168
- # @note When making an API call, you may pass NetworkFabricConfiguration
2169
- # data as a hash:
2170
- #
2171
- # {
2172
- # edition: "STARTER", # required, accepts STARTER, STANDARD
2173
- # }
2174
- #
2175
1789
  # @!attribute [rw] edition
2176
1790
  # The edition of Amazon Managed Blockchain that the network uses. For
2177
1791
  # more information, see [Amazon Managed Blockchain Pricing][1].
@@ -2214,15 +1828,6 @@ module Aws::ManagedBlockchain
2214
1828
  # Configuration properties relevant to the network for the blockchain
2215
1829
  # framework that the network uses.
2216
1830
  #
2217
- # @note When making an API call, you may pass NetworkFrameworkConfiguration
2218
- # data as a hash:
2219
- #
2220
- # {
2221
- # fabric: {
2222
- # edition: "STARTER", # required, accepts STARTER, STANDARD
2223
- # },
2224
- # }
2225
- #
2226
1831
  # @!attribute [rw] fabric
2227
1832
  # Hyperledger Fabric configuration properties for a Managed Blockchain
2228
1833
  # network that uses Hyperledger Fabric.
@@ -2438,29 +2043,6 @@ module Aws::ManagedBlockchain
2438
2043
 
2439
2044
  # Configuration properties of a node.
2440
2045
  #
2441
- # @note When making an API call, you may pass NodeConfiguration
2442
- # data as a hash:
2443
- #
2444
- # {
2445
- # instance_type: "InstanceTypeString", # required
2446
- # availability_zone: "AvailabilityZoneString",
2447
- # log_publishing_configuration: {
2448
- # fabric: {
2449
- # chaincode_logs: {
2450
- # cloudwatch: {
2451
- # enabled: false,
2452
- # },
2453
- # },
2454
- # peer_logs: {
2455
- # cloudwatch: {
2456
- # enabled: false,
2457
- # },
2458
- # },
2459
- # },
2460
- # },
2461
- # state_db: "LevelDB", # accepts LevelDB, CouchDB
2462
- # }
2463
- #
2464
2046
  # @!attribute [rw] instance_type
2465
2047
  # The Amazon Managed Blockchain instance type for the node.
2466
2048
  # @return [String]
@@ -2510,8 +2092,8 @@ module Aws::ManagedBlockchain
2510
2092
  #
2511
2093
  # @!attribute [rw] web_socket_endpoint
2512
2094
  # The endpoint on which the Ethereum node listens to run Ethereum
2513
- # JSON-RPC methods over WebSockets connections from a client. Use this
2514
- # endpoint in client code for smart contracts when using a WebSockets
2095
+ # JSON-RPC methods over WebSocket connections from a client. Use this
2096
+ # endpoint in client code for smart contracts when using a WebSocket
2515
2097
  # connection. Connections to this endpoint are authenticated using
2516
2098
  # [Signature Version 4][1].
2517
2099
  #
@@ -2554,22 +2136,6 @@ module Aws::ManagedBlockchain
2554
2136
  # Configuration properties for logging events associated with a peer
2555
2137
  # node owned by a member in a Managed Blockchain network.
2556
2138
  #
2557
- # @note When making an API call, you may pass NodeFabricLogPublishingConfiguration
2558
- # data as a hash:
2559
- #
2560
- # {
2561
- # chaincode_logs: {
2562
- # cloudwatch: {
2563
- # enabled: false,
2564
- # },
2565
- # },
2566
- # peer_logs: {
2567
- # cloudwatch: {
2568
- # enabled: false,
2569
- # },
2570
- # },
2571
- # }
2572
- #
2573
2139
  # @!attribute [rw] chaincode_logs
2574
2140
  # Configuration properties for logging events associated with
2575
2141
  # chaincode execution on a peer node. Chaincode logs contain the
@@ -2620,24 +2186,6 @@ module Aws::ManagedBlockchain
2620
2186
  # Configuration properties for logging events associated with a peer
2621
2187
  # node on a Hyperledger Fabric network on Managed Blockchain.
2622
2188
  #
2623
- # @note When making an API call, you may pass NodeLogPublishingConfiguration
2624
- # data as a hash:
2625
- #
2626
- # {
2627
- # fabric: {
2628
- # chaincode_logs: {
2629
- # cloudwatch: {
2630
- # enabled: false,
2631
- # },
2632
- # },
2633
- # peer_logs: {
2634
- # cloudwatch: {
2635
- # enabled: false,
2636
- # },
2637
- # },
2638
- # },
2639
- # }
2640
- #
2641
2189
  # @!attribute [rw] fabric
2642
2190
  # Configuration properties for logging events associated with a node
2643
2191
  # that is owned by a member of a Managed Blockchain network using the
@@ -2826,22 +2374,6 @@ module Aws::ManagedBlockchain
2826
2374
  #
2827
2375
  # Applies only to Hyperledger Fabric.
2828
2376
  #
2829
- # @note When making an API call, you may pass ProposalActions
2830
- # data as a hash:
2831
- #
2832
- # {
2833
- # invitations: [
2834
- # {
2835
- # principal: "PrincipalString", # required
2836
- # },
2837
- # ],
2838
- # removals: [
2839
- # {
2840
- # member_id: "ResourceIdString", # required
2841
- # },
2842
- # ],
2843
- # }
2844
- #
2845
2377
  # @!attribute [rw] invitations
2846
2378
  # The actions to perform for an `APPROVED` proposal to invite an
2847
2379
  # Amazon Web Services account to create a member and join the network.
@@ -2943,13 +2475,6 @@ module Aws::ManagedBlockchain
2943
2475
  include Aws::Structure
2944
2476
  end
2945
2477
 
2946
- # @note When making an API call, you may pass RejectInvitationInput
2947
- # data as a hash:
2948
- #
2949
- # {
2950
- # invitation_id: "ResourceIdString", # required
2951
- # }
2952
- #
2953
2478
  # @!attribute [rw] invitation_id
2954
2479
  # The unique identifier of the invitation to reject.
2955
2480
  # @return [String]
@@ -2972,13 +2497,6 @@ module Aws::ManagedBlockchain
2972
2497
  #
2973
2498
  # Applies only to Hyperledger Fabric.
2974
2499
  #
2975
- # @note When making an API call, you may pass RemoveAction
2976
- # data as a hash:
2977
- #
2978
- # {
2979
- # member_id: "ResourceIdString", # required
2980
- # }
2981
- #
2982
2500
  # @!attribute [rw] member_id
2983
2501
  # The unique identifier of the member to remove.
2984
2502
  # @return [String]
@@ -3053,16 +2571,6 @@ module Aws::ManagedBlockchain
3053
2571
  include Aws::Structure
3054
2572
  end
3055
2573
 
3056
- # @note When making an API call, you may pass TagResourceRequest
3057
- # data as a hash:
3058
- #
3059
- # {
3060
- # resource_arn: "ArnString", # required
3061
- # tags: { # required
3062
- # "TagKey" => "TagValue",
3063
- # },
3064
- # }
3065
- #
3066
2574
  # @!attribute [rw] resource_arn
3067
2575
  # The Amazon Resource Name (ARN) of the resource. For more information
3068
2576
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -3117,14 +2625,6 @@ module Aws::ManagedBlockchain
3117
2625
  include Aws::Structure
3118
2626
  end
3119
2627
 
3120
- # @note When making an API call, you may pass UntagResourceRequest
3121
- # data as a hash:
3122
- #
3123
- # {
3124
- # resource_arn: "ArnString", # required
3125
- # tag_keys: ["TagKey"], # required
3126
- # }
3127
- #
3128
2628
  # @!attribute [rw] resource_arn
3129
2629
  # The Amazon Resource Name (ARN) of the resource. For more information
3130
2630
  # about ARNs and their format, see [Amazon Resource Names (ARNs)][1]
@@ -3152,23 +2652,6 @@ module Aws::ManagedBlockchain
3152
2652
  #
3153
2653
  class UntagResourceResponse < Aws::EmptyStructure; end
3154
2654
 
3155
- # @note When making an API call, you may pass UpdateMemberInput
3156
- # data as a hash:
3157
- #
3158
- # {
3159
- # network_id: "ResourceIdString", # required
3160
- # member_id: "ResourceIdString", # required
3161
- # log_publishing_configuration: {
3162
- # fabric: {
3163
- # ca_logs: {
3164
- # cloudwatch: {
3165
- # enabled: false,
3166
- # },
3167
- # },
3168
- # },
3169
- # },
3170
- # }
3171
- #
3172
2655
  # @!attribute [rw] network_id
3173
2656
  # The unique identifier of the Managed Blockchain network to which the
3174
2657
  # member belongs.
@@ -3196,29 +2679,6 @@ module Aws::ManagedBlockchain
3196
2679
  #
3197
2680
  class UpdateMemberOutput < Aws::EmptyStructure; end
3198
2681
 
3199
- # @note When making an API call, you may pass UpdateNodeInput
3200
- # data as a hash:
3201
- #
3202
- # {
3203
- # network_id: "ResourceIdString", # required
3204
- # member_id: "ResourceIdString",
3205
- # node_id: "ResourceIdString", # required
3206
- # log_publishing_configuration: {
3207
- # fabric: {
3208
- # chaincode_logs: {
3209
- # cloudwatch: {
3210
- # enabled: false,
3211
- # },
3212
- # },
3213
- # peer_logs: {
3214
- # cloudwatch: {
3215
- # enabled: false,
3216
- # },
3217
- # },
3218
- # },
3219
- # },
3220
- # }
3221
- #
3222
2682
  # @!attribute [rw] network_id
3223
2683
  # The unique identifier of the network that the node is on.
3224
2684
  # @return [String]
@@ -3252,16 +2712,6 @@ module Aws::ManagedBlockchain
3252
2712
  #
3253
2713
  class UpdateNodeOutput < Aws::EmptyStructure; end
3254
2714
 
3255
- # @note When making an API call, you may pass VoteOnProposalInput
3256
- # data as a hash:
3257
- #
3258
- # {
3259
- # network_id: "ResourceIdString", # required
3260
- # proposal_id: "ResourceIdString", # required
3261
- # voter_member_id: "ResourceIdString", # required
3262
- # vote: "YES", # required, accepts YES, NO
3263
- # }
3264
- #
3265
2715
  # @!attribute [rw] network_id
3266
2716
  # The unique identifier of the network.
3267
2717
  # @return [String]
@@ -3323,17 +2773,6 @@ module Aws::ManagedBlockchain
3323
2773
  #
3324
2774
  # Applies only to Hyperledger Fabric.
3325
2775
  #
3326
- # @note When making an API call, you may pass VotingPolicy
3327
- # data as a hash:
3328
- #
3329
- # {
3330
- # approval_threshold_policy: {
3331
- # threshold_percentage: 1,
3332
- # proposal_duration_in_hours: 1,
3333
- # threshold_comparator: "GREATER_THAN", # accepts GREATER_THAN, GREATER_THAN_OR_EQUAL_TO
3334
- # },
3335
- # }
3336
- #
3337
2776
  # @!attribute [rw] approval_threshold_policy
3338
2777
  # Defines the rules for the network for voting on proposals, such as
3339
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.34.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.34.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-10-25 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