class Google::Apis::VmmigrationV1alpha1::ReplicatingStep

ReplicatingStep contains specific step details.

Attributes

last_thirty_minutes_average_bytes_per_second[RW]

The source disks replication rate for the last 30 minutes in bytes per second. Corresponds to the JSON property ‘lastThirtyMinutesAverageBytesPerSecond` @return [Fixnum]

last_two_minutes_average_bytes_per_second[RW]

The source disks replication rate for the last 2 minutes in bytes per second. Corresponds to the JSON property ‘lastTwoMinutesAverageBytesPerSecond` @return [Fixnum]

replicated_bytes[RW]

Replicated bytes in the step. Corresponds to the JSON property ‘replicatedBytes` @return [Fixnum]

total_bytes[RW]

Total bytes to be handled in the step. Corresponds to the JSON property ‘totalBytes` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 1751
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 1756
def update!(**args)
  @last_thirty_minutes_average_bytes_per_second = args[:last_thirty_minutes_average_bytes_per_second] if args.key?(:last_thirty_minutes_average_bytes_per_second)
  @last_two_minutes_average_bytes_per_second = args[:last_two_minutes_average_bytes_per_second] if args.key?(:last_two_minutes_average_bytes_per_second)
  @replicated_bytes = args[:replicated_bytes] if args.key?(:replicated_bytes)
  @total_bytes = args[:total_bytes] if args.key?(:total_bytes)
end