Class: Google::Apis::DatastoreV1beta3::GoogleDatastoreAdminV1Progress

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datastore_v1beta3/classes.rb,
generated/google/apis/datastore_v1beta3/representations.rb,
generated/google/apis/datastore_v1beta3/representations.rb

Overview

Measures the progress of a particular metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDatastoreAdminV1Progress

Returns a new instance of GoogleDatastoreAdminV1Progress.



602
603
604
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 602

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

Instance Attribute Details

#work_completedFixnum

The amount of work that has been completed. Note that this may be greater than work_estimated. Corresponds to the JSON property workCompleted

Returns:

  • (Fixnum)


594
595
596
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 594

def work_completed
  @work_completed
end

#work_estimatedFixnum

An estimate of how much work needs to be performed. May be zero if the work estimate is unavailable. Corresponds to the JSON property workEstimated

Returns:

  • (Fixnum)


600
601
602
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 600

def work_estimated
  @work_estimated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



607
608
609
610
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 607

def update!(**args)
  @work_completed = args[:work_completed] if args.key?(:work_completed)
  @work_estimated = args[:work_estimated] if args.key?(:work_estimated)
end