Method: Google::Cloud::NetApp::V1::Volume#used_gib

Defined in:
proto_docs/google/cloud/netapp/v1/volume.rb

#used_gib::Integer (readonly)

Returns Output only. Used capacity in GIB of the volume. This is computed periodically and it does not represent the realtime usage.

Returns:

  • (::Integer)

    Output only. Used capacity in GIB of the volume. This is computed periodically and it does not represent the realtime usage.



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'proto_docs/google/cloud/netapp/v1/volume.rb', line 238

class Volume
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The volume states
  module State
    # Unspecified Volume State
    STATE_UNSPECIFIED = 0

    # Volume State is Ready
    READY = 1

    # Volume State is Creating
    CREATING = 2

    # Volume State is Deleting
    DELETING = 3

    # Volume State is Updating
    UPDATING = 4

    # Volume State is Restoring
    RESTORING = 5

    # Volume State is Disabled
    DISABLED = 6

    # Volume State is Error
    ERROR = 7
  end
end