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.



197
198
199
# File 'lib/google/apis/tpu_v1/classes.rb', line 197

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)


185
186
187
# File 'lib/google/apis/tpu_v1/classes.rb', line 185

def next_page_token
  @next_page_token
end

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

The listed nodes. Corresponds to the JSON property tensorflowVersions



190
191
192
# File 'lib/google/apis/tpu_v1/classes.rb', line 190

def tensorflow_versions
  @tensorflow_versions
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


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

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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