class Google::Apis::TpuV1alpha1::ListNodesResponse
Response for ListNodes.
Attributes
next_page_token[RW]
The next page token or empty if none. Corresponds to the JSON property `nextPageToken` @return [String]
nodes[RW]
The listed nodes. Corresponds to the JSON property `nodes` @return [Array<Google::Apis::TpuV1alpha1::Node>]
unreachable[RW]
Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/tpu_v1alpha1/classes.rb, line 142 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/tpu_v1alpha1/classes.rb, line 147 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @nodes = args[:nodes] if args.key?(:nodes) @unreachable = args[:unreachable] if args.key?(:unreachable) end