Class: Aws::DataSync::Types::Capacity

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

Overview

The storage capacity of an on-premises storage system resource (for example, a volume).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_cloud_storage_usedInteger

The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).

Returns:

  • (Integer)


207
208
209
210
211
212
213
214
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 207

class Capacity < Struct.new(
  :used,
  :provisioned,
  :logical_used,
  :cluster_cloud_storage_used)
  SENSITIVE = []
  include Aws::Structure
end

#logical_usedInteger

The amount of space that's being used in a storage system resource without accounting for compression or deduplication.

Returns:

  • (Integer)


207
208
209
210
211
212
213
214
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 207

class Capacity < Struct.new(
  :used,
  :provisioned,
  :logical_used,
  :cluster_cloud_storage_used)
  SENSITIVE = []
  include Aws::Structure
end

#provisionedInteger

The total amount of space available in a storage system resource.

Returns:

  • (Integer)


207
208
209
210
211
212
213
214
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 207

class Capacity < Struct.new(
  :used,
  :provisioned,
  :logical_used,
  :cluster_cloud_storage_used)
  SENSITIVE = []
  include Aws::Structure
end

#usedInteger

The amount of space that's being used in a storage system resource.

Returns:

  • (Integer)


207
208
209
210
211
212
213
214
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 207

class Capacity < Struct.new(
  :used,
  :provisioned,
  :logical_used,
  :cluster_cloud_storage_used)
  SENSITIVE = []
  include Aws::Structure
end