Class: Google::Apis::VmmigrationV1::CycleStep
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::CycleStep
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
CycleStep holds information about a step progress.
Instance Attribute Summary collapse
-
#end_time ⇒ String
The time the cycle step has ended.
-
#initializing_replication ⇒ Google::Apis::VmmigrationV1::InitializingReplicationStep
InitializingReplicationStep contains specific step details.
-
#post_processing ⇒ Google::Apis::VmmigrationV1::PostProcessingStep
PostProcessingStep contains specific step details.
-
#replicating ⇒ Google::Apis::VmmigrationV1::ReplicatingStep
ReplicatingStep contains specific step details.
-
#start_time ⇒ String
The time the cycle step has started.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CycleStep
constructor
A new instance of CycleStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CycleStep
Returns a new instance of CycleStep.
1550 1551 1552 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1550 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
The time the cycle step has ended.
Corresponds to the JSON property endTime
1528 1529 1530 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1528 def end_time @end_time end |
#initializing_replication ⇒ Google::Apis::VmmigrationV1::InitializingReplicationStep
InitializingReplicationStep contains specific step details.
Corresponds to the JSON property initializingReplication
1533 1534 1535 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1533 def initializing_replication @initializing_replication end |
#post_processing ⇒ Google::Apis::VmmigrationV1::PostProcessingStep
PostProcessingStep contains specific step details.
Corresponds to the JSON property postProcessing
1538 1539 1540 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1538 def post_processing @post_processing end |
#replicating ⇒ Google::Apis::VmmigrationV1::ReplicatingStep
ReplicatingStep contains specific step details.
Corresponds to the JSON property replicating
1543 1544 1545 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1543 def replicating @replicating end |
#start_time ⇒ String
The time the cycle step has started.
Corresponds to the JSON property startTime
1548 1549 1550 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1548 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 1555 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 |