class Google::Apis::TpuV1::ListTensorFlowVersionsResponse
Response for ListTensorFlowVersions.
Attributes
next_page_token[RW]
The next page token or empty if none. Corresponds to the JSON property `nextPageToken` @return [String]
tensorflow_versions[RW]
The listed nodes. Corresponds to the JSON property `tensorflowVersions` @return [Array<Google::Apis::TpuV1::TensorFlowVersion>]
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_v1/classes.rb, line 198 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_v1/classes.rb, line 203 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tensorflow_versions = args[:tensorflow_versions] if args.key?(:tensorflow_versions) @unreachable = args[:unreachable] if args.key?(:unreachable) end