google-apis-blockchainnodeengine_v1 0.5.0 → 0.7.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/google/apis/blockchainnodeengine_v1/classes.rb +5 -14
- data/lib/google/apis/blockchainnodeengine_v1/gem_version.rb +3 -3
- data/lib/google/apis/blockchainnodeengine_v1/representations.rb +0 -1
- data/lib/google/apis/blockchainnodeengine_v1/service.rb +3 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '097593dc156c661a05ee682bd6b2decb6c7b095490ad9fd21ef6e6d5d9cd708f'
|
|
4
|
+
data.tar.gz: 98f0e5388dc44b2c963f8c200e25e3b9b857d046aa62bc713b7a5f35912cedb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9333f1739fe044b86c53e10e35bab96b2ba3ec3590a19df964971cf821524475d3d78985397798a05a206b1540f22932715fa29d2d3c9a52f1f7f7187cabfd2
|
|
7
|
+
data.tar.gz: d429b647e7fae12c5d5120beee32d782c1c9750427045f3ee447ebfb4fdd83e919252637a936a93b7b6d4ad7d517328e38933cee1d95ed4eee70dd4970aa99af
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Release history for google-apis-blockchainnodeengine_v1
|
|
2
2
|
|
|
3
|
+
### v0.7.0 (2024-01-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240117
|
|
6
|
+
* Regenerated using generator version 0.13.1
|
|
7
|
+
|
|
8
|
+
### v0.6.0 (2024-01-22)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20240103
|
|
11
|
+
* Regenerated using generator version 0.13.0
|
|
12
|
+
|
|
3
13
|
### v0.5.0 (2023-12-10)
|
|
4
14
|
|
|
5
15
|
* Regenerated from discovery document revision 20231129
|
|
@@ -59,8 +59,11 @@ module Google
|
|
|
59
59
|
|
|
60
60
|
# Optional. When true, the node is only accessible via Private Service Connect;
|
|
61
61
|
# no public endpoints are exposed. Otherwise, the node is only accessible via
|
|
62
|
-
# public endpoints.
|
|
63
|
-
#
|
|
62
|
+
# public endpoints. Warning: Private Service Connect enabled nodes may require a
|
|
63
|
+
# manual migration effort to remain compatible with future versions of the
|
|
64
|
+
# product. If this feature is enabled, you will be notified of these changes
|
|
65
|
+
# along with any required action to avoid disruption. See https://cloud.google.
|
|
66
|
+
# com/vpc/docs/private-service-connect.
|
|
64
67
|
# Corresponds to the JSON property `privateServiceConnectEnabled`
|
|
65
68
|
# @return [Boolean]
|
|
66
69
|
attr_accessor :private_service_connect_enabled
|
|
@@ -182,17 +185,6 @@ module Google
|
|
|
182
185
|
attr_accessor :api_enable_debug
|
|
183
186
|
alias_method :api_enable_debug?, :api_enable_debug
|
|
184
187
|
|
|
185
|
-
# Deprecated: Use the same field in the ValidatorConfig message as replacement.
|
|
186
|
-
# An Ethereum address which the beacon client will send fee rewards to if no
|
|
187
|
-
# recipient is configured in the validator client. See https://lighthouse-book.
|
|
188
|
-
# sigmaprime.io/suggested-fee-recipient.html or https://docs.prylabs.network/
|
|
189
|
-
# docs/execution-node/fee-recipient for examples of how this is used. Note that
|
|
190
|
-
# while this is often described as "suggested", as we run the execution node we
|
|
191
|
-
# can trust the execution node, and therefore this is considered enforced.
|
|
192
|
-
# Corresponds to the JSON property `beaconFeeRecipient`
|
|
193
|
-
# @return [String]
|
|
194
|
-
attr_accessor :beacon_fee_recipient
|
|
195
|
-
|
|
196
188
|
# Immutable. The consensus client.
|
|
197
189
|
# Corresponds to the JSON property `consensusClient`
|
|
198
190
|
# @return [String]
|
|
@@ -234,7 +226,6 @@ module Google
|
|
|
234
226
|
@additional_endpoints = args[:additional_endpoints] if args.key?(:additional_endpoints)
|
|
235
227
|
@api_enable_admin = args[:api_enable_admin] if args.key?(:api_enable_admin)
|
|
236
228
|
@api_enable_debug = args[:api_enable_debug] if args.key?(:api_enable_debug)
|
|
237
|
-
@beacon_fee_recipient = args[:beacon_fee_recipient] if args.key?(:beacon_fee_recipient)
|
|
238
229
|
@consensus_client = args[:consensus_client] if args.key?(:consensus_client)
|
|
239
230
|
@execution_client = args[:execution_client] if args.key?(:execution_client)
|
|
240
231
|
@geth_details = args[:geth_details] if args.key?(:geth_details)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.7.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240117"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -165,7 +165,6 @@ module Google
|
|
|
165
165
|
|
|
166
166
|
property :api_enable_admin, as: 'apiEnableAdmin'
|
|
167
167
|
property :api_enable_debug, as: 'apiEnableDebug'
|
|
168
|
-
property :beacon_fee_recipient, as: 'beaconFeeRecipient'
|
|
169
168
|
property :consensus_client, as: 'consensusClient'
|
|
170
169
|
property :execution_client, as: 'executionClient'
|
|
171
170
|
property :geth_details, as: 'gethDetails', class: Google::Apis::BlockchainnodeengineV1::GethDetails, decorator: Google::Apis::BlockchainnodeengineV1::GethDetails::Representation
|
|
@@ -32,6 +32,8 @@ module Google
|
|
|
32
32
|
#
|
|
33
33
|
# @see https://cloud.google.com/blockchain-node-engine
|
|
34
34
|
class BlockchainNodeEngineService < Google::Apis::Core::BaseService
|
|
35
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://blockchainnodeengine.$UNIVERSE_DOMAIN$/"
|
|
36
|
+
|
|
35
37
|
# @return [String]
|
|
36
38
|
# API key. Your API key identifies your project and provides you with API access,
|
|
37
39
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
|
@@ -43,7 +45,7 @@ module Google
|
|
|
43
45
|
attr_accessor :quota_user
|
|
44
46
|
|
|
45
47
|
def initialize
|
|
46
|
-
super(
|
|
48
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
|
47
49
|
client_name: 'google-apis-blockchainnodeengine_v1',
|
|
48
50
|
client_version: Google::Apis::BlockchainnodeengineV1::GEM_VERSION)
|
|
49
51
|
@batch_path = 'batch'
|
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
|
+
version: 0.7.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:
|
|
11
|
+
date: 2024-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.12.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.12.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-blockchainnodeengine_v1/v0.7.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: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.
|
|
78
|
+
rubygems_version: 3.5.3
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Blockchain Node Engine API V1
|