Class: Google::Apis::GenomicsV2alpha1::DiskStatus

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

Overview

The status of a disk on a VM.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DiskStatus

Returns a new instance of DiskStatus.



482
483
484
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 482

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

Instance Attribute Details

#free_space_bytesFixnum

Free disk space. Corresponds to the JSON property freeSpaceBytes

Returns:

  • (Fixnum)


475
476
477
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 475

def free_space_bytes
  @free_space_bytes
end

#total_space_bytesFixnum

Total disk space. Corresponds to the JSON property totalSpaceBytes

Returns:

  • (Fixnum)


480
481
482
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 480

def total_space_bytes
  @total_space_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



487
488
489
490
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 487

def update!(**args)
  @free_space_bytes = args[:free_space_bytes] if args.key?(:free_space_bytes)
  @total_space_bytes = args[:total_space_bytes] if args.key?(:total_space_bytes)
end