class Google::Apis::VmmigrationV1alpha1::ReplicationCycle

ReplicationCycle contains information about the current replication cycle status.

Attributes

progress[RW]

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

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]

steps[RW]

The cycle’s steps list representing its progress. Corresponds to the JSON property ‘steps` @return [Array<Google::Apis::VmmigrationV1alpha1::CycleStep>]

total_pause_duration[RW]

The accumulated duration the replication cycle was paused. Corresponds to the JSON property ‘totalPauseDuration` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 1794
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_v1alpha1/classes.rb, line 1799
def update!(**args)
  @progress = args[:progress] if args.key?(:progress)
  @progress_percent = args[:progress_percent] if args.key?(:progress_percent)
  @start_time = args[:start_time] if args.key?(:start_time)
  @steps = args[:steps] if args.key?(:steps)
  @total_pause_duration = args[:total_pause_duration] if args.key?(:total_pause_duration)
end