Class: Aws::FSx::Types::OpenZFSUserOrGroupQuota
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::OpenZFSUserOrGroupQuota
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Note:
When making an API call, you may pass OpenZFSUserOrGroupQuota data as a hash:
{
type: "USER", # required, accepts USER, GROUP
id: 1, # required
storage_capacity_quota_gi_b: 1, # required
}
The configuration for how much storage a user or group can use on the volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ Integer
The ID of the user or group.
-
#storage_capacity_quota_gi_b ⇒ Integer
The amount of storage that the user or group can use in gibibytes (GiB).
-
#type ⇒ String
A value that specifies whether the quota applies to a user or group.
Instance Attribute Details
#id ⇒ Integer
The ID of the user or group.
6560 6561 6562 6563 6564 6565 6566 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 6560 class OpenZFSUserOrGroupQuota < Struct.new( :type, :id, :storage_capacity_quota_gi_b) SENSITIVE = [] include Aws::Structure end |
#storage_capacity_quota_gi_b ⇒ Integer
The amount of storage that the user or group can use in gibibytes (GiB).
6560 6561 6562 6563 6564 6565 6566 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 6560 class OpenZFSUserOrGroupQuota < Struct.new( :type, :id, :storage_capacity_quota_gi_b) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
A value that specifies whether the quota applies to a user or group.
6560 6561 6562 6563 6564 6565 6566 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 6560 class OpenZFSUserOrGroupQuota < Struct.new( :type, :id, :storage_capacity_quota_gi_b) SENSITIVE = [] include Aws::Structure end |