class Google::Apis::AdminDirectoryV1::ChromeOsDevice::DiskVolumeReport::VolumeInfo

Attributes

storage_free[RW]

Free disk space [in bytes] Corresponds to the JSON property `storageFree` @return [Fixnum]

storage_total[RW]

Total disk space [in bytes] Corresponds to the JSON property `storageTotal` @return [Fixnum]

volume_id[RW]

Volume id Corresponds to the JSON property `volumeId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admin_directory_v1/classes.rb, line 1165
def update!(**args)
  @storage_free = args[:storage_free] if args.key?(:storage_free)
  @storage_total = args[:storage_total] if args.key?(:storage_total)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end