Class: Google::Apis::GenomicsV2alpha1::PersistentDisk
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV2alpha1::PersistentDisk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v2alpha1/classes.rb,
generated/google/apis/genomics_v2alpha1/representations.rb,
generated/google/apis/genomics_v2alpha1/representations.rb
Overview
Configuration for a persistent disk to be attached to the VM. See https:// cloud.google.com/compute/docs/disks/performance for more information about disk type, size, and performance considerations.
Instance Attribute Summary collapse
-
#size_gb ⇒ Fixnum
The size, in GB, of the disk to attach.
-
#source_image ⇒ String
An image to put on the disk before attaching it to the VM.
-
#type ⇒ String
The Compute Engine disk type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PersistentDisk
constructor
A new instance of PersistentDisk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PersistentDisk
Returns a new instance of PersistentDisk.
974 975 976 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#size_gb ⇒ Fixnum
The size, in GB, of the disk to attach. If the size is not specified, a
default is chosen to ensure reasonable I/O performance. If the disk type is
specified as local-ssd
, multiple local drives are automatically combined to
provide the requested size. Note, however, that each physical SSD is 375GB in
size, and no more than 8 drives can be attached to a single instance.
Corresponds to the JSON property sizeGb
962 963 964 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 962 def size_gb @size_gb end |
#source_image ⇒ String
An image to put on the disk before attaching it to the VM.
Corresponds to the JSON property sourceImage
967 968 969 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 967 def source_image @source_image end |
#type ⇒ String
The Compute Engine disk type. If unspecified, pd-standard
is used.
Corresponds to the JSON property type
972 973 974 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 972 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
979 980 981 982 983 |
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 979 def update!(**args) @size_gb = args[:size_gb] if args.key?(:size_gb) @source_image = args[:source_image] if args.key?(:source_image) @type = args[:type] if args.key?(:type) end |