Class: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
Exapool provisioned capacities for each SKU type
Instance Attribute Summary collapse
-
#capacity_optimized ⇒ Fixnum
Output only.
-
#read_optimized ⇒ Fixnum
Output only.
-
#write_optimized ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StoragePoolExapoolProvisionedCapacityGb
constructor
A new instance of StoragePoolExapoolProvisionedCapacityGb.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StoragePoolExapoolProvisionedCapacityGb
Returns a new instance of StoragePoolExapoolProvisionedCapacityGb.
53292 53293 53294 |
# File 'lib/google/apis/compute_v1/classes.rb', line 53292 def initialize(**args) update!(**args) end |
Instance Attribute Details
#capacity_optimized ⇒ Fixnum
Output only. Size, in GiB, of provisioned capacity-optimized capacity for this
Exapool
Corresponds to the JSON property capacityOptimized
53278 53279 53280 |
# File 'lib/google/apis/compute_v1/classes.rb', line 53278 def capacity_optimized @capacity_optimized end |
#read_optimized ⇒ Fixnum
Output only. Size, in GiB, of provisioned read-optimized capacity for this
Exapool
Corresponds to the JSON property readOptimized
53284 53285 53286 |
# File 'lib/google/apis/compute_v1/classes.rb', line 53284 def read_optimized @read_optimized end |
#write_optimized ⇒ Fixnum
Output only. Size, in GiB, of provisioned write-optimized capacity for this
Exapool
Corresponds to the JSON property writeOptimized
53290 53291 53292 |
# File 'lib/google/apis/compute_v1/classes.rb', line 53290 def write_optimized @write_optimized end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
53297 53298 53299 53300 53301 |
# File 'lib/google/apis/compute_v1/classes.rb', line 53297 def update!(**args) @capacity_optimized = args[:capacity_optimized] if args.key?(:capacity_optimized) @read_optimized = args[:read_optimized] if args.key?(:read_optimized) @write_optimized = args[:write_optimized] if args.key?(:write_optimized) end |