Class: Aws::DataSync::Types::Capacity
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::Capacity
- Includes:
- Structure
- Defined in:
- 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
-
#cluster_cloud_storage_used ⇒ Integer
The amount of space in the cluster that’s in cloud storage (for example, if you’re using data tiering).
-
#logical_used ⇒ Integer
The amount of space that’s being used in a storage system resource without accounting for compression or deduplication.
-
#provisioned ⇒ Integer
The total amount of space available in a storage system resource.
-
#used ⇒ Integer
The amount of space that’s being used in a storage system resource.
Instance Attribute Details
#cluster_cloud_storage_used ⇒ Integer
The amount of space in the cluster that’s in cloud storage (for example, if you’re using data tiering).
207 208 209 210 211 212 213 214 |
# File '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_used ⇒ Integer
The amount of space that’s being used in a storage system resource without accounting for compression or deduplication.
207 208 209 210 211 212 213 214 |
# File '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 |
#provisioned ⇒ Integer
The total amount of space available in a storage system resource.
207 208 209 210 211 212 213 214 |
# File '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 |
#used ⇒ Integer
The amount of space that’s being used in a storage system resource.
207 208 209 210 211 212 213 214 |
# File '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 |