Class: Aws::Drs::Types::Disk

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb

Overview

An object representing a data storage device on a server.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bytesInteger

The amount of storage on the disk in bytes.

Returns:

  • (Integer)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1131

class Disk < Struct.new(
  :bytes,
  :device_name)
  SENSITIVE = []
  include Aws::Structure
end

#device_nameString

The disk or device name.

Returns:

  • (String)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1131

class Disk < Struct.new(
  :bytes,
  :device_name)
  SENSITIVE = []
  include Aws::Structure
end