google-apis-blockchainnodeengine_v1 0.6.0 → 0.8.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: 8c4042925419d069d971efd157e2c92ffe54c73536a795cf7687df3a0ed65ac8
4
- data.tar.gz: 21e24a80f947f9e5cc8fc7ee38cd90be28d153e81a9e0f37d6b3c1077be07eca
3
+ metadata.gz: 3b6c77f9769970f400d62955f914fe31cbef1b94dffd0a45b06eebfdcf5b1cb5
4
+ data.tar.gz: 74b790fea53490ed33d8be6ca586a12536f4d250b366c7b581af47ce0b973ef9
5
5
  SHA512:
6
- metadata.gz: 037ce6f73d9a83ec97bfaa030164b7a966d4a1d01b7a06148888af8e55deb6baf5adfbe83bd8dafdc0ba31c88458bf75aacc2bc43cc4cee74c21515270dd41d7
7
- data.tar.gz: 62a72e8b676c1d144c2293b29d671acb9b611d8d05b21bb97bf4e8477b41a6a5573c271ea00e848abe336908dcf1bf70d12a202d2481e66d0126d918c9841a6d
6
+ metadata.gz: 4603d4b4778170dd2b10ea0b7103134c3f671c3464fb0fa78059e5da07d287f6a38f277e63bc4ff08b4ec0ac2644c6ebc657dbc393d435bde601860ecac055da
7
+ data.tar.gz: 9fe0130d80e4391126ccff76ddbfdbe29541b80dac3e4a4348403266fe09c903f21c00b1ef8104315f586b4b3aa316b833d69a0b15a2e5497457c8b1ae307b2e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-blockchainnodeengine_v1
2
2
 
3
+ ### v0.8.0 (2024-02-04)
4
+
5
+ * Regenerated from discovery document revision 20240124
6
+
7
+ ### v0.7.0 (2024-01-28)
8
+
9
+ * Regenerated from discovery document revision 20240117
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.6.0 (2024-01-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20240103
@@ -57,6 +57,18 @@ 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. 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.
67
+ # Corresponds to the JSON property `privateServiceConnectEnabled`
68
+ # @return [Boolean]
69
+ attr_accessor :private_service_connect_enabled
70
+ alias_method :private_service_connect_enabled?, :private_service_connect_enabled
71
+
60
72
  # Output only. A status representing the state of the node.
61
73
  # Corresponds to the JSON property `state`
62
74
  # @return [String]
@@ -79,6 +91,7 @@ module Google
79
91
  @ethereum_details = args[:ethereum_details] if args.key?(:ethereum_details)
80
92
  @labels = args[:labels] if args.key?(:labels)
81
93
  @name = args[:name] if args.key?(:name)
94
+ @private_service_connect_enabled = args[:private_service_connect_enabled] if args.key?(:private_service_connect_enabled)
82
95
  @state = args[:state] if args.key?(:state)
83
96
  @update_time = args[:update_time] if args.key?(:update_time)
84
97
  end
@@ -585,6 +598,13 @@ module Google
585
598
  class ValidatorConfig
586
599
  include Google::Apis::Core::Hashable
587
600
 
601
+ # Immutable. When true, deploys a GCP-managed validator client alongside the
602
+ # beacon client.
603
+ # Corresponds to the JSON property `managedValidatorClient`
604
+ # @return [Boolean]
605
+ attr_accessor :managed_validator_client
606
+ alias_method :managed_validator_client?, :managed_validator_client
607
+
588
608
  # URLs for MEV-relay services to use for block building. When set, a GCP-managed
589
609
  # MEV-boost service is configured on the beacon client.
590
610
  # Corresponds to the JSON property `mevRelayUrls`
@@ -597,6 +617,7 @@ module Google
597
617
 
598
618
  # Update properties of this object
599
619
  def update!(**args)
620
+ @managed_validator_client = args[:managed_validator_client] if args.key?(:managed_validator_client)
600
621
  @mev_relay_urls = args[:mev_relay_urls] if args.key?(:mev_relay_urls)
601
622
  end
602
623
  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.6.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240103"
25
+ REVISION = "20240124"
26
26
  end
27
27
  end
28
28
  end
@@ -129,6 +129,7 @@ module Google
129
129
 
130
130
  hash :labels, as: 'labels'
131
131
  property :name, as: 'name'
132
+ property :private_service_connect_enabled, as: 'privateServiceConnectEnabled'
132
133
  property :state, as: 'state'
133
134
  property :update_time, as: 'updateTime'
134
135
  end
@@ -273,6 +274,7 @@ module Google
273
274
  class ValidatorConfig
274
275
  # @private
275
276
  class Representation < Google::Apis::Core::JsonRepresentation
277
+ property :managed_validator_client, as: 'managedValidatorClient'
276
278
  collection :mev_relay_urls, as: 'mevRelayUrls'
277
279
  end
278
280
  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.6.0
4
+ version: 0.8.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: 2024-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-04 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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-blockchainnodeengine_v1/v0.8.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: []