google-apis-blockchainnodeengine_v1 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3c294a389630e05eb306988b7d32f38b857d1a0f6ecea748339429a0ab0cc6f
4
- data.tar.gz: 8626be47f39f35c70676a4424563a4d5076377bb4e86e8c7ea30842e32c29b86
3
+ metadata.gz: 5765504bc052f0072aa3bf06908cc3e17ee94901b534f1571ab448178d39b5d3
4
+ data.tar.gz: 6a1ecdacc2adc912c44c517c3b1a0a5f5beb02efc6ea57a9d7dc101b65239d59
5
5
  SHA512:
6
- metadata.gz: 18f25da5f3dc8628e5dfd982bece8a35b5b44053c4584f5987fdd61be526d2c6669fd9a95509897b4f60c9b3bc568673654f05e8fee9616753fc192fbf645479
7
- data.tar.gz: 6f3eb1bb39f43bd15f0fc28668f97028b5d2848261b2bd813e9147fd0b2eed4d1fa99d13321feea40ae030cc00c772fb3935e0f547f32ecc17269b1cc6bb64ab
6
+ metadata.gz: f757b567bac2c809010cef1832746cc5dba165e3e864d88243a1fbb04ec9b79bc3512b6ac4539ed8adde0ff178501296c541d6534ff375081e148ec9c8a9e411
7
+ data.tar.gz: 7c976f65d6c4a9abedbe64484d88ab6d2f58fd916ebcf12cd22004cfd26f7035aa8faf631a59c1cdfc4ae54abd13fe146b7b7f12f3d7c200a14fcc43ab131658
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-blockchainnodeengine_v1
2
2
 
3
+ ### v0.5.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231129
6
+
3
7
  ### v0.4.0 (2023-11-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20231108
@@ -182,6 +182,7 @@ module Google
182
182
  attr_accessor :api_enable_debug
183
183
  alias_method :api_enable_debug?, :api_enable_debug
184
184
 
185
+ # Deprecated: Use the same field in the ValidatorConfig message as replacement.
185
186
  # An Ethereum address which the beacon client will send fee rewards to if no
186
187
  # recipient is configured in the validator client. See https://lighthouse-book.
187
188
  # sigmaprime.io/suggested-fee-recipient.html or https://docs.prylabs.network/
@@ -218,6 +219,12 @@ module Google
218
219
  # @return [String]
219
220
  attr_accessor :node_type
220
221
 
222
+ # Configuration for validator-related parameters on the beacon client, and for
223
+ # any GCP-managed validator client.
224
+ # Corresponds to the JSON property `validatorConfig`
225
+ # @return [Google::Apis::BlockchainnodeengineV1::ValidatorConfig]
226
+ attr_accessor :validator_config
227
+
221
228
  def initialize(**args)
222
229
  update!(**args)
223
230
  end
@@ -233,6 +240,7 @@ module Google
233
240
  @geth_details = args[:geth_details] if args.key?(:geth_details)
234
241
  @network = args[:network] if args.key?(:network)
235
242
  @node_type = args[:node_type] if args.key?(:node_type)
243
+ @validator_config = args[:validator_config] if args.key?(:validator_config)
236
244
  end
237
245
  end
238
246
 
@@ -593,6 +601,27 @@ module Google
593
601
  @message = args[:message] if args.key?(:message)
594
602
  end
595
603
  end
604
+
605
+ # Configuration for validator-related parameters on the beacon client, and for
606
+ # any GCP-managed validator client.
607
+ class ValidatorConfig
608
+ include Google::Apis::Core::Hashable
609
+
610
+ # URLs for MEV-relay services to use for block building. When set, a GCP-managed
611
+ # MEV-boost service is configured on the beacon client.
612
+ # Corresponds to the JSON property `mevRelayUrls`
613
+ # @return [Array<String>]
614
+ attr_accessor :mev_relay_urls
615
+
616
+ def initialize(**args)
617
+ update!(**args)
618
+ end
619
+
620
+ # Update properties of this object
621
+ def update!(**args)
622
+ @mev_relay_urls = args[:mev_relay_urls] if args.key?(:mev_relay_urls)
623
+ end
624
+ end
596
625
  end
597
626
  end
598
627
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BlockchainnodeengineV1
18
18
  # Version of the google-apis-blockchainnodeengine_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231108"
25
+ REVISION = "20231129"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class ValidatorConfig
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class BlockchainNode
116
122
  # @private
117
123
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -166,6 +172,8 @@ module Google
166
172
 
167
173
  property :network, as: 'network'
168
174
  property :node_type, as: 'nodeType'
175
+ property :validator_config, as: 'validatorConfig', class: Google::Apis::BlockchainnodeengineV1::ValidatorConfig, decorator: Google::Apis::BlockchainnodeengineV1::ValidatorConfig::Representation
176
+
169
177
  end
170
178
  end
171
179
 
@@ -263,6 +271,13 @@ module Google
263
271
  property :message, as: 'message'
264
272
  end
265
273
  end
274
+
275
+ class ValidatorConfig
276
+ # @private
277
+ class Representation < Google::Apis::Core::JsonRepresentation
278
+ collection :mev_relay_urls, as: 'mevRelayUrls'
279
+ end
280
+ end
266
281
  end
267
282
  end
268
283
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-blockchainnodeengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-19 00:00:00.000000000 Z
11
+ date: 2023-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-blockchainnodeengine_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-blockchainnodeengine_v1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-blockchainnodeengine_v1/v0.5.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-blockchainnodeengine_v1
63
63
  post_install_message:
64
64
  rdoc_options: []