Class: Google::Apis::BatchV1::InstancePolicyOrTemplate
- Inherits:
-
Object
- Object
- Google::Apis::BatchV1::InstancePolicyOrTemplate
- 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
InstancePolicyOrTemplate lets you define the type of resources to use for this job either with an InstancePolicy or an instance template. If undefined, Batch picks the type of VM to use and doesn't include optional VM resources such as GPUs and extra disks.
Instance Attribute Summary collapse
-
#install_gpu_drivers ⇒ Boolean
(also: #install_gpu_drivers?)
Set this field true if you want Batch to help fetch drivers from a third party location and install them for GPUs specified in
policy.acceleratorsorinstance_templateon your behalf. -
#install_ops_agent ⇒ Boolean
(also: #install_ops_agent?)
Optional.
-
#instance_template ⇒ String
Name of an instance template used to create VMs.
-
#policy ⇒ Google::Apis::BatchV1::InstancePolicy
InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancePolicyOrTemplate
constructor
A new instance of InstancePolicyOrTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancePolicyOrTemplate
Returns a new instance of InstancePolicyOrTemplate.
1187 1188 1189 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1187 def initialize(**args) update!(**args) end |
Instance Attribute Details
#install_gpu_drivers ⇒ Boolean Also known as: install_gpu_drivers?
Set this field true if you want Batch to help fetch drivers from a third party
location and install them for GPUs specified in policy.accelerators or
instance_template on your behalf. Default is false. For Container-Optimized
Image cases, Batch will install the accelerator driver following milestones of
https://cloud.google.com/container-optimized-os/docs/release-notes. For non
Container-Optimized Image cases, following https://github.com/
GoogleCloudPlatform/compute-gpu-installation/blob/main/linux/
install_gpu_driver.py.
Corresponds to the JSON property installGpuDrivers
1165 1166 1167 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1165 def install_gpu_drivers @install_gpu_drivers end |
#install_ops_agent ⇒ Boolean Also known as: install_ops_agent?
Optional. Set this field true if you want Batch to install Ops Agent on your
behalf. Default is false.
Corresponds to the JSON property installOpsAgent
1172 1173 1174 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1172 def install_ops_agent @install_ops_agent end |
#instance_template ⇒ String
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
1179 1180 1181 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1179 def instance_template @instance_template end |
#policy ⇒ Google::Apis::BatchV1::InstancePolicy
InstancePolicy describes an instance type and resources attached to each VM
created by this InstancePolicy.
Corresponds to the JSON property policy
1185 1186 1187 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1185 def policy @policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1192 1193 1194 1195 1196 1197 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1192 def update!(**args) @install_gpu_drivers = args[:install_gpu_drivers] if args.key?(:install_gpu_drivers) @install_ops_agent = args[:install_ops_agent] if args.key?(:install_ops_agent) @instance_template = args[:instance_template] if args.key?(:instance_template) @policy = args[:policy] if args.key?(:policy) end |