Class: Google::Apis::CloudbillingV1beta::GuestAccelerator

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

Overview

Specification of a set of guest accelerators attached to a machine.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GuestAccelerator

Returns a new instance of GuestAccelerator.



2250
2251
2252
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 2250

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

Instance Attribute Details

#accelerator_countFixnum

The number of the guest accelerator cards exposed to each instance. Corresponds to the JSON property acceleratorCount

Returns:

  • (Fixnum)


2243
2244
2245
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 2243

def accelerator_count
  @accelerator_count
end

#accelerator_typeString

The type of the guest accelerator cards. For example: "nvidia-tesla-t4". Corresponds to the JSON property acceleratorType

Returns:

  • (String)


2248
2249
2250
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 2248

def accelerator_type
  @accelerator_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2255
2256
2257
2258
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 2255

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