class Google::Apis::VmmigrationV1::ReplicationCycle

ReplicationCycle contains information about the current replication cycle status.

Attributes

progress_percent[RW]

The current progress in percentage of this cycle. Corresponds to the JSON property ‘progressPercent` @return [Fixnum]

start_time[RW]

The time the replication cycle has started. Corresponds to the JSON property ‘startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vmmigration_v1/classes.rb, line 1630
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vmmigration_v1/classes.rb, line 1635
def update!(**args)
  @progress_percent = args[:progress_percent] if args.key?(:progress_percent)
  @start_time = args[:start_time] if args.key?(:start_time)
end