class Google::Apis::GenomicsV2alpha1::DiskStatus

The status of a disk on a VM.

Attributes

free_space_bytes[RW]

Free disk space. Corresponds to the JSON property `freeSpaceBytes` @return [Fixnum]

total_space_bytes[RW]

Total disk space. Corresponds to the JSON property `totalSpaceBytes` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 483
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/genomics_v2alpha1/classes.rb, line 488
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