Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1Progress

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

Overview

Measures the progress of a particular metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDatastoreAdminV1beta1Progress

Returns a new instance of GoogleDatastoreAdminV1beta1Progress.

[View source]

1372
1373
1374
# File 'lib/google/apis/datastore_v1/classes.rb', line 1372

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)

1364
1365
1366
# File 'lib/google/apis/datastore_v1/classes.rb', line 1364

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)

1370
1371
1372
# File 'lib/google/apis/datastore_v1/classes.rb', line 1370

def work_estimated
  @work_estimated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1377
1378
1379
1380
# File 'lib/google/apis/datastore_v1/classes.rb', line 1377

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