Class: Google::Apis::ComputeAlpha::MachineType::Accelerator

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Accelerator

Returns a new instance of Accelerator.



25267
25268
25269
# File 'lib/google/apis/compute_alpha/classes.rb', line 25267

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

Instance Attribute Details

#guest_accelerator_countFixnum

Number of accelerator cards exposed to the guest. Corresponds to the JSON property guestAcceleratorCount

Returns:

  • (Fixnum)


25260
25261
25262
# File 'lib/google/apis/compute_alpha/classes.rb', line 25260

def guest_accelerator_count
  @guest_accelerator_count
end

#guest_accelerator_typeString

The accelerator type resource name, not a full URL, e.g. nvidia-tesla-t4. Corresponds to the JSON property guestAcceleratorType

Returns:

  • (String)


25265
25266
25267
# File 'lib/google/apis/compute_alpha/classes.rb', line 25265

def guest_accelerator_type
  @guest_accelerator_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25272
25273
25274
25275
# File 'lib/google/apis/compute_alpha/classes.rb', line 25272

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