Class: Google::Apis::ComputeV1::LocalDisk
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::LocalDisk
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#disk_count ⇒ Fixnum
Specifies the number of such disks.
-
#disk_size_gb ⇒ Fixnum
Specifies the size of the disk in base-2 GB.
-
#disk_type ⇒ String
Specifies the desired disk type on the node.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocalDisk
constructor
A new instance of LocalDisk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocalDisk
Returns a new instance of LocalDisk.
33514 33515 33516 |
# File 'lib/google/apis/compute_v1/classes.rb', line 33514 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk_count ⇒ Fixnum
Specifies the number of such disks.
Corresponds to the JSON property diskCount
33499 33500 33501 |
# File 'lib/google/apis/compute_v1/classes.rb', line 33499 def disk_count @disk_count end |
#disk_size_gb ⇒ Fixnum
Specifies the size of the disk in base-2 GB.
Corresponds to the JSON property diskSizeGb
33504 33505 33506 |
# File 'lib/google/apis/compute_v1/classes.rb', line 33504 def disk_size_gb @disk_size_gb end |
#disk_type ⇒ String
Specifies the desired disk type on the node. This disk type must be a
local storage type (e.g.: local-ssd).
Note that for nodeTemplates, this should be the name of the disk type and
not its URL.
Corresponds to the JSON property diskType
33512 33513 33514 |
# File 'lib/google/apis/compute_v1/classes.rb', line 33512 def disk_type @disk_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33519 33520 33521 33522 33523 |
# File 'lib/google/apis/compute_v1/classes.rb', line 33519 def update!(**args) @disk_count = args[:disk_count] if args.key?(:disk_count) @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb) @disk_type = args[:disk_type] if args.key?(:disk_type) end |