google-apis-blockchainnodeengine_v1 0.1.0 → 0.2.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2c1c2a3387bbf7b892a2a3bc33868695eccceba89a4a9d5a3d3121b2a47aa65
|
|
4
|
+
data.tar.gz: 5f5ad81f5293eebe3f9883e11aee35f837763e77ceed9d3757adbf3b0808f7d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a604b61c7ec71fabfc5e02ec4606ffdef8f1304275c3f6fdea11e10f7cb2adcfbd1145d8f2833cffb5bcf22d7be91b9964c3b4400afa6370196755d822eede79
|
|
7
|
+
data.tar.gz: 7b86b0c1f53defd24c0f8fc56e7dfcfca46b849dd748258edd0ece74abce4230f9c74630a213b1d377196e26081dae378bba48e2f250e56d4243b221e7bea6b7
|
data/CHANGELOG.md
CHANGED
|
@@ -106,6 +106,13 @@ module Google
|
|
|
106
106
|
# @return [Google::Apis::BlockchainnodeengineV1::EndpointInfo]
|
|
107
107
|
attr_accessor :endpoint_info
|
|
108
108
|
|
|
109
|
+
# Output only. A service attachment that exposes a node, and has the following
|
|
110
|
+
# format: projects/`project`/regions/`region`/serviceAttachments/`
|
|
111
|
+
# service_attachment_name`
|
|
112
|
+
# Corresponds to the JSON property `serviceAttachment`
|
|
113
|
+
# @return [String]
|
|
114
|
+
attr_accessor :service_attachment
|
|
115
|
+
|
|
109
116
|
def initialize(**args)
|
|
110
117
|
update!(**args)
|
|
111
118
|
end
|
|
@@ -113,6 +120,7 @@ module Google
|
|
|
113
120
|
# Update properties of this object
|
|
114
121
|
def update!(**args)
|
|
115
122
|
@endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
|
|
123
|
+
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
|
116
124
|
end
|
|
117
125
|
end
|
|
118
126
|
|
|
@@ -442,13 +450,13 @@ module Google
|
|
|
442
450
|
# @return [String]
|
|
443
451
|
attr_accessor :name
|
|
444
452
|
|
|
445
|
-
# The normal response of the operation
|
|
446
|
-
#
|
|
447
|
-
#
|
|
448
|
-
#
|
|
449
|
-
#
|
|
450
|
-
#
|
|
451
|
-
#
|
|
453
|
+
# The normal, successful response of the operation. If the original method
|
|
454
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
|
455
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
|
456
|
+
# response should be the resource. For other methods, the response should have
|
|
457
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
|
458
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
|
459
|
+
# `TakeSnapshotResponse`.
|
|
452
460
|
# Corresponds to the JSON property `response`
|
|
453
461
|
# @return [Hash<String,Object>]
|
|
454
462
|
attr_accessor :response
|
|
@@ -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.2.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 = "
|
|
25
|
+
REVISION = "20230914"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -139,6 +139,7 @@ module Google
|
|
|
139
139
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
140
140
|
property :endpoint_info, as: 'endpointInfo', class: Google::Apis::BlockchainnodeengineV1::EndpointInfo, decorator: Google::Apis::BlockchainnodeengineV1::EndpointInfo::Representation
|
|
141
141
|
|
|
142
|
+
property :service_attachment, as: 'serviceAttachment'
|
|
142
143
|
end
|
|
143
144
|
end
|
|
144
145
|
|
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.2.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
|
+
date: 2023-09-17 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-blockchainnodeengine_v1/v0.2.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.4.
|
|
78
|
+
rubygems_version: 3.4.19
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Blockchain Node Engine API V1
|