Class: Google::Apis::BatchV1::InstancePolicyOrTemplate

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

Overview

Either an InstancePolicy or an instance template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstancePolicyOrTemplate

Returns a new instance of InstancePolicyOrTemplate.



745
746
747
# File 'lib/google/apis/batch_v1/classes.rb', line 745

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

Instance Attribute Details

#install_gpu_driversBoolean Also known as: install_gpu_drivers?

Set this field true if users want Batch to help fetch drivers from a third party location and install them for GPUs specified in policy.accelerators or instance_template on their behalf. Default is false. Corresponds to the JSON property installGpuDrivers

Returns:

  • (Boolean)


730
731
732
# File 'lib/google/apis/batch_v1/classes.rb', line 730

def install_gpu_drivers
  @install_gpu_drivers
end

#instance_templateString

Name of an instance template used to create VMs. Named the field as ' instance_template' instead of 'template' to avoid c++ keyword conflict. Corresponds to the JSON property instanceTemplate

Returns:

  • (String)


737
738
739
# File 'lib/google/apis/batch_v1/classes.rb', line 737

def instance_template
  @instance_template
end

#policyGoogle::Apis::BatchV1::InstancePolicy

InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy. Corresponds to the JSON property policy



743
744
745
# File 'lib/google/apis/batch_v1/classes.rb', line 743

def policy
  @policy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



750
751
752
753
754
# File 'lib/google/apis/batch_v1/classes.rb', line 750

def update!(**args)
  @install_gpu_drivers = args[:install_gpu_drivers] if args.key?(:install_gpu_drivers)
  @instance_template = args[:instance_template] if args.key?(:instance_template)
  @policy = args[:policy] if args.key?(:policy)
end