Class: Google::Apis::TpuV1alpha1::TensorFlowVersion
- Inherits:
-
Object
- Object
- Google::Apis::TpuV1alpha1::TensorFlowVersion
- 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
-
#name ⇒ String
The resource name.
-
#version ⇒ String
the tensorflow version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TensorFlowVersion
constructor
A new instance of TensorFlowVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TensorFlowVersion
Returns a new instance of TensorFlowVersion
717 718 719 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 717 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The resource name.
Corresponds to the JSON property name
710 711 712 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 710 def name @name end |
#version ⇒ String
the tensorflow version.
Corresponds to the JSON property version
715 716 717 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 715 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
722 723 724 725 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 722 def update!(**args) @name = args[:name] if args.key?(:name) @version = args[:version] if args.key?(:version) end |