Class: Google::Apis::BatchV1::InstancePolicy
- Inherits:
-
Object
- Object
- Google::Apis::BatchV1::InstancePolicy
- 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
InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy.
Instance Attribute Summary collapse
-
#accelerators ⇒ Array<Google::Apis::BatchV1::Accelerator>
The accelerators attached to each VM instance.
-
#boot_disk ⇒ Google::Apis::BatchV1::Disk
A new persistent disk or a local ssd.
-
#disks ⇒ Array<Google::Apis::BatchV1::AttachedDisk>
Non-boot disks to be attached for each VM created by this InstancePolicy.
-
#machine_type ⇒ String
The Compute Engine machine type.
-
#min_cpu_platform ⇒ String
The minimum CPU platform.
-
#provisioning_model ⇒ String
The provisioning model.
-
#reservation ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancePolicy
constructor
A new instance of InstancePolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancePolicy
Returns a new instance of InstancePolicy.
1104 1105 1106 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1104 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerators ⇒ Array<Google::Apis::BatchV1::Accelerator>
The accelerators attached to each VM instance.
Corresponds to the JSON property accelerators
1065 1066 1067 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1065 def accelerators @accelerators end |
#boot_disk ⇒ Google::Apis::BatchV1::Disk
A new persistent disk or a local ssd. A VM can only have one local SSD setting
but multiple local SSD partitions. See https://cloud.google.com/compute/docs/
disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
Corresponds to the JSON property bootDisk
1072 1073 1074 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1072 def boot_disk @boot_disk end |
#disks ⇒ Array<Google::Apis::BatchV1::AttachedDisk>
Non-boot disks to be attached for each VM created by this InstancePolicy. New
disks will be deleted when the VM is deleted. A non-boot disk is a disk that
can be of a device with a file system or a raw storage drive that is not ready
for data storage and accessing.
Corresponds to the JSON property disks
1080 1081 1082 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1080 def disks @disks end |
#machine_type ⇒ String
The Compute Engine machine type.
Corresponds to the JSON property machineType
1085 1086 1087 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1085 def machine_type @machine_type end |
#min_cpu_platform ⇒ String
The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/
specify-min-cpu-platform.
Corresponds to the JSON property minCpuPlatform
1091 1092 1093 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1091 def min_cpu_platform @min_cpu_platform end |
#provisioning_model ⇒ String
The provisioning model.
Corresponds to the JSON property provisioningModel
1096 1097 1098 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1096 def provisioning_model @provisioning_model end |
#reservation ⇒ String
Optional. If specified, VMs will consume only the specified reservation. If
not specified (default), VMs will consume any applicable reservation.
Corresponds to the JSON property reservation
1102 1103 1104 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1102 def reservation @reservation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1109 1110 1111 1112 1113 1114 1115 1116 1117 |
# File 'lib/google/apis/batch_v1/classes.rb', line 1109 def update!(**args) @accelerators = args[:accelerators] if args.key?(:accelerators) @boot_disk = args[:boot_disk] if args.key?(:boot_disk) @disks = args[:disks] if args.key?(:disks) @machine_type = args[:machine_type] if args.key?(:machine_type) @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform) @provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model) @reservation = args[:reservation] if args.key?(:reservation) end |