Class: Google::Apis::BlockchainnodeengineV1::ListBlockchainNodesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BlockchainnodeengineV1::ListBlockchainNodesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/blockchainnodeengine_v1/classes.rb,
lib/google/apis/blockchainnodeengine_v1/representations.rb,
lib/google/apis/blockchainnodeengine_v1/representations.rb
Overview
Message for response to listing blockchain nodes.
Instance Attribute Summary collapse
-
#blockchain_nodes ⇒ Array<Google::Apis::BlockchainnodeengineV1::BlockchainNode>
The list of nodes Corresponds to the JSON property
blockchainNodes. -
#next_page_token ⇒ String
A token identifying a page of results the server should return.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBlockchainNodesResponse
constructor
A new instance of ListBlockchainNodesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBlockchainNodesResponse
Returns a new instance of ListBlockchainNodesResponse.
299 300 301 |
# File 'lib/google/apis/blockchainnodeengine_v1/classes.rb', line 299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blockchain_nodes ⇒ Array<Google::Apis::BlockchainnodeengineV1::BlockchainNode>
The list of nodes
Corresponds to the JSON property blockchainNodes
287 288 289 |
# File 'lib/google/apis/blockchainnodeengine_v1/classes.rb', line 287 def blockchain_nodes @blockchain_nodes end |
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
292 293 294 |
# File 'lib/google/apis/blockchainnodeengine_v1/classes.rb', line 292 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
297 298 299 |
# File 'lib/google/apis/blockchainnodeengine_v1/classes.rb', line 297 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
304 305 306 307 308 |
# File 'lib/google/apis/blockchainnodeengine_v1/classes.rb', line 304 def update!(**args) @blockchain_nodes = args[:blockchain_nodes] if args.key?(:blockchain_nodes) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |