class Google::Apis::VmmigrationV1alpha1::CycleStep
CycleStep
hold information about a step progress.
Attributes
The time the cycle step has ended. Corresponds to the JSON property ‘endTime` @return [String]
InitializingReplicationStep
contains specific step details. Corresponds to the JSON property ‘initializingReplication` @return [Google::Apis::VmmigrationV1alpha1::InitializingReplicationStep]
PostProcessingStep
contains specific step details. Corresponds to the JSON property ‘postProcessing` @return [Google::Apis::VmmigrationV1alpha1::PostProcessingStep]
ReplicatingStep
contains specific step details. Corresponds to the JSON property ‘replicating` @return [Google::Apis::VmmigrationV1alpha1::ReplicatingStep]
The time the cycle step has started. Corresponds to the JSON property ‘startTime` @return [String]
Public Class Methods
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 678 def initialize(**args) update!(**args) end
Public Instance Methods
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