google-apis-blockchainnodeengine_v1 0.3.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: a0f67dad60dd736838ea4394463a20d4d98c99f705581701e90017f45377b21f
4
- data.tar.gz: 37ee6f3a2c0359e2fd1c895cd2b8093b5ff4fe2de60515da858c7c1c23872c12
3
+ metadata.gz: 5765504bc052f0072aa3bf06908cc3e17ee94901b534f1571ab448178d39b5d3
4
+ data.tar.gz: 6a1ecdacc2adc912c44c517c3b1a0a5f5beb02efc6ea57a9d7dc101b65239d59
5
5
  SHA512:
6
- metadata.gz: 7b93484ded3d9e65944580f8b55403606da2bb9e0a06f531128266715494942569b7bf0158dc999ce8c14c8271c82c41dfe55a20f204ca505da2ca96a649bf60
7
- data.tar.gz: 8e618f3f9f1e885c263d17f4bf4ee363c614d5d84b90773c77b7b64c3b9e3c60f1973fbd383f69369559a955d2bda49b129f5c27d73738732456e5cd5249b056
6
+ metadata.gz: f757b567bac2c809010cef1832746cc5dba165e3e864d88243a1fbb04ec9b79bc3512b6ac4539ed8adde0ff178501296c541d6534ff375081e148ec9c8a9e411
7
+ data.tar.gz: 7c976f65d6c4a9abedbe64484d88ab6d2f58fd916ebcf12cd22004cfd26f7035aa8faf631a59c1cdfc4ae54abd13fe146b7b7f12f3d7c200a14fcc43ab131658
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.4.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231108
10
+
3
11
  ### v0.3.0 (2023-10-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20230920
@@ -57,6 +57,15 @@ module Google
57
57
  # @return [String]
58
58
  attr_accessor :name
59
59
 
60
+ # Optional. When true, the node is only accessible via Private Service Connect;
61
+ # no public endpoints are exposed. Otherwise, the node is only accessible via
62
+ # public endpoints. See https://cloud.google.com/vpc/docs/private-service-
63
+ # connect.
64
+ # Corresponds to the JSON property `privateServiceConnectEnabled`
65
+ # @return [Boolean]
66
+ attr_accessor :private_service_connect_enabled
67
+ alias_method :private_service_connect_enabled?, :private_service_connect_enabled
68
+
60
69
  # Output only. A status representing the state of the node.
61
70
  # Corresponds to the JSON property `state`
62
71
  # @return [String]
@@ -79,6 +88,7 @@ module Google
79
88
  @ethereum_details = args[:ethereum_details] if args.key?(:ethereum_details)
80
89
  @labels = args[:labels] if args.key?(:labels)
81
90
  @name = args[:name] if args.key?(:name)
91
+ @private_service_connect_enabled = args[:private_service_connect_enabled] if args.key?(:private_service_connect_enabled)
82
92
  @state = args[:state] if args.key?(:state)
83
93
  @update_time = args[:update_time] if args.key?(:update_time)
84
94
  end
@@ -172,6 +182,7 @@ module Google
172
182
  attr_accessor :api_enable_debug
173
183
  alias_method :api_enable_debug?, :api_enable_debug
174
184
 
185
+ # Deprecated: Use the same field in the ValidatorConfig message as replacement.
175
186
  # An Ethereum address which the beacon client will send fee rewards to if no
176
187
  # recipient is configured in the validator client. See https://lighthouse-book.
177
188
  # sigmaprime.io/suggested-fee-recipient.html or https://docs.prylabs.network/
@@ -208,6 +219,12 @@ module Google
208
219
  # @return [String]
209
220
  attr_accessor :node_type
210
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
+
211
228
  def initialize(**args)
212
229
  update!(**args)
213
230
  end
@@ -223,6 +240,7 @@ module Google
223
240
  @geth_details = args[:geth_details] if args.key?(:geth_details)
224
241
  @network = args[:network] if args.key?(:network)
225
242
  @node_type = args[:node_type] if args.key?(:node_type)
243
+ @validator_config = args[:validator_config] if args.key?(:validator_config)
226
244
  end
227
245
  end
228
246
 
@@ -583,6 +601,27 @@ module Google
583
601
  @message = args[:message] if args.key?(:message)
584
602
  end
585
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
586
625
  end
587
626
  end
588
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.3.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 = "20230920"
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
@@ -123,6 +129,7 @@ module Google
123
129
 
124
130
  hash :labels, as: 'labels'
125
131
  property :name, as: 'name'
132
+ property :private_service_connect_enabled, as: 'privateServiceConnectEnabled'
126
133
  property :state, as: 'state'
127
134
  property :update_time, as: 'updateTime'
128
135
  end
@@ -165,6 +172,8 @@ module Google
165
172
 
166
173
  property :network, as: 'network'
167
174
  property :node_type, as: 'nodeType'
175
+ property :validator_config, as: 'validatorConfig', class: Google::Apis::BlockchainnodeengineV1::ValidatorConfig, decorator: Google::Apis::BlockchainnodeengineV1::ValidatorConfig::Representation
176
+
168
177
  end
169
178
  end
170
179
 
@@ -262,6 +271,13 @@ module Google
262
271
  property :message, as: 'message'
263
272
  end
264
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
265
281
  end
266
282
  end
267
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.3.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-10-01 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.3.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: []