Class: Google::Apis::TpuV1::ListTensorFlowVersionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/tpu_v1/classes.rb,
lib/google/apis/tpu_v1/representations.rb,
lib/google/apis/tpu_v1/representations.rb

Overview

Response for ListTensorFlowVersions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTensorFlowVersionsResponse

Returns a new instance of ListTensorFlowVersionsResponse.



206
207
208
# File 'lib/google/apis/tpu_v1/classes.rb', line 206

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

The next page token or empty if none. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


194
195
196
# File 'lib/google/apis/tpu_v1/classes.rb', line 194

def next_page_token
  @next_page_token
end

#tensorflow_versionsArray<Google::Apis::TpuV1::TensorFlowVersion>

The listed nodes. Corresponds to the JSON property tensorflowVersions



199
200
201
# File 'lib/google/apis/tpu_v1/classes.rb', line 199

def tensorflow_versions
  @tensorflow_versions
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


204
205
206
# File 'lib/google/apis/tpu_v1/classes.rb', line 204

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



211
212
213
214
215
# File 'lib/google/apis/tpu_v1/classes.rb', line 211

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