class Google::Apis::VmmigrationV1alpha1::CycleStep

CycleStep hold information about a step progress.

Attributes

end_time[RW]

The time the cycle step has ended. Corresponds to the JSON property ‘endTime` @return [String]

initializing_replication[RW]

InitializingReplicationStep contains specific step details. Corresponds to the JSON property ‘initializingReplication` @return [Google::Apis::VmmigrationV1alpha1::InitializingReplicationStep]

post_processing[RW]

PostProcessingStep contains specific step details. Corresponds to the JSON property ‘postProcessing` @return [Google::Apis::VmmigrationV1alpha1::PostProcessingStep]

replicating[RW]

ReplicatingStep contains specific step details. Corresponds to the JSON property ‘replicating` @return [Google::Apis::VmmigrationV1alpha1::ReplicatingStep]

start_time[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 678
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 683
def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @initializing_replication = args[:initializing_replication] if args.key?(:initializing_replication)
  @post_processing = args[:post_processing] if args.key?(:post_processing)
  @replicating = args[:replicating] if args.key?(:replicating)
  @start_time = args[:start_time] if args.key?(:start_time)
end