Class: Google::Apis::MigrationcenterV1::MachineDiskDetails

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

Overview

Details of machine disks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MachineDiskDetails

Returns a new instance of MachineDiskDetails.



2810
2811
2812
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2810

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

Instance Attribute Details

#disksGoogle::Apis::MigrationcenterV1::DiskEntryList

VM disks. Corresponds to the JSON property disks



2798
2799
2800
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2798

def disks
  @disks
end

#total_capacity_bytesFixnum

Disk total Capacity. Corresponds to the JSON property totalCapacityBytes

Returns:

  • (Fixnum)


2803
2804
2805
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2803

def total_capacity_bytes
  @total_capacity_bytes
end

#total_free_bytesFixnum

Total disk free space. Corresponds to the JSON property totalFreeBytes

Returns:

  • (Fixnum)


2808
2809
2810
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2808

def total_free_bytes
  @total_free_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2815
2816
2817
2818
2819
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2815

def update!(**args)
  @disks = args[:disks] if args.key?(:disks)
  @total_capacity_bytes = args[:total_capacity_bytes] if args.key?(:total_capacity_bytes)
  @total_free_bytes = args[:total_free_bytes] if args.key?(:total_free_bytes)
end