Class: Google::Apis::ComputeAlpha::StoragePoolResourceStatus

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Overview

[Output Only] Contains output only fields.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StoragePoolResourceStatus

Returns a new instance of StoragePoolResourceStatus.



48459
48460
48461
# File 'lib/google/apis/compute_alpha/classes.rb', line 48459

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#aggregate_disk_provisioned_iopsFixnum

[Output Only] Sum of all the disks' provisioned IOPS. Corresponds to the JSON property aggregateDiskProvisionedIops

Returns:

  • (Fixnum)


48419
48420
48421
# File 'lib/google/apis/compute_alpha/classes.rb', line 48419

def aggregate_disk_provisioned_iops
  @aggregate_disk_provisioned_iops
end

#aggregate_disk_size_gbFixnum

[Output Only] Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity. Corresponds to the JSON property aggregateDiskSizeGb

Returns:

  • (Fixnum)


48425
48426
48427
# File 'lib/google/apis/compute_alpha/classes.rb', line 48425

def aggregate_disk_size_gb
  @aggregate_disk_size_gb
end

#last_resize_timestampString

[Output Only] Timestamp of the last successful resize in RFC3339 text format. Corresponds to the JSON property lastResizeTimestamp

Returns:

  • (String)


48430
48431
48432
# File 'lib/google/apis/compute_alpha/classes.rb', line 48430

def last_resize_timestamp
  @last_resize_timestamp
end

#max_aggregate_disk_size_gbFixnum

[Output Only] Maximum allowed aggregate disk size in gigabytes. Corresponds to the JSON property maxAggregateDiskSizeGb

Returns:

  • (Fixnum)


48435
48436
48437
# File 'lib/google/apis/compute_alpha/classes.rb', line 48435

def max_aggregate_disk_size_gb
  @max_aggregate_disk_size_gb
end

#number_of_disksFixnum

[Output Only] Number of disks used. Corresponds to the JSON property numberOfDisks

Returns:

  • (Fixnum)


48440
48441
48442
# File 'lib/google/apis/compute_alpha/classes.rb', line 48440

def number_of_disks
  @number_of_disks
end

#used_bytesFixnum

[Output Only] Space used by data stored in disks within the storage pool (in bytes). Corresponds to the JSON property usedBytes

Returns:

  • (Fixnum)


48446
48447
48448
# File 'lib/google/apis/compute_alpha/classes.rb', line 48446

def used_bytes
  @used_bytes
end

#used_reduced_bytesFixnum

[Output Only] Space used by compressed and deduped data stored in disks within the storage pool (in bytes). Corresponds to the JSON property usedReducedBytes

Returns:

  • (Fixnum)


48452
48453
48454
# File 'lib/google/apis/compute_alpha/classes.rb', line 48452

def used_reduced_bytes
  @used_reduced_bytes
end

#used_throughputFixnum

[Output Only] Sum of all the disks' provisioned throughput in MB/s. Corresponds to the JSON property usedThroughput

Returns:

  • (Fixnum)


48457
48458
48459
# File 'lib/google/apis/compute_alpha/classes.rb', line 48457

def used_throughput
  @used_throughput
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



48464
48465
48466
48467
48468
48469
48470
48471
48472
48473
# File 'lib/google/apis/compute_alpha/classes.rb', line 48464

def update!(**args)
  @aggregate_disk_provisioned_iops = args[:aggregate_disk_provisioned_iops] if args.key?(:aggregate_disk_provisioned_iops)
  @aggregate_disk_size_gb = args[:aggregate_disk_size_gb] if args.key?(:aggregate_disk_size_gb)
  @last_resize_timestamp = args[:last_resize_timestamp] if args.key?(:last_resize_timestamp)
  @max_aggregate_disk_size_gb = args[:max_aggregate_disk_size_gb] if args.key?(:max_aggregate_disk_size_gb)
  @number_of_disks = args[:number_of_disks] if args.key?(:number_of_disks)
  @used_bytes = args[:used_bytes] if args.key?(:used_bytes)
  @used_reduced_bytes = args[:used_reduced_bytes] if args.key?(:used_reduced_bytes)
  @used_throughput = args[:used_throughput] if args.key?(:used_throughput)
end