Class: Google::Apis::TpuV1::AcceleratorType
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TpuV1::AcceleratorType
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/tpu_v1/classes.rb,
generated/google/apis/tpu_v1/representations.rb,
generated/google/apis/tpu_v1/representations.rb 
Overview
A accelerator type that a Node can be configured with.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource name.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
the accelerator type.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AcceleratorType 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AcceleratorType.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AcceleratorType
Returns a new instance of AcceleratorType
      39 40 41  | 
    
      # File 'generated/google/apis/tpu_v1/classes.rb', line 39 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
The resource name.
Corresponds to the JSON property name
      32 33 34  | 
    
      # File 'generated/google/apis/tpu_v1/classes.rb', line 32 def name @name end  | 
  
#type ⇒ String
the accelerator type.
Corresponds to the JSON property type
      37 38 39  | 
    
      # File 'generated/google/apis/tpu_v1/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_v1/classes.rb', line 44 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end  |