Class: Aws::Lightsail::Types::DiskInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lightsail/types.rb

Overview

Describes a disk.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#is_system_diskBoolean

A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).

Returns:

  • (Boolean)


5710
5711
5712
5713
5714
5715
5716
5717
# File 'lib/aws-sdk-lightsail/types.rb', line 5710

class DiskInfo < Struct.new(
  :name,
  :path,
  :size_in_gb,
  :is_system_disk)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The disk name.

Returns:

  • (String)


5710
5711
5712
5713
5714
5715
5716
5717
# File 'lib/aws-sdk-lightsail/types.rb', line 5710

class DiskInfo < Struct.new(
  :name,
  :path,
  :size_in_gb,
  :is_system_disk)
  SENSITIVE = []
  include Aws::Structure
end

#pathString

The disk path.

Returns:

  • (String)


5710
5711
5712
5713
5714
5715
5716
5717
# File 'lib/aws-sdk-lightsail/types.rb', line 5710

class DiskInfo < Struct.new(
  :name,
  :path,
  :size_in_gb,
  :is_system_disk)
  SENSITIVE = []
  include Aws::Structure
end

#size_in_gbInteger

The size of the disk in GB (‘32`).

Returns:

  • (Integer)


5710
5711
5712
5713
5714
5715
5716
5717
# File 'lib/aws-sdk-lightsail/types.rb', line 5710

class DiskInfo < Struct.new(
  :name,
  :path,
  :size_in_gb,
  :is_system_disk)
  SENSITIVE = []
  include Aws::Structure
end