Class: Google::Apis::TpuV1alpha1::AcceleratorType

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 accelerator type that a Node can be configured with.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AcceleratorType

Returns a new instance of AcceleratorType.



39
40
41
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 39

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

Instance Attribute Details

#nameString

The resource name. Corresponds to the JSON property name

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 32

def name
  @name
end

#typeString

the accelerator type. Corresponds to the JSON property type

Returns:

  • (String)


37
38
39
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 37

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



44
45
46
47
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 44

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