class Google::Apis::BigtableadminV1::OperationProgress
Encapsulates progress related information for a Cloud Bigtable long running operation.
Attributes
end_time[RW]
If set, the time at which this operation failed or was completed successfully. Corresponds to the JSON property `endTime` @return [String]
progress_percent[RW]
Percent completion of the operation. Values are between 0 and 100 inclusive. Corresponds to the JSON property `progressPercent` @return [Fixnum]
start_time[RW]
Time the request was received. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 572 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 577 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @progress_percent = args[:progress_percent] if args.key?(:progress_percent) @start_time = args[:start_time] if args.key?(:start_time) end