Class: Google::Apis::TpuV1alpha1::TensorFlowVersion

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

Overview

A tensorflow version that a Node can be configured with.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TensorFlowVersion

Returns a new instance of TensorFlowVersion.



663
664
665
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 663

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

Instance Attribute Details

#nameString

The resource name. Corresponds to the JSON property name

Returns:

  • (String)


656
657
658
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 656

def name
  @name
end

#versionString

the tensorflow version. Corresponds to the JSON property version

Returns:

  • (String)


661
662
663
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 661

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



668
669
670
671
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 668

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @version = args[:version] if args.key?(:version)
end